mirror of
https://github.com/Karaka-Management/oms-Search.git
synced 2026-01-11 18:48:41 +00:00
126 lines
3.4 KiB
JavaScript
126 lines
3.4 KiB
JavaScript
import { Autoloader } from '../../jsOMS/Autoloader.js';
|
|
import { Application } from '../../Web/Backend/js/backend.js';
|
|
import { Search } from './Models/Search.js';
|
|
|
|
Autoloader.defineNamespace('jsOMS.Modules');
|
|
|
|
/**
|
|
* Search controller.
|
|
*
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
jsOMS.Modules.Search = class {
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
constructor() {
|
|
this.navigation = {};
|
|
/** global: jsOMS */
|
|
/** global: localStorage */
|
|
this.rawNavData = JSON.parse(window.localStorage.getItem(Search.MODULE_NAME));
|
|
this.rawNavData = this.rawNavData !== null ? this.rawNavData : {};
|
|
};
|
|
|
|
/**
|
|
* Bind navigation
|
|
*
|
|
* @param {string} id Search to bind (optional)
|
|
*
|
|
* @return {void}
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
bind (id) {
|
|
const e = typeof id === 'undefined' ? document.getElementsByClassName('nav') : [document.getElementById(id)],
|
|
length = e.length;
|
|
|
|
for (let i = 0; i < length; ++i) {
|
|
this.bindElement(e[i]);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Bind navigation element
|
|
*
|
|
* @param {Element} e Element to bind
|
|
*
|
|
* @return {void}
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
bindElement (e) {
|
|
if (typeof e === 'undefined' || !e) {
|
|
// todo: do logging here
|
|
|
|
return;
|
|
}
|
|
|
|
const extend = e.querySelectorAll('li label'),
|
|
self = this;
|
|
|
|
this.navigation[e.id] = new Search(this.rawNavData[e.id]);
|
|
|
|
// On load
|
|
const open = this.navigation[e.id].getOpen();
|
|
let ele = null;
|
|
|
|
for (let key in open) {
|
|
if (open.hasOwnProperty(key) && (ele = document.getElementById(key)) !== null) {
|
|
ele.checked = open[key];
|
|
}
|
|
}
|
|
|
|
if (!this.navigation[e.id].isVisible()) {
|
|
let width = window.innerWidth
|
|
|| document.documentElement.clientWidth
|
|
|| document.body.clientWidth;
|
|
|
|
// todo: still buggy maybe always set true if < 800 and only call this if if >= 800
|
|
e.nextElementSibling.checked = width < 800;
|
|
}
|
|
|
|
e.scrollTop = this.navigation[e.id].getScrollPosition().y;
|
|
e.scrollLeft = this.navigation[e.id].getScrollPosition().x;
|
|
|
|
// Bind minimize/maximize
|
|
jsOMS.addEventListenerToAll(extend, 'click', function () {
|
|
let box = document.getElementById(this.getAttribute('for'));
|
|
|
|
if (!box.checked) {
|
|
self.navigation[e.id].setOpen(box.id);
|
|
} else {
|
|
self.navigation[e.id].setClose(box.id);
|
|
}
|
|
|
|
localStorage.setItem(Search.MODULE_NAME, JSON.stringify(self.navigation));
|
|
});
|
|
|
|
// Bind show/hide
|
|
e.addEventListener('change', function () {
|
|
self.navigation[e.id].setVisible(this.checked);
|
|
localStorage.setItem(Search.MODULE_NAME, JSON.stringify(self.navigation));
|
|
});
|
|
|
|
// Bind scroll
|
|
e.addEventListener('scroll', function () {
|
|
self.navigation[e.id].setScrollPosition(this.scrollLeft, this.scrollTop);
|
|
localStorage.setItem(Search.MODULE_NAME, JSON.stringify(self.navigation));
|
|
});
|
|
};
|
|
};
|
|
|
|
/**
|
|
* Module id
|
|
*
|
|
* @var {string}
|
|
* @since 1.0.0
|
|
*/
|
|
Search.MODULE_NAME = '1000500001';
|
|
|
|
window.omsApp.moduleManager.get('Search').bind('nav-side');
|