mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
161 lines
No EOL
4.6 KiB
JavaScript
161 lines
No EOL
4.6 KiB
JavaScript
/*
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
*
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import {Controller} from "@hotwired/stimulus";
|
|
|
|
import {BSTreeView, BSTreeViewNode, BS5Theme, FAIconTheme, EVENT_INITIALIZED} from "@jbtronics/bs-treeview";
|
|
import "@jbtronics/bs-treeview/styles/bs-treeview.css";
|
|
|
|
export default class extends Controller {
|
|
static targets = [ "tree" ];
|
|
|
|
/** @type {string} */
|
|
_url = null;
|
|
/** @type {BSTreeViewNode[]} */
|
|
_data = null;
|
|
|
|
/** @type {boolean} */
|
|
_showTags = false;
|
|
|
|
/**
|
|
* @type {BSTreeView}
|
|
* @private
|
|
*/
|
|
_tree = null;
|
|
|
|
connect() {
|
|
const treeElement = this.treeTarget;
|
|
if (!treeElement) {
|
|
console.error("You need to define a tree target for the controller!");
|
|
return;
|
|
}
|
|
|
|
this._url = this.element.dataset.treeUrl;
|
|
this._data = this.element.dataset.treeData;
|
|
|
|
if(this.element.dataset.treeShowTags === "true") {
|
|
this._showTags = true;
|
|
}
|
|
|
|
this.reinitTree();
|
|
}
|
|
|
|
reinitTree()
|
|
{
|
|
//Fetch data and initialize tree
|
|
this._getData()
|
|
.then(this._fillTree.bind(this))
|
|
.catch((err) => {
|
|
console.error("Could not load the tree data: " + err);
|
|
});
|
|
}
|
|
|
|
setData(data) {
|
|
this._data = data;
|
|
this.reinitTree();
|
|
}
|
|
|
|
setURL(url) {
|
|
this._url = url;
|
|
this.reinitTree();
|
|
}
|
|
|
|
_fillTree(data) {
|
|
if(this._tree) {
|
|
this._tree.remove();
|
|
}
|
|
|
|
this._tree = new BSTreeView(this.treeTarget, {
|
|
levels: 1,
|
|
showTags: this._showTags,
|
|
data: data,
|
|
showIcon: true,
|
|
onNodeSelected: (event) => {
|
|
const node = event.detail.node;
|
|
if (node.href) {
|
|
window.Turbo.visit(node.href, {action: "advance"});
|
|
}
|
|
},
|
|
//onNodeContextmenu: contextmenu_handler,
|
|
}, [BS5Theme, FAIconTheme]);
|
|
|
|
this.treeTarget.addEventListener(EVENT_INITIALIZED, (event) => {
|
|
/** @type {BSTreeView} */
|
|
const treeView = event.detail.treeView;
|
|
treeView.revealNode(treeView.getSelected());
|
|
|
|
//Add contextmenu event listener to the tree, which allows us to open the links in a new tab with a right click
|
|
treeView.getTreeElement().addEventListener("contextmenu", this._onContextMenu.bind(this));
|
|
});
|
|
|
|
}
|
|
|
|
_onContextMenu(event)
|
|
{
|
|
//Find the node that was clicked and open link in new tab
|
|
const node = this._tree._domToNode(event.target);
|
|
if(node && node.href) {
|
|
event.preventDefault();
|
|
window.open(node.href, '_blank');
|
|
}
|
|
}
|
|
|
|
collapseAll() {
|
|
this._tree.collapseAll({silent: true});
|
|
}
|
|
|
|
expandAll() {
|
|
this._tree.expandAll({silent: true});
|
|
}
|
|
|
|
searchInput(event) {
|
|
const data = event.target.value;
|
|
//Do nothing if no data was passed
|
|
|
|
const tree = this.treeTarget;
|
|
this._tree.collapseAll({silent: true});
|
|
this._tree.search(data);
|
|
|
|
//Rereveal the selected node again
|
|
this._tree.revealNode(this._tree.getSelected());
|
|
}
|
|
|
|
/**
|
|
* Check if the tree is already initialized (meaning bootstrap treeview was called on the object)
|
|
* @private
|
|
*/
|
|
_isInitialized() {
|
|
return this._tree !== null;
|
|
}
|
|
|
|
_getData() {
|
|
//Use lambda function to preserve this context
|
|
return new Promise((myResolve, myReject) => {
|
|
//If a url is defined, fetch the data from the url
|
|
if (this._url) {
|
|
return fetch(this._url)
|
|
.then((response) => myResolve(response.json()))
|
|
.catch((err) => myReject(err));
|
|
}
|
|
|
|
//Otherwise load the data provided via the data attribute
|
|
return myResolve(this._data);
|
|
});
|
|
}
|
|
} |