mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
66 lines
1.4 KiB
JavaScript
66 lines
1.4 KiB
JavaScript
/**
|
|
* UI manager for handling basic ui elements.
|
|
*
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
(function (jsOMS)
|
|
{
|
|
"use strict";
|
|
|
|
/** @namespace jsOMS.UI */
|
|
jsOMS.Autoloader.defineNamespace('jsOMS.UI');
|
|
|
|
/**
|
|
* @constructor
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
jsOMS.UI.GeneralUI = function ()
|
|
{
|
|
};
|
|
|
|
/**
|
|
* Bind button.
|
|
*
|
|
* @param {string} [id] Button id (optional)
|
|
*
|
|
* @method
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
jsOMS.UI.GeneralUI.prototype.bind = function (id)
|
|
{
|
|
let e = null;
|
|
if (typeof id !== 'undefined') {
|
|
e = document.getElementById(id);
|
|
}
|
|
|
|
this.bindHref(e);
|
|
};
|
|
|
|
/**
|
|
* Bind & rebind UI element.
|
|
*
|
|
* @param {Object} [e] Element id
|
|
*
|
|
* @method
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
jsOMS.UI.GeneralUI.prototype.bindHref = function (e)
|
|
{
|
|
e = e !== null ? e.querySelectorAll('[data-href]') : document.querySelectorAll('[data-href]');
|
|
const length = e.length;
|
|
|
|
for(let i = 0; i < length; i++) {
|
|
e[i].addEventListener('click', function(event) {
|
|
jsOMS.preventAll(event);
|
|
window.location = jsOMS.Uri.UriFactory.build(this.getAttribute('data-href'));
|
|
});
|
|
}
|
|
};
|
|
}(window.jsOMS = window.jsOMS || {}));
|