Move UI logic to Stimulus: toolbar only
This commit is contained in:
74
js/controllers/clipper_controller.js
Normal file
74
js/controllers/clipper_controller.js
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
// Global ATON
|
||||||
|
import { Controller } from "@hotwired/stimulus"
|
||||||
|
import AppState from "../state.js";
|
||||||
|
import { addClippingPlane, resetClipping } from "../utils/clipping.js";
|
||||||
|
import { toggleAmbientOcclusion } from "../utils/environment.js";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle events for the clipper toolbar,
|
||||||
|
* related to the clipping module
|
||||||
|
*/
|
||||||
|
export default class extends Controller {
|
||||||
|
static targets = ['trigger', 'clipper', 'axis'];
|
||||||
|
static values = { enabled: Boolean };
|
||||||
|
|
||||||
|
connect() {
|
||||||
|
console.log('#clipper controller connected');
|
||||||
|
}
|
||||||
|
|
||||||
|
clip(event) {
|
||||||
|
/**
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
|
const label = event.params.axis;
|
||||||
|
/**
|
||||||
|
* @type {HTMLButtonElement}
|
||||||
|
*/
|
||||||
|
const target = event.target;
|
||||||
|
/**
|
||||||
|
* @type {NodeListOf<HTMLButtonElement>}
|
||||||
|
*/
|
||||||
|
const axes = this.axisTargets;
|
||||||
|
const classes = ['border', 'border-2', 'border-warning'];
|
||||||
|
|
||||||
|
addClippingPlane(label, -1);
|
||||||
|
target.classList.add(...classes);
|
||||||
|
|
||||||
|
for (const btn of axes) {
|
||||||
|
if (btn.id !== target.id) {
|
||||||
|
btn.classList.remove(...classes);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Toggle clipper toolbar
|
||||||
|
*/
|
||||||
|
toggleClipper() {
|
||||||
|
/**
|
||||||
|
* @type {HTMLElement}
|
||||||
|
*/
|
||||||
|
const trigger = this.triggerTarget;
|
||||||
|
this.clipperTarget.classList.toggle('d-none');
|
||||||
|
// If the toolbar is shown, clipping is enabled and vice versa
|
||||||
|
this.enabledValue = !this.clipperTarget.classList.contains('d-none');
|
||||||
|
|
||||||
|
this.axisTargets.forEach(btn => {
|
||||||
|
btn.classList.remove('border', 'border-2', 'border-warning');
|
||||||
|
});
|
||||||
|
|
||||||
|
// AO should be turned off if clipping is enabled
|
||||||
|
toggleAmbientOcclusion(!this.enabledValue);
|
||||||
|
|
||||||
|
if (this.enabledValue) {
|
||||||
|
trigger.className += ' border border-2 border-white';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!this.enabledValue) {
|
||||||
|
resetClipping();
|
||||||
|
trigger.className = trigger.className.replace(/ border.*$/g, '');
|
||||||
|
}
|
||||||
|
|
||||||
|
AppState.clipping.enabled = this.enabledValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
28
js/controllers/settings_controller.js
Normal file
28
js/controllers/settings_controller.js
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
import { Controller } from "@hotwired/stimulus"
|
||||||
|
import AppState from "../state.js";
|
||||||
|
|
||||||
|
export default class extends Controller {
|
||||||
|
static targets = ['ao', 'shadows'];
|
||||||
|
|
||||||
|
connect() {
|
||||||
|
console.log('#settings controller connected');
|
||||||
|
this.aoTarget.checked = AppState.ambientOcclusion;
|
||||||
|
this.shadowsTarget.checked = AppState.shadows;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Toggle Ambient Occlusion
|
||||||
|
* @param {Event} event
|
||||||
|
*/
|
||||||
|
toggleAO(event) {
|
||||||
|
ATON.FX.togglePass(ATON.FX.PASS_AO, event.target.checked);
|
||||||
|
AppState.ambientOcclusion = event.target.checked;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Toggle shadows
|
||||||
|
* @param {Event} event
|
||||||
|
*/
|
||||||
|
toggleShadows(event) {
|
||||||
|
ATON.toggleShadows(event.target.checked);
|
||||||
|
AppState.shadows = event.target.checked;
|
||||||
|
}
|
||||||
|
}
|
||||||
42
js/controllers/tabs_controller.js
Normal file
42
js/controllers/tabs_controller.js
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
import { Controller } from "@hotwired/stimulus"
|
||||||
|
|
||||||
|
export default class extends Controller {
|
||||||
|
static targets = ['active', 'tab', 'content'];
|
||||||
|
|
||||||
|
connect() {
|
||||||
|
console.log('#tabs controller connected');
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {Event} event
|
||||||
|
*/
|
||||||
|
activate(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
this.deactivate();
|
||||||
|
const activeId = event.currentTarget.dataset.id;
|
||||||
|
|
||||||
|
event.currentTarget.parentElement.classList.add('active');
|
||||||
|
this.contentTargets.find(c => c.dataset.id === activeId)
|
||||||
|
.classList.remove('d-hide');
|
||||||
|
}
|
||||||
|
|
||||||
|
reset() {
|
||||||
|
this.deactivate();
|
||||||
|
const activeId = this.activeTarget.dataset.id;
|
||||||
|
|
||||||
|
this.activeTarget.classList.add('active');
|
||||||
|
this.contentTargets.find(c => c.dataset.id === activeId)
|
||||||
|
.classList.remove('d-hide');
|
||||||
|
}
|
||||||
|
|
||||||
|
deactivate() {
|
||||||
|
this.tabTargets.forEach(tab => {
|
||||||
|
tab.classList.remove('active');
|
||||||
|
});
|
||||||
|
|
||||||
|
this.contentTargets.forEach(content => {
|
||||||
|
content.classList.add('d-hide');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
50
js/controllers/toolbar_controller.js
Normal file
50
js/controllers/toolbar_controller.js
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
// Global ATON
|
||||||
|
import { Controller } from "@hotwired/stimulus"
|
||||||
|
import AppState from "../state.js";
|
||||||
|
import { createLightSlider } from "../utils/environment.js";
|
||||||
|
|
||||||
|
const html = String.raw;
|
||||||
|
const panelHeader = html`
|
||||||
|
<i class="bi bi-gear-fill me-1"></i> Impostazioni
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default class extends Controller {
|
||||||
|
static targets = ['settings'];
|
||||||
|
|
||||||
|
connect() {
|
||||||
|
console.log('#toolbar controller connected');
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Open settings panel
|
||||||
|
* @param {Event} event
|
||||||
|
*/
|
||||||
|
toggleSettings(event) {
|
||||||
|
ATON.UI.setSidePanelLeft();
|
||||||
|
ATON.UI.showSidePanel({header: panelHeader});
|
||||||
|
this.#buildSettingsPanel(ATON.UI.elSidePanel);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Clone a <template> by id
|
||||||
|
* @param {String} id
|
||||||
|
* @returns {DocumentFragment}
|
||||||
|
*/
|
||||||
|
#cloneTemplate(id) {
|
||||||
|
return document.getElementById(id).content.cloneNode(true);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Create the left-side settings panel
|
||||||
|
* content
|
||||||
|
* @param {Element} panel
|
||||||
|
*/
|
||||||
|
#buildSettingsPanel(panel) {
|
||||||
|
const fragment = this.#cloneTemplate('tmpl-settings');
|
||||||
|
let sliderContainer = fragment.querySelector('[data-sliders-container]');
|
||||||
|
|
||||||
|
['x', 'y', 'z'].forEach((axis, i) => {
|
||||||
|
const label = ['Asse X', 'Asse Y', 'Asse Z'][i];
|
||||||
|
sliderContainer.appendChild(createLightSlider(axis, label, [-2, 2], 0.1));
|
||||||
|
})
|
||||||
|
|
||||||
|
panel.appendChild(fragment);
|
||||||
|
}
|
||||||
|
}
|
||||||
157
js/ui.js
157
js/ui.js
@@ -62,161 +62,6 @@ function reset() {
|
|||||||
document.querySelector('#clipper-bar')?.classList.add('d-none');
|
document.querySelector('#clipper-bar')?.classList.add('d-none');
|
||||||
document.querySelector('#clipper')?.classList.remove('border', 'border-2', 'border-white');
|
document.querySelector('#clipper')?.classList.remove('border', 'border-2', 'border-white');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param {HTMLElement} target
|
|
||||||
* @param {NodeListOf<HTMLButtonElement>} btns
|
|
||||||
* @param {String} axis - One of 'x', 'y', 'z'
|
|
||||||
*/
|
|
||||||
function showClipping(target, btns, axis) {
|
|
||||||
if (axis) {
|
|
||||||
addClippingPlane(axis, -1);
|
|
||||||
target.classList.add('border', 'border-2', 'border-warning');
|
|
||||||
btns.forEach(btn => {
|
|
||||||
if (btn.id !== target.id) {
|
|
||||||
btn.classList.remove('border', 'border-2', 'border-warning');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @todo Get clipping button from state? Review logic!!
|
|
||||||
* @param {String} triggerSelector
|
|
||||||
* @param {String} targetSelector The selector for the target toolbar to be displayed
|
|
||||||
*/
|
|
||||||
function toggleClipperBar(triggerSelector, targetSelector) {
|
|
||||||
const trigger = document.querySelector(triggerSelector);
|
|
||||||
const toolbar = document.querySelector(targetSelector);
|
|
||||||
const btns = toolbar.querySelectorAll('button');
|
|
||||||
const clipTargets = {
|
|
||||||
clipX: {axis: 'x'},
|
|
||||||
clipY: {axis: 'y'},
|
|
||||||
clipZ: {axis: 'z'},
|
|
||||||
};
|
|
||||||
|
|
||||||
if (!AppState.clipping.listeners.button) {
|
|
||||||
trigger.addEventListener(
|
|
||||||
'click',
|
|
||||||
() => {
|
|
||||||
toolbar.classList.toggle('d-none');
|
|
||||||
const aoCurrentState = AppState.ambientOcclusion;
|
|
||||||
|
|
||||||
if (!toolbar.classList.contains('d-none')) {
|
|
||||||
AppState.clipping.enabled = true;
|
|
||||||
toggleAmbientOcclusion(false);
|
|
||||||
|
|
||||||
btns.forEach(btn => {
|
|
||||||
btn.classList.remove('border', 'border-2', 'border-warning');
|
|
||||||
});
|
|
||||||
|
|
||||||
trigger.className += ' border border-2 border-white';
|
|
||||||
toolbar.addEventListener('click', event => {
|
|
||||||
showClipping(event.target, btns, clipTargets[event.target.id]?.axis);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
resetClipping();
|
|
||||||
let noBorder = trigger.className.replace(/ border.*$/g, '');
|
|
||||||
trigger.className = noBorder;
|
|
||||||
toggleAmbientOcclusion(aoCurrentState);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
AppState.clipping.listeners.button = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* A left side settings panel
|
|
||||||
* @param {String} triggerId - The settings button id
|
|
||||||
*/
|
|
||||||
function toggleSettingsPanel(triggerId) {
|
|
||||||
const btn = document.querySelector(`#${triggerId}`);
|
|
||||||
const lightHeading = document.createElement('h2');
|
|
||||||
lightHeading.className = 'fs-5 ms-2 mb-3 mt-3';
|
|
||||||
lightHeading.innerHTML = '<i class="bi bi-lightbulb me-1"></i> Direzione luce';
|
|
||||||
const envHeading = document.createElement('h2');
|
|
||||||
envHeading.className = 'fs-5 ms-2 mb-3 mt-3';
|
|
||||||
envHeading.innerHTML = '<i class="bi bi-brightness-high me-1"></i> Ambiente';
|
|
||||||
|
|
||||||
btn.addEventListener('click', () => {
|
|
||||||
ATON.UI.setSidePanelLeft();
|
|
||||||
ATON.UI.showSidePanel({header: '<i class="bi bi-gear-fill me-1"></i> Impostazioni'});
|
|
||||||
ATON.UI.elSidePanel.appendChild(lightHeading);
|
|
||||||
|
|
||||||
const lightSliderX = createLightSlider('x', 'Asse X', [-2, 2], 0.1);
|
|
||||||
const lightSliderY = createLightSlider('y', 'Asse Y', [-2, 2], 0.1);
|
|
||||||
const lightSliderZ = createLightSlider('z', 'Asse Z', [-2, 2], 0.1);
|
|
||||||
|
|
||||||
ATON.UI.elSidePanel.appendChild(lightSliderX);
|
|
||||||
ATON.UI.elSidePanel.appendChild(lightSliderY);
|
|
||||||
ATON.UI.elSidePanel.appendChild(lightSliderZ);
|
|
||||||
|
|
||||||
ATON.UI.elSidePanel.appendChild(envHeading);
|
|
||||||
|
|
||||||
const ambientOcclSwitch = document.createElement('div');
|
|
||||||
ambientOcclSwitch.className = 'form-check form-switch ms-4 mt-2';
|
|
||||||
ambientOcclSwitch.innerHTML = `
|
|
||||||
<input class="form-check-input" type="checkbox" role="switch" id="aoSwitch" title="Abilita / disabilita ambient occlusion">
|
|
||||||
<label class="form-check-label" for="aoSwitch"><em>Ambient occlusion</em> <i class="bi bi-info-circle ms-2 c-hand"></i></label>
|
|
||||||
`;
|
|
||||||
|
|
||||||
const shadowsSwitch = document.createElement('div');
|
|
||||||
shadowsSwitch.className = 'form-check form-switch ms-4 mt-2';
|
|
||||||
shadowsSwitch.innerHTML = `
|
|
||||||
<input class="form-check-input" type="checkbox" role="switch" id="shadowsSwitch" title="Abilita / disabilita ombre">
|
|
||||||
<label class="form-check-label" for="shadowsSwitch">Ombre <i class="bi bi-info-circle ms-2 c-hand" title=""></i></label>
|
|
||||||
`;
|
|
||||||
|
|
||||||
shadowsSwitch.querySelector('input[type="checkbox"]').checked = AppState.shadows;
|
|
||||||
ambientOcclSwitch.querySelector('input[type="checkbox"]').checked = AppState.ambientOcclusion;
|
|
||||||
|
|
||||||
ATON.UI.elSidePanel.appendChild(ambientOcclSwitch);
|
|
||||||
ATON.UI.elSidePanel.appendChild(shadowsSwitch);
|
|
||||||
|
|
||||||
// TODO: move somewhere else...
|
|
||||||
document.querySelector('#aoSwitch').addEventListener(
|
|
||||||
'change',
|
|
||||||
event => {
|
|
||||||
toggleAmbientOcclusion(event.target.checked);
|
|
||||||
AppState.ambientOcclusion = event.target.checked;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
document.querySelector('#shadowsSwitch').addEventListener(
|
|
||||||
'change',
|
|
||||||
event => {
|
|
||||||
const checked = event.target.checked;
|
|
||||||
ATON.toggleShadows(checked);
|
|
||||||
AppState.shadows = checked;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param {String} direction - The axis direction, one of 'x','y','z'
|
|
||||||
* @param {String} label - The slider label
|
|
||||||
* @param {Number[]} range - The slider's range
|
|
||||||
* @param {Number} step - The slider's step
|
|
||||||
*/
|
|
||||||
function createLightSlider(direction, label, range, step) {
|
|
||||||
const currentVal = ATON.getMainLightDirection()[direction];
|
|
||||||
const lightSlider = ATON.UI.createSlider({
|
|
||||||
range,
|
|
||||||
label,
|
|
||||||
value: Number.parseFloat(currentVal).toPrecision(1),
|
|
||||||
oninput: val => {
|
|
||||||
const lightDir = ATON.getMainLightDirection();
|
|
||||||
// Keep existing direction values for the other axes
|
|
||||||
lightDir[direction] = Number.parseFloat(val);
|
|
||||||
changeLightDirection(lightDir);
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
lightSlider.classList.add('ms-4');
|
|
||||||
lightSlider.querySelector('input').step = step;
|
|
||||||
|
|
||||||
return lightSlider;
|
|
||||||
}
|
|
||||||
/**
|
/**
|
||||||
* Right-side main menu panel
|
* Right-side main menu panel
|
||||||
* @param {String} triggerId - The menu button id
|
* @param {String} triggerId - The menu button id
|
||||||
@@ -307,7 +152,5 @@ function buildOntologyMenu(ontology, sidePanel) {
|
|||||||
* @param {String} ontologyJsonPath
|
* @param {String} ontologyJsonPath
|
||||||
*/
|
*/
|
||||||
export async function initUI(ontologyJsonPath) {
|
export async function initUI(ontologyJsonPath) {
|
||||||
toggleSettingsPanel('settings');
|
|
||||||
toggleContentMenu('menu', ontologyJsonPath);
|
toggleContentMenu('menu', ontologyJsonPath);
|
||||||
toggleClipperBar('#clipper', '#clipper-bar');
|
|
||||||
}
|
}
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
* @param {THREE.Vector3} vector - An object with x,y,z coordinates
|
* @param {THREE.Vector3} vector - An object with x,y,z coordinates
|
||||||
*/
|
*/
|
||||||
export function changeLightDirection (vector) {
|
export function changeLightDirection(vector) {
|
||||||
ATON.setMainLightDirection(vector);
|
ATON.setMainLightDirection(vector);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -16,7 +16,33 @@ export function changeLightDirection (vector) {
|
|||||||
*
|
*
|
||||||
* @param {Boolean} isEnabled
|
* @param {Boolean} isEnabled
|
||||||
*/
|
*/
|
||||||
export function toggleAmbientOcclusion (isEnabled) {
|
export function toggleAmbientOcclusion(isEnabled) {
|
||||||
ATON.FX.togglePass(ATON.FX.PASS_AO, isEnabled);
|
ATON.FX.togglePass(ATON.FX.PASS_AO, isEnabled);
|
||||||
console.log('Ambient occlusion', isEnabled ? 'ON' : 'OFF');
|
console.log('Ambient occlusion', isEnabled ? 'ON' : 'OFF');
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {String} direction - The axis direction, one of 'x','y','z'
|
||||||
|
* @param {String} label - The slider label
|
||||||
|
* @param {Number[]} range - The slider's range
|
||||||
|
* @param {Number} step - The slider's step
|
||||||
|
*/
|
||||||
|
export function createLightSlider(direction, label, range, step) {
|
||||||
|
const currentVal = ATON.getMainLightDirection()[direction];
|
||||||
|
const lightSlider = ATON.UI.createSlider({
|
||||||
|
range,
|
||||||
|
label,
|
||||||
|
value: Number.parseFloat(currentVal).toPrecision(1),
|
||||||
|
oninput: val => {
|
||||||
|
const lightDir = ATON.getMainLightDirection();
|
||||||
|
// Keep existing direction values for the other axes
|
||||||
|
lightDir[direction] = Number.parseFloat(val);
|
||||||
|
changeLightDirection(lightDir);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
lightSlider.classList.add('ms-4');
|
||||||
|
lightSlider.querySelector('input').step = step;
|
||||||
|
|
||||||
|
return lightSlider;
|
||||||
|
}
|
||||||
14
js/utils/stimulus.js
Normal file
14
js/utils/stimulus.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { Application } from '@hotwired/stimulus';
|
||||||
|
import SettingController from '../controllers/settings_controller.js';
|
||||||
|
import ToolbarController from '../controllers/toolbar_controller.js';
|
||||||
|
import ClipperController from '../controllers/clipper_controller.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize Stimulus controllers
|
||||||
|
*/
|
||||||
|
export function initStimulus() {
|
||||||
|
window.Stimulus = Application.start();
|
||||||
|
Stimulus.register("settings", SettingController);
|
||||||
|
Stimulus.register("toolbar", ToolbarController);
|
||||||
|
Stimulus.register("clipper", ClipperController);
|
||||||
|
}
|
||||||
@@ -46,19 +46,30 @@
|
|||||||
<script type="text/javascript" src="../../vendor/three/examples/js/controls/DragControls.js"></script>
|
<script type="text/javascript" src="../../vendor/three/examples/js/controls/DragControls.js"></script>
|
||||||
<script type="text/javascript" src="/dist/ATON.min.js"></script>
|
<script type="text/javascript" src="/dist/ATON.min.js"></script>
|
||||||
|
|
||||||
|
<script type="importmap">
|
||||||
|
{
|
||||||
|
"imports": {
|
||||||
|
"@hotwired/stimulus": "../../vendor/@hotwired/stimulus/dist/stimulus.js"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<!-- Main js entry -->
|
<!-- Main js entry -->
|
||||||
<script type="module" src="./index.js"></script>
|
<script type="module" src="./index.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body data-bs-theme="light">
|
<body data-bs-theme="light">
|
||||||
<div id="toolbar" class="aton-toolbar-top w-100">
|
<div id="toolbar" class="aton-toolbar-top w-100"
|
||||||
|
data-controller="toolbar clipper" data-clipper-enabled-value="false">
|
||||||
<a class="btn aton-btn fs-5" href="/a/scaenae" id="back" title="Torna alla mappa">
|
<a class="btn aton-btn fs-5" href="/a/scaenae" id="back" title="Torna alla mappa">
|
||||||
<i class="bi bi-map-fill"></i>
|
<i class="bi bi-map-fill"></i>
|
||||||
</a>
|
</a>
|
||||||
<a class="btn aton-btn fs-5" id="settings" title="Impostazioni">
|
<a class="btn aton-btn fs-5" title="Impostazioni" data-toolbar-target="settings"
|
||||||
|
data-action="toolbar#toggleSettings">
|
||||||
<i class="bi bi-gear-fill"></i>
|
<i class="bi bi-gear-fill"></i>
|
||||||
</a>
|
</a>
|
||||||
<a class="btn aton-btn fs-5" id="clipper" title="Attiva / disattiva sezionamento">
|
<a class="btn aton-btn fs-5" title="Attiva / disattiva sezionamento"
|
||||||
|
data-clipper-target="trigger" data-action="clipper#toggleClipper">
|
||||||
<i class="bi bi-scissors"></i>
|
<i class="bi bi-scissors"></i>
|
||||||
</a>
|
</a>
|
||||||
<div class="d-none w-25
|
<div class="d-none w-25
|
||||||
@@ -68,17 +79,48 @@
|
|||||||
px-4 pt-2 pb-2 bg-opacity-50
|
px-4 pt-2 pb-2 bg-opacity-50
|
||||||
rounded-bottom-3
|
rounded-bottom-3
|
||||||
mt-4 text-dark text-center"
|
mt-4 text-dark text-center"
|
||||||
id="clipper-bar">
|
id="clipper-bar"
|
||||||
|
data-clipper-target="clipper">
|
||||||
<span class="pt-5 pb-2 d-block fw-bold">Sezionamento</span>
|
<span class="pt-5 pb-2 d-block fw-bold">Sezionamento</span>
|
||||||
<button class="btn aton-btn d-inline px-4 py-4 me-5" id="clipX" title="Sezione X"></button>
|
<button class="btn aton-btn d-inline px-4 py-4 me-5" id="clipX"
|
||||||
<button class="btn aton-btn d-inline px-4 py-4 me-5" id="clipY" title="Sezione Y"></button>
|
data-clipper-target="axis" data-clipper-axis-param="x" data-action="clipper#clip" title="Sezione X"></button>
|
||||||
<button class="btn aton-btn d-inline px-4 py-4" id="clipZ" title="Sezione Z"></button>
|
<button class="btn aton-btn d-inline px-4 py-4 me-5" id="clipY"
|
||||||
|
data-clipper-target="axis" data-clipper-axis-param="y" data-action="clipper#clip" title="Sezione Y"></button>
|
||||||
|
<button class="btn aton-btn d-inline px-4 py-4" id="clipZ"
|
||||||
|
data-clipper-target="axis" data-clipper-axis-param="z" data-action="clipper#clip" title="Sezione Z"></button>
|
||||||
</div>
|
</div>
|
||||||
<a class="btn aton-btn fs-5 float-end" id="menu" title="Menu">
|
<a class="btn aton-btn fs-5 float-end" id="menu" title="Menu">
|
||||||
<i class="bi bi-list"></i>
|
<i class="bi bi-list"></i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Settings menu template (except dynamic light sliders) -->
|
||||||
|
<template id="tmpl-settings">
|
||||||
|
<div data-controller="settings">
|
||||||
|
<h2 class="fs-5 ms-2 mb-3 mt-3">
|
||||||
|
<i class="bi bi-lightbulb me-1"></i> Direzione luce
|
||||||
|
</h2>
|
||||||
|
<div data-sliders-container></div>
|
||||||
|
<h2 class="fs-5 ms-2 mb-3 mt-3">
|
||||||
|
<i class="bi bi-brightness-high me-1"></i> Ambiente
|
||||||
|
</h2>
|
||||||
|
<div class="form-check form-switch ms-4 mt-2">
|
||||||
|
<input class="form-check-input" type="checkbox" role="switch"
|
||||||
|
data-settings-target="ao" data-action="change->settings#toggleAO">
|
||||||
|
<label class="form-check-label" for="aoSwitch">Ambient occlusion</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-check form-switch ms-4 mt-2">
|
||||||
|
<input class="form-check-input" type="checkbox" role="switch"
|
||||||
|
data-settings-target="shadows" data-action="change->settings#toggleShadows">
|
||||||
|
<label class="form-check-label" for="shadowsSwitch">Ombre</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template id="tmpl-menu-tabs">
|
||||||
|
<ul class="nav nav-pills" id="content-tabs">...</ul>
|
||||||
|
<div class="tab-content ...">...</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
<!-- TODO CSS-only popover -->
|
<!-- TODO CSS-only popover -->
|
||||||
<div class="card d-none" id="shadows-popover" popover>Disabilitare le ombre può migliorare le prestazioni</div>
|
<div class="card d-none" id="shadows-popover" popover>Disabilitare le ombre può migliorare le prestazioni</div>
|
||||||
|
|||||||
@@ -3,6 +3,9 @@ import { config } from "../../config.js";
|
|||||||
import AppState from "../../js/state.js";
|
import AppState from "../../js/state.js";
|
||||||
import { normalizeNodes } from "../../js/utils/nodeUtils.js";
|
import { normalizeNodes } from "../../js/utils/nodeUtils.js";
|
||||||
import { initUI } from "../../js/ui.js";
|
import { initUI } from "../../js/ui.js";
|
||||||
|
import { initStimulus } from "../../js/utils/stimulus.js";
|
||||||
|
|
||||||
|
initStimulus();
|
||||||
|
|
||||||
AppState.currentScene = 'ssgp';
|
AppState.currentScene = 'ssgp';
|
||||||
const marker = config.markers.find(m => m.id === 'ssgp');
|
const marker = config.markers.find(m => m.id === 'ssgp');
|
||||||
|
|||||||
Reference in New Issue
Block a user