Compare commits
4 Commits
8ce7492f4e
...
ontology
| Author | SHA1 | Date | |
|---|---|---|---|
| 28a34905c7 | |||
| 8aa3f7cde8 | |||
| 0c3a049d12 | |||
| 3305e74776 |
@@ -51,7 +51,7 @@
|
||||
<script type="text/javascript" src="./vendor/leaflet/dist/leaflet-src.js"></script>
|
||||
|
||||
<!-- Main js entry -->
|
||||
<script type="module" src="js/main.js"></script>
|
||||
<script type="module" src="src/main.js"></script>
|
||||
</head>
|
||||
|
||||
<body data-bs-theme="light">
|
||||
|
||||
@@ -1,43 +0,0 @@
|
||||
/**
|
||||
* @module Ontology
|
||||
*/
|
||||
|
||||
/**
|
||||
* @todo Temporarily returns domains and ontology labels only
|
||||
* Traverse an ontology from its JSON description
|
||||
* @param {String} jsonPath The path (URI) of the ontology JSON file
|
||||
* @returns {Object}
|
||||
*/
|
||||
export async function traverseOntology(jsonPath) {
|
||||
const ontology = await loadOntology(jsonPath);
|
||||
const domains = [];
|
||||
|
||||
for (const k of Object.keys(ontology)) {
|
||||
if (k === 'domains') {
|
||||
for (const domainKey of Object.keys(ontology[k])) {
|
||||
domains.push({
|
||||
label: domainKey,
|
||||
child: ontology[k][domainKey][0].label,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
ontology: ontology.ontology,
|
||||
domains
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Load an ontology from its JSON description
|
||||
* @param {String} jsonPath The path (URI) of the ontology JSON file
|
||||
* @returns {Object}
|
||||
*/
|
||||
export async function loadOntology(jsonPath) {
|
||||
const ontology = await fetch(jsonPath)
|
||||
.then(res => res.json())
|
||||
.catch(err => console.error(err));
|
||||
|
||||
return ontology;
|
||||
}
|
||||
2922
scenes/BaroqueTheatreOntology_BT_EN_v1_7_UI_by_domain_v3.json
Normal file
2922
scenes/BaroqueTheatreOntology_BT_EN_v1_7_UI_by_domain_v3.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
||||
import { openScene } from "../../js/scene.js";
|
||||
import { openScene } from "../../src/scene.js";
|
||||
import { config } from "../../config.js";
|
||||
import AppState from "../../js/state.js";
|
||||
import { normalizeNodes } from "../../js/utils/nodeUtils.js";
|
||||
import { initStimulus } from "../../js/utils/stimulus.js";
|
||||
import AppState from "../../src/state.js";
|
||||
import { normalizeNodes } from "../../src/utils/nodeUtils.js";
|
||||
import { initStimulus } from "../../src/utils/stimulus.js";
|
||||
|
||||
initStimulus();
|
||||
|
||||
|
||||
@@ -73,6 +73,10 @@
|
||||
data-clipper-target="trigger" data-action="clipper#toggleClipper">
|
||||
<i class="bi bi-scissors"></i>
|
||||
</a>
|
||||
<a class="btn aton-btn fs-5 p-1 text-white" title="Attiva schermo intero" data-toolbar-target="fullscreen"
|
||||
data-action="toolbar#toggleFullscreen">
|
||||
<i class="bi bi-fullscreen"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div class="d-none w-25
|
||||
position-absolute
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { openScene } from "../../js/scene.js";
|
||||
import { openScene } from "../../src/scene.js";
|
||||
import { config } from "../../config.js";
|
||||
import AppState from "../../js/state.js";
|
||||
import { normalizeNodes } from "../../js/utils/nodeUtils.js";
|
||||
import { initStimulus } from "../../js/utils/stimulus.js";
|
||||
import { initAtonEvents } from "../../js/utils/aton.js";
|
||||
import AppState from "../../src/state.js";
|
||||
import { normalizeNodes } from "../../src/utils/nodeUtils.js";
|
||||
import { initStimulus } from "../../src/utils/stimulus.js";
|
||||
import { initAtonEvents } from "../../src/utils/aton.js";
|
||||
|
||||
initStimulus();
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ import { traverseOntology } from "../ontology.js";
|
||||
const html = String.raw;
|
||||
const domParser = new DOMParser;
|
||||
// TODO: hard-coded, but follows a convention...
|
||||
const ontologyJsonPath = location.pathname + 'ontology.json';
|
||||
const ontologyJsonPath = '/a/scaenae/scenes/BaroqueTheatreOntology_BT_EN_v1_7_UI_by_domain_v3.json';
|
||||
|
||||
export default class extends Controller {
|
||||
static targets = ['trigger', 'layers', 'ontology'];
|
||||
@@ -229,24 +229,26 @@ export default class extends Controller {
|
||||
* @param {HTMLElement} tab Tab content element
|
||||
*/
|
||||
#buildOntologyMenu(ontology, tab) {
|
||||
console.debug(ontology);
|
||||
|
||||
const mainNode = tab.querySelector('#ontology-list');
|
||||
mainNode.textContent = ontology.ontology;
|
||||
|
||||
let domainList = html`
|
||||
<ul class="list-group mt-2" id="domains-list"></ul>
|
||||
mainNode.innerHTML = html`
|
||||
<span class="fs-5 fw-bold">${ontology.ontology}</span>
|
||||
`;
|
||||
mainNode.classList.add('pb-3');
|
||||
|
||||
// Very fragile and ugly!!
|
||||
mainNode.innerHTML += domainList;
|
||||
domainList = tab.querySelector('#domains-list');
|
||||
let domainList = document.createElement('div');
|
||||
|
||||
for (let domain of ontology.domains) {
|
||||
const domainItem = html`
|
||||
<li class="list-group-item">${domain.label}</li>
|
||||
`;
|
||||
domainList.innerHTML += domainItem;
|
||||
}
|
||||
const domainItem = document.createElement('div');
|
||||
domainItem.className = 'border-start border-bottom rounded';
|
||||
domainItem.textContent = domain.label;
|
||||
// Indentation...
|
||||
domainItem.classList.add(`ms-${domain.depth}`, `ps-${domain.depth}`, 'py-2');
|
||||
|
||||
if (domain.depth === 1) domainItem.classList.add('fw-bold');
|
||||
|
||||
domainList.appendChild(domainItem);
|
||||
}
|
||||
|
||||
mainNode.appendChild(domainList);
|
||||
}
|
||||
}
|
||||
@@ -9,7 +9,7 @@ const panelHeader = html`
|
||||
`;
|
||||
|
||||
export default class extends Controller {
|
||||
static targets = ['settings'];
|
||||
static targets = ['settings', 'fullscreen'];
|
||||
|
||||
connect() {
|
||||
console.log('#toolbar controller connected');
|
||||
@@ -23,6 +23,24 @@ export default class extends Controller {
|
||||
ATON.UI.showSidePanel({header: panelHeader});
|
||||
this.#buildSettingsPanel(ATON.UI.elSidePanel);
|
||||
}
|
||||
toggleFullscreen() {
|
||||
/**
|
||||
* @type {HTMLAnchorElement}
|
||||
*/
|
||||
const target = this.fullscreenTarget;
|
||||
const icon = target.querySelector('i');
|
||||
if (!document.fullscreenElement) {
|
||||
document.body.requestFullscreen();
|
||||
icon.classList.remove('bi-fullscreen');
|
||||
icon.classList.add('bi-fullscreen-exit');
|
||||
target.title = 'Esci da schermo intero';
|
||||
} else {
|
||||
document.exitFullscreen();
|
||||
icon.classList.remove('bi-fullscreen-exit');
|
||||
icon.classList.add('bi-fullscreen');
|
||||
target.title = 'Attiva schermo intero';
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Clone a <template> by id
|
||||
* @param {String} id
|
||||
69
src/ontology.js
Normal file
69
src/ontology.js
Normal file
@@ -0,0 +1,69 @@
|
||||
/**
|
||||
* @module Ontology
|
||||
*/
|
||||
|
||||
/**
|
||||
* @todo Temporarily returns domains and ontology labels only
|
||||
* Traverse an ontology from its JSON description
|
||||
* @param {String} jsonPath The path (URI) of the ontology JSON file
|
||||
* @returns {Object}
|
||||
*/
|
||||
export async function traverseOntology(jsonPath) {
|
||||
const ontology = await loadOntology(jsonPath);
|
||||
const modules = ontology.modules;
|
||||
|
||||
let tree = [];
|
||||
|
||||
for (const module of modules) {
|
||||
if (module.id === 'Architecture') {
|
||||
console.debug(module.classTrees);
|
||||
for (const classTree of module.classTrees) {
|
||||
traverseClasses(classTree, tree);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
ontology: "Architecture",
|
||||
domains: tree
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {Object} ontologyClass
|
||||
* @param {Array<Object>} tree
|
||||
* @param {Number} depth
|
||||
*/
|
||||
function traverseClasses(ontologyClass, tree, depth = 1) {
|
||||
const ontologyNode = {
|
||||
id: ontologyClass.id,
|
||||
label: ontologyClass.label,
|
||||
depth,
|
||||
children: [],
|
||||
};
|
||||
|
||||
tree.push(ontologyNode);
|
||||
|
||||
if (ontologyClass.children && Array.isArray(ontologyClass.children)) {
|
||||
for(const child of ontologyClass.children) {
|
||||
ontologyNode.children.push(
|
||||
traverseClasses(child, tree, depth + 1)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Load an ontology from its JSON description
|
||||
* @param {String} jsonPath The path (URI) of the ontology JSON file
|
||||
* @returns {Object}
|
||||
*/
|
||||
export async function loadOntology(jsonPath) {
|
||||
const ontology = await fetch(jsonPath)
|
||||
.then(res => res.json())
|
||||
.catch(err => console.error(err));
|
||||
|
||||
return ontology;
|
||||
}
|
||||
Reference in New Issue
Block a user