tg-prepare 2.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tg_prepare-2.2.2.dist-info/METADATA +20 -0
- tg_prepare-2.2.2.dist-info/RECORD +82 -0
- tg_prepare-2.2.2.dist-info/WHEEL +5 -0
- tg_prepare-2.2.2.dist-info/entry_points.txt +4 -0
- tg_prepare-2.2.2.dist-info/licenses/LICENSE +202 -0
- tg_prepare-2.2.2.dist-info/projects/.secret_key +1 -0
- tg_prepare-2.2.2.dist-info/top_level.txt +2 -0
- tgp_backend/__init__.py +17 -0
- tgp_backend/auth.py +71 -0
- tgp_backend/cli.py +95 -0
- tgp_backend/config.py +35 -0
- tgp_backend/directories.py +79 -0
- tgp_backend/interfaces.py +3 -0
- tgp_backend/nextcloud.py +146 -0
- tgp_backend/project.py +468 -0
- tgp_backend/session_manager.py +47 -0
- tgp_backend/tgclient.py +187 -0
- tgp_backend/user.py +137 -0
- tgp_backend/util.py +131 -0
- tgp_ui/__init__.py +0 -0
- tgp_ui/app.py +150 -0
- tgp_ui/routes/__init__.py +0 -0
- tgp_ui/routes/auth.py +72 -0
- tgp_ui/routes/collection.py +319 -0
- tgp_ui/routes/data.py +229 -0
- tgp_ui/routes/project.py +103 -0
- tgp_ui/routes/publication.py +229 -0
- tgp_ui/routes/tabs.py +34 -0
- tgp_ui/routes/views.py +66 -0
- tgp_ui/static/css/bootstrap-icons.min.css +5 -0
- tgp_ui/static/css/bootstrap.min.css +6 -0
- tgp_ui/static/css/bootstrap.min.css.map +1 -0
- tgp_ui/static/css/main.css +141 -0
- tgp_ui/static/css/navbar.css +92 -0
- tgp_ui/static/css/simpleXML.css +67 -0
- tgp_ui/static/img/favicon.ico +0 -0
- tgp_ui/static/img/textgrid-logo.svg +1 -0
- tgp_ui/static/js/bootstrap.bundle.min.js +7 -0
- tgp_ui/static/js/collectionManager.js +60 -0
- tgp_ui/static/js/fileManager.js +153 -0
- tgp_ui/static/js/jquery.min.js +2 -0
- tgp_ui/static/js/main.js +36 -0
- tgp_ui/static/js/modalManager.js +105 -0
- tgp_ui/static/js/navbarManager.js +151 -0
- tgp_ui/static/js/projectManager.js +60 -0
- tgp_ui/static/js/require.js +5 -0
- tgp_ui/static/js/sidebarManager.js +44 -0
- tgp_ui/static/js/simpleXML.js +193 -0
- tgp_ui/static/js/tabManager.js +83 -0
- tgp_ui/templates/auth/login.html +42 -0
- tgp_ui/templates/details/empty_container.html +16 -0
- tgp_ui/templates/details/manage_collection.html +209 -0
- tgp_ui/templates/file_tree.html +39 -0
- tgp_ui/templates/includes/get_sessionid.html +29 -0
- tgp_ui/templates/includes/publish_form.html +55 -0
- tgp_ui/templates/includes/set_sessionid.html +26 -0
- tgp_ui/templates/includes/upload_form.html +258 -0
- tgp_ui/templates/layout.html +74 -0
- tgp_ui/templates/macros.html +101 -0
- tgp_ui/templates/modal/delete_project.html +25 -0
- tgp_ui/templates/modal/empty_container.html +9 -0
- tgp_ui/templates/modal/file_explorer_content.html +34 -0
- tgp_ui/templates/modal/file_explorer_main.html +22 -0
- tgp_ui/templates/modal/file_explorer_nextcloud.html +27 -0
- tgp_ui/templates/modal/github_modal.html +29 -0
- tgp_ui/templates/modal/nextcloud_login.html +48 -0
- tgp_ui/templates/modal/tei_explorer.html +58 -0
- tgp_ui/templates/modal/xpath_parser.html +52 -0
- tgp_ui/templates/nxc_login.html +25 -0
- tgp_ui/templates/nxc_tab.html +15 -0
- tgp_ui/templates/project_main.html +36 -0
- tgp_ui/templates/project_navbar.html +81 -0
- tgp_ui/templates/projects_main.html +58 -0
- tgp_ui/templates/tabs/check_upload.html +87 -0
- tgp_ui/templates/tabs/edit_project.html +113 -0
- tgp_ui/templates/tabs/empty_container.html +12 -0
- tgp_ui/templates/tabs/import_data.html +122 -0
- tgp_ui/templates/tabs/manage_collections.html +107 -0
- tgp_ui/templates/tabs/publication.html +42 -0
- tgp_ui/templates/tabs/select_directories.html +68 -0
- tgp_ui/templates/tabs/upload.html +42 -0
- tgp_ui/templates/tabs/validate_metadata.html +227 -0
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
define([], function () {
|
|
2
|
+
const NavbarManager = {
|
|
3
|
+
resetButtons: function (buttons, additionalClasses = []) {
|
|
4
|
+
buttons.forEach(btn => {
|
|
5
|
+
btn.classList.remove('animate-to-long', 'border-primary', ...additionalClasses);
|
|
6
|
+
const icon = btn.querySelector('i');
|
|
7
|
+
const subButtons = btn.querySelector('.sub-buttons');
|
|
8
|
+
|
|
9
|
+
if (icon) icon.classList.remove('d-none');
|
|
10
|
+
if (subButtons) {
|
|
11
|
+
subButtons.classList.add('d-none');
|
|
12
|
+
subButtons.style.opacity = '0';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
btn.style.width = ''; // Reset width
|
|
16
|
+
|
|
17
|
+
// Füge für kleine Buttons die Outline-Secondary-Klasse wieder hinzu
|
|
18
|
+
if (btn.classList.contains('btn-sm')) {
|
|
19
|
+
btn.classList.add('btn-outline-secondary');
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
activateButton: function (button, index, buttons) {
|
|
25
|
+
// Vorherige Buttons hervorheben / Progress anzeigen
|
|
26
|
+
for (let i = 0; i <= index; i++) {
|
|
27
|
+
buttons[i].classList.add('border-primary');
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// Aktuellen Button erweitern
|
|
31
|
+
button.classList.add('animate-to-long');
|
|
32
|
+
const icon = button.querySelector('i');
|
|
33
|
+
const subButtons = button.querySelector('.sub-buttons');
|
|
34
|
+
|
|
35
|
+
if (icon) icon.classList.add('d-none');
|
|
36
|
+
if (subButtons) {
|
|
37
|
+
subButtons.classList.remove('d-none');
|
|
38
|
+
setTimeout(() => {
|
|
39
|
+
subButtons.style.opacity = '1';
|
|
40
|
+
}, 300);
|
|
41
|
+
|
|
42
|
+
// Ersten kleinen Button klicken, wenn kein last-opened vorhanden
|
|
43
|
+
const lastOpenedButton = subButtons.querySelector('.last-opened');
|
|
44
|
+
if (lastOpenedButton) {
|
|
45
|
+
lastOpenedButton.click();
|
|
46
|
+
} else {
|
|
47
|
+
const firstSmButton = subButtons.querySelector('.btn-sm');
|
|
48
|
+
if (firstSmButton) firstSmButton.click();
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Dynamische Breite basierend auf kleinen Buttons
|
|
53
|
+
const smallButtonsCount = subButtons?.querySelectorAll('.btn-sm').length || 0;
|
|
54
|
+
const sizeAdjustment = smallButtonsCount * 5.4;
|
|
55
|
+
button.style.width = `${sizeAdjustment}rem`;
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
adjustLine: function (button) {
|
|
59
|
+
const container = document.querySelector('.container.bg'); // Container der Buttons
|
|
60
|
+
const lineBlue = document.querySelector('.line.blue'); // Zweite Linie
|
|
61
|
+
const containerRect = container.getBoundingClientRect(); // Position des Containers
|
|
62
|
+
const buttonRect = button.getBoundingClientRect(); // Position des angeklickten Buttons
|
|
63
|
+
|
|
64
|
+
// Berechne die Breite der Linie basierend auf der Position des Buttons
|
|
65
|
+
const newWidth = buttonRect.left - containerRect.left + buttonRect.width / 2;
|
|
66
|
+
lineBlue.style.width = `${newWidth}px`; // Setze die neue Breite der Linie
|
|
67
|
+
},
|
|
68
|
+
|
|
69
|
+
triggerLastOpenedTab: function (projectname) {
|
|
70
|
+
fetch(`/get_last_tab/${projectname}`)
|
|
71
|
+
.then(response => response.json())
|
|
72
|
+
.then(data => {
|
|
73
|
+
if (data.initial_tab) {
|
|
74
|
+
const initialTab = document.querySelector(`.btn-sm[data-bs-target="#${data.initial_tab}"]`);
|
|
75
|
+
if (initialTab) {
|
|
76
|
+
initialTab.closest('.btn-xl').click();
|
|
77
|
+
initialTab.click();
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
})
|
|
81
|
+
.catch(error => console.error('Error fetching initial tab:', error));
|
|
82
|
+
},
|
|
83
|
+
|
|
84
|
+
setLastOpenedTab: function (projectname, tab) {
|
|
85
|
+
fetch(`/set_last_tab/${projectname}/${tab}`, {
|
|
86
|
+
method: 'POST',
|
|
87
|
+
headers: {
|
|
88
|
+
'Content-Type': 'application/json'
|
|
89
|
+
},
|
|
90
|
+
body: JSON.stringify({ projectname: projectname, tab: tab })
|
|
91
|
+
})
|
|
92
|
+
.then(response => response.json())
|
|
93
|
+
.catch(error => console.error('Error writing last tab:', error));
|
|
94
|
+
},
|
|
95
|
+
|
|
96
|
+
init: function () {
|
|
97
|
+
// Event-Listener für große Buttons (btn-xl)
|
|
98
|
+
document.querySelectorAll('.btn-xl').forEach((button, index, buttons) => {
|
|
99
|
+
button.addEventListener('click', () => {
|
|
100
|
+
// Delete activate class from all small buttons
|
|
101
|
+
const smBtnContainer = button.closest('.container.bg');
|
|
102
|
+
smBtnContainer.querySelectorAll('.btn-sm').forEach(btn => {
|
|
103
|
+
btn.classList.remove('active');
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
this.resetButtons(document.querySelectorAll('.btn-xl'));
|
|
107
|
+
this.activateButton(button, index, buttons);
|
|
108
|
+
this.adjustLine(button);
|
|
109
|
+
});
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
// Event-Listener für kleine Buttons (btn-sm)
|
|
113
|
+
document.querySelectorAll('.btn-sm').forEach(button => {
|
|
114
|
+
button.addEventListener('click', event => {
|
|
115
|
+
event.stopPropagation(); // Verhindert, dass der große Button reagiert
|
|
116
|
+
|
|
117
|
+
// Alle kleinen Buttons in der gleichen Sektion zurücksetzen
|
|
118
|
+
const parentSection = button.closest('.sub-buttons');
|
|
119
|
+
this.resetButtons(parentSection.querySelectorAll('.btn-sm'), ['btn-outline-primary', 'last-opened']);
|
|
120
|
+
|
|
121
|
+
// Aktuellen Button aktivieren
|
|
122
|
+
button.classList.add('btn-outline-primary', 'last-opened');
|
|
123
|
+
button.classList.remove('btn-outline-secondary');
|
|
124
|
+
|
|
125
|
+
// Setze den zuletzt geöffneten Tab
|
|
126
|
+
const projectname = this.getActiveProjectName();
|
|
127
|
+
const tab = button.getAttribute('data-bs-target').replace('#', '');
|
|
128
|
+
this.setLastOpenedTab(projectname, tab);
|
|
129
|
+
});
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
// Initialisiere den zuletzt geöffneten Tab
|
|
133
|
+
const projectname = this.getActiveProjectName();
|
|
134
|
+
if (projectname) {
|
|
135
|
+
this.triggerLastOpenedTab(projectname);
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
|
|
139
|
+
getActiveProjectName: function () {
|
|
140
|
+
const activeBtn = Array.from(document.querySelectorAll('.project-btn'))
|
|
141
|
+
.find(btn => btn.querySelector('.bi.bi-circle-fill'));
|
|
142
|
+
if (activeBtn) {
|
|
143
|
+
const nameSpan = activeBtn.querySelector('.projectname');
|
|
144
|
+
return nameSpan ? nameSpan.textContent : null;
|
|
145
|
+
}
|
|
146
|
+
return null;
|
|
147
|
+
}
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
return NavbarManager;
|
|
151
|
+
});
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
define([], function () {
|
|
2
|
+
const ProjectManager = {
|
|
3
|
+
addMultiInputAttributes: function (event) {
|
|
4
|
+
event.preventDefault();
|
|
5
|
+
|
|
6
|
+
// Clone the current input group element
|
|
7
|
+
const currentInputGroup = event.target.closest('.input-group');
|
|
8
|
+
const newInputGroup = currentInputGroup.cloneNode(true);
|
|
9
|
+
|
|
10
|
+
// Clear the input field in the cloned element
|
|
11
|
+
const input = newInputGroup.querySelector('input');
|
|
12
|
+
if (input) {
|
|
13
|
+
input.value = '';
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// Replace the plus symbol with a minus symbol and add the 'remove-multi-input' class
|
|
17
|
+
const button = newInputGroup.querySelector('.add-multi-input');
|
|
18
|
+
if (button) {
|
|
19
|
+
button.classList.remove('add-multi-input');
|
|
20
|
+
button.classList.add('remove-multi-input');
|
|
21
|
+
const logo = button.querySelector('i');
|
|
22
|
+
logo.classList.remove('bi-plus-circle-dotted');
|
|
23
|
+
logo.classList.add('bi-dash-circle-dotted');
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Append the cloned element at the end of the parent container
|
|
27
|
+
currentInputGroup.parentNode.appendChild(newInputGroup);
|
|
28
|
+
},
|
|
29
|
+
|
|
30
|
+
removeMultiInputAttributes: function (event) {
|
|
31
|
+
event.preventDefault();
|
|
32
|
+
|
|
33
|
+
// Remove the parent div of the minus button
|
|
34
|
+
const inputGroup = event.target.closest('.input-group');
|
|
35
|
+
if (inputGroup) {
|
|
36
|
+
inputGroup.remove();
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
focusInputProjectname: function () {
|
|
41
|
+
const projectInput = document.getElementById('projectNameInput');
|
|
42
|
+
if (projectInput) {
|
|
43
|
+
projectInput.focus();
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
init: function () {
|
|
48
|
+
// Event binding for adding a new multi-input field
|
|
49
|
+
$(document).on('click', '.add-multi-input', this.addMultiInputAttributes);
|
|
50
|
+
|
|
51
|
+
// Event binding for removing a multi-input field
|
|
52
|
+
$(document).on('click', '.remove-multi-input', this.removeMultiInputAttributes);
|
|
53
|
+
|
|
54
|
+
// Event binding for focusing on the project name input in the modal
|
|
55
|
+
$(document).on('shown.bs.modal', '#newProject', this.focusInputProjectname);
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
return ProjectManager;
|
|
60
|
+
});
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/** vim: et:ts=4:sw=4:sts=4
|
|
2
|
+
* @license RequireJS 2.3.7 Copyright jQuery Foundation and other contributors.
|
|
3
|
+
* Released under MIT license, https://github.com/requirejs/requirejs/blob/master/LICENSE
|
|
4
|
+
*/
|
|
5
|
+
var requirejs, require, define; !function (global, setTimeout) { var req, s, head, baseElement, dataMain, src, interactiveScript, currentlyAddingScript, mainScript, subPath, version = "2.3.7", commentRegExp = /\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/gm, cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g, jsSuffixRegExp = /\.js$/, currDirRegExp = /^\.\//, op = Object.prototype, ostring = op.toString, hasOwn = op.hasOwnProperty, isBrowser = !("undefined" == typeof window || "undefined" == typeof navigator || !window.document), isWebWorker = !isBrowser && "undefined" != typeof importScripts, readyRegExp = isBrowser && "PLAYSTATION 3" === navigator.platform ? /^complete$/ : /^(complete|loaded)$/, defContextName = "_", isOpera = "undefined" != typeof opera && "[object Opera]" === opera.toString(), contexts = {}, cfg = {}, globalDefQueue = [], useInteractive = !1, disallowedProps = ["__proto__", "constructor"]; function commentReplace(e, t) { return t || "" } function isFunction(e) { return "[object Function]" === ostring.call(e) } function isArray(e) { return "[object Array]" === ostring.call(e) } function each(e, t) { if (e) for (var i = 0; i < e.length && (!e[i] || !t(e[i], i, e)); i += 1); } function eachReverse(e, t) { if (e) for (var i = e.length - 1; -1 < i && (!e[i] || !t(e[i], i, e)); --i); } function hasProp(e, t) { return hasOwn.call(e, t) } function getOwn(e, t) { return hasProp(e, t) && e[t] } function eachProp(e, t) { for (var i in e) if (hasProp(e, i) && -1 == disallowedProps.indexOf(i) && t(e[i], i)) break } function mixin(i, e, r, n) { e && eachProp(e, function (e, t) { !r && hasProp(i, t) || (!n || "object" != typeof e || !e || isArray(e) || isFunction(e) || e instanceof RegExp ? i[t] = e : (i[t] || (i[t] = {}), mixin(i[t], e, r, n))) }) } function bind(e, t) { return function () { return t.apply(e, arguments) } } function scripts() { return document.getElementsByTagName("script") } function defaultOnError(e) { throw e } function getGlobal(e) { var t; return e && (t = global, each(e.split("."), function (e) { t = t[e] }), t) } function makeError(e, t, i, r) { t = new Error(t + "\nhttps://requirejs.org/docs/errors.html#" + e); return t.requireType = e, t.requireModules = r, i && (t.originalError = i), t } if (void 0 === define) { if (void 0 !== requirejs) { if (isFunction(requirejs)) return; cfg = requirejs, requirejs = void 0 } void 0 === require || isFunction(require) || (cfg = require, require = void 0), req = requirejs = function (e, t, i, r) { var n, o = defContextName; return isArray(e) || "string" == typeof e || (n = e, isArray(t) ? (e = t, t = i, i = r) : e = []), n && n.context && (o = n.context), r = (r = getOwn(contexts, o)) || (contexts[o] = req.s.newContext(o)), n && r.configure(n), r.require(e, t, i) }, req.config = function (e) { return req(e) }, req.nextTick = void 0 !== setTimeout ? function (e) { setTimeout(e, 4) } : function (e) { e() }, require = require || req, req.version = version, req.jsExtRegExp = /^\/|:|\?|\.js$/, req.isBrowser = isBrowser, s = req.s = { contexts: contexts, newContext: newContext }, req({}), each(["toUrl", "undef", "defined", "specified"], function (t) { req[t] = function () { var e = contexts[defContextName]; return e.require[t].apply(e, arguments) } }), isBrowser && (head = s.head = document.getElementsByTagName("head")[0], baseElement = document.getElementsByTagName("base")[0], baseElement) && (head = s.head = baseElement.parentNode), req.onError = defaultOnError, req.createNode = function (e, t, i) { var r = e.xhtml ? document.createElementNS("http://www.w3.org/1999/xhtml", "html:script") : document.createElement("script"); return r.type = e.scriptType || "text/javascript", r.charset = "utf-8", r.async = !0, r }, req.load = function (t, i, r) { var e, n = t && t.config || {}; if (isBrowser) return (e = req.createNode(n, i, r)).setAttribute("data-requirecontext", t.contextName), e.setAttribute("data-requiremodule", i), !e.attachEvent || e.attachEvent.toString && e.attachEvent.toString().indexOf("[native code") < 0 || isOpera ? (e.addEventListener("load", t.onScriptLoad, !1), e.addEventListener("error", t.onScriptError, !1)) : (useInteractive = !0, e.attachEvent("onreadystatechange", t.onScriptLoad)), e.src = r, n.onNodeCreated && n.onNodeCreated(e, n, i, r), currentlyAddingScript = e, baseElement ? head.insertBefore(e, baseElement) : head.appendChild(e), currentlyAddingScript = null, e; if (isWebWorker) try { setTimeout(function () { }, 0), importScripts(r), t.completeLoad(i) } catch (e) { t.onError(makeError("importscripts", "importScripts failed for " + i + " at " + r, e, [i])) } }, isBrowser && !cfg.skipDataMain && eachReverse(scripts(), function (e) { if (head = head || e.parentNode, dataMain = e.getAttribute("data-main")) return mainScript = dataMain, cfg.baseUrl || -1 !== mainScript.indexOf("!") || (mainScript = (src = mainScript.split("/")).pop(), subPath = src.length ? src.join("/") + "/" : "./", cfg.baseUrl = subPath), mainScript = mainScript.replace(jsSuffixRegExp, ""), req.jsExtRegExp.test(mainScript) && (mainScript = dataMain), cfg.deps = cfg.deps ? cfg.deps.concat(mainScript) : [mainScript], !0 }), define = function (e, i, t) { var r, n; "string" != typeof e && (t = i, i = e, e = null), isArray(i) || (t = i, i = null), !i && isFunction(t) && (i = [], t.length) && (t.toString().replace(commentRegExp, commentReplace).replace(cjsRequireRegExp, function (e, t) { i.push(t) }), i = (1 === t.length ? ["require"] : ["require", "exports", "module"]).concat(i)), useInteractive && (r = currentlyAddingScript || getInteractiveScript()) && (e = e || r.getAttribute("data-requiremodule"), n = contexts[r.getAttribute("data-requirecontext")]), n ? (n.defQueue.push([e, i, t]), n.defQueueMap[e] = !0) : globalDefQueue.push([e, i, t]) }, define.amd = { jQuery: !0 }, req.exec = function (text) { return eval(text) }, req(cfg) } function newContext(u) { var t, e, f, c, i, b = { waitSeconds: 7, baseUrl: "./", paths: {}, bundles: {}, pkgs: {}, shim: {}, config: {} }, d = {}, p = {}, r = {}, l = [], h = {}, n = {}, m = {}, g = 1, x = 1; function v(e, t, i) { var r, n, o, a, s, u, c, d, p, f = t && t.split("/"), l = b.map, h = l && l["*"]; if (e) { t = (e = e.split("/")).length - 1, b.nodeIdCompat && jsSuffixRegExp.test(e[t]) && (e[t] = e[t].replace(jsSuffixRegExp, "")); for (var m, g = e = "." === e[0].charAt(0) && f ? f.slice(0, f.length - 1).concat(e) : e, x = 0; x < g.length; x++)"." === (m = g[x]) ? (g.splice(x, 1), --x) : ".." !== m || 0 === x || 1 === x && ".." === g[2] || ".." === g[x - 1] || 0 < x && (g.splice(x - 1, 2), x -= 2); e = e.join("/") } if (i && l && (f || h)) { e: for (o = (n = e.split("/")).length; 0 < o; --o) { if (s = n.slice(0, o).join("/"), f) for (a = f.length; 0 < a; --a)if (r = (r = getOwn(l, f.slice(0, a).join("/"))) && getOwn(r, s)) { u = r, c = o; break e } !d && h && getOwn(h, s) && (d = getOwn(h, s), p = o) } !u && d && (u = d, c = p), u && (n.splice(0, c, u), e = n.join("/")) } return getOwn(b.pkgs, e) || e } function q(t) { isBrowser && each(scripts(), function (e) { if (e.getAttribute("data-requiremodule") === t && e.getAttribute("data-requirecontext") === f.contextName) return e.parentNode.removeChild(e), !0 }) } function E(e) { var t = getOwn(b.paths, e); return t && isArray(t) && 1 < t.length && (t.shift(), f.require.undef(e), f.makeRequire(null, { skipMap: !0 })([e]), 1) } function w(e) { var t, i = e ? e.indexOf("!") : -1; return -1 < i && (t = e.substring(0, i), e = e.substring(i + 1, e.length)), [t, e] } function y(e, t, i, r) { var n, o, a, s = null, u = t ? t.name : null, c = e, d = !0, p = ""; return e || (d = !1, e = "_@r" + (g += 1)), s = (a = w(e))[0], e = a[1], s && (s = v(s, u, r), o = getOwn(h, s)), e && (s ? p = i ? e : o && o.normalize ? o.normalize(e, function (e) { return v(e, u, r) }) : -1 === e.indexOf("!") ? v(e, u, r) : e : (s = (a = w(p = v(e, u, r)))[0], i = !0, n = f.nameToUrl(p = a[1]))), { prefix: s, name: p, parentMap: t, unnormalized: !!(e = !s || o || i ? "" : "_unnormalized" + (x += 1)), url: n, originalName: c, isDefine: d, id: (s ? s + "!" + p : p) + e } } function S(e) { var t = e.id; return getOwn(d, t) || (d[t] = new f.Module(e)) } function k(e, t, i) { var r = e.id, n = getOwn(d, r); !hasProp(h, r) || n && !n.defineEmitComplete ? (n = S(e)).error && "error" === t ? i(n.error) : n.on(t, i) : "defined" === t && i(h[r]) } function M(t, e) { var i = t.requireModules, r = !1; e ? e(t) : (each(i, function (e) { e = getOwn(d, e); e && (e.error = t, e.events.error) && (r = !0, e.emit("error", t)) }), r || req.onError(t)) } function O() { globalDefQueue.length && (each(globalDefQueue, function (e) { var t = e[0]; "string" == typeof t && (f.defQueueMap[t] = !0), l.push(e) }), globalDefQueue = []) } function j(e) { delete d[e], delete p[e] } function P() { var r, e = 1e3 * b.waitSeconds, n = e && f.startTime + e < (new Date).getTime(), o = [], a = [], s = !1, u = !0; if (!t) { if (t = !0, eachProp(p, function (e) { var t = e.map, i = t.id; if (e.enabled && (t.isDefine || a.push(e), !e.error)) if (!e.inited && n) E(i) ? s = r = !0 : (o.push(i), q(i)); else if (!e.inited && e.fetched && t.isDefine && (s = !0, !t.prefix)) return u = !1 }), n && o.length) return (e = makeError("timeout", "Load timeout for modules: " + o, null, o)).contextName = f.contextName, M(e); u && each(a, function (e) { !function r(n, o, a) { var e = n.map.id; n.error ? n.emit("error", n.error) : (o[e] = !0, each(n.depMaps, function (e, t) { var e = e.id, i = getOwn(d, e); !i || n.depMatched[t] || a[e] || (getOwn(o, e) ? (n.defineDep(t, h[e]), n.check()) : r(i, o, a)) }), a[e] = !0) }(e, {}, {}) }), n && !r || !s || (isBrowser || isWebWorker) && (i = i || setTimeout(function () { i = 0, P() }, 50)), t = !1 } } function a(e) { hasProp(h, e[0]) || S(y(e[0], null, !0)).init(e[1], e[2]) } function o(e, t, i, r) { e.detachEvent && !isOpera ? r && e.detachEvent(r, t) : e.removeEventListener(i, t, !1) } function s(e) { e = e.currentTarget || e.srcElement; return o(e, f.onScriptLoad, "load", "onreadystatechange"), o(e, f.onScriptError, "error"), { node: e, id: e && e.getAttribute("data-requiremodule") } } function R() { var e; for (O(); l.length;) { if (null === (e = l.shift())[0]) return M(makeError("mismatch", "Mismatched anonymous define() module: " + e[e.length - 1])); a(e) } f.defQueueMap = {} } return c = { require: function (e) { return e.require || (e.require = f.makeRequire(e.map)) }, exports: function (e) { if (e.usingExports = !0, e.map.isDefine) return e.exports ? h[e.map.id] = e.exports : e.exports = h[e.map.id] = {} }, module: function (e) { return e.module || (e.module = { id: e.map.id, uri: e.map.url, config: function () { return getOwn(b.config, e.map.id) || {} }, exports: e.exports || (e.exports = {}) }) } }, (e = function (e) { this.events = getOwn(r, e.id) || {}, this.map = e, this.shim = getOwn(b.shim, e.id), this.depExports = [], this.depMaps = [], this.depMatched = [], this.pluginMaps = {}, this.depCount = 0 }).prototype = { init: function (e, t, i, r) { r = r || {}, this.inited || (this.factory = t, i ? this.on("error", i) : this.events.error && (i = bind(this, function (e) { this.emit("error", e) })), this.depMaps = e && e.slice(0), this.errback = i, this.inited = !0, this.ignore = r.ignore, r.enabled || this.enabled ? this.enable() : this.check()) }, defineDep: function (e, t) { this.depMatched[e] || (this.depMatched[e] = !0, --this.depCount, this.depExports[e] = t) }, fetch: function () { if (!this.fetched) { this.fetched = !0, f.startTime = (new Date).getTime(); var e = this.map; if (!this.shim) return e.prefix ? this.callPlugin() : this.load(); f.makeRequire(this.map, { enableBuildCallback: !0 })(this.shim.deps || [], bind(this, function () { return e.prefix ? this.callPlugin() : this.load() })) } }, load: function () { var e = this.map.url; n[e] || (n[e] = !0, f.load(this.map.id, e)) }, check: function () { if (this.enabled && !this.enabling) { var t, i, e = this.map.id, r = this.depExports, n = this.exports, o = this.factory; if (this.inited) { if (this.error) this.emit("error", this.error); else if (!this.defining) { if (this.defining = !0, this.depCount < 1 && !this.defined) { if (isFunction(o)) { if (this.events.error && this.map.isDefine || req.onError !== defaultOnError) try { n = f.execCb(e, o, r, n) } catch (e) { t = e } else n = f.execCb(e, o, r, n); if (this.map.isDefine && void 0 === n && ((r = this.module) ? n = r.exports : this.usingExports && (n = this.exports)), t) return t.requireMap = this.map, t.requireModules = this.map.isDefine ? [this.map.id] : null, t.requireType = this.map.isDefine ? "define" : "require", M(this.error = t) } else n = o; this.exports = n, this.map.isDefine && !this.ignore && (h[e] = n, req.onResourceLoad) && (i = [], each(this.depMaps, function (e) { i.push(e.normalizedMap || e) }), req.onResourceLoad(f, this.map, i)), j(e), this.defined = !0 } this.defining = !1, this.defined && !this.defineEmitted && (this.defineEmitted = !0, this.emit("defined", this.exports), this.defineEmitComplete = !0) } } else hasProp(f.defQueueMap, e) || this.fetch() } }, callPlugin: function () { var s = this.map, u = s.id, e = y(s.prefix); this.depMaps.push(e), k(e, "defined", bind(this, function (e) { var o, t, i = getOwn(m, this.map.id), r = this.map.name, n = this.map.parentMap ? this.map.parentMap.name : null, a = f.makeRequire(s.parentMap, { enableBuildCallback: !0 }); this.map.unnormalized ? (e.normalize && (r = e.normalize(r, function (e) { return v(e, n, !0) }) || ""), k(t = y(s.prefix + "!" + r, this.map.parentMap, !0), "defined", bind(this, function (e) { this.map.normalizedMap = t, this.init([], function () { return e }, null, { enabled: !0, ignore: !0 }) })), (r = getOwn(d, t.id)) && (this.depMaps.push(t), this.events.error && r.on("error", bind(this, function (e) { this.emit("error", e) })), r.enable())) : i ? (this.map.url = f.nameToUrl(i), this.load()) : ((o = bind(this, function (e) { this.init([], function () { return e }, null, { enabled: !0 }) })).error = bind(this, function (e) { this.inited = !0, (this.error = e).requireModules = [u], eachProp(d, function (e) { 0 === e.map.id.indexOf(u + "_unnormalized") && j(e.map.id) }), M(e) }), o.fromText = bind(this, function (e, t) { var i = s.name, r = y(i), n = useInteractive; t && (e = t), n && (useInteractive = !1), S(r), hasProp(b.config, u) && (b.config[i] = b.config[u]); try { req.exec(e) } catch (e) { return M(makeError("fromtexteval", "fromText eval for " + u + " failed: " + e, e, [u])) } n && (useInteractive = !0), this.depMaps.push(r), f.completeLoad(i), a([i], o) }), e.load(s.name, a, o, b)) })), f.enable(e, this), this.pluginMaps[e.id] = e }, enable: function () { (p[this.map.id] = this).enabled = !0, this.enabling = !0, each(this.depMaps, bind(this, function (e, t) { var i, r; if ("string" == typeof e) { if (e = y(e, this.map.isDefine ? this.map : this.map.parentMap, !1, !this.skipMap), this.depMaps[t] = e, r = getOwn(c, e.id)) return void (this.depExports[t] = r(this)); this.depCount += 1, k(e, "defined", bind(this, function (e) { this.undefed || (this.defineDep(t, e), this.check()) })), this.errback ? k(e, "error", bind(this, this.errback)) : this.events.error && k(e, "error", bind(this, function (e) { this.emit("error", e) })) } r = e.id, i = d[r], hasProp(c, r) || !i || i.enabled || f.enable(e, this) })), eachProp(this.pluginMaps, bind(this, function (e) { var t = getOwn(d, e.id); t && !t.enabled && f.enable(e, this) })), this.enabling = !1, this.check() }, on: function (e, t) { (this.events[e] || (this.events[e] = [])).push(t) }, emit: function (e, t) { each(this.events[e], function (e) { e(t) }), "error" === e && delete this.events[e] } }, (f = { config: b, contextName: u, registry: d, defined: h, urlFetched: n, defQueue: l, defQueueMap: {}, Module: e, makeModuleMap: y, nextTick: req.nextTick, onError: M, configure: function (e) { e.baseUrl && "/" !== e.baseUrl.charAt(e.baseUrl.length - 1) && (e.baseUrl += "/"), "string" == typeof e.urlArgs && (i = e.urlArgs, e.urlArgs = function (e, t) { return (-1 === t.indexOf("?") ? "?" : "&") + i }); var i, r = b.shim, n = { paths: !0, bundles: !0, config: !0, map: !0 }; eachProp(e, function (e, t) { n[t] ? (b[t] || (b[t] = {}), mixin(b[t], e, !0, !0)) : b[t] = e }), e.bundles && eachProp(e.bundles, function (e, t) { each(e, function (e) { e !== t && (m[e] = t) }) }), e.shim && (eachProp(e.shim, function (e, t) { !(e = isArray(e) ? { deps: e } : e).exports && !e.init || e.exportsFn || (e.exportsFn = f.makeShimExports(e)), r[t] = e }), b.shim = r), e.packages && each(e.packages, function (e) { var t = (e = "string" == typeof e ? { name: e } : e).name; e.location && (b.paths[t] = e.location), b.pkgs[t] = e.name + "/" + (e.main || "main").replace(currDirRegExp, "").replace(jsSuffixRegExp, "") }), eachProp(d, function (e, t) { e.inited || e.map.unnormalized || (e.map = y(t, null, !0)) }), (e.deps || e.callback) && f.require(e.deps || [], e.callback) }, makeShimExports: function (t) { return function () { var e; return (e = t.init ? t.init.apply(global, arguments) : e) || t.exports && getGlobal(t.exports) } }, makeRequire: function (o, a) { function s(e, t, i) { var r, n; return a.enableBuildCallback && t && isFunction(t) && (t.__requireJsBuild = !0), "string" == typeof e ? isFunction(t) ? M(makeError("requireargs", "Invalid require call"), i) : o && hasProp(c, e) ? c[e](d[o.id]) : req.get ? req.get(f, e, o, s) : (r = y(e, o, !1, !0).id, hasProp(h, r) ? h[r] : M(makeError("notloaded", 'Module name "' + r + '" has not been loaded yet for context: ' + u + (o ? "" : ". Use require([])")))) : (R(), f.nextTick(function () { R(), (n = S(y(null, o))).skipMap = a.skipMap, n.init(e, t, i, { enabled: !0 }), P() }), s) } return a = a || {}, mixin(s, { isBrowser: isBrowser, toUrl: function (e) { var t, i = e.lastIndexOf("."), r = e.split("/")[0]; return -1 !== i && (!("." === r || ".." === r) || 1 < i) && (t = e.substring(i, e.length), e = e.substring(0, i)), f.nameToUrl(v(e, o && o.id, !0), t, !0) }, defined: function (e) { return hasProp(h, y(e, o, !1, !0).id) }, specified: function (e) { return e = y(e, o, !1, !0).id, hasProp(h, e) || hasProp(d, e) } }), o || (s.undef = function (i) { O(); var e = y(i, o, !0), t = getOwn(d, i); t.undefed = !0, q(i), delete h[i], delete n[e.url], delete r[i], eachReverse(l, function (e, t) { e[0] === i && l.splice(t, 1) }), delete f.defQueueMap[i], t && (t.events.defined && (r[i] = t.events), j(i)) }), s }, enable: function (e) { getOwn(d, e.id) && S(e).enable() }, completeLoad: function (e) { var t, i, r, n = getOwn(b.shim, e) || {}, o = n.exports; for (O(); l.length;) { if (null === (i = l.shift())[0]) { if (i[0] = e, t) break; t = !0 } else i[0] === e && (t = !0); a(i) } if (f.defQueueMap = {}, r = getOwn(d, e), !t && !hasProp(h, e) && r && !r.inited) { if (!(!b.enforceDefine || o && getGlobal(o))) return E(e) ? void 0 : M(makeError("nodefine", "No define call for " + e, null, [e])); a([e, n.deps || [], n.exportsFn]) } P() }, nameToUrl: function (e, t, i) { var r, n, o, a, s, u = getOwn(b.pkgs, e); if (u = getOwn(m, e = u ? u : e)) return f.nameToUrl(u, t, i); if (req.jsExtRegExp.test(e)) a = e + (t || ""); else { for (r = b.paths, o = (n = e.split("/")).length; 0 < o; --o)if (s = getOwn(r, n.slice(0, o).join("/"))) { isArray(s) && (s = s[0]), n.splice(0, o, s); break } a = n.join("/"), a = ("/" === (a += t || (/^data\:|^blob\:|\?/.test(a) || i ? "" : ".js")).charAt(0) || a.match(/^[\w\+\.\-]+:/) ? "" : b.baseUrl) + a } return b.urlArgs && !/^blob\:/.test(a) ? a + b.urlArgs(e, a) : a }, load: function (e, t) { req.load(f, e, t) }, execCb: function (e, t, i, r) { return t.apply(r, i) }, onScriptLoad: function (e) { "load" !== e.type && !readyRegExp.test((e.currentTarget || e.srcElement).readyState) || (interactiveScript = null, e = s(e), f.completeLoad(e.id)) }, onScriptError: function (e) { var i, r = s(e); if (!E(r.id)) return i = [], eachProp(d, function (e, t) { 0 !== t.indexOf("_@r") && each(e.depMaps, function (e) { if (e.id === r.id) return i.push(t), !0 }) }), M(makeError("scripterror", 'Script error for "' + r.id + (i.length ? '", needed by: ' + i.join(", ") : '"'), e, [r.id])) } }).require = f.makeRequire(), f } function getInteractiveScript() { return interactiveScript && "interactive" === interactiveScript.readyState || eachReverse(scripts(), function (e) { if ("interactive" === e.readyState) return interactiveScript = e }), interactiveScript } }(this, "undefined" == typeof setTimeout ? void 0 : setTimeout);
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
define([], function () {
|
|
2
|
+
const SidebarManager = {
|
|
3
|
+
sidebar: document.querySelector("#sidebar"),
|
|
4
|
+
|
|
5
|
+
toggleSidebar: function () {
|
|
6
|
+
// Toggle the sidebar's expand class
|
|
7
|
+
this.sidebar.classList.toggle("expand");
|
|
8
|
+
// Toggle the visibility of the logout text
|
|
9
|
+
const logout_text = document.querySelector("#sidebar .logout-btn .text");
|
|
10
|
+
const logout_icon = document.querySelector("#sidebar .logout-btn .bi");
|
|
11
|
+
logout_icon.classList.toggle("me-2");
|
|
12
|
+
if (logout_text.classList.contains("d-none")) {
|
|
13
|
+
setTimeout(() => {
|
|
14
|
+
logout_text.classList.toggle("d-none");
|
|
15
|
+
}, 200);
|
|
16
|
+
} else {
|
|
17
|
+
logout_text.classList.add("d-none");
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
checkSidebarVisibility: function () {
|
|
22
|
+
const isCurrentlyVisible = window.innerWidth >= 1080;
|
|
23
|
+
this.sidebar.classList.toggle("expand", isCurrentlyVisible);
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
init: function () {
|
|
27
|
+
// Toggle Sidebar on Button Click
|
|
28
|
+
document.querySelector(".toggle-btn").addEventListener("click", () => {
|
|
29
|
+
this.toggleSidebar();
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
// Check Sidebar Visibility on Resize
|
|
33
|
+
window.addEventListener("resize", () => {
|
|
34
|
+
this.checkSidebarVisibility();
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
// Initial Sidebar Visibility Check
|
|
38
|
+
this.checkSidebarVisibility();
|
|
39
|
+
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
return SidebarManager;
|
|
44
|
+
});
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
(function ($) {
|
|
2
|
+
|
|
3
|
+
// Additional features that are needed
|
|
4
|
+
//
|
|
5
|
+
// allow specification of how attributes are shown
|
|
6
|
+
|
|
7
|
+
// Data Model:
|
|
8
|
+
//
|
|
9
|
+
// One of the following must be supplied
|
|
10
|
+
// xml - the XML object to be shown
|
|
11
|
+
// xmlString - the XML string to be shown
|
|
12
|
+
//
|
|
13
|
+
// Options:
|
|
14
|
+
// collapsedText - the text shown when the node is collapsed. Defaults to '...'
|
|
15
|
+
$.fn.simpleXML = function (options) {
|
|
16
|
+
|
|
17
|
+
// This is the easiest way to have default options.
|
|
18
|
+
var settings = $.extend({
|
|
19
|
+
// These are the defaults.
|
|
20
|
+
collapsedText: "...",
|
|
21
|
+
}, options);
|
|
22
|
+
|
|
23
|
+
if (settings.xml == undefined && settings.xmlString == undefined)
|
|
24
|
+
throw "No XML to be displayed was supplied";
|
|
25
|
+
|
|
26
|
+
if (settings.xml != undefined && settings.xmlString != undefined)
|
|
27
|
+
throw "Only one of xml and xmlString may be supplied";
|
|
28
|
+
|
|
29
|
+
var xml = settings.xml;
|
|
30
|
+
if (xml == undefined)
|
|
31
|
+
xml = $.parseXML(settings.xmlString);
|
|
32
|
+
|
|
33
|
+
return this.each(function () {
|
|
34
|
+
var wrapperNode = document.createElement("span");
|
|
35
|
+
$(wrapperNode).addClass("simpleXML");
|
|
36
|
+
|
|
37
|
+
showNode(wrapperNode, xml, settings);
|
|
38
|
+
|
|
39
|
+
this.appendChild(wrapperNode);
|
|
40
|
+
$(wrapperNode).find(".simpleXML-expanderHeader").click(function () {
|
|
41
|
+
|
|
42
|
+
var expanderHeader = $(this).closest(".simpleXML-expanderHeader");
|
|
43
|
+
|
|
44
|
+
var expander = expanderHeader.find(".simpleXML-expander");
|
|
45
|
+
|
|
46
|
+
var content = expanderHeader.parent().find(".simpleXML-content").first();
|
|
47
|
+
var collapsedText = expanderHeader.parent().children(".simpleXML-collapsedText").first();
|
|
48
|
+
var closeExpander = expanderHeader.parent().children(".simpleXML-expanderClose").first();
|
|
49
|
+
|
|
50
|
+
if (expander.hasClass("simpleXML-expander-expanded")) {
|
|
51
|
+
// Already Expanded, therefore collapse time...
|
|
52
|
+
expander.removeClass("simpleXML-expander-expanded").addClass("simpleXML-expander-collapsed");
|
|
53
|
+
|
|
54
|
+
collapsedText.attr("style", "display: inline;");
|
|
55
|
+
content.attr("style", "display: none;");
|
|
56
|
+
closeExpander.attr("style", "display: none");
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
// Time to expand..
|
|
60
|
+
expander.addClass("simpleXML-expander-expanded").removeClass("simpleXML-expander-collapsed");
|
|
61
|
+
collapsedText.attr("style", "display: none;");
|
|
62
|
+
content.attr("style", "");
|
|
63
|
+
closeExpander.attr("style", "");
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
function showNode(parent, xml, settings) {
|
|
71
|
+
if (xml.nodeType == 9) {
|
|
72
|
+
for (var i = 0 ; i < xml.childNodes.length ; i++)
|
|
73
|
+
showNode(parent, xml.childNodes[i], settings);
|
|
74
|
+
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
switch (xml.nodeType) {
|
|
79
|
+
case 1: // Simple element
|
|
80
|
+
{
|
|
81
|
+
var hasChildNodes = xml.childNodes.length > 0;
|
|
82
|
+
var expandingNode = hasChildNodes && (xml.childNodes.length > 1 || xml.childNodes[0].nodeType != 3);
|
|
83
|
+
|
|
84
|
+
var expanderHeader = expandingNode ? makeSpan("", "simpleXML-expanderHeader") : parent;
|
|
85
|
+
|
|
86
|
+
var expanderSpan = makeSpan("", "simpleXML-expander");
|
|
87
|
+
if (expandingNode)
|
|
88
|
+
$(expanderSpan).addClass("simpleXML-expander-expanded");
|
|
89
|
+
expanderHeader.appendChild(expanderSpan);
|
|
90
|
+
|
|
91
|
+
expanderHeader.appendChild(makeSpan("<", "simpleXML-tagHeader"));
|
|
92
|
+
expanderHeader.appendChild(makeSpan(xml.nodeName, "simpleXML-tagValue"));
|
|
93
|
+
|
|
94
|
+
if( expandingNode)
|
|
95
|
+
parent.appendChild(expanderHeader);
|
|
96
|
+
|
|
97
|
+
// Handle attributes
|
|
98
|
+
var attributes = xml.attributes;
|
|
99
|
+
for( var attrIdx = 0 ; attrIdx < attributes.length ; attrIdx++ ) {
|
|
100
|
+
expanderHeader.appendChild( makeSpan( " "));
|
|
101
|
+
expanderHeader.appendChild( makeSpan( attributes [attrIdx].name, "simpleXML-attrName"));
|
|
102
|
+
expanderHeader.appendChild( makeSpan( '="' ));
|
|
103
|
+
expanderHeader.appendChild( makeSpan( attributes [attrIdx].value, "simpleXML-attrValue" ));
|
|
104
|
+
expanderHeader.appendChild( makeSpan( '"' ));
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// Handle child nodes
|
|
108
|
+
if (hasChildNodes) {
|
|
109
|
+
|
|
110
|
+
parent.appendChild(makeSpan(">", "simpleXML-tagHeader"));
|
|
111
|
+
|
|
112
|
+
if (expandingNode) {
|
|
113
|
+
var ulElement = document.createElement("ul");
|
|
114
|
+
for (var i = 0 ; i < xml.childNodes.length ; i++) {
|
|
115
|
+
var liElement = document.createElement("li");
|
|
116
|
+
showNode(liElement, xml.childNodes[i], settings);
|
|
117
|
+
ulElement.appendChild(liElement);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
var collapsedTextSpan = makeSpan(settings.collapsedText, "simpleXML-collapsedText");
|
|
121
|
+
collapsedTextSpan.setAttribute("style", "display: none;");
|
|
122
|
+
ulElement.setAttribute("class", "simpleXML-content");
|
|
123
|
+
parent.appendChild(collapsedTextSpan);
|
|
124
|
+
parent.appendChild(ulElement);
|
|
125
|
+
|
|
126
|
+
parent.appendChild(makeSpan("", "simpleXML-expanderClose"));
|
|
127
|
+
}
|
|
128
|
+
else {
|
|
129
|
+
parent.appendChild(makeSpan(xml.childNodes[0].nodeValue));
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// Closing tag
|
|
133
|
+
parent.appendChild(makeSpan("</", "simpleXML-tagHeader"));
|
|
134
|
+
parent.appendChild(makeSpan(xml.nodeName, "simpleXML-tagValue"));
|
|
135
|
+
parent.appendChild(makeSpan(">", "simpleXML-tagHeader"));
|
|
136
|
+
} else {
|
|
137
|
+
var closingSpan = document.createElement("span");
|
|
138
|
+
closingSpan.innerText = "/>";
|
|
139
|
+
parent.appendChild(closingSpan);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
break;
|
|
143
|
+
|
|
144
|
+
case 3: // text
|
|
145
|
+
{
|
|
146
|
+
if( xml.nodeValue.trim() !== "" ) {
|
|
147
|
+
parent.appendChild(makeSpan("", "simpleXML-expander"));
|
|
148
|
+
parent.appendChild(makeSpan(xml.nodeValue));
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
break;
|
|
152
|
+
|
|
153
|
+
case 4: // cdata
|
|
154
|
+
{
|
|
155
|
+
parent.appendChild(makeSpan("", "simpleXML-expander"));
|
|
156
|
+
parent.appendChild(makeSpan("<![CDATA[", "simpleXML-tagHeader"));
|
|
157
|
+
parent.appendChild(makeSpan(xml.nodeValue, "simpleXML-cdata"));
|
|
158
|
+
parent.appendChild(makeSpan("]]>", "simpleXML-tagHeader"));
|
|
159
|
+
}
|
|
160
|
+
break;
|
|
161
|
+
|
|
162
|
+
case 8: // comment
|
|
163
|
+
{
|
|
164
|
+
parent.appendChild(makeSpan("", "simpleXML-expander"));
|
|
165
|
+
parent.appendChild(makeSpan("<!--" + xml.nodeValue + "-->", "simpleXML-comment"));
|
|
166
|
+
}
|
|
167
|
+
break;
|
|
168
|
+
|
|
169
|
+
default:
|
|
170
|
+
{
|
|
171
|
+
var item = document.createElement("span");
|
|
172
|
+
item.innerText = "" + xml.nodeType + " - " + xml.name;
|
|
173
|
+
parent.appendChild(item);
|
|
174
|
+
}
|
|
175
|
+
break;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
function makeSpan(innerText) {
|
|
179
|
+
return makeSpan(innerText, undefined);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
function makeSpan(innerText, classes) {
|
|
183
|
+
var span = document.createElement("span");
|
|
184
|
+
span.innerText = innerText;
|
|
185
|
+
|
|
186
|
+
if (classes != undefined)
|
|
187
|
+
span.setAttribute("class", classes);
|
|
188
|
+
|
|
189
|
+
return span;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
}(jQuery));
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
define([], function () {
|
|
2
|
+
const TabManager = {
|
|
3
|
+
loadTab: function () {
|
|
4
|
+
const self = $(this);
|
|
5
|
+
const tab = $(self.data('bs-target'));
|
|
6
|
+
if (!tab.hasClass('loaded')) {
|
|
7
|
+
tab.load('/tabs/container')
|
|
8
|
+
tab.load(self.data('url'), function () {
|
|
9
|
+
tab.addClass('loaded');
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
|
|
14
|
+
formSubmit: function (event) {
|
|
15
|
+
event.preventDefault();
|
|
16
|
+
const form = $(this);
|
|
17
|
+
const formData = new FormData(this);
|
|
18
|
+
|
|
19
|
+
const submitButton = form.find('button[type="submit"]');
|
|
20
|
+
submitButton.prop('disabled', true);
|
|
21
|
+
const originalButtonText = submitButton.html();
|
|
22
|
+
submitButton.html('<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>');
|
|
23
|
+
$.ajax({
|
|
24
|
+
url: form.attr('action'),
|
|
25
|
+
type: form.attr("method") || 'POST',
|
|
26
|
+
data: formData,
|
|
27
|
+
processData: false, // Important for file upload
|
|
28
|
+
contentType: false, // Important for file upload
|
|
29
|
+
success: function (response) {
|
|
30
|
+
const next_target_id = form.data('next-target');
|
|
31
|
+
const reload_subtab_id = form.data('reload-subtab');
|
|
32
|
+
const target_id = form.data('reload-to-target');
|
|
33
|
+
if (next_target_id) {
|
|
34
|
+
$(form.closest('.tab-pane')).html(response);
|
|
35
|
+
const nextTarget = $(next_target_id);
|
|
36
|
+
const nextTargetButton = $('[data-bs-target="' + next_target_id + '"]')
|
|
37
|
+
nextTarget.removeClass('loaded');
|
|
38
|
+
nextTargetButton.trigger('click');
|
|
39
|
+
|
|
40
|
+
} else if (reload_subtab_id) {
|
|
41
|
+
const response_html = $(response);
|
|
42
|
+
const filteredContent = response_html.find(reload_subtab_id);
|
|
43
|
+
$(reload_subtab_id).html(filteredContent.html());
|
|
44
|
+
} else if (target_id) {
|
|
45
|
+
const target = $(target_id);
|
|
46
|
+
target.html(response);
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
$(form.closest('.tab-pane')).html(response);
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
complete: function () {
|
|
53
|
+
submitButton.prop('disabled', false);
|
|
54
|
+
submitButton.html(originalButtonText);
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
},
|
|
58
|
+
|
|
59
|
+
loadNextTab: function (e) {
|
|
60
|
+
e.preventDefault();
|
|
61
|
+
const self = $(this);
|
|
62
|
+
const nextTargetId = self.data('next-target');
|
|
63
|
+
const additionalButtonId = self.data('additional-button');
|
|
64
|
+
const nextTarget = $(nextTargetId);
|
|
65
|
+
const nextTargetButton = $(`[data-bs-target="${nextTargetId}"]`);
|
|
66
|
+
|
|
67
|
+
nextTarget.removeClass('loaded');
|
|
68
|
+
nextTargetButton.trigger('click');
|
|
69
|
+
if (additionalButtonId) {
|
|
70
|
+
const additionalButton = $(additionalButtonId);
|
|
71
|
+
additionalButton.trigger('click');
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
init: function () {
|
|
76
|
+
$(document).on('show.bs.tab', 'div[data-bs-toggle="tab"].btn-sm', this.loadTab);
|
|
77
|
+
$(document).on('click', 'button.btn-next', this.loadNextTab);
|
|
78
|
+
$(document).on('submit', '.tab-area form.js-tab-submit', this.formSubmit);
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
return TabManager;
|
|
83
|
+
});
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{% extends 'layout.html' %}
|
|
2
|
+
|
|
3
|
+
{% block content %}
|
|
4
|
+
<div class="container my-5">
|
|
5
|
+
<div class="row justify-content-center">
|
|
6
|
+
<div class="col-md-6">
|
|
7
|
+
<div class="card">
|
|
8
|
+
<div class="card-header">
|
|
9
|
+
<h3 class="text-center">TG Prepare Login</h3>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="card-body">
|
|
12
|
+
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
13
|
+
{% if messages %}
|
|
14
|
+
{% for category, message in messages %}
|
|
15
|
+
<div class="alert alert-{{ category }}">{{ message }}</div>
|
|
16
|
+
{% endfor %}
|
|
17
|
+
{% endif %}
|
|
18
|
+
{% endwith %}
|
|
19
|
+
|
|
20
|
+
<form method="POST">
|
|
21
|
+
<div class="mb-3">
|
|
22
|
+
<label for="username" class="form-label">Username</label>
|
|
23
|
+
<input type="text" class="form-control" id="username" name="username" required>
|
|
24
|
+
</div>
|
|
25
|
+
<div class="mb-3">
|
|
26
|
+
<label for="password" class="form-label">Password</label>
|
|
27
|
+
<input type="password" class="form-control" id="password" name="password" required>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="mb-3 form-check">
|
|
30
|
+
<input type="checkbox" class="form-check-input" id="remember" name="remember">
|
|
31
|
+
<label class="form-check-label" for="remember">Remember me</label>
|
|
32
|
+
</div>
|
|
33
|
+
<div class="d-grid">
|
|
34
|
+
<button type="submit" class="btn btn-primary">Login</button>
|
|
35
|
+
</div>
|
|
36
|
+
</form>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
{% endblock %}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<div class="card-body" id="detailsContent">
|
|
3
|
+
{% if show_spinner %}
|
|
4
|
+
<div class="text-center text-muted">
|
|
5
|
+
<div class="spinner-border text-secondary" role="status">
|
|
6
|
+
<span class="visually-hidden">Loading...</span>
|
|
7
|
+
</div>
|
|
8
|
+
</div>
|
|
9
|
+
{% else %}
|
|
10
|
+
<p class="text-muted">Select a collection to view or edit its details.</p>
|
|
11
|
+
<div class="text-center text-muted">
|
|
12
|
+
<i class="bi bi-info-circle" style="font-size: 2rem;"></i>
|
|
13
|
+
<p>No collection selected.</p>
|
|
14
|
+
</div>
|
|
15
|
+
{% endif %}
|
|
16
|
+
</div>
|