var gal_cid = -1; var new_vehicle_idx = 0; var modified = false; $(document).ready(function() { $.ajaxSetup({cache: false}); $('.progress-button').progressInitialize(); // Выбор города // События всплывающего списка результатов поиска $('#vlist').on('mouseenter mouseleave', '.found_vehicle', function() { var state = parseInt($(this).data('state')); $(this).toggleClass('s' + state + ' s' + (state+10)); }) .on('click', '.found_vehicle a', function(e) { e.stopPropagation(); }) .on('click', '.found_vehicle', function() { var nid = $(this).data('nid'); var vid = $(this).data('vid'); if ($('#conn_veh tbody[data-vid="' + vid + '"]').length > 0) { alert(_text['UP_V_LINKED'] + '.'); return; } var cid = $(this).data('cid'); var cname = $('.cname', this).html(); var type = $(this).data('type'); var html = '\n'; html += '\n'; html += '' + $('.num', this).html() + '\n'; html += '' + $('.mname', this).html() + '\n'; html += '' + _text['UP_ROUTE'] + ':\n'; html += ', \n'; html += '×\n'; html += '\n'; html += '\n'; html += '' + cname + '\n'; html += '' + _text['VIEW'] + ':\n'; html += '' + views[0] + '\n'; html += '\n'; html += '\n'; html += '\n'; html += '' + _text['UP_BIND'] + ':\n'; html += '' + binds[0].label + '\n'; html += '\n'; html += '\n'; var row = $(html); $('#conn_veh').append(row).show().tablesort('recountRows'); $('.pri-label', row).selector2(binds); $('.no-links').hide(); if (cid != $('#search_cid').val()) { $('#search_cid').val(cid); $('#cname').val(cname); } $('#search_type').val(type).trigger('change'); cnames[cid] = cname; showDefaultCity(); modify(); setTimeout(function() { $('#conn_veh tbody[data-nid="' + nid + '"] .view_link').click(); }, 100); }); $('#image').click(function() { $('#dateLoaded, #dateAbsent').hide(); $('#map_frame').removeClass('s12').css('background-color', '#ccc'); $('#statusbox').html(''); $('#errorsbox').hide(); }) .change(function(e) { $('#filename').html(this.files[0].name); checkImageForUpload(e.target, true, no_exif ? null : function(input) { EXIF.getData(input.files[0], function() { var dt = EXIF.getTag(this, "DateTimeOriginal"); if (dt) { dt = dt.split(' ')[0].split(':'); setDate(parseInt(dt[2]), parseInt(dt[1]), parseInt(dt[0])); $('#dateLoaded').fadeIn('slow'); } else $('#dateAbsent').fadeIn('slow'); var lt = EXIF.getTag(this, 'GPSLatitude'); var ln = EXIF.getTag(this, 'GPSLongitude'); if (lt && ln) { lt = parseCoord(lt, EXIF.getTag(this, 'GPSLatitudeRef')); ln = parseCoord(ln, EXIF.getTag(this, 'GPSLongitudeRef')); $('#lat').val(lt); $('#lng').val(ln); if (map) { var pos = [lt, ln]; marker.setLatLng(pos); map.setView(pos); } $('#map_frame').css('background-color', '').attr('class', 's12'); } }); }); }); $('#day, #month, #year').on('change', function() { $('#dateAbsent').hide(); }); $('#search_type').on('change', function() { changeColor(this); }).change(); // Комментарий $('#up-comment-link').on('click', function() { $('#up-comment-row').toggle(); }); // Опции прямой публикации /*$('input[name="pub"]').on('click', function() { $('#temp_pub').css('display', $('#pub0').is(':checked') ? 'none' : 'block') });*/ // Хак для IE $('label.button').on('click', function() { $(this).css('position', 'static'); setTimeout(function() { $('label.button').css('position', 'relative'); }, 50); }); // Опции даты $('.approx-aprx').css('font-weight', 'normal'); // Временная публикация $('#cond').on('click', function() { if ($(this).is(':checked')) $('#tech').prop('checked', false); }); $('#tech').on('click', function() { if ($(this).is(':checked')) $('#cond').prop('checked', false); }); // Закрытие селектора ракурса по Esc или Backspace $(document).on('keydown', function(e) { if ((e.which == 27 || e.which == 8) && $('#views-selector').is(':visible')) { e.preventDefault(); $('#views-selector').hide(); } }); // Модификация формы (но не только здесь) $('#image, #day, #month, #year, #pdate_approx, #main-cid, #place, #notes, #naa, #nomap, #license, #comment, #notes_mod, #px').on('change', modify); $('#conn_veh').on('change', 'input:checkbox, input:text', modify); }); function modify() { modified = true; } function parseCoord(val, ref) { var coord = parseFloat(val[0] + (val[1] / 60.0) + (val[2] / 3600.0)); if (ref == 'W' || ref == 'S') coord = -coord; return coord; } function searchVehicles(by_gos) { $('#search_cid, #search_type, #search_num, #search_gos').prop('disabled', true); $('#vlist').html('
' + _text['UP_SEARCHING'] + '
').show(); var data = { cid: $('#search_cid').val(), type: $('#search_type').val(), pub_pid: pub_pid }; if (!by_gos) data.num = $('#search_num').val().trim(); else data.gos = $('#search_gos').val().trim(); $.get('/api.php?action=upload-search-vehicles', data, function (r) { $('#vlist').html(r); $('#search_cid, #search_type, #search_num, #search_gos').prop('disabled', false); }); return false; } function artClick() { var art = $('input[name="art"]:checked').val(); if (art == 0) { $('.lnk-vehicle').show(); $('.lnk-gallery').hide(); } else { $('.lnk-vehicle').hide(); $('.lnk-gallery').show(); loadGalleries(art == 2 ? 0 : $('#search_cid').val()); } $('#lnk_cid_tr')[art == 2 ? 'hide' : 'show'](); } function loadGalleries(cid) { if (cid == gal_cid) return; gal_cid = cid; var sel = $('#search_gid').prop('disabled', true).empty().append(''); $.get('/api.php', { action: 'get-galleries', cid: gal_cid }, function(data) { sel.html(data).prop('disabled', false); }, 'html'); } function showDefaultCity() { var cids = $('#links input[name="cids[]"]'); if (cids.length == 0) { cnames.length = 0; return; } var i, cid, new_cnames = {}; for (i = 0; i < cids.length; i++) { cid = cids.eq(i).val(); if (cid) new_cnames[cid] = cnames[cid]; } var keys = Object.keys(new_cnames); if (keys.length) { cnames = new_cnames; cid = $('#main-cid').val(); if (cnames[cid] == undefined) { keys = Object.keys(cnames); $('#main-cid').val(keys[0]); $('#main-cname').val(cnames[keys[0]]); selectCity(keys[0]); } } } function setDate(d, m, y) { $('#day').val(d); $('#month').val(m); $('#year').val(y); $('#pdate_approx').val(0); } function showHint(id) { $('#'+id+'_hint').fadeIn() } function hideHint(id) { $('#'+id+'_hint').fadeOut() } function changeColor(sel) { sel.className = sel.options[sel.selectedIndex].className } function toggleNAA(wl) { if ($('#naa').prop('checked')) { $('#naa_hint').show(); if (!wl) { $('#pub1_label').hide(); $('#pub0').prop('checked', true); } } else { $('#naa_hint').hide(); $('#pub1_label').show(); } } function checkSpecialViews() { var fields = $('.route, .notes'); if (!moderator) fields.add('#place'); if ($('.view[value="9"], .view[value="10"], .view[value="11"], .view[value="12"]').length > 0) fields.prop('disabled', true).val(''); else fields.prop('disabled', false); }