function init_edit(partID) { $('table#details tr#location td p').hide(); $('table#details tr#location td select').show(); $('table#details tr#partno td p').hide(); $('table#details tr#partno td input').show(); $('table#details tr#description td p').hide(); $('table#details tr#description td input').show(); $('table#details tr#datasheet td input').show(); var datasheet_input = $('') $('#datasheet-info').replaceWith(datasheet_input); var newButton = '
'; $('.round-button-left').replaceWith(newButton); } function new_entry() { $('table#details tr#location td p').text(''); $('table#details tr#partno td p').text(''); $('table#details tr#description td p').text(''); // $('table#details tr#location select').text(''); $('table#details tr#partno td input').text(''); $('table#details tr#description td input').text(''); init_edit(-1); overlay_in(); } function end_edit() { $('table#details tr#location td p').text($('table#details tr#location td select option:checked').val()); $('table#details tr#location td p').show(); $('table#details tr#location td select').hide(); $('table#details tr#partno td p').text($('table#details tr#partno td input').val()); $('table#details tr#partno td p').show(); $('table#details tr#partno td input').hide(); $('table#details tr#description td p').text($('table#details tr#description td input').val()); $('table#details tr#description td p').show(); $('table#details tr#description td input').hide(); $('table#details tr#datasheet td input').hide(); var newButton = '
'; $('.round-button-left').replaceWith(newButton); } function save(partID) { // var block_v = $('#block-input').val(); // var type_v = $('#type-input').val(); var location_id_v = $('table#details tr#location td select').val(); var partno_v = $('table#details tr#partno td input').val(); var description_v = $('table#details tr#description td input').val(); // var quantity_v = $('#quantity-input').val(); // var notes_v = $('#notes-input').val(); var datasheet = $('table#details tr#datasheet td input')[0].files; // if(! partno_v.match(/^([a-zA-Z0-9]{1,20}\s*){1,3}$/g)) { // alert('Invalid part number format. Accepted: '); // return; // } // if(! block_v.match(/^[0-9]+$/g)) { // alert('Invalid location field. Only numbers accepted.'); // return; // } // if(type_v.length > 25) { // alert('Manufacturer name too long (max 25 characters).') // return; // } if(description_v.length > 200) { alert('Description too long (max 200 characters).') return; } // if(quantity_v.length > 10) { // alert('Quantity info too long (max 10 characters).') // return; // } // if(notes_v.length > 200) { // alert('Notes too long (max 200 characters).') // return; // } // var partnos = partno_v.split(' '); var data = new FormData(); if (datasheet.length == 1) if(! datasheet[0]['name'].match(/^[\w\-]+\.pdf$/g)) { alert('Invalid filename. Please match /^[\w\-]+\.pdf$/g'); return; } data.append('datasheet-file', datasheet[0]); // data.append('block', block_v); // data.append('type', type_v); data.append('partno', partno_v); data.append('location_id', location_id_v) // if (partnos.length > 1) // data.append('partnoalt', partnos[1]); // else // data.append('partnoalt', ''); // if(partnos.length > 2) // data.append('partnoalt2', partnos[2]); // else // data.append('partnoalt2', ''); data.append('description', description_v); // data.append('quantity', quantity_v); // data.append('notes', notes_v); $.ajax({ // Your server script to process the upload url: rootURL + 'alter/' + partID, type: 'POST', data: data, // Tell jQuery not to process data or worry about content-type // You *must* include these options! cache: false, contentType: false, processData: false, success: function(data) { var datasheet_par = '

'; $('#datasheet-info').replaceWith(datasheet_par); // Fix addressing $('#edit-button').click(function() { init_edit(JSON.parse(data).part_id); }); }, error: function() { alert("Couldn't update the part information. Please retry."); } }); end_edit(); } function text_filter(string) { if (string != null) return string; else return ''; } function delete_entry(partID) { if (partID < 0) return; if (!confirm('Delete the selected entry?')) return; $.ajax({ url: rootURL + 'delete/' + partID, type: 'GET', cache: false, contentType: false, processData: false, success: function() { overlay_out(); perform_query(); }, fail: function() { console.log('An error occurred while deleting the entry'); }, }); } function show_part_info(partID) { $.getJSON(rootURL + 'getpartinfo/' + partID, function(data) { $('table#details tr#location td p').text(text_filter(data.name)); // name is the location friendly name $('table#details tr#location td select').val(data.location_id); // name is the location friendly name $('table#details tr#partno td p').text(text_filter(data.partno)); $('table#details tr#partno td input').val(text_filter(data.partno)); $('table#details tr#description td p').text(text_filter(data.description)); $('table#details tr#description td input').val(text_filter(data.description)); $('img#map').attr('src', 'parts/map/' + data.map); if (data.datasheet != null) $('tr#datasheet-head').html($('DATASHEET: ')); else $('tr#datasheet-head td').text('DATASHEET: '); $('#edit-button').click(function() { init_edit(partID); }); $('#delete-button').click(function() { delete_entry(partID); }); overlay_in(); }).fail(function() { console.log( "Fetching part info failed" ); }); } function perform_query() { $('#no-results').css("opacity", 0); var query = $('.search-bar').val(); var data = { l:$('#type').is(':checked'), p:$('#partno').is(':checked'), d:$('#description').is(':checked'), n:$('#notes').is(':checked') }; filter = '0'; $.getJSON(rootURL + 'query/' + filter + '/' + query, data, function(data) { $("#results").find("tr:not(:first)").remove(); // Delete all table rows for(var i = 0; i < data.length; i++) { var newRow = $(''); newRow.append($('').text(text_filter(data[i].location_descriptor))); newRow.append($('').text(text_filter(data[i].partno))); newRow.append($('').text(text_filter(data[i].description))); $('#results').append(newRow); } if(data.length == 0) { $('#no-results').animate({opacity:1},2000); } }).fail(function() { var newResults = '
'; newResults += '

No results.

'; newResults += '
'; $('.results').replaceWith(newResults); console.log( "Query failed" ); }); } function update_map() { var selected_id = $('table#details tr#location td select').val(); $.ajax('parts/getlocationURL/' + selected_id).done( function(data) { $('img#map').attr('src', 'parts/map/' + data); }); } $(document).ready(function() { $.ajaxSetup({ cache: false }); $('.search-bar').on('keyup', function() { perform_query(); }); $('.checkbox').change( function() { if ( !$('#location').is(':checked') && !$('#partno').is(':checked') && !$('#description').is(':checked') && !$('#notes').is(':checked')) $(this).prop('checked', true); else perform_query(); }); });