mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-10 17:38:41 +00:00
77 lines
2.4 KiB
JavaScript
77 lines
2.4 KiB
JavaScript
import { jsOMS } from '../../../Utils/oLib.js';
|
|
import { UriFactory } from '../../../Uri/UriFactory.js';
|
|
|
|
/**
|
|
* Set value of input.
|
|
*
|
|
* @param {Object} action Action data
|
|
* @param {function} callback Callback
|
|
* @param {string} id Action element
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
export function domSetValue (action, callback, id)
|
|
{
|
|
'use strict';
|
|
|
|
let dataPath = action.value;
|
|
let path = '';
|
|
let tempDataValue = '';
|
|
let replaceText = '';
|
|
let start = 0;
|
|
let end = 0;
|
|
|
|
while (dataPath.indexOf('http') !== 0 && (start = dataPath.indexOf('{', start)) !== -1) {
|
|
end = dataPath.indexOf('}', start);
|
|
start++;
|
|
|
|
path = dataPath.substring(start, end);
|
|
/** global: jsOMS */
|
|
tempDataValue = jsOMS.getArray(path, action.data, '/');
|
|
|
|
replaceText = '{' + path + '}';
|
|
dataPath = dataPath.replace(new RegExp(replaceText.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'), 'g'), tempDataValue);
|
|
}
|
|
|
|
const fill = action.base === 'self'
|
|
? (action.selector === ''
|
|
? [document.getElementById(id)]
|
|
: document.getElementById(id).querySelectorAll(action.selector))
|
|
: document.querySelectorAll(action.selector);
|
|
|
|
for (const i in fill) {
|
|
/** global: HTMLElement */
|
|
if (!Object.prototype.hasOwnProperty.call(fill, i) || !(fill[i] instanceof HTMLElement)) {
|
|
continue;
|
|
}
|
|
|
|
if (fill[i].tagName.toLowerCase() === 'div'
|
|
|| fill[i].tagName.toLowerCase() === 'span'
|
|
) {
|
|
if (!fill[i].innerHTML.includes(dataPath)) {
|
|
if (action.overwrite) {
|
|
fill[i].innerHTML = dataPath;
|
|
} else if (!action.overwrite) {
|
|
fill[i].innerHTML += dataPath;
|
|
}
|
|
}
|
|
} else if (fill[i].tagName.toLowerCase() === 'iframe') {
|
|
fill[i].src = UriFactory.build(dataPath);
|
|
} else {
|
|
if (fill[i].value !== dataPath
|
|
&& !fill[i].value.includes(', ' + dataPath + ',')
|
|
&& !fill[i].value.endsWith(', ' + dataPath)
|
|
&& !fill[i].value.startsWith(dataPath + ',')
|
|
) {
|
|
if (action.overwrite) {
|
|
fill[i].value = dataPath;
|
|
} else {
|
|
fill[i].value += (fill[i].value !== '' ? ', ' : '') + dataPath;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
callback(action.data);
|
|
};
|