Start working on the edit box for crop settings
This commit is contained in:
parent
09cf3ce54e
commit
6ce8bba6b7
@ -11,7 +11,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="flex-nogrow flex-noshrink"
|
class="flex-nogrow flex-noshrink"
|
||||||
@click="editMode = false"
|
@click="disableEditMode()"
|
||||||
>
|
>
|
||||||
Exit edit mode
|
Exit edit mode
|
||||||
</div>
|
</div>
|
||||||
@ -20,7 +20,7 @@
|
|||||||
<div class="flex-grow"></div>
|
<div class="flex-grow"></div>
|
||||||
<div
|
<div
|
||||||
class=""
|
class=""
|
||||||
@click="editMode = true"
|
@click="enableEditMode()"
|
||||||
>
|
>
|
||||||
Edit ratios and shortcuts
|
Edit ratios and shortcuts
|
||||||
</div>
|
</div>
|
||||||
@ -44,11 +44,56 @@
|
|||||||
:key="index"
|
:key="index"
|
||||||
:label="command.label"
|
:label="command.label"
|
||||||
:shortcut="getKeyboardShortcutLabel(command)"
|
:shortcut="getKeyboardShortcutLabel(command)"
|
||||||
@click="execAction(command)"
|
@click="editMode ? editAction(command, 'crop') : execAction(command)"
|
||||||
>
|
>
|
||||||
</ShortcutButton>
|
</ShortcutButton>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- EDIT MODE PANEL -->
|
||||||
|
<div class="edit-action-area">
|
||||||
|
<div>
|
||||||
|
Editing options for <b>{{editModeOptions?.crop?.selected?.label}}</b>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Some options are only shown for type 4 (fixed) crops -->
|
||||||
|
<template v-if="editModeOptions?.crop?.selected.arguments.type === AspectRatioType.Fixed">
|
||||||
|
<div>
|
||||||
|
Label: -- todo --
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
Ratio: -- todo --
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<!-- editing keyboard shortcuts is always allowed -->
|
||||||
|
<div>
|
||||||
|
-- todo: edit keyboard shortcut --
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
------------ <br/>>
|
||||||
|
present items:<br/>>
|
||||||
|
editModeOptions? {{!!editModeOptions}}<br/>
|
||||||
|
.crop? {{!!editModeOptions?.crop}}<br/>
|
||||||
|
.selected? {{!!editModeOptions?.crop?.selected}}<br/>
|
||||||
|
<br/>
|
||||||
|
selected action:<br/>{{editModeOptions?.crop?.selected}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- <select class=""
|
||||||
|
:value="selectedAction"
|
||||||
|
@change="setAction($event.target.value)"
|
||||||
|
>
|
||||||
|
<option :value="undefined" selected disabled>Select ...</option>
|
||||||
|
<option v-for="(action, key) in ActionList"
|
||||||
|
:value="key"
|
||||||
|
:key="key"
|
||||||
|
>
|
||||||
|
{{action.name}}
|
||||||
|
</option>
|
||||||
|
</select> -->
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="flex flex-row">
|
<div class="flex flex-row">
|
||||||
<div class="label">Default for this site</div>
|
<div class="label">Default for this site</div>
|
||||||
<div class="select">
|
<div class="select">
|
||||||
@ -274,6 +319,7 @@ export default {
|
|||||||
y: 0
|
y: 0
|
||||||
},
|
},
|
||||||
editMode: true,
|
editMode: true,
|
||||||
|
editModeOptions: {},
|
||||||
resizerConfig: {
|
resizerConfig: {
|
||||||
crop: null,
|
crop: null,
|
||||||
stretch: null,
|
stretch: null,
|
||||||
@ -455,7 +501,26 @@ export default {
|
|||||||
//#endregion cropping
|
//#endregion cropping
|
||||||
|
|
||||||
//#region edit mode
|
//#region edit mode
|
||||||
|
enableEditMode() {
|
||||||
|
this.editMode = true;
|
||||||
|
this.editModeOptions = {};
|
||||||
|
},
|
||||||
|
|
||||||
|
disableEditMode() {
|
||||||
|
this.editMode = false;
|
||||||
|
},
|
||||||
|
|
||||||
|
editAction(command, actionType) {
|
||||||
|
try {
|
||||||
|
if (!this.editModeOptions[actionType]) {
|
||||||
|
this.editModeOptions[actionType] = {selected: command}
|
||||||
|
} else {
|
||||||
|
this.editModeOptions[actionType].selected = command;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error(`[Ultrawidify] there's a problem with VideoSettings.vue::editAction():`, e);
|
||||||
|
}
|
||||||
|
},
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
//#region comms and bus
|
//#region comms and bus
|
||||||
@ -488,7 +553,7 @@ export default {
|
|||||||
if (! command.shortcut) {
|
if (! command.shortcut) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
return KeyboardShortcutParser.getKeyboardShortcutLabel(command.shortcut);
|
return KeyboardShortcutParser.parseShortcut(command.shortcut);
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user