// ------------------------------------------------------------------- // Get all plugin prefixes of a given type function getPluginsByType(pluginsData, pluginType, onlyEnabled) { var result = [] pluginsData.forEach((plug) => { if(plug.plugin_type == pluginType) { // collect all, or if only enabled, check if NOT disabled if (onlyEnabled == false || (onlyEnabled && getSetting(plug.unique_prefix + '_RUN') != 'disabled')) { result.push(plug.unique_prefix) } } }); return result; } // ------------------------------------------------------------------- // Get plugin code name base on prefix function getPluginCodeName(pluginsData, prefix) { var result = "" pluginsData.forEach((plug) => { if (plug.unique_prefix == prefix ) { id = plug.code_name; // console.log(id) result = plug.code_name; } }); return result; } // ------------------------------------------------------------------- // Get plugin type base on prefix function getPluginType(pluginsData, prefix) { var result = "core" pluginsData.forEach((plug) => { if (plug.unique_prefix == prefix ) { id = plug.plugin_type; // console.log(id) result = plug.plugin_type; } }); return result; } // ------------------------------------------------------------------- // Get plugin config based on prefix function getPluginConfig(pluginsData, prefix) { result = "" pluginsData.forEach((plug) => { if (plug.unique_prefix == prefix ) { // console.log(id) result = plug; } }); return result; } // ------------------------------------------------------------------- // Generate plugin HTML card based on prefixes in an array function pluginCards(prefixesOfEnabledPlugins, includeSettings) { html = "" prefixesOfEnabledPlugins.forEach((prefix) => { includeSettings_html = '' includeSettings.forEach((set) => { includeSettings_html += `
${getSetting(prefix + '_' + set)}
` }); html += `
${getString(prefix+"_icon")}
` }); return html; } // ----------------------------------------------------------------------------- // Open or close all settings // ----------------------------------------------------------------------------- function toggleAllSettings(openOrClose = '') { inStr = ' in'; allOpen = true; openIcon = 'fa-angle-double-down'; closeIcon = 'fa-angle-double-up'; $('.panel-collapse').each(function(){ if($(this).attr('class').indexOf(inStr) == -1) { allOpen = false; } }) if(allOpen == false || openOrClose == 'open') { // open all openAllSettings() $('#toggleSettings').attr('class', $('#toggleSettings').attr('class').replace(openIcon, closeIcon)) } else{ // close all $('div[data-myid="collapsible"]').each(function(){$(this).attr('class', 'panel-collapse collapse ')}) $('#toggleSettings').attr('class', $('#toggleSettings').attr('class').replace(closeIcon, openIcon)) } } function openAllSettings() { $('div[data-myid="collapsible"]').each(function(){$(this).attr('class', 'panel-collapse collapse in')}) $('div[data-myid="collapsible"]').each(function(){$(this).attr('style', 'height:inherit')}) } // ------------------------------------------------------------------- // Checks if all schedules are the same function schedulesAreSynchronized(prefixesOfEnabledPlugins, pluginsData) { plug_schedules = [] prefixesOfEnabledPlugins.forEach((prefix) => { pluginsData.forEach((plug) => { if (plug.unique_prefix == prefix) { plug_schedules.push(getSetting(prefix+"_RUN_SCHD").replace(/\s/g, "")) // replace all white characters to compare them easier } }); }); // Check if all plug_schedules are the same if (plug_schedules.length > 0) { const firstSchedule = plug_schedules[0]; return plug_schedules.every((schedule) => schedule === firstSchedule); } return true; // Return true if no schedules are found } // ------------------------------------------------------------------- // Checks if value is already encoded function isSHA256(value) { // Check if the value is a string and has a length of 64 characters if (typeof value === "string" && value.length === 64) { // Check if the value contains only hexadecimal characters return /^[0-9a-fA-F]+$/.test(value); } else { return false; } } // ------------------------------------------------------------------- // Manipulating Editable List options // ------------------------------------------------------------------- // ------------------------------------------------------------------- // Function to remove an item from the select element function removeOptionItem(option) { settingsChanged(); option.remove(); } // ------------------------------------------------------------------- // Update value of an item from the select element function updateOptionItem(option, value) { settingsChanged(); option.html(value); } // ------------------------------------------------------------------- // Remove all options function removeAllOptions(element) { settingsChanged(); $(`#${$(element).attr('my-input')}`).empty(); } // ------------------------------------------------------------------- // Function to initialize remove functionality on select options // Counter to track number of clicks let clickCounter = 0; // Function to initialize list interaction options function initListInteractionOptions(selectorId) { // Select all options within the specified selector const $options = $(`#${selectorId} option`); // Add class to make options interactable $options.addClass('interactable-option'); // Attach click event listener to options $options.on('click', function() { const $option = $(this); console.log('aaa'); // Increment click counter clickCounter++; // Delay to capture multiple clicks setTimeout(() => { // Perform action based on click count if (clickCounter === 1) { // Single-click action showModalFieldInput( ` ${getString('Gen_Update_Value')}`, getString('settings_update_item_warning'), getString('Gen_Cancel'), getString('Gen_Update'), $option.html(), function() { updateOptionItem($option, $(`#modal-field-input-field`).val()) } ); } else if (clickCounter === 2) { // Double-click action removeOptionItem($option); } // Reset click counter clickCounter = 0; }, 300); // Adjust delay as needed }); } // ------------------------------------------------------------------- // Function to filter rows based on input text function filterRows(inputText) { if(!inputText) { inputText = '' } $('.table_row').each(function() { // Check if the row id ends with '__metadata' var idAttribute = $(this).attr('id'); if (idAttribute && idAttribute.endsWith('__metadata')) { $(this).hide(); // Hide the row if it ends with '__metadata' return; // Skip to the next iteration } var description = $(this).find('.setting_description').text().toLowerCase(); var codeName = $(this).find('.setting_name code').text().toLowerCase(); if (description.includes(inputText.toLowerCase()) || codeName.includes(inputText.toLowerCase())) { $(this).show(); // Show the row if it matches the input text } else { $(this).hide(); // Hide the row if it doesn't match the input text } }); } setTimeout(() => { // Event listener for input change $('#settingsSearch').on('input', function() { var searchText = $(this).val(); // hide the setting overview dashboard $('#settingsOverview').collapse('hide'); filterRows(searchText); }); // Event listener for input focus // var firstFocus = true; $('#settingsSearch').on('focus', function() { openAllSettings() }); }, 1000);