209 lines
4.9 KiB
Vue
209 lines
4.9 KiB
Vue
<template>
|
|
<MkModal ref="modal" :prefer-type="'dialog'" :z-priority="'high'" @click="done(true)" @closed="emit('closed')">
|
|
<div class="mk-dialog">
|
|
<div v-if="icon" class="icon">
|
|
<i :class="icon"></i>
|
|
</div>
|
|
<div v-else-if="!input && !select" class="icon" :class="type">
|
|
<i v-if="type === 'success'" class="fas fa-check"></i>
|
|
<i v-else-if="type === 'error'" class="fas fa-times-circle"></i>
|
|
<i v-else-if="type === 'warning'" class="fas fa-exclamation-triangle"></i>
|
|
<i v-else-if="type === 'info'" class="fas fa-info-circle"></i>
|
|
<i v-else-if="type === 'question'" class="fas fa-question-circle"></i>
|
|
<i v-else-if="type === 'waiting'" class="fas fa-spinner fa-pulse"></i>
|
|
</div>
|
|
<header v-if="title"><Mfm :text="title"/></header>
|
|
<div v-if="text" class="body"><Mfm :text="text"/></div>
|
|
<MkInput v-if="input" v-model="inputValue" autofocus :type="input.type || 'text'" :placeholder="input.placeholder || undefined" @keydown="onInputKeydown">
|
|
<template v-if="input.type === 'password'" #prefix><i class="fas fa-lock"></i></template>
|
|
</MkInput>
|
|
<MkSelect v-if="select" v-model="selectedValue" autofocus>
|
|
<template v-if="select.items">
|
|
<option v-for="item in select.items" :value="item.value">{{ item.text }}</option>
|
|
</template>
|
|
<template v-else>
|
|
<optgroup v-for="groupedItem in select.groupedItems" :label="groupedItem.label">
|
|
<option v-for="item in groupedItem.items" :value="item.value">{{ item.text }}</option>
|
|
</optgroup>
|
|
</template>
|
|
</MkSelect>
|
|
<div v-if="(showOkButton || showCancelButton) && !actions" class="buttons">
|
|
<MkButton v-if="showOkButton" inline primary :autofocus="!input && !select" @click="ok">{{ (showCancelButton || input || select) ? i18n.ts.ok : i18n.ts.gotIt }}</MkButton>
|
|
<MkButton v-if="showCancelButton || input || select" inline @click="cancel">{{ i18n.ts.cancel }}</MkButton>
|
|
</div>
|
|
<div v-if="actions" class="buttons">
|
|
<MkButton v-for="action in actions" :key="action.text" inline :primary="action.primary" @click="() => { action.callback(); close(); }">{{ action.text }}</MkButton>
|
|
</div>
|
|
</div>
|
|
</MkModal>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onBeforeUnmount, onMounted, ref } from 'vue';
|
|
import MkModal from '@/components/ui/modal.vue';
|
|
import MkButton from '@/components/ui/button.vue';
|
|
import MkInput from '@/components/form/input.vue';
|
|
import MkSelect from '@/components/form/select.vue';
|
|
import { i18n } from '@/i18n';
|
|
|
|
type Input = {
|
|
type: HTMLInputElement['type'];
|
|
placeholder?: string | null;
|
|
default: any | null;
|
|
};
|
|
|
|
type Select = {
|
|
items: {
|
|
value: string;
|
|
text: string;
|
|
}[];
|
|
groupedItems: {
|
|
label: string;
|
|
items: {
|
|
value: string;
|
|
text: string;
|
|
}[];
|
|
}[];
|
|
default: string | null;
|
|
};
|
|
|
|
const props = withDefaults(defineProps<{
|
|
type?: 'success' | 'error' | 'warning' | 'info' | 'question' | 'waiting';
|
|
title: string;
|
|
text?: string;
|
|
input?: Input;
|
|
select?: Select;
|
|
icon?: string;
|
|
actions?: {
|
|
text: string;
|
|
primary?: boolean,
|
|
callback: (...args: any[]) => void;
|
|
}[];
|
|
showOkButton?: boolean;
|
|
showCancelButton?: boolean;
|
|
cancelableByBgClick?: boolean;
|
|
}>(), {
|
|
type: 'info',
|
|
showOkButton: true,
|
|
showCancelButton: false,
|
|
cancelableByBgClick: true,
|
|
});
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'done', v: { canceled: boolean; result: any }): void;
|
|
(e: 'closed'): void;
|
|
}>();
|
|
|
|
const modal = ref<InstanceType<typeof MkModal>>();
|
|
|
|
const inputValue = ref(props.input?.default || null);
|
|
const selectedValue = ref(props.select?.default || null);
|
|
|
|
function done(canceled: boolean, result?) {
|
|
emit('done', { canceled, result });
|
|
modal.value?.close();
|
|
}
|
|
|
|
async function ok() {
|
|
if (!props.showOkButton) return;
|
|
|
|
const result =
|
|
props.input ? inputValue.value :
|
|
props.select ? selectedValue.value :
|
|
true;
|
|
done(false, result);
|
|
}
|
|
|
|
function cancel() {
|
|
done(true);
|
|
}
|
|
/*
|
|
function onBgClick() {
|
|
if (props.cancelableByBgClick) cancel();
|
|
}
|
|
*/
|
|
function onKeydown(e: KeyboardEvent) {
|
|
if (e.key === 'Escape') cancel();
|
|
}
|
|
|
|
function onInputKeydown(e: KeyboardEvent) {
|
|
if (e.key === 'Enter') {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
ok();
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
document.addEventListener('keydown', onKeydown);
|
|
});
|
|
|
|
onBeforeUnmount(() => {
|
|
document.removeEventListener('keydown', onKeydown);
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mk-dialog {
|
|
position: relative;
|
|
padding: 32px;
|
|
min-width: 320px;
|
|
max-width: 480px;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
background: var(--panel);
|
|
border-radius: var(--radius);
|
|
|
|
> .icon {
|
|
font-size: 32px;
|
|
|
|
&.info {
|
|
color: #55c4dd;
|
|
}
|
|
|
|
&.success {
|
|
color: var(--success);
|
|
}
|
|
|
|
&.error {
|
|
color: var(--error);
|
|
}
|
|
|
|
&.warning {
|
|
color: var(--warn);
|
|
}
|
|
|
|
> * {
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
& + header {
|
|
margin-top: 16px;
|
|
}
|
|
}
|
|
|
|
> header {
|
|
margin: 0 0 8px 0;
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
|
|
& + .body {
|
|
margin-top: 8px;
|
|
}
|
|
}
|
|
|
|
> .body {
|
|
margin: 16px 0 0 0;
|
|
}
|
|
|
|
> .buttons {
|
|
margin-top: 16px;
|
|
|
|
> * {
|
|
margin: 0 8px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|