2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2021-12-11 08:01:05 -06:00
|
|
|
<MkModal ref="modal" :front="true" @click="done(true)" @closed="$emit('closed')">
|
2020-10-17 06:12:00 -05:00
|
|
|
<div class="mk-dialog">
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-if="icon" class="icon">
|
2021-04-20 09:22:59 -05:00
|
|
|
<i :class="icon"></i>
|
2020-10-17 06:12:00 -05:00
|
|
|
</div>
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-else-if="!input && !select" class="icon" :class="type">
|
2021-04-20 09:22:59 -05:00
|
|
|
<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>
|
2021-04-22 22:17:04 -05:00
|
|
|
<i v-else-if="type === 'info'" class="fas fa-info-circle"></i>
|
2021-04-20 09:22:59 -05:00
|
|
|
<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>
|
2020-10-17 06:12:00 -05:00
|
|
|
</div>
|
2020-10-24 22:25:13 -05:00
|
|
|
<header v-if="title"><Mfm :text="title"/></header>
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-if="text" class="body"><Mfm :text="text"/></div>
|
2021-11-28 05:07:37 -06:00
|
|
|
<MkInput v-if="input" v-model="inputValue" autofocus :type="input.type || 'text'" :placeholder="input.placeholder" @keydown="onInputKeydown">
|
|
|
|
<template v-if="input.type === 'password'" #prefix><i class="fas fa-lock"></i></template>
|
|
|
|
</MkInput>
|
2021-08-06 08:29:19 -05:00
|
|
|
<MkSelect v-if="select" v-model="selectedValue" autofocus>
|
2020-10-17 06:12:00 -05:00
|
|
|
<template v-if="select.items">
|
|
|
|
<option v-for="item in select.items" :value="item.value">{{ item.text }}</option>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
2020-10-17 06:12:00 -05:00
|
|
|
<optgroup v-for="groupedItem in select.groupedItems" :label="groupedItem.label">
|
|
|
|
<option v-for="item in groupedItem.items" :value="item.value">{{ item.text }}</option>
|
|
|
|
</optgroup>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
2020-10-17 06:12:00 -05:00
|
|
|
</MkSelect>
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-if="(showOkButton || showCancelButton) && !actions" class="buttons">
|
|
|
|
<MkButton v-if="showOkButton" inline primary :autofocus="!input && !select" @click="ok">{{ (showCancelButton || input || select) ? $ts.ok : $ts.gotIt }}</MkButton>
|
|
|
|
<MkButton v-if="showCancelButton || input || select" inline @click="cancel">{{ $ts.cancel }}</MkButton>
|
2020-10-17 06:12:00 -05:00
|
|
|
</div>
|
2021-11-19 04:36:12 -06:00
|
|
|
<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>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
2020-10-17 06:12:00 -05:00
|
|
|
</div>
|
|
|
|
</MkModal>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 06:12:00 -05:00
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
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';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2020-01-29 13:37:25 -06:00
|
|
|
components: {
|
2020-10-17 06:12:00 -05:00
|
|
|
MkModal,
|
2020-01-29 13:37:25 -06:00
|
|
|
MkButton,
|
|
|
|
MkInput,
|
|
|
|
MkSelect,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: 'info'
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
text: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
input: {
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
icon: {
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
actions: {
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
showOkButton: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
showCancelButton: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
cancelableByBgClick: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
emits: ['done', 'closed'],
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
inputValue: this.input && this.input.default ? this.input.default : null,
|
|
|
|
selectedValue: this.select ? this.select.default ? this.select.default : this.select.items ? this.select.items[0].value : this.select.groupedItems[0].items[0].value : null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
document.addEventListener('keydown', this.onKeydown);
|
|
|
|
},
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
beforeUnmount() {
|
2020-01-29 13:37:25 -06:00
|
|
|
document.removeEventListener('keydown', this.onKeydown);
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
2020-10-17 06:12:00 -05:00
|
|
|
done(canceled, result?) {
|
|
|
|
this.$emit('done', { canceled, result });
|
|
|
|
this.$refs.modal.close();
|
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
async ok() {
|
|
|
|
if (!this.showOkButton) return;
|
|
|
|
|
2020-10-24 21:29:10 -05:00
|
|
|
const result =
|
|
|
|
this.input ? this.inputValue :
|
|
|
|
this.select ? this.selectedValue :
|
|
|
|
true;
|
|
|
|
this.done(false, result);
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
cancel() {
|
2020-10-17 06:12:00 -05:00
|
|
|
this.done(true);
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
onBgClick() {
|
|
|
|
if (this.cancelableByBgClick) {
|
|
|
|
this.cancel();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onKeydown(e) {
|
|
|
|
if (e.which === 27) { // ESC
|
|
|
|
this.cancel();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onInputKeydown(e) {
|
|
|
|
if (e.which === 13) { // Enter
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
this.ok();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-dialog {
|
2020-10-17 06:12:00 -05:00
|
|
|
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;
|
|
|
|
|
2021-11-28 05:07:37 -06:00
|
|
|
&.info {
|
|
|
|
color: #55c4dd;
|
|
|
|
}
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
&.success {
|
2020-11-01 07:09:16 -06:00
|
|
|
color: var(--success);
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
&.error {
|
2020-11-01 07:09:16 -06:00
|
|
|
color: var(--error);
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
&.warning {
|
2020-11-01 07:09:16 -06:00
|
|
|
color: var(--warn);
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
> * {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
& + header {
|
|
|
|
margin-top: 16px;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
> header {
|
|
|
|
margin: 0 0 8px 0;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 20px;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
& + .body {
|
|
|
|
margin-top: 8px;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
> .body {
|
|
|
|
margin: 16px 0 0 0;
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
> .buttons {
|
|
|
|
margin-top: 16px;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
> * {
|
|
|
|
margin: 0 8px;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|