frequi_origin/src/components/general/EditValue.vue

125 lines
3.0 KiB
Vue
Raw Normal View History

2023-05-07 07:13:18 +00:00
<template>
<div class="d-flex flex-row">
2023-05-07 07:19:55 +00:00
<div class="flex-grow-1">
<slot v-if="!editing"> </slot>
<b-form-input v-else v-model="localName" size="sm"> </b-form-input>
</div>
<div
class="flex-grow-2 mt-auto d-flex gap-1 ms-1"
:class="alignVertical ? 'flex-column' : 'flex-row'"
>
2023-05-07 07:19:55 +00:00
<template v-if="allowEdit && !(addNew || editing)">
<b-button
size="sm"
variant="secondary"
:title="`Edit this ${editableName}.`"
@click="editing = true"
>
<EditIcon :size="16" />
</b-button>
<b-button
size="sm"
variant="secondary"
:title="`Delete this ${editableName}.`"
@click="$emit('delete', modelValue)"
>
<DeleteIcon :size="16" />
</b-button>
</template>
2023-05-07 07:13:18 +00:00
<b-button
2023-05-07 07:19:55 +00:00
v-if="allowAdd && !(addNew || editing)"
2023-05-07 07:13:18 +00:00
size="sm"
2023-05-07 07:19:55 +00:00
:title="`Add new ${editableName}.`"
2023-05-07 07:13:18 +00:00
variant="primary"
2023-05-07 07:19:55 +00:00
@click="addNewClick"
><AddIcon :size="16" />
2023-05-07 07:13:18 +00:00
</b-button>
2023-05-07 10:45:02 +00:00
<template v-if="addNew || editing">
2023-05-07 07:19:55 +00:00
<b-button
size="sm"
:title="`Add new '${editableName}`"
variant="primary"
@click="saveNewName"
>
<CheckIcon :size="16" />
</b-button>
<b-button size="sm" title="Abort" class="ms-1" variant="secondary" @click="abort">
<CloseIcon :size="16" />
</b-button>
</template>
</div>
2023-05-07 07:13:18 +00:00
</div>
</template>
<script setup lang="ts">
import CheckIcon from 'vue-material-design-icons/Check.vue';
import CloseIcon from 'vue-material-design-icons/Close.vue';
import DeleteIcon from 'vue-material-design-icons/Delete.vue';
import EditIcon from 'vue-material-design-icons/Pencil.vue';
import AddIcon from 'vue-material-design-icons/PlusBoxOutline.vue';
2023-05-07 10:45:02 +00:00
import { ref, watch } from 'vue';
2023-05-07 07:13:18 +00:00
const props = defineProps({
modelValue: {
type: String,
required: true,
},
allowEdit: {
type: Boolean,
default: false,
},
2023-05-07 07:16:25 +00:00
allowAdd: {
type: Boolean,
default: false,
},
2023-05-07 07:13:18 +00:00
editableName: {
type: String,
required: true,
},
alignVertical: {
type: Boolean,
default: false,
},
2023-05-07 07:13:18 +00:00
});
const emit = defineEmits<{
(e: 'delete', value: string): void;
(e: 'new', value: string): void;
(e: 'rename', oldName: string, newName: string): void;
}>();
const addNew = ref(false);
const localName = ref<string>(props.modelValue);
const editing = ref<boolean>(false);
function abort() {
editing.value = false;
addNew.value = false;
localName.value = props.modelValue;
}
function addNewClick() {
localName.value = '';
addNew.value = true;
editing.value = true;
}
2023-05-07 10:45:02 +00:00
watch(
() => props.modelValue,
() => {
localName.value = props.modelValue;
},
);
2023-05-07 07:13:18 +00:00
function saveNewName() {
editing.value = false;
if (addNew.value) {
addNew.value = false;
emit('new', localName.value);
} else {
// Editing
emit('rename', props.modelValue, localName.value);
}
}
</script>