2025-11-24 16:51:55 +01:00
|
|
|
<template>
|
2026-02-26 15:35:45 +01:00
|
|
|
<BasePopup
|
|
|
|
|
ref="basePopup"
|
2025-11-24 16:51:55 +01:00
|
|
|
id="element-popup"
|
2026-02-26 15:35:45 +01:00
|
|
|
:display-css="displayedCss"
|
|
|
|
|
:editable-css="elementCss"
|
|
|
|
|
:popup-width="800"
|
|
|
|
|
:popup-height="600"
|
2026-03-05 11:42:18 +01:00
|
|
|
:show-inheritance="false"
|
2026-02-26 15:35:45 +01:00
|
|
|
@close="close"
|
|
|
|
|
@css-input="handleCssInput"
|
2025-11-24 16:51:55 +01:00
|
|
|
>
|
2026-02-26 15:35:45 +01:00
|
|
|
<template #header-left>
|
2026-02-26 15:47:58 +01:00
|
|
|
<span class="element-label">{{ selector || '' }}</span>
|
|
|
|
|
<span class="instance-count">{{ elementInstanceCount }} instances</span>
|
2026-02-26 15:35:45 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template #controls>
|
|
|
|
|
<!-- Font Family -->
|
2026-03-05 14:49:58 +01:00
|
|
|
<div class="settings-subsection" :class="{ 'setting-disabled': !settingEnabled.font }">
|
|
|
|
|
<input type="checkbox" class="toggle-setting" :checked="settingEnabled.font" @change="onToggleSetting('font', $event.target.checked)" />
|
|
|
|
|
<div class="field field-font">
|
2026-02-26 15:35:45 +01:00
|
|
|
<label class="label-with-tooltip" data-css="font-family">Police</label>
|
2026-03-05 11:08:44 +01:00
|
|
|
<div class="field-font__options">
|
2026-03-05 14:49:58 +01:00
|
|
|
<select v-model="fontFamily">
|
2026-02-26 15:35:45 +01:00
|
|
|
<option v-for="f in fonts" :key="f" :value="f">{{ f }}</option>
|
|
|
|
|
</select>
|
|
|
|
|
<div class="field-checkbox">
|
2026-03-05 14:49:58 +01:00
|
|
|
<input type="checkbox" v-model="italic" />
|
2026-02-26 15:35:45 +01:00
|
|
|
<label class="label-with-tooltip" data-css="font-style">Italique</label>
|
2025-12-11 13:39:23 +01:00
|
|
|
</div>
|
2026-03-05 11:08:44 +01:00
|
|
|
<div class="field-checkbox">
|
2026-03-05 14:49:58 +01:00
|
|
|
<input type="checkbox" v-model="bold" />
|
2026-03-05 11:08:44 +01:00
|
|
|
<label class="label-with-tooltip" data-css="font-weight">Gras</label>
|
|
|
|
|
</div>
|
2025-12-05 18:21:54 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-02-26 15:35:45 +01:00
|
|
|
</div>
|
2025-12-05 18:21:54 +01:00
|
|
|
|
2026-02-26 15:35:45 +01:00
|
|
|
<!-- Font Size -->
|
2026-03-05 14:49:58 +01:00
|
|
|
<div class="settings-subsection" :class="{ 'setting-disabled': !settingEnabled.fontSize }">
|
|
|
|
|
<input type="checkbox" class="toggle-setting" :checked="settingEnabled.fontSize" @change="onToggleSetting('fontSize', $event.target.checked)" />
|
|
|
|
|
<div class="field field-text-size">
|
2026-02-26 15:35:45 +01:00
|
|
|
<label class="label-with-tooltip" data-css="font-size">Taille du texte</label>
|
2026-03-05 11:42:18 +01:00
|
|
|
<InputWithUnit
|
|
|
|
|
v-model="fontSizeModel"
|
|
|
|
|
:units="['px']"
|
|
|
|
|
:min="6"
|
|
|
|
|
:max="72"
|
|
|
|
|
showRange
|
|
|
|
|
/>
|
2025-12-05 18:21:54 +01:00
|
|
|
</div>
|
2026-02-26 15:35:45 +01:00
|
|
|
</div>
|
2025-12-05 18:21:54 +01:00
|
|
|
|
2026-03-02 17:29:49 +01:00
|
|
|
<!-- LineHeight -->
|
2026-03-05 14:49:58 +01:00
|
|
|
<div class="settings-subsection" :class="{ 'setting-disabled': !settingEnabled.lineHeight }">
|
|
|
|
|
<input type="checkbox" class="toggle-setting" :checked="settingEnabled.lineHeight" @change="onToggleSetting('lineHeight', $event.target.checked)" />
|
|
|
|
|
<div class="field field-text-size">
|
2026-03-02 17:29:49 +01:00
|
|
|
<label class="label-with-tooltip" data-css="line-height">Interlignage</label>
|
2026-03-05 11:42:18 +01:00
|
|
|
<InputWithUnit
|
|
|
|
|
v-model="lineHeightModel"
|
|
|
|
|
:units="['px']"
|
|
|
|
|
:min="0"
|
|
|
|
|
:max="72"
|
|
|
|
|
showRange
|
|
|
|
|
/>
|
2026-03-02 17:29:49 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-02-26 15:35:45 +01:00
|
|
|
<!-- Text Alignment -->
|
2026-03-05 14:49:58 +01:00
|
|
|
<div class="settings-subsection" :class="{ 'setting-disabled': !settingEnabled.textAlign }">
|
|
|
|
|
<input type="checkbox" class="toggle-setting" :checked="settingEnabled.textAlign" @change="onToggleSetting('textAlign', $event.target.checked)" />
|
|
|
|
|
<div class="field">
|
2026-02-26 15:35:45 +01:00
|
|
|
<label class="label-with-tooltip" data-css="text-align">Alignement</label>
|
2026-03-05 14:49:58 +01:00
|
|
|
<select v-model="textAlign">
|
2026-02-26 15:35:45 +01:00
|
|
|
<option value="left">Gauche</option>
|
|
|
|
|
<option value="center">Centre</option>
|
|
|
|
|
<option value="right">Droite</option>
|
|
|
|
|
<option value="justify">Justifié</option>
|
|
|
|
|
</select>
|
2025-12-05 18:21:54 +01:00
|
|
|
</div>
|
2026-02-26 15:35:45 +01:00
|
|
|
</div>
|
2025-12-05 18:21:54 +01:00
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
<!-- Color -->
|
|
|
|
|
<div class="settings-subsection" :class="{ 'setting-disabled': !settingEnabled.color }">
|
|
|
|
|
<input type="checkbox" class="toggle-setting" :checked="settingEnabled.color" @change="onToggleSetting('color', $event.target.checked)" />
|
|
|
|
|
<div class="field field-simple">
|
|
|
|
|
<label class="label-with-tooltip" data-css="color">Couleur du texte</label>
|
|
|
|
|
<div class="input-with-color">
|
|
|
|
|
<input
|
|
|
|
|
ref="colorInput"
|
|
|
|
|
type="text"
|
|
|
|
|
v-model="color"
|
|
|
|
|
data-coloris
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Background -->
|
|
|
|
|
<div class="settings-subsection" :class="{ 'setting-disabled': !settingEnabled.background }">
|
|
|
|
|
<input type="checkbox" class="toggle-setting" :checked="settingEnabled.background" @change="onToggleSetting('background', $event.target.checked)" />
|
|
|
|
|
<div class="field field-simple">
|
|
|
|
|
<label class="label-with-tooltip" data-css="background">Arrière-plan</label>
|
|
|
|
|
<div class="input-with-color">
|
|
|
|
|
<input
|
|
|
|
|
ref="backgroundInput"
|
|
|
|
|
type="text"
|
|
|
|
|
v-model="background"
|
|
|
|
|
data-coloris
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-03-05 11:08:44 +01:00
|
|
|
<!-- Bordure -->
|
2026-03-05 14:49:58 +01:00
|
|
|
<div class="settings-subsection" :class="{ 'setting-disabled': !settingEnabled.border }">
|
|
|
|
|
<input type="checkbox" class="toggle-setting" :checked="settingEnabled.border" @change="onToggleSetting('border', $event.target.checked)" />
|
|
|
|
|
<div class="field field-border">
|
2026-03-05 11:08:44 +01:00
|
|
|
<div class="settings-subsection-header">
|
2026-03-05 14:49:58 +01:00
|
|
|
<label class="label-with-tooltip" data-css="border">Bordure</label>
|
2026-03-05 11:08:44 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="field-border__options">
|
|
|
|
|
<div class="field-border__option">
|
|
|
|
|
<label class="label-with-tooltip" data-css="border-width">Épaisseur</label>
|
|
|
|
|
<div class="input-with-unit">
|
|
|
|
|
<NumberInput
|
|
|
|
|
v-model="borderWidth.value"
|
|
|
|
|
:min="0"
|
|
|
|
|
:step="1"
|
2026-03-05 14:49:58 +01:00
|
|
|
/>
|
2026-03-05 11:08:44 +01:00
|
|
|
<div class="unit-toggle">
|
2026-03-05 14:49:58 +01:00
|
|
|
<button type="button" class="active">px</button>
|
2026-03-05 11:08:44 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="field-border__option">
|
|
|
|
|
<label class="label-with-tooltip" data-css="border-style">Style</label>
|
2026-03-05 14:49:58 +01:00
|
|
|
<select v-model="borderStyle">
|
2026-03-05 11:08:44 +01:00
|
|
|
<option value="solid">Plein</option>
|
|
|
|
|
<option value="dotted">Pointillés</option>
|
|
|
|
|
<option value="dashed">Tirets</option>
|
|
|
|
|
<option value="double">Double</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="field-border__option">
|
|
|
|
|
<label class="label-with-tooltip" data-css="border-color">Couleur</label>
|
|
|
|
|
<div class="input-with-color">
|
|
|
|
|
<input
|
|
|
|
|
ref="borderColorInput"
|
|
|
|
|
type="text"
|
|
|
|
|
v-model="borderColor"
|
2026-03-05 14:49:58 +01:00
|
|
|
data-coloris
|
2026-03-05 11:08:44 +01:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-02-26 15:35:45 +01:00
|
|
|
<!-- Outer Margins -->
|
2026-03-05 14:49:58 +01:00
|
|
|
<div class="settings-subsection" :class="{ 'setting-disabled': !settingEnabled.margin }">
|
|
|
|
|
<input type="checkbox" class="toggle-setting" :checked="settingEnabled.margin" @change="onToggleSetting('margin', $event.target.checked)" />
|
2026-03-05 10:45:55 +01:00
|
|
|
<div class="settings-subsection-header">
|
|
|
|
|
<span class="label-with-tooltip" data-css="margin">Marges extérieures</span>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
class="lock-toggle"
|
|
|
|
|
:class="{ locked: marginLocked }"
|
2026-03-05 14:49:58 +01:00
|
|
|
@click="marginLocked = !marginLocked"
|
2026-03-05 10:45:55 +01:00
|
|
|
:title="marginLocked ? 'Déverrouiller (modifier indépendamment)' : 'Verrouiller (modifier ensemble)'"
|
|
|
|
|
>
|
|
|
|
|
<svg v-if="marginLocked" width="11" height="13" viewBox="0 0 11 13" fill="none">
|
|
|
|
|
<rect x="1" y="5.5" width="9" height="7" rx="1" fill="currentColor"/>
|
|
|
|
|
<path d="M2.5 5.5V3.5a3 3 0 0 1 6 0v2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
|
|
|
</svg>
|
|
|
|
|
<svg v-else width="11" height="13" viewBox="0 0 11 13" fill="none">
|
|
|
|
|
<rect x="1" y="5.5" width="9" height="7" rx="1" fill="currentColor"/>
|
|
|
|
|
<path d="M2.5 5.5V3.5a3 3 0 0 1 6 0" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
v-for="side in sides"
|
|
|
|
|
:key="side.key"
|
|
|
|
|
class="field field-margin"
|
2026-03-05 14:49:58 +01:00
|
|
|
>
|
2026-03-05 10:45:55 +01:00
|
|
|
<label class="label-with-tooltip" :data-css="`margin-${side.key}`">{{ side.label }}</label>
|
2026-02-26 15:35:45 +01:00
|
|
|
<div class="input-with-unit">
|
|
|
|
|
<NumberInput
|
2026-03-05 10:45:55 +01:00
|
|
|
:modelValue="margin[side.key].value"
|
2026-02-26 15:35:45 +01:00
|
|
|
:min="0"
|
|
|
|
|
:step="1"
|
2026-03-05 14:49:58 +01:00
|
|
|
@update:modelValue="(v) => updateMarginValue(side.key, v)"
|
2026-02-26 15:35:45 +01:00
|
|
|
/>
|
|
|
|
|
<div class="unit-toggle">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
2026-03-05 10:45:55 +01:00
|
|
|
:class="{ active: margin[side.key].unit === 'mm' }"
|
2026-03-05 14:49:58 +01:00
|
|
|
@click="updateMarginUnit(side.key, 'mm')"
|
2026-03-05 10:45:55 +01:00
|
|
|
>mm</button>
|
2026-02-26 15:35:45 +01:00
|
|
|
<button
|
|
|
|
|
type="button"
|
2026-03-05 10:45:55 +01:00
|
|
|
:class="{ active: margin[side.key].unit === 'px' }"
|
2026-03-05 14:49:58 +01:00
|
|
|
@click="updateMarginUnit(side.key, 'px')"
|
2026-03-05 10:45:55 +01:00
|
|
|
>px</button>
|
2025-12-05 18:21:54 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-11-24 16:51:55 +01:00
|
|
|
</div>
|
2025-12-05 18:21:54 +01:00
|
|
|
|
2026-02-26 15:35:45 +01:00
|
|
|
<!-- Inner Margins (Padding) -->
|
2026-03-05 14:49:58 +01:00
|
|
|
<div class="settings-subsection" :class="{ 'setting-disabled': !settingEnabled.padding }">
|
|
|
|
|
<input type="checkbox" class="toggle-setting" :checked="settingEnabled.padding" @change="onToggleSetting('padding', $event.target.checked)" />
|
2026-03-05 10:45:55 +01:00
|
|
|
<div class="settings-subsection-header">
|
|
|
|
|
<span class="label-with-tooltip" data-css="padding">Marges intérieures</span>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
class="lock-toggle"
|
|
|
|
|
:class="{ locked: paddingLocked }"
|
2026-03-05 14:49:58 +01:00
|
|
|
@click="paddingLocked = !paddingLocked"
|
2026-03-05 10:45:55 +01:00
|
|
|
:title="paddingLocked ? 'Déverrouiller (modifier indépendamment)' : 'Verrouiller (modifier ensemble)'"
|
|
|
|
|
>
|
|
|
|
|
<svg v-if="paddingLocked" width="11" height="13" viewBox="0 0 11 13" fill="none">
|
|
|
|
|
<rect x="1" y="5.5" width="9" height="7" rx="1" fill="currentColor"/>
|
|
|
|
|
<path d="M2.5 5.5V3.5a3 3 0 0 1 6 0v2" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
|
|
|
</svg>
|
|
|
|
|
<svg v-else width="11" height="13" viewBox="0 0 11 13" fill="none">
|
|
|
|
|
<rect x="1" y="5.5" width="9" height="7" rx="1" fill="currentColor"/>
|
|
|
|
|
<path d="M2.5 5.5V3.5a3 3 0 0 1 6 0" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
v-for="side in sides"
|
|
|
|
|
:key="side.key"
|
|
|
|
|
class="field field-margin"
|
2026-03-05 14:49:58 +01:00
|
|
|
>
|
2026-03-05 10:45:55 +01:00
|
|
|
<label class="label-with-tooltip" :data-css="`padding-${side.key}`">{{ side.label }}</label>
|
2026-02-26 15:35:45 +01:00
|
|
|
<div class="input-with-unit">
|
|
|
|
|
<NumberInput
|
2026-03-05 10:45:55 +01:00
|
|
|
:modelValue="padding[side.key].value"
|
2026-02-26 15:35:45 +01:00
|
|
|
:min="0"
|
|
|
|
|
:step="1"
|
2026-03-05 14:49:58 +01:00
|
|
|
@update:modelValue="(v) => updatePaddingValue(side.key, v)"
|
2025-12-05 18:21:54 +01:00
|
|
|
/>
|
2026-02-26 15:35:45 +01:00
|
|
|
<div class="unit-toggle">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
2026-03-05 10:45:55 +01:00
|
|
|
:class="{ active: padding[side.key].unit === 'mm' }"
|
2026-03-05 14:49:58 +01:00
|
|
|
@click="updatePaddingUnit(side.key, 'mm')"
|
2026-03-05 10:45:55 +01:00
|
|
|
>mm</button>
|
2026-02-26 15:35:45 +01:00
|
|
|
<button
|
|
|
|
|
type="button"
|
2026-03-05 10:45:55 +01:00
|
|
|
:class="{ active: padding[side.key].unit === 'px' }"
|
2026-03-05 14:49:58 +01:00
|
|
|
@click="updatePaddingUnit(side.key, 'px')"
|
2026-03-05 10:45:55 +01:00
|
|
|
>px</button>
|
2026-02-26 15:35:45 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-12-05 18:21:54 +01:00
|
|
|
</div>
|
2025-11-24 16:51:55 +01:00
|
|
|
</div>
|
2026-02-26 15:35:45 +01:00
|
|
|
</template>
|
|
|
|
|
</BasePopup>
|
2025-11-24 16:51:55 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2026-02-26 15:47:58 +01:00
|
|
|
import { ref, reactive, computed, watch, nextTick } from 'vue';
|
2025-11-24 17:55:42 +01:00
|
|
|
import { useStylesheetStore } from '../stores/stylesheet';
|
2025-12-10 11:51:53 +01:00
|
|
|
import { useDebounce } from '../composables/useDebounce';
|
2026-03-05 14:49:58 +01:00
|
|
|
import { useCssSync } from '../composables/useCssSync';
|
|
|
|
|
import { useTextDefaults } from '../composables/useTextDefaults';
|
2025-12-09 17:08:40 +01:00
|
|
|
import NumberInput from './ui/NumberInput.vue';
|
2026-03-05 11:42:18 +01:00
|
|
|
import InputWithUnit from './ui/InputWithUnit.vue';
|
2026-02-26 15:35:45 +01:00
|
|
|
import BasePopup from './ui/BasePopup.vue';
|
2026-02-24 14:08:30 +01:00
|
|
|
import { convertUnit } from '../utils/unit-conversion';
|
2025-11-24 16:51:55 +01:00
|
|
|
|
2025-11-24 17:55:42 +01:00
|
|
|
const stylesheetStore = useStylesheetStore();
|
2026-03-05 14:49:58 +01:00
|
|
|
const { extractValue: cssExtractValue, extractNumericValue } = useCssSync();
|
|
|
|
|
const textDefaults = useTextDefaults();
|
2025-11-24 17:55:42 +01:00
|
|
|
|
2025-11-24 16:51:55 +01:00
|
|
|
const props = defineProps({
|
2025-12-04 15:55:52 +01:00
|
|
|
iframeRef: Object,
|
2025-11-24 17:55:42 +01:00
|
|
|
});
|
|
|
|
|
|
2025-12-08 14:15:06 +01:00
|
|
|
const emit = defineEmits(['close']);
|
|
|
|
|
|
2026-02-26 15:35:45 +01:00
|
|
|
const basePopup = ref(null);
|
2025-12-05 18:21:54 +01:00
|
|
|
|
2026-02-26 15:35:45 +01:00
|
|
|
const visible = computed(() => basePopup.value?.visible ?? false);
|
2025-12-05 18:21:54 +01:00
|
|
|
|
2025-11-24 18:18:27 +01:00
|
|
|
const selector = ref('');
|
2025-12-05 18:21:54 +01:00
|
|
|
const selectedElement = ref(null);
|
2026-02-26 15:35:45 +01:00
|
|
|
const elementInstanceCount = ref(0);
|
2025-12-05 18:21:54 +01:00
|
|
|
const colorInput = ref(null);
|
|
|
|
|
const backgroundInput = ref(null);
|
2026-03-05 11:08:44 +01:00
|
|
|
const borderColorInput = ref(null);
|
2025-12-05 18:21:54 +01:00
|
|
|
|
|
|
|
|
let isUpdatingFromStore = false;
|
2025-12-10 11:51:53 +01:00
|
|
|
const { debouncedUpdate } = useDebounce(500);
|
2025-12-05 18:21:54 +01:00
|
|
|
|
2026-02-26 15:47:58 +01:00
|
|
|
// Style properties — flat refs for simple values, reactive for value+unit
|
|
|
|
|
const fontFamily = ref('Alegreya Sans');
|
|
|
|
|
const italic = ref(false);
|
2026-03-05 11:08:44 +01:00
|
|
|
const bold = ref(false);
|
2026-02-26 15:47:58 +01:00
|
|
|
const textAlign = ref('left');
|
|
|
|
|
const color = ref('rgb(0, 0, 0)');
|
|
|
|
|
const background = ref('transparent');
|
|
|
|
|
const fontSize = reactive({ value: 23, unit: 'px' });
|
2026-03-05 11:42:18 +01:00
|
|
|
const fontSizeModel = computed({
|
2026-03-05 14:49:58 +01:00
|
|
|
get: () => {
|
|
|
|
|
if (!settingEnabled.fontSize) {
|
|
|
|
|
// When disabled, display TextSettings' current value reactively
|
|
|
|
|
return { ...textDefaults.fontSize };
|
|
|
|
|
}
|
|
|
|
|
return { value: fontSize.value, unit: fontSize.unit };
|
|
|
|
|
},
|
2026-03-05 11:42:18 +01:00
|
|
|
set: (v) => { fontSize.value = v.value; fontSize.unit = v.unit; },
|
|
|
|
|
});
|
2026-03-02 17:29:49 +01:00
|
|
|
const lineHeight = reactive({ value: 28, unit: 'px' });
|
2026-03-05 11:42:18 +01:00
|
|
|
const lineHeightModel = computed({
|
|
|
|
|
get: () => ({ value: lineHeight.value, unit: lineHeight.unit }),
|
|
|
|
|
set: (v) => { lineHeight.value = v.value; lineHeight.unit = v.unit; },
|
|
|
|
|
});
|
2026-03-05 14:49:58 +01:00
|
|
|
const borderWidth = reactive({ value: 1, unit: 'px' });
|
2026-03-05 11:08:44 +01:00
|
|
|
const borderStyle = ref('solid');
|
|
|
|
|
const borderColor = ref('#000000');
|
2026-03-05 10:45:55 +01:00
|
|
|
|
|
|
|
|
const marginLocked = ref(true);
|
|
|
|
|
const margin = reactive({
|
|
|
|
|
top: { value: 0, unit: 'mm' },
|
|
|
|
|
right: { value: 0, unit: 'mm' },
|
|
|
|
|
bottom: { value: 0, unit: 'mm' },
|
|
|
|
|
left: { value: 0, unit: 'mm' },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const paddingLocked = ref(true);
|
|
|
|
|
const padding = reactive({
|
|
|
|
|
top: { value: 0, unit: 'mm' },
|
|
|
|
|
right: { value: 0, unit: 'mm' },
|
|
|
|
|
bottom: { value: 0, unit: 'mm' },
|
|
|
|
|
left: { value: 0, unit: 'mm' },
|
|
|
|
|
});
|
2025-12-05 18:21:54 +01:00
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
// Cache for special groups values when unchecked (to restore on re-check)
|
|
|
|
|
const settingCache = reactive({
|
|
|
|
|
font: null, // { fontFamily, italic, bold }
|
|
|
|
|
fontSize: null, // { value, unit }
|
|
|
|
|
color: null, // string
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Per-subsection toggle state
|
|
|
|
|
// Special groups (font, fontSize, color): checked by default
|
|
|
|
|
// Other groups: unchecked by default
|
|
|
|
|
const settingEnabled = reactive({
|
|
|
|
|
font: true,
|
|
|
|
|
fontSize: true,
|
|
|
|
|
lineHeight: false,
|
|
|
|
|
textAlign: false,
|
|
|
|
|
color: true,
|
|
|
|
|
background: false,
|
|
|
|
|
border: false,
|
|
|
|
|
margin: false,
|
|
|
|
|
padding: false,
|
|
|
|
|
});
|
|
|
|
|
|
2025-12-11 13:39:23 +01:00
|
|
|
// Constants
|
|
|
|
|
const fonts = ['Alegreya Sans', 'Alegreya', 'Arial', 'Georgia', 'Times New Roman'];
|
|
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
// Style property descriptors (with group field)
|
2026-02-26 15:47:58 +01:00
|
|
|
const styleProps = [
|
2026-03-05 14:49:58 +01:00
|
|
|
{ css: 'font-family', group: 'font', get: () => fontFamily.value, set: v => fontFamily.value = v.replace(/['"]/g, ''), debounce: false },
|
|
|
|
|
{ css: 'font-style', group: 'font', get: () => italic.value ? 'italic' : 'normal', set: v => italic.value = v === 'italic', debounce: false, skipWhenDefault: v => v !== 'italic' },
|
|
|
|
|
{ css: 'font-weight', group: 'font', get: () => bold.value ? 'bold' : 'normal', set: v => bold.value = v === 'bold' || parseInt(v) >= 700, debounce: false, skipWhenDefault: v => v === 'normal' },
|
|
|
|
|
{ css: 'text-align', group: 'textAlign', get: () => textAlign.value, set: v => textAlign.value = v, debounce: false },
|
|
|
|
|
{ css: 'color', group: 'color', get: () => color.value, set: v => color.value = v, debounce: true },
|
|
|
|
|
{ css: 'background', group: 'background', get: () => background.value, set: v => background.value = v, debounce: true },
|
|
|
|
|
{ css: 'border-style', group: 'border', get: () => borderStyle.value, set: v => borderStyle.value = v || 'solid', debounce: false },
|
|
|
|
|
{ css: 'border-color', group: 'border', get: () => borderColor.value, set: v => borderColor.value = v, debounce: true },
|
2026-02-26 15:47:58 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const unitProps = [
|
2026-03-05 14:49:58 +01:00
|
|
|
{ css: 'font-size', group: 'fontSize', ref: fontSize, debounce: true },
|
|
|
|
|
{ css: 'line-height', group: 'lineHeight', ref: lineHeight, debounce: true },
|
|
|
|
|
{ css: 'border-width', group: 'border', ref: borderWidth, debounce: true },
|
2026-02-26 15:47:58 +01:00
|
|
|
];
|
|
|
|
|
|
2026-03-05 10:45:55 +01:00
|
|
|
const sides = [
|
|
|
|
|
{ key: 'top', label: 'Haut' },
|
|
|
|
|
{ key: 'bottom', label: 'Bas' },
|
|
|
|
|
{ key: 'left', label: 'Gauche' },
|
|
|
|
|
{ key: 'right', label: 'Droite' },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const updateMarginValue = (side, value) => {
|
|
|
|
|
if (marginLocked.value) {
|
|
|
|
|
for (const s of ['top', 'right', 'bottom', 'left']) margin[s].value = value;
|
|
|
|
|
} else {
|
|
|
|
|
margin[side].value = value;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const updateMarginUnit = (side, unit) => {
|
|
|
|
|
if (marginLocked.value) {
|
|
|
|
|
for (const s of ['top', 'right', 'bottom', 'left']) {
|
|
|
|
|
margin[s].value = convertUnit(margin[s].value, margin[s].unit, unit);
|
|
|
|
|
margin[s].unit = unit;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
margin[side].value = convertUnit(margin[side].value, margin[side].unit, unit);
|
|
|
|
|
margin[side].unit = unit;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const updatePaddingValue = (side, value) => {
|
|
|
|
|
if (paddingLocked.value) {
|
|
|
|
|
for (const s of ['top', 'right', 'bottom', 'left']) padding[s].value = value;
|
|
|
|
|
} else {
|
|
|
|
|
padding[side].value = value;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const updatePaddingUnit = (side, unit) => {
|
|
|
|
|
if (paddingLocked.value) {
|
|
|
|
|
for (const s of ['top', 'right', 'bottom', 'left']) {
|
|
|
|
|
padding[s].value = convertUnit(padding[s].value, padding[s].unit, unit);
|
|
|
|
|
padding[s].unit = unit;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
padding[side].value = convertUnit(padding[side].value, padding[side].unit, unit);
|
|
|
|
|
padding[side].unit = unit;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
// CSS properties covered by each group
|
|
|
|
|
const settingGroups = {
|
|
|
|
|
font: ['font-family', 'font-style', 'font-weight'],
|
|
|
|
|
fontSize: ['font-size'],
|
|
|
|
|
lineHeight:['line-height'],
|
|
|
|
|
textAlign: ['text-align'],
|
|
|
|
|
color: ['color'],
|
|
|
|
|
background:['background'],
|
|
|
|
|
border: ['border-width', 'border-style', 'border-color'],
|
|
|
|
|
margin: ['margin-top', 'margin-right', 'margin-bottom', 'margin-left'],
|
|
|
|
|
padding: ['padding-top', 'padding-right', 'padding-bottom', 'padding-left'],
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Remove CSS properties from the element's custom CSS block
|
|
|
|
|
const removeProps = (cssProps) => {
|
|
|
|
|
if (!selector.value) return;
|
|
|
|
|
|
|
|
|
|
const block = stylesheetStore.extractBlock(selector.value);
|
|
|
|
|
if (!block || !stylesheetStore.customCss.includes(block)) return;
|
|
|
|
|
|
|
|
|
|
let newBlock = block;
|
|
|
|
|
for (const prop of cssProps) {
|
|
|
|
|
const escaped = prop.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
|
|
|
newBlock = newBlock.replace(
|
|
|
|
|
new RegExp('[ \\t]*' + escaped + '\\s*:[^;]*;[ \\t]*\\n?', 'g'),
|
|
|
|
|
''
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If the block is now empty, remove it entirely
|
|
|
|
|
const inner = newBlock.replace(/^[^{]*\{/, '').replace(/\}[^}]*$/, '');
|
|
|
|
|
if (!inner.trim()) {
|
|
|
|
|
stylesheetStore.replaceInCustomCss(block, '');
|
|
|
|
|
} else {
|
|
|
|
|
stylesheetStore.replaceBlock(block, newBlock);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-26 15:47:58 +01:00
|
|
|
// Generic update: push a single property to the stylesheet store
|
|
|
|
|
const updateProp = (cssProp, value, unit) => {
|
|
|
|
|
if (!selector.value) return;
|
|
|
|
|
stylesheetStore.updateProperty(selector.value, cssProp, value, unit);
|
2026-02-24 14:08:30 +01:00
|
|
|
};
|
|
|
|
|
|
2025-12-05 18:21:54 +01:00
|
|
|
const getSelectorFromElement = (element) => {
|
|
|
|
|
if (element.id) {
|
|
|
|
|
return `#${element.id}`;
|
|
|
|
|
}
|
2025-11-24 18:18:27 +01:00
|
|
|
|
2025-12-05 18:21:54 +01:00
|
|
|
const tagName = element.tagName.toLowerCase();
|
|
|
|
|
|
2025-12-08 16:35:28 +01:00
|
|
|
const classes = Array.from(element.classList).filter(
|
|
|
|
|
(cls) => !['element-hovered', 'element-selected', 'page-hovered', 'page-selected'].includes(cls)
|
|
|
|
|
);
|
2025-12-05 18:21:54 +01:00
|
|
|
if (classes.length > 0) {
|
|
|
|
|
return `${tagName}.${classes[0]}`;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tagName;
|
2025-11-24 18:18:27 +01:00
|
|
|
};
|
|
|
|
|
|
2026-02-26 15:47:58 +01:00
|
|
|
const getInstanceCount = (sel) => {
|
2025-12-05 18:21:54 +01:00
|
|
|
if (!props.iframeRef || !props.iframeRef.contentDocument) return 0;
|
2025-11-24 18:18:27 +01:00
|
|
|
|
2025-12-05 18:21:54 +01:00
|
|
|
try {
|
2026-02-26 15:47:58 +01:00
|
|
|
return props.iframeRef.contentDocument.querySelectorAll(sel).length;
|
2025-12-05 18:21:54 +01:00
|
|
|
} catch (e) {
|
|
|
|
|
return 0;
|
2025-11-24 18:18:27 +01:00
|
|
|
}
|
|
|
|
|
};
|
2025-11-24 17:55:42 +01:00
|
|
|
|
|
|
|
|
const elementCss = computed(() => {
|
2025-11-24 18:18:27 +01:00
|
|
|
if (!selector.value) return '';
|
2025-12-05 18:21:54 +01:00
|
|
|
return stylesheetStore.extractBlock(selector.value) || '';
|
2025-11-24 16:51:55 +01:00
|
|
|
});
|
|
|
|
|
|
2025-12-10 12:11:53 +01:00
|
|
|
const generatePreviewCss = () => {
|
|
|
|
|
if (!selector.value) return '';
|
|
|
|
|
|
|
|
|
|
const properties = [];
|
|
|
|
|
|
2026-02-26 15:47:58 +01:00
|
|
|
for (const prop of styleProps) {
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!settingEnabled[prop.group]) continue;
|
2026-02-26 15:47:58 +01:00
|
|
|
const val = prop.get();
|
2026-03-05 11:08:44 +01:00
|
|
|
if (!val) continue;
|
|
|
|
|
if (prop.css === 'font-style' && val !== 'italic') continue;
|
|
|
|
|
if (prop.css === 'font-weight' && val === 'normal') continue;
|
|
|
|
|
if ((prop.css === 'border-style' || prop.css === 'border-color') && borderWidth.value === 0) continue;
|
|
|
|
|
properties.push(` ${prop.css}: ${val};`);
|
2025-12-10 12:11:53 +01:00
|
|
|
}
|
2026-02-26 15:47:58 +01:00
|
|
|
|
|
|
|
|
for (const prop of unitProps) {
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!settingEnabled[prop.group]) continue;
|
2026-02-26 15:47:58 +01:00
|
|
|
if (prop.ref.value !== undefined && prop.ref.value !== null) {
|
|
|
|
|
properties.push(` ${prop.css}: ${prop.ref.value}${prop.ref.unit};`);
|
|
|
|
|
}
|
2025-12-10 12:11:53 +01:00
|
|
|
}
|
|
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
if (settingEnabled.margin) {
|
|
|
|
|
for (const side of ['top', 'right', 'bottom', 'left']) {
|
|
|
|
|
if (margin[side].value !== undefined && margin[side].value !== null) {
|
|
|
|
|
properties.push(` margin-${side}: ${margin[side].value}${margin[side].unit};`);
|
|
|
|
|
}
|
2026-03-05 10:45:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
2026-03-05 14:49:58 +01:00
|
|
|
|
|
|
|
|
if (settingEnabled.padding) {
|
|
|
|
|
for (const side of ['top', 'right', 'bottom', 'left']) {
|
|
|
|
|
if (padding[side].value !== undefined && padding[side].value !== null) {
|
|
|
|
|
properties.push(` padding-${side}: ${padding[side].value}${padding[side].unit};`);
|
|
|
|
|
}
|
2026-03-05 10:45:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-10 12:11:53 +01:00
|
|
|
if (properties.length === 0) return '';
|
|
|
|
|
|
|
|
|
|
return `${selector.value} {\n${properties.join('\n')}\n}`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const displayedCss = computed(() => {
|
|
|
|
|
if (!selector.value) return '';
|
2026-03-05 11:42:18 +01:00
|
|
|
return elementCss.value || generatePreviewCss();
|
2025-12-10 12:11:53 +01:00
|
|
|
});
|
|
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
// Apply all properties for a given group to the stylesheet
|
|
|
|
|
const applyGroup = (group) => {
|
2025-12-10 12:11:53 +01:00
|
|
|
if (!selector.value) return;
|
2026-03-05 14:49:58 +01:00
|
|
|
|
2026-02-26 15:47:58 +01:00
|
|
|
for (const prop of styleProps) {
|
2026-03-05 14:49:58 +01:00
|
|
|
if (prop.group !== group) continue;
|
|
|
|
|
if (prop.skipWhenDefault && prop.skipWhenDefault(prop.get())) continue;
|
2026-02-26 15:47:58 +01:00
|
|
|
updateProp(prop.css, prop.get());
|
|
|
|
|
}
|
|
|
|
|
for (const prop of unitProps) {
|
2026-03-05 14:49:58 +01:00
|
|
|
if (prop.group === group) updateProp(prop.css, prop.ref.value, prop.ref.unit);
|
|
|
|
|
}
|
|
|
|
|
if (group === 'margin') {
|
|
|
|
|
for (const side of ['top', 'right', 'bottom', 'left']) {
|
|
|
|
|
updateProp(`margin-${side}`, margin[side].value, margin[side].unit);
|
|
|
|
|
}
|
2026-02-26 15:47:58 +01:00
|
|
|
}
|
2026-03-05 14:49:58 +01:00
|
|
|
if (group === 'padding') {
|
|
|
|
|
for (const side of ['top', 'right', 'bottom', 'left']) {
|
|
|
|
|
updateProp(`padding-${side}`, padding[side].value, padding[side].unit);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Apply all currently-enabled groups to keep the CSS block consistent
|
|
|
|
|
const applyAllEnabledGroups = () => {
|
|
|
|
|
for (const group of Object.keys(settingEnabled)) {
|
|
|
|
|
if (settingEnabled[group]) applyGroup(group);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// When unchecking a special group: save element value, load TextSettings fallback for display
|
|
|
|
|
const saveToCacheAndLoadFallback = (group) => {
|
|
|
|
|
if (group === 'fontSize') {
|
|
|
|
|
settingCache.fontSize = { value: fontSize.value, unit: fontSize.unit };
|
|
|
|
|
// Display is handled reactively by fontSizeModel computed
|
|
|
|
|
} else if (group === 'font') {
|
|
|
|
|
settingCache.font = { fontFamily: fontFamily.value, italic: italic.value, bold: bold.value };
|
|
|
|
|
const ff = cssExtractValue('body', 'font-family');
|
|
|
|
|
if (ff) fontFamily.value = ff.replace(/['"]/g, '');
|
|
|
|
|
const fs = cssExtractValue('p', 'font-style');
|
|
|
|
|
if (fs) italic.value = fs === 'italic';
|
|
|
|
|
const fw = cssExtractValue('p', 'font-weight');
|
|
|
|
|
if (fw) bold.value = fw === 'bold' || parseInt(fw) >= 700;
|
|
|
|
|
} else if (group === 'color') {
|
|
|
|
|
settingCache.color = color.value;
|
|
|
|
|
const c = cssExtractValue('body', 'color');
|
|
|
|
|
if (c) color.value = c;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// When re-checking a special group: restore cached element value
|
|
|
|
|
const restoreFromCache = (group) => {
|
|
|
|
|
if (group === 'fontSize' && settingCache.fontSize) {
|
|
|
|
|
fontSize.value = settingCache.fontSize.value;
|
|
|
|
|
fontSize.unit = settingCache.fontSize.unit;
|
|
|
|
|
settingCache.fontSize = null;
|
|
|
|
|
} else if (group === 'font' && settingCache.font) {
|
|
|
|
|
fontFamily.value = settingCache.font.fontFamily;
|
|
|
|
|
italic.value = settingCache.font.italic;
|
|
|
|
|
bold.value = settingCache.font.bold;
|
|
|
|
|
settingCache.font = null;
|
|
|
|
|
} else if (group === 'color' && settingCache.color !== null) {
|
|
|
|
|
color.value = settingCache.color;
|
|
|
|
|
settingCache.color = null;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Toggle a setting group on/off
|
|
|
|
|
const onToggleSetting = (group, enabled) => {
|
|
|
|
|
settingEnabled[group] = enabled;
|
|
|
|
|
if (enabled) {
|
|
|
|
|
isUpdatingFromStore = true;
|
|
|
|
|
restoreFromCache(group);
|
|
|
|
|
isUpdatingFromStore = false;
|
|
|
|
|
applyAllEnabledGroups();
|
|
|
|
|
} else {
|
|
|
|
|
saveToCacheAndLoadFallback(group);
|
|
|
|
|
removeProps(settingGroups[group]);
|
2026-03-05 10:45:55 +01:00
|
|
|
}
|
2025-12-10 12:11:53 +01:00
|
|
|
};
|
|
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
// Watchers — simple props (with group guard)
|
2026-02-26 15:47:58 +01:00
|
|
|
for (const prop of styleProps) {
|
|
|
|
|
watch(prop.get, () => {
|
2026-02-26 15:35:45 +01:00
|
|
|
if (isUpdatingFromStore) return;
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!settingEnabled[prop.group]) return;
|
2026-02-26 15:47:58 +01:00
|
|
|
const fn = () => updateProp(prop.css, prop.get());
|
|
|
|
|
prop.debounce ? debouncedUpdate(fn) : fn();
|
2026-02-26 15:35:45 +01:00
|
|
|
});
|
2026-02-26 15:47:58 +01:00
|
|
|
}
|
2025-11-24 18:39:29 +01:00
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
// Watchers — unit props (with group guard)
|
2026-02-26 15:47:58 +01:00
|
|
|
for (const prop of unitProps) {
|
|
|
|
|
watch(() => prop.ref.value, () => {
|
|
|
|
|
if (isUpdatingFromStore) return;
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!settingEnabled[prop.group]) return;
|
2026-02-26 15:47:58 +01:00
|
|
|
const fn = () => updateProp(prop.css, prop.ref.value, prop.ref.unit);
|
|
|
|
|
prop.debounce ? debouncedUpdate(fn) : fn();
|
|
|
|
|
});
|
|
|
|
|
watch(() => prop.ref.unit, () => {
|
|
|
|
|
if (isUpdatingFromStore) return;
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!settingEnabled[prop.group]) return;
|
2026-02-26 15:47:58 +01:00
|
|
|
updateProp(prop.css, prop.ref.value, prop.ref.unit);
|
|
|
|
|
});
|
|
|
|
|
}
|
2026-02-26 15:35:45 +01:00
|
|
|
|
2026-03-05 10:45:55 +01:00
|
|
|
// Watchers — margin sides
|
|
|
|
|
watch(
|
|
|
|
|
() => [margin.top.value, margin.right.value, margin.bottom.value, margin.left.value],
|
|
|
|
|
() => {
|
|
|
|
|
if (isUpdatingFromStore) return;
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!settingEnabled.margin) return;
|
2026-03-05 10:45:55 +01:00
|
|
|
debouncedUpdate(() => {
|
|
|
|
|
for (const side of ['top', 'right', 'bottom', 'left']) {
|
|
|
|
|
updateProp(`margin-${side}`, margin[side].value, margin[side].unit);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
watch(
|
|
|
|
|
() => [margin.top.unit, margin.right.unit, margin.bottom.unit, margin.left.unit],
|
|
|
|
|
() => {
|
|
|
|
|
if (isUpdatingFromStore) return;
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!settingEnabled.margin) return;
|
2026-03-05 10:45:55 +01:00
|
|
|
for (const side of ['top', 'right', 'bottom', 'left']) {
|
|
|
|
|
updateProp(`margin-${side}`, margin[side].value, margin[side].unit);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Watchers — padding sides
|
|
|
|
|
watch(
|
|
|
|
|
() => [padding.top.value, padding.right.value, padding.bottom.value, padding.left.value],
|
|
|
|
|
() => {
|
|
|
|
|
if (isUpdatingFromStore) return;
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!settingEnabled.padding) return;
|
2026-03-05 10:45:55 +01:00
|
|
|
debouncedUpdate(() => {
|
|
|
|
|
for (const side of ['top', 'right', 'bottom', 'left']) {
|
|
|
|
|
updateProp(`padding-${side}`, padding[side].value, padding[side].unit);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
watch(
|
|
|
|
|
() => [padding.top.unit, padding.right.unit, padding.bottom.unit, padding.left.unit],
|
|
|
|
|
() => {
|
|
|
|
|
if (isUpdatingFromStore) return;
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!settingEnabled.padding) return;
|
2026-03-05 10:45:55 +01:00
|
|
|
for (const side of ['top', 'right', 'bottom', 'left']) {
|
|
|
|
|
updateProp(`padding-${side}`, padding[side].value, padding[side].unit);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2026-02-26 15:35:45 +01:00
|
|
|
const handleCssInput = (newCss) => {
|
|
|
|
|
const oldBlock = elementCss.value;
|
|
|
|
|
if (oldBlock) {
|
|
|
|
|
stylesheetStore.replaceInCustomCss(oldBlock, newCss);
|
2025-12-05 18:21:54 +01:00
|
|
|
}
|
2026-02-26 15:35:45 +01:00
|
|
|
};
|
2025-12-05 18:21:54 +01:00
|
|
|
|
|
|
|
|
// Watch stylesheet changes to sync values
|
|
|
|
|
watch(
|
2026-01-09 14:35:23 +01:00
|
|
|
() => stylesheetStore.customCss,
|
2025-12-05 18:21:54 +01:00
|
|
|
() => {
|
2026-02-26 15:35:45 +01:00
|
|
|
if (basePopup.value?.visible && !isUpdatingFromStore) {
|
2026-01-09 14:35:23 +01:00
|
|
|
isUpdatingFromStore = true;
|
2025-12-05 18:21:54 +01:00
|
|
|
loadValuesFromStylesheet();
|
2026-02-26 15:47:58 +01:00
|
|
|
nextTick(() => { isUpdatingFromStore = false; });
|
2026-01-09 14:35:23 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Also watch when exiting edit mode
|
|
|
|
|
watch(
|
|
|
|
|
() => stylesheetStore.isEditing,
|
|
|
|
|
(isEditing, wasEditing) => {
|
2026-02-26 15:35:45 +01:00
|
|
|
if (basePopup.value?.visible && wasEditing && !isEditing && !isUpdatingFromStore) {
|
2026-01-09 14:35:23 +01:00
|
|
|
isUpdatingFromStore = true;
|
|
|
|
|
loadValuesFromStylesheet();
|
2026-02-26 15:47:58 +01:00
|
|
|
nextTick(() => { isUpdatingFromStore = false; });
|
2025-12-05 18:21:54 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
const loadValuesFromStylesheet = (isInitialLoad = false) => {
|
2025-12-05 18:21:54 +01:00
|
|
|
if (!selector.value) return;
|
|
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
if (isInitialLoad) {
|
|
|
|
|
// Reset settingEnabled to defaults only on initial open
|
|
|
|
|
settingEnabled.font = true;
|
|
|
|
|
settingEnabled.fontSize = true;
|
|
|
|
|
settingEnabled.lineHeight = false;
|
|
|
|
|
settingEnabled.textAlign = false;
|
|
|
|
|
settingEnabled.color = true;
|
|
|
|
|
settingEnabled.background = false;
|
|
|
|
|
settingEnabled.border = false;
|
|
|
|
|
settingEnabled.margin = false;
|
|
|
|
|
settingEnabled.padding = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const groupsFound = new Set();
|
|
|
|
|
|
|
|
|
|
// Only detect settingEnabled from the custom CSS block (not baseCss fallback)
|
|
|
|
|
const customCssBlock = (() => {
|
|
|
|
|
const css = stylesheetStore.customCss;
|
|
|
|
|
if (!css) return '';
|
|
|
|
|
const escaped = selector.value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
|
|
|
const match = new RegExp(escaped + '\\s*\\{([^}]*)\\}').exec(css);
|
|
|
|
|
return match ? match[1] : '';
|
|
|
|
|
})();
|
|
|
|
|
const isInCustomCss = (cssProp) =>
|
|
|
|
|
customCssBlock.includes(cssProp + ':') || customCssBlock.includes(cssProp + ' :');
|
|
|
|
|
|
2025-12-05 18:21:54 +01:00
|
|
|
try {
|
2026-02-26 15:47:58 +01:00
|
|
|
// Simple props
|
|
|
|
|
for (const prop of styleProps) {
|
|
|
|
|
const data = stylesheetStore.extractValue(selector.value, prop.css);
|
|
|
|
|
if (data) {
|
2026-03-05 14:49:58 +01:00
|
|
|
if (isInCustomCss(prop.css)) groupsFound.add(prop.group);
|
|
|
|
|
// During live sync, don't overwrite refs for disabled groups (they show cached/fallback values)
|
|
|
|
|
if (isInitialLoad || settingEnabled[prop.group]) {
|
|
|
|
|
const value = typeof data === 'string' ? data : data.value;
|
|
|
|
|
prop.set(value);
|
|
|
|
|
}
|
2026-02-26 15:47:58 +01:00
|
|
|
}
|
2025-12-05 18:21:54 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-26 15:47:58 +01:00
|
|
|
// Unit props
|
|
|
|
|
for (const prop of unitProps) {
|
|
|
|
|
const data = stylesheetStore.extractValue(selector.value, prop.css);
|
|
|
|
|
if (data && data.value !== undefined) {
|
2026-03-05 14:49:58 +01:00
|
|
|
if (isInCustomCss(prop.css)) groupsFound.add(prop.group);
|
|
|
|
|
if (isInitialLoad || settingEnabled[prop.group]) {
|
|
|
|
|
prop.ref.value = data.value;
|
|
|
|
|
prop.ref.unit = data.unit;
|
|
|
|
|
}
|
2026-02-26 15:47:58 +01:00
|
|
|
}
|
2025-12-05 18:21:54 +01:00
|
|
|
}
|
2026-03-05 10:45:55 +01:00
|
|
|
|
|
|
|
|
// Margin sides — try individual first, fallback to shorthand
|
|
|
|
|
const spacingSides = ['top', 'right', 'bottom', 'left'];
|
|
|
|
|
let anyMarginFound = false;
|
|
|
|
|
for (const side of spacingSides) {
|
|
|
|
|
const data = stylesheetStore.extractValue(selector.value, `margin-${side}`);
|
|
|
|
|
if (data && data.value !== undefined) {
|
|
|
|
|
margin[side].value = data.value;
|
|
|
|
|
margin[side].unit = data.unit;
|
2026-03-05 14:49:58 +01:00
|
|
|
if (isInCustomCss(`margin-${side}`)) anyMarginFound = true;
|
2026-03-05 10:45:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!anyMarginFound && isInCustomCss('margin')) {
|
2026-03-05 10:45:55 +01:00
|
|
|
const data = stylesheetStore.extractValue(selector.value, 'margin');
|
|
|
|
|
if (data && data.value !== undefined) {
|
|
|
|
|
for (const side of spacingSides) {
|
|
|
|
|
margin[side].value = data.value;
|
|
|
|
|
margin[side].unit = data.unit;
|
|
|
|
|
}
|
2026-03-05 14:49:58 +01:00
|
|
|
anyMarginFound = true;
|
2026-03-05 10:45:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
2026-03-05 14:49:58 +01:00
|
|
|
if (anyMarginFound) groupsFound.add('margin');
|
2026-03-05 10:45:55 +01:00
|
|
|
|
|
|
|
|
// Padding sides — try individual first, fallback to shorthand
|
|
|
|
|
let anyPaddingFound = false;
|
|
|
|
|
for (const side of spacingSides) {
|
|
|
|
|
const data = stylesheetStore.extractValue(selector.value, `padding-${side}`);
|
|
|
|
|
if (data && data.value !== undefined) {
|
|
|
|
|
padding[side].value = data.value;
|
|
|
|
|
padding[side].unit = data.unit;
|
2026-03-05 14:49:58 +01:00
|
|
|
if (isInCustomCss(`padding-${side}`)) anyPaddingFound = true;
|
2026-03-05 10:45:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
2026-03-05 14:49:58 +01:00
|
|
|
if (!anyPaddingFound && isInCustomCss('padding')) {
|
2026-03-05 10:45:55 +01:00
|
|
|
const data = stylesheetStore.extractValue(selector.value, 'padding');
|
|
|
|
|
if (data && data.value !== undefined) {
|
|
|
|
|
for (const side of spacingSides) {
|
|
|
|
|
padding[side].value = data.value;
|
|
|
|
|
padding[side].unit = data.unit;
|
|
|
|
|
}
|
2026-03-05 14:49:58 +01:00
|
|
|
anyPaddingFound = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (anyPaddingFound) groupsFound.add('padding');
|
|
|
|
|
|
|
|
|
|
// Update settingEnabled based on what was found in the element's CSS
|
|
|
|
|
if (isInitialLoad) {
|
|
|
|
|
for (const group of ['lineHeight', 'textAlign', 'background', 'border', 'margin', 'padding']) {
|
|
|
|
|
settingEnabled[group] = groupsFound.has(group);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// During live sync: only enable groups newly found in CSS, never override user's manual toggles
|
|
|
|
|
for (const group of Object.keys(settingEnabled)) {
|
|
|
|
|
if (groupsFound.has(group)) settingEnabled[group] = true;
|
2026-03-05 10:45:55 +01:00
|
|
|
}
|
|
|
|
|
}
|
2026-03-05 14:49:58 +01:00
|
|
|
|
|
|
|
|
// Special groups: font, fontSize, color — always enabled
|
|
|
|
|
// If not found in element CSS, load fallback values from TextSettings selectors
|
|
|
|
|
// Only on initial open — during live sync, ElementPopup is independent from TextSettings
|
|
|
|
|
if (isInitialLoad) {
|
|
|
|
|
if (!groupsFound.has('font')) {
|
|
|
|
|
const ff = stylesheetStore.extractValue('body', 'font-family');
|
|
|
|
|
if (ff) fontFamily.value = (typeof ff === 'string' ? ff : ff.value).replace(/['"]/g, '');
|
|
|
|
|
const fs = stylesheetStore.extractValue('p', 'font-style');
|
|
|
|
|
if (fs) italic.value = (typeof fs === 'string' ? fs : fs.value) === 'italic';
|
|
|
|
|
const fw = stylesheetStore.extractValue('p', 'font-weight');
|
|
|
|
|
if (fw) { const v = typeof fw === 'string' ? fw : fw.value; bold.value = v === 'bold' || parseInt(v) >= 700; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!groupsFound.has('fontSize')) {
|
|
|
|
|
const data = stylesheetStore.extractValue('p', 'font-size');
|
|
|
|
|
if (data && data.value !== undefined) {
|
|
|
|
|
fontSize.value = data.value;
|
|
|
|
|
fontSize.unit = data.unit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!groupsFound.has('color')) {
|
|
|
|
|
const c = stylesheetStore.extractValue('body', 'color');
|
|
|
|
|
if (c) color.value = typeof c === 'string' ? c : c.value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-05 18:21:54 +01:00
|
|
|
} catch (error) {
|
|
|
|
|
console.error('Error loading values from stylesheet:', error);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2025-12-08 14:15:06 +01:00
|
|
|
const open = (element, event, count = null) => {
|
2026-03-05 14:49:58 +01:00
|
|
|
// Clear cache from any previous element
|
|
|
|
|
settingCache.font = null;
|
|
|
|
|
settingCache.fontSize = null;
|
|
|
|
|
settingCache.color = null;
|
|
|
|
|
|
2026-01-09 14:31:42 +01:00
|
|
|
isUpdatingFromStore = true;
|
|
|
|
|
|
2025-12-05 18:21:54 +01:00
|
|
|
selectedElement.value = element;
|
|
|
|
|
selector.value = getSelectorFromElement(element);
|
|
|
|
|
|
2025-12-08 14:15:06 +01:00
|
|
|
elementInstanceCount.value = count !== null ? count : getInstanceCount(selector.value);
|
|
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
loadValuesFromStylesheet(true);
|
2026-02-26 15:35:45 +01:00
|
|
|
basePopup.value.open(event);
|
2025-12-05 18:21:54 +01:00
|
|
|
|
2026-02-26 15:47:58 +01:00
|
|
|
nextTick(() => { isUpdatingFromStore = false; });
|
2025-12-05 18:21:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const close = () => {
|
2026-02-26 15:35:45 +01:00
|
|
|
basePopup.value?.close();
|
2025-12-05 18:21:54 +01:00
|
|
|
selector.value = '';
|
|
|
|
|
selectedElement.value = null;
|
2025-12-08 14:15:06 +01:00
|
|
|
emit('close');
|
2025-12-05 18:21:54 +01:00
|
|
|
};
|
|
|
|
|
|
2025-12-08 14:15:06 +01:00
|
|
|
const handleIframeClick = (event, targetElement = null, elementCount = null) => {
|
2025-12-08 12:41:14 +01:00
|
|
|
const element = targetElement || event.target;
|
2025-12-05 18:21:54 +01:00
|
|
|
|
|
|
|
|
if (element.tagName === 'BODY' || element.tagName === 'HTML') {
|
|
|
|
|
close();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-26 15:35:45 +01:00
|
|
|
if (basePopup.value?.visible) {
|
2025-12-05 18:21:54 +01:00
|
|
|
close();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-08 14:15:06 +01:00
|
|
|
open(element, event, elementCount);
|
2025-12-05 18:21:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
defineExpose({ handleIframeClick, close, visible });
|
2025-11-24 16:51:55 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2025-12-08 16:17:34 +01:00
|
|
|
/* ElementPopup-specific styles (purple theme) */
|
2025-12-05 18:21:54 +01:00
|
|
|
.element-label {
|
2025-12-08 14:15:06 +01:00
|
|
|
background: var(--color-purple);
|
2025-12-05 18:21:54 +01:00
|
|
|
color: white;
|
|
|
|
|
padding: 0.25rem 0.5rem;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.instance-count {
|
2025-12-08 14:15:06 +01:00
|
|
|
color: var(--color-purple);
|
2025-11-24 16:51:55 +01:00
|
|
|
font-size: 0.875rem;
|
|
|
|
|
}
|
2026-03-05 10:45:55 +01:00
|
|
|
|
|
|
|
|
.settings-subsection-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 14:49:58 +01:00
|
|
|
/* Toggle setting checkbox */
|
|
|
|
|
.toggle-setting {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
accent-color: var(--color-purple, #7c3aed);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Disabled state: grey out fields but keep checkbox interactive */
|
|
|
|
|
.setting-disabled .field,
|
|
|
|
|
.setting-disabled .settings-subsection-header {
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 10:45:55 +01:00
|
|
|
.lock-toggle {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
background: none;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 2px 4px;
|
|
|
|
|
color: var(--color-text-muted, #999);
|
|
|
|
|
transition: color 0.15s, border-color 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lock-toggle:hover:not(:disabled) {
|
|
|
|
|
color: var(--color-text, #333);
|
|
|
|
|
border-color: var(--color-border, #ccc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lock-toggle.locked {
|
|
|
|
|
color: var(--color-purple, #7c3aed);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lock-toggle:disabled {
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
2025-11-24 16:51:55 +01:00
|
|
|
</style>
|