Merged widlam/refactor/issue#201 to master
This commit is contained in:
		| @@ -83,12 +83,21 @@ function changeActiveTools(activeCategoryButton) { | ||||
|  * @returns {void} | ||||
|  */ | ||||
| function changeTool(tool) { | ||||
|     if (tools.has(tool)) { | ||||
|         const url = tools.get(tool); | ||||
|         document.location.search = tool + "/"; | ||||
|         localStorage.setItem("lastPage", tool); | ||||
|         document.getElementById("iframe").src = url; | ||||
|     if (! tools.has(tool)) return; | ||||
|     const url = tools.get(tool); | ||||
|     localStorage.setItem("lastPage", tool); | ||||
|      | ||||
|     switch (tool) { // XML category is default. | ||||
|         case "jsonform": | ||||
|             changeActiveTools('JSON'); | ||||
|             break; | ||||
|         case "mock": | ||||
|             changeActiveTools('REST'); | ||||
|             break; | ||||
|                  | ||||
|     } | ||||
|     document.location.search = tool; | ||||
|     document.getElementById("iframe").src = url; | ||||
| } | ||||
|  | ||||
| /** | ||||
| @@ -104,15 +113,5 @@ function loadLastPage() { | ||||
|     if (lastPage == null) { | ||||
|         lastPage = "xpath"; | ||||
|     } | ||||
|  | ||||
|     switch (lastPage) { // XML category is default. | ||||
|         case "jsonform": | ||||
|             changeActiveTools('JSON'); | ||||
|             break; | ||||
|         case "mock": | ||||
|             changeActiveTools('REST'); | ||||
|             break; | ||||
|                      | ||||
|     } | ||||
|     document.getElementById("iframe").src = tools.get(lastPage); | ||||
|     changeTool(lastPage); | ||||
| } | ||||
| @@ -2,16 +2,9 @@ var clientUUID = ''; | ||||
| var advancedDisplayed = false; | ||||
| var json = {}; | ||||
| var jsonIndex = 0; | ||||
| var lastId = 1; | ||||
| var htable_row = 0; | ||||
| var host = window.location.protocol + "//" + window.location.hostname + "/mock"; | ||||
| var dataModified = false; | ||||
| const addMessageName = 'addMessage'; | ||||
| const loadMessageName = 'changeMessage'; | ||||
| const removeMessageName = 'removeMessage'; | ||||
|  | ||||
| const C_UUID = 'mock-uuid'; | ||||
| const C_ID = 'last-displayed-id'; | ||||
| const C_ADV = 'advanced-mode'; | ||||
|  | ||||
| const color_red = "#ff8f8f"; | ||||
| @@ -20,9 +13,6 @@ const color_grey = "#6b6b6b"; | ||||
| const setModified = function(){ | ||||
|     setDataModified(); | ||||
| } | ||||
| const setOrigin = function(){ | ||||
|     setDataOrigin(); | ||||
| } | ||||
|  | ||||
| const getUpdate = function(){ | ||||
|     updateData(); | ||||
| @@ -30,33 +20,69 @@ const getUpdate = function(){ | ||||
| const dataRefresh = function(){ | ||||
|     getData(); | ||||
| } | ||||
| $('#btn-newtile').click(function(){callAddMessage()}); | ||||
| // $('#btn-addRow').click(function(){addRow()}); | ||||
| // $('#btn-save').click(getUpdate); | ||||
|  | ||||
| /* | ||||
|     Listeners segment | ||||
| */ | ||||
|  | ||||
| $(document).on('change', '.data-field', setModified); | ||||
|  | ||||
| $('#btn-save').click(  | ||||
|     () => { | ||||
|         disableSaveButton(); | ||||
|     } | ||||
|     ); | ||||
|      | ||||
| $('#btn-newRow').click( | ||||
|     ()=> { | ||||
|         newRowInput(); | ||||
|         setDataModified(); | ||||
|     }    | ||||
|     ); | ||||
|  | ||||
| /* | ||||
|     Functions segment | ||||
| */ | ||||
|  | ||||
| function disableSaveButton(){ | ||||
|     $('#btn-save').removeClass('active'); | ||||
|     $('#btn-save').off(); | ||||
| } | ||||
|  | ||||
| function createLink(uuid){ | ||||
|     var link =  host + '/api/mock/r/'+uuid; | ||||
|     return link; | ||||
| } | ||||
|  | ||||
|  | ||||
| function onLoad(){ | ||||
|     loadCookies(); | ||||
|     getData(); | ||||
| } | ||||
|  | ||||
| function getData(){ | ||||
|     $.getJSON(host + '/api/mock/'+clientUUID, function(data) { | ||||
|         json = data; | ||||
|         checkUuid(); | ||||
|          | ||||
|          | ||||
|         refreshData(); | ||||
|         loadFetchedMessage(); | ||||
|         initializeUUID(); | ||||
|     }); | ||||
| } | ||||
|  | ||||
|  | ||||
| function checkUuid(){ | ||||
|     if(clientUUID == null || clientUUID == undefined || clientUUID == ''){ | ||||
|         clientUUID = json[0].clientUUID; | ||||
|         setCookie(); | ||||
|     } | ||||
| function loadCookies(){ | ||||
|     clientUUID = getCookie(C_UUID); | ||||
|     advancedDisplayed = getCookie(C_ADV) == 'true'; | ||||
| } | ||||
|  | ||||
| function getDomain(){ | ||||
|     var url = window.location.href; | ||||
|     var arr = url.split("/"); | ||||
|     var result = arr[0] + "//" + arr[2]; | ||||
|     return result; | ||||
| function setCookie(){ | ||||
|     document.cookie = C_UUID + '=' +clientUUID; | ||||
|     document.cookie = C_ADV + '=' + advancedVisibility; | ||||
| } | ||||
|  | ||||
| function initializeUUID(){ | ||||
|     if(clientUUID == null || clientUUID == undefined || clientUUID == ''){ | ||||
|         clientUUID = json.clientUUID; | ||||
|         setCookie(); | ||||
|     } | ||||
| } | ||||
|  | ||||
| function httpStatusInvalid(){ | ||||
| @@ -71,56 +97,9 @@ function setDataModified(){ | ||||
|         document.getElementById("httpStatus").style.backgroundColor = color_red; | ||||
|         return; | ||||
|     } | ||||
|     dataModified = true; | ||||
|     $('#btn-save').addClass('active'); | ||||
|     $('#btn-save').click(getUpdate); | ||||
|     document.getElementById("httpStatus").style.backgroundColor = null; | ||||
| } | ||||
|  | ||||
| //Adding change listener to fields | ||||
| $('.data-field').change(setModified); | ||||
|  | ||||
| function setDataOrigin(){ | ||||
|     dataModified = false; | ||||
|     $('#btn-save').removeClass('active'); | ||||
|     $('#btn-save').off(); | ||||
| } | ||||
|  | ||||
| const idToDisplay = function(){ | ||||
|     let defaultId = json[0].mockedResponseId; | ||||
|     if(lastId == undefined || lastId == null) return defaultId; | ||||
|     for(let i=0; i<json.length; i++){ | ||||
|         if(json[i].mockedResponseId == lastId){ | ||||
|             return lastId; | ||||
|         } | ||||
|     } | ||||
|     if(jsonIndex <= json.length && jsonIndex > 0){ | ||||
|         jsonIndex -= 1; | ||||
|         return json[jsonIndex].mockedResponseId; | ||||
|     }  | ||||
|     return defaultId; | ||||
| } | ||||
|  | ||||
| function refreshData(){ | ||||
|     $("#uuid-input").val(clientUUID); | ||||
|     fillMessageList(); | ||||
|      | ||||
|     let id = idToDisplay(); | ||||
|      | ||||
|     loadMessage(id); | ||||
|      | ||||
| } | ||||
|  | ||||
| function setCookie(){ | ||||
|     document.cookie = C_UUID + '=' +clientUUID; | ||||
|     document.cookie = C_ID + '=' + lastId; | ||||
|     document.cookie = C_ADV + '=' + advancedVisibility; | ||||
| } | ||||
|  | ||||
| function loadCookies(){ | ||||
|     clientUUID = getCookie(C_UUID); | ||||
|     lastId = getCookie(C_ID); | ||||
|     advancedDisplayed = getCookie(C_ADV) == 'true'; | ||||
|         $('#btn-save').addClass('active'); | ||||
|         $('#btn-save').click(getUpdate); | ||||
|         document.getElementById("httpStatus").style.backgroundColor = null; | ||||
| } | ||||
|  | ||||
| function getCookie(cname) { | ||||
| @@ -139,28 +118,10 @@ function getCookie(cname) { | ||||
|     return ''; | ||||
| } | ||||
|  | ||||
| function callMethodByName(methodObject){ | ||||
|     let name = methodObject.name; | ||||
|     let id = methodObject.id; | ||||
|     switch(name){ | ||||
|         case addMessageName:  | ||||
|             addMessage(); | ||||
|             break; | ||||
|         case loadMessageName: | ||||
|             loadMessage(id); | ||||
|             break; | ||||
|         case removeMessageName: | ||||
|             removeMessage(id); | ||||
|             break; | ||||
|     } | ||||
| } | ||||
|  | ||||
|  | ||||
| function updateData(){ | ||||
|     var updatedJson = generateJson(); | ||||
|     var updatedJson = createRequestBody(); | ||||
|     const dataSaved = function () { | ||||
|         setDataOrigin(); | ||||
|         refreshData(); | ||||
|         loadFetchedMessage(); | ||||
|         savedModalDisplay(); | ||||
|     } | ||||
|     $.ajax({ | ||||
| @@ -169,159 +130,27 @@ function updateData(){ | ||||
|         data: JSON.stringify(updatedJson, null, 2), | ||||
|         contentType: "application/json", | ||||
|     }).done(dataSaved); | ||||
|     disableSaveButton(); | ||||
| } | ||||
|  | ||||
| function callAddMessage(){ | ||||
|     if(dataModified){ | ||||
|         setMethodToCall(addMessageName, null); | ||||
|         dataLossModalDisplay(); | ||||
|     } | ||||
|     else { | ||||
|         addMessage(); | ||||
|     } | ||||
| function loadFetchedMessage(){ | ||||
|     fillStaticFields( | ||||
|         json.clientUUID, | ||||
|         json.contentType, | ||||
|         json.messageBody, | ||||
|         json.httpStatus); | ||||
|     fillHeaderTable(json.httpHeaders); | ||||
|     initializeHistory(); | ||||
|     refreshHeaderTable(document.innerHTML); | ||||
| } | ||||
|  | ||||
| function addMessage(){ | ||||
|     $.ajax({ | ||||
|         url: host + '/api/mock/'+clientUUID, | ||||
|         type: 'POST', | ||||
|     }).done(dataRefresh); | ||||
| } | ||||
|  | ||||
| function callRemoveMessage(id){ | ||||
|     if(dataModified){ | ||||
|         setMethodToCall(removeMessageName, id); | ||||
|         dataLossModalDisplay(); | ||||
|     } | ||||
|     else { | ||||
|         removeMessage(id); | ||||
|     } | ||||
| } | ||||
|  | ||||
| function removeMessage(id){ | ||||
|     var jsonObject = findJsonById(id); | ||||
|     $.ajax({ | ||||
|         url: host + '/api/mock/'+clientUUID + '/' + id, | ||||
|         type: 'DELETE', | ||||
|     }).done(dataRefresh); | ||||
| } | ||||
|  | ||||
|  | ||||
| function clearMock(){ | ||||
|     fillStaticFields('','','',''); | ||||
|     htable_row = 0; | ||||
|     $('#httpStatusValues').html(''); | ||||
| } | ||||
|  | ||||
| function initializeMock(index){ | ||||
|         clearMock(); | ||||
|         fillStaticFields(json[index].clientUUID | ||||
|             , json[index].mockedResponseId | ||||
|             , json[index].mediaType | ||||
|             , json[index].messageBody | ||||
|             , json[index].httpStatus); | ||||
|         fillHeaderTable(json[index].httpHeaders); | ||||
| } | ||||
|  | ||||
| function fillStaticFields(uuid, id, mediaType, body, httpStatus){ | ||||
|     let link = createLink(uuid,id); | ||||
| function fillStaticFields(uuid, contentType, body, httpStatus){ | ||||
|     let link = createLink(uuid); | ||||
|     let linkHtml = '<a class="hyperlink" target="_blank" href="'+link+'">'+link+'</a>'; | ||||
|     $('#messageLink').html(linkHtml); | ||||
|     $('#httpStatus').val(httpStatus); | ||||
|     $('#uuid-input').val(uuid); | ||||
|     $('#typeSelector').val(mediaType); | ||||
|     $('#typeSelector').val(contentType); | ||||
|     $('#bodyEditor').val(body); | ||||
|     $('#mockedMessageId').html(id); | ||||
|  | ||||
| } | ||||
|  | ||||
| function changeEditionOfUUID(element){ | ||||
|  | ||||
|     var inputFieldId= "#uuid-input" | ||||
|     var inputFieldDiv = "#uuid-edit-field" | ||||
|     if(element.checked){ | ||||
|         $(inputFieldId).removeAttr('disabled'); | ||||
|         $(inputFieldDiv).removeClass('disabled'); | ||||
|     } else{ | ||||
|         $(inputFieldId).attr('disabled', true); | ||||
|         $(inputFieldDiv).addClass('disabled'); | ||||
|     } | ||||
| } | ||||
|  | ||||
| function copyUUIDToClipboard(){ | ||||
|     navigator.clipboard.writeText( document.getElementById('uuid-input').value ); | ||||
| } | ||||
|  | ||||
|  | ||||
| async function fetchUUIDCheck(givenUUID , strategy){ | ||||
|     var newUUID = "UUID" ; | ||||
|     url = host + "/api/mock/check/"; | ||||
|  | ||||
|     switch(strategy){ | ||||
|         case "new":{ | ||||
|             await fetch(url + givenUUID+ "/", { method : "GET" }) | ||||
|                 .then ( response => response.text() ) | ||||
|                 .then ( data => { | ||||
|                     newUUID = data; | ||||
|                      | ||||
|                 } ) | ||||
|             break; | ||||
|         } | ||||
|         case "restore":{ | ||||
|             await fetch(url + givenUUID + "/" + clientUUID + "/" , { method: "GET" }) | ||||
|                 .then (response => response.text() ) | ||||
|                 .then (data => { | ||||
|                     newUUID = data; | ||||
|                      | ||||
|                 } ) | ||||
|             break; | ||||
|         } | ||||
|     } | ||||
|     return newUUID ; | ||||
| } | ||||
|  | ||||
| function checkUUIDChars(uuid) { | ||||
|     uuid.replace(/ /g,'') | ||||
|     const regex = new RegExp("^[A-z0-9-]+$"); | ||||
|      | ||||
|     if(regex.test(uuid) && uuid != ""){ | ||||
|         return uuid ; | ||||
|     }  | ||||
|     return "invalid"; | ||||
|  } | ||||
|  | ||||
| function changeUUID(element){ | ||||
|  | ||||
|     const uuidStrategy = $('input[name="uuid-validation-type"]:checked').val(); | ||||
|     const givenUUID = checkUUIDChars(element.value); | ||||
|  | ||||
|     if( givenUUID == clientUUID ){ | ||||
|         $("#uuid-input").attr("disabled", true); | ||||
|         uuidChangeModalDisplay("noChg"); | ||||
|         return; | ||||
|     } | ||||
|  | ||||
|     var newUUID = fetchUUIDCheck(givenUUID , uuidStrategy); | ||||
|     var changeMessage = uuidStrategy; | ||||
|     newUUID | ||||
|     .then( data => { | ||||
|         if (givenUUID == data) {  | ||||
|             changeMessage = "success"; | ||||
|         } | ||||
|         clientUUID = data; | ||||
|         $("#editable").attr("checked", false); | ||||
|          | ||||
|         uuidChangeModalDisplay(changeMessage); | ||||
|         document.cookie = C_UUID + '=' + data ; | ||||
|     } ) | ||||
|     loadCookies(); | ||||
|     refreshData(); | ||||
| } | ||||
|  | ||||
|  | ||||
| function createLink(uuid, id){ | ||||
|     var link =  host + '/api/mock/r/'+uuid+'/'+id; | ||||
|     return link; | ||||
| } | ||||
|  | ||||
| function fillHeaderTable(headers){ | ||||
| @@ -331,10 +160,9 @@ function fillHeaderTable(headers){ | ||||
|  | ||||
| function refreshHeaderTable(html){ | ||||
|     $('#headerMapTable').html(html); | ||||
|     $('.table-map').change(function(){setDataModified()}); | ||||
|     $('.btn-hashmap').click(function(){ | ||||
|         $(this).closest('tr').remove(); | ||||
|         setDataModified(); | ||||
|         $(this).closest('tr').remove(); | ||||
|     }) | ||||
| } | ||||
|  | ||||
| @@ -353,19 +181,16 @@ function addRow(key, value){ | ||||
|     refreshHeaderTable(headersMapHtml); | ||||
| } | ||||
|  | ||||
| const newRowInput = function(){ | ||||
| function newRowInput(){ | ||||
|     const hName = $('#headerKeyInput'); | ||||
|     const hValue = $('#headerValueInput'); | ||||
|     if(checkIfInputValid(hName.val()) && checkIfInputValid(hValue.val())){ | ||||
|         addRow(hName.val(), hValue.val()); | ||||
|         hName.val(null); | ||||
|         hValue.val(null); | ||||
|         setDataModified(); | ||||
|     } | ||||
| } | ||||
|  | ||||
| $('#btn-newRow').click(newRowInput); | ||||
|  | ||||
| function checkIfInputValid(input){ | ||||
|     return !(input == '' || input == null || input == undefined); | ||||
| } | ||||
| @@ -396,134 +221,22 @@ function buildRowHtml(key, value){ | ||||
|     '</tr>'; | ||||
| } | ||||
|  | ||||
|  | ||||
| function fillMessageList(){ | ||||
|     $("#listItems").html(''); | ||||
|     var innerHTML = ''; | ||||
|     for(let i=0; i<json.length; i++){ | ||||
|         innerHTML += generateMessageTileHtml(json[i].mockedResponseId, json[i].httpStatus, json[i].mediaType); | ||||
|     } | ||||
|     $("#listItems").append(innerHTML); | ||||
|     $('.tile').click(function(e) { | ||||
|         var element = $(this); | ||||
|         var button = element.find('.btn-tile').children().get(0); | ||||
|          | ||||
|         if(!(button == e.target)){ | ||||
|              | ||||
|             callLoadMessage(parseInt($(this).attr('tileid'))); | ||||
|         } | ||||
|     }); | ||||
|     $('.btn-tile').click(function(){ | ||||
|         //  | ||||
|         callRemoveMessage($(this).closest('.tile').attr('tileId')); | ||||
|     }) | ||||
| } | ||||
|  | ||||
| function findJsonById(id){ | ||||
|     return json[findJsonIndexById(id)]; | ||||
| } | ||||
|  | ||||
| function findJsonIndexById(id){ | ||||
|     for(let i=0; i<json.length; i++) | ||||
|         if(id == json[i].mockedResponseId) return i; | ||||
| } | ||||
|  | ||||
| function callLoadMessage(id){ | ||||
|     if(dataModified) { | ||||
|         setMethodToCall(loadMessageName, id); | ||||
|         dataLossModalDisplay(); | ||||
|     } | ||||
|     else { | ||||
|         loadMessage(id); | ||||
|     } | ||||
| } | ||||
|  | ||||
| function loadMessage(id){ | ||||
|     if(id == null || id == undefined){ | ||||
|          | ||||
|         return; | ||||
|     } | ||||
|     lastId = id; | ||||
|     setCookie(); | ||||
|     setDataOrigin(); | ||||
|     for(let i=0; i<json.length; i++){ | ||||
|          | ||||
|         if(id == json[i].mockedResponseId){ | ||||
|             jsonIndex = i; | ||||
|              | ||||
|             initializeMock(jsonIndex); | ||||
|              | ||||
|             selectMessage(id); | ||||
|              | ||||
|             return; | ||||
|         } | ||||
|     } | ||||
|      | ||||
| } | ||||
|  | ||||
|  | ||||
| function selectMessage(id){ | ||||
|     const tiles = $('.tile'); | ||||
|      | ||||
|     tiles.removeClass("active"); | ||||
|      | ||||
|     $('.tile[tileid="'+id+'"]').addClass("active"); | ||||
|      | ||||
|     initializeHistory(); | ||||
|     refreshHeaderTable(document.innerHTML); | ||||
| } | ||||
|  | ||||
|  | ||||
|  | ||||
| function generateMessageTileHtml(id, httpStatus, mediaType){ | ||||
|     var innerHTML = '' + | ||||
|     '<div tileid="' + id + '" class="tile">' + | ||||
|         '<div class="content">' + | ||||
|             '<div class="display-space-between">' + | ||||
|                 '<div class="centered-vertically">' + | ||||
|                     '<p>Id: ' + id + '</p>' + | ||||
|                     '<p>Status: ' + httpStatus + '</p>' + | ||||
|                 '</div>' + | ||||
|                 '<div>' + | ||||
|                     '<button class="modification-button btn-tile"><i class="icon-cancel"></i></button>' + | ||||
|                 '</div>' + | ||||
|             '</div>' + | ||||
|         '</div>' + | ||||
|     '</div>'; | ||||
|     return innerHTML; | ||||
| } | ||||
|  | ||||
|  | ||||
|  | ||||
| const onbuild = function(){ | ||||
|     loadCookies(); | ||||
|     getData(); | ||||
|     if(advancedDisplayed) { | ||||
|         changeAdvancedVisibility(); | ||||
|     } | ||||
| } | ||||
|  | ||||
| $(document).ready(onbuild); | ||||
|  | ||||
| function sleep(ms) { | ||||
|     return new Promise(resolve => setTimeout(resolve, ms)); | ||||
| } | ||||
|  | ||||
|  | ||||
|  | ||||
| function generateJson(){ | ||||
| function createRequestBody(){ | ||||
|     var newJson = | ||||
|         { | ||||
|             clientUUID: json[jsonIndex].clientUUID, | ||||
|             mockedResponseId: json[jsonIndex].mockedResponseId, | ||||
|             mediaType: $('#typeSelector').val(), | ||||
|             clientUUID: json.clientUUID, | ||||
|             contentType: $('#typeSelector').val(), | ||||
|             messageBody: $('#bodyEditor').val(), | ||||
|             httpStatus: $('#httpStatus').val(), | ||||
|             httpHeaders: {}, | ||||
|         }; | ||||
|     newJson['httpHeaders'] = convertTableToJson(); | ||||
|      | ||||
|     json[jsonIndex] = newJson; | ||||
|     json = newJson; | ||||
|     return newJson; | ||||
| } | ||||
|  | ||||
| @@ -538,4 +251,4 @@ function convertTableToJson(){ | ||||
|         obj[key] = rows.eq(i).children().eq(1).children().eq(0).val(); | ||||
|     } | ||||
|     return obj; | ||||
| } | ||||
| } | ||||
|   | ||||
| @@ -1,40 +1,8 @@ | ||||
| var historyJson = {}; | ||||
| const maxIterations = 200; | ||||
|  | ||||
| function filterHistory(){ | ||||
|     var dateFrom = new Date($('#historyFrom').val() + 'T' + $('#historyTimeFrom').val()); | ||||
|      | ||||
|     var dateTo = new Date($('#historyTo').val() + 'T' + $('#historyTimeTo').val()); | ||||
|          | ||||
|     loadHistory(dateFrom, dateTo); | ||||
| } | ||||
|  | ||||
| const startSearch = function(){ | ||||
|     filterHistory(); | ||||
| } | ||||
| $('#btn-searchHistory').click(startSearch); | ||||
|  | ||||
| function loadHistory(dateFrom, dateTo){ | ||||
|      | ||||
|     var eventRequest = { | ||||
|         clientUUID : json[jsonIndex].clientUUID, | ||||
|         localDateTimeFrom : dateFrom, | ||||
|         localDateTimeTo : dateTo, | ||||
|         mockedResponseId : json[jsonIndex].mockedResponseId | ||||
|     }; | ||||
|     $.ajax({ | ||||
|         url: host + '/api/event', | ||||
|         type: 'POST', | ||||
|         data: JSON.stringify(eventRequest, null, 2), | ||||
|         contentType: "application/json" | ||||
|     }).done(function(data){ | ||||
|         historyJson = data; | ||||
|         displayHistory(); | ||||
|     }); | ||||
| } | ||||
|  | ||||
| function getLast24hHistoryData(){ | ||||
|     $.getJSON(host + '/api/event/' + clientUUID + '/' + lastId, function(data){ | ||||
| function getHistoryData(){ | ||||
|     $.getJSON(host + '/api/event/' + clientUUID, function(data){ | ||||
|         historyJson = data; | ||||
|         displayHistory(); | ||||
|     }); | ||||
|   | ||||
| @@ -48,7 +48,7 @@ function showHistory(){ | ||||
|  | ||||
| function initializeHistory(){ | ||||
|     historyFilter.removeClass('active'); | ||||
|     getLast24hHistoryData(); | ||||
|     getHistoryData(); | ||||
| } | ||||
|  | ||||
| function showHeaders(){ | ||||
| @@ -60,9 +60,9 @@ function showHeaders(){ | ||||
|     $('#headersTab').off('click'); | ||||
| } | ||||
|  | ||||
| function showHeadersHistory(element){ | ||||
| function showHeadersHistory(record){ | ||||
|    historyTable = ''; | ||||
|    headers = parseHeaders(element.id) | ||||
|    headers = parseHeaders(record.id) | ||||
|    headers.forEach( | ||||
|     (value,key) => { | ||||
|         historyTable += | ||||
| @@ -176,7 +176,7 @@ function focusOutTip(element){ | ||||
| } | ||||
|  | ||||
| function refreshHistoryRecords(){ | ||||
|     getLast24hHistoryData(); | ||||
|     getHistoryData(); | ||||
| } | ||||
|  | ||||
| function hidTip(element){ | ||||
| @@ -229,19 +229,5 @@ $('#btnSave').focusin(function(){focusInTip('btnSaveTip')}); | ||||
| $('#btnSave').mouseleave(function(){hidTip('btnSaveTip')}); | ||||
| $('#btnSave').focusout(function(){focusOutTip('btnSaveTip')}); | ||||
|  | ||||
| $('#new-tile').mouseover(function(){showTip('btn-newTileTip');}); | ||||
| $('#new-tile').mouseleave(function(){hidTip('btn-newTileTip')}); | ||||
| $('#new-tile').focusout(function(){focusOutTip('btn-newTileTip')}); | ||||
|  | ||||
| $('#listItems').mouseover(function(){showTip('messagesTip');}); | ||||
| $('#listItems').mouseleave(function(){hidTip('messagesTip')}); | ||||
|  | ||||
|  | ||||
| $('#uuid-edit-field').mouseover(function(){ showTip('UUIDFieldTip') }); | ||||
| $('#uuid-edit-field').mouseleave(function(){ hidTip('UUIDFieldTip') }); | ||||
|  | ||||
| $('#uuid-validation-strategy').mouseover(function(){ showTip('UUIDValidationStrategyTip') }); | ||||
| $('#uuid-validation-strategy').mouseleave(function(){ hidTip('UUIDValidationStrategyTip') }); | ||||
|  | ||||
| $('#editableBlock').mouseover( function(){ showTip('UUIDEditionTip') } ); | ||||
| $('#editableBlock').mouseleave(function(){ hidTip('UUIDEditionTip') }); | ||||
| $('#listItems').mouseleave(function(){hidTip('messagesTip')}); | ||||
		Reference in New Issue
	
	Block a user