2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkModal
|
|
|
|
ref="modal"
|
|
|
|
:prefer-type="'dialog'"
|
|
|
|
@click="done(true)"
|
|
|
|
@closed="emit('closed')"
|
|
|
|
>
|
2023-02-19 00:34:41 +01:00
|
|
|
<div :class="$style.root">
|
|
|
|
<div v-if="icon" :class="$style.icon">
|
|
|
|
<i :class="icon"></i>
|
2022-10-26 07:44:38 +02:00
|
|
|
</div>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div
|
|
|
|
v-else-if="!input && !select"
|
|
|
|
:class="[$style.icon, $style['type_' + type]]"
|
|
|
|
>
|
|
|
|
<i
|
|
|
|
v-if="type === 'success'"
|
|
|
|
:class="$style.iconInner"
|
|
|
|
class="ph-check ph-bold ph-lg"
|
|
|
|
></i>
|
|
|
|
<i
|
|
|
|
v-else-if="type === 'error'"
|
|
|
|
:class="$style.iconInner"
|
|
|
|
class="ph-circle-wavy-warning ph-bold ph-lg"
|
|
|
|
></i>
|
|
|
|
<i
|
|
|
|
v-else-if="type === 'warning'"
|
|
|
|
:class="$style.iconInner"
|
|
|
|
class="ph-warning ph-bold ph-lg"
|
|
|
|
></i>
|
|
|
|
<i
|
|
|
|
v-else-if="type === 'info'"
|
|
|
|
:class="$style.iconInner"
|
|
|
|
class="ph-info ph-bold ph-lg"
|
|
|
|
></i>
|
|
|
|
<i
|
|
|
|
v-else-if="type === 'question'"
|
|
|
|
:class="$style.iconInner"
|
|
|
|
class="ph-circle-question ph-bold ph-lg"
|
|
|
|
></i>
|
|
|
|
<MkLoading
|
|
|
|
v-else-if="type === 'waiting'"
|
|
|
|
:class="$style.iconInner"
|
|
|
|
:em="true"
|
|
|
|
/>
|
2023-02-19 00:34:41 +01:00
|
|
|
</div>
|
2023-04-08 02:01:42 +02:00
|
|
|
<header v-if="title" :class="$style.title">
|
|
|
|
<Mfm :text="title" />
|
|
|
|
</header>
|
|
|
|
<header
|
|
|
|
v-if="title == null && input && input.type === 'password'"
|
|
|
|
:class="$style.title"
|
|
|
|
>
|
|
|
|
<Mfm :text="i18n.ts.password" />
|
|
|
|
</header>
|
|
|
|
<div v-if="text" :class="$style.text"><Mfm :text="text" /></div>
|
|
|
|
<MkInput
|
2023-06-08 19:01:51 +02:00
|
|
|
ref="inputEl"
|
2023-04-08 02:01:42 +02:00
|
|
|
v-if="input && input.type !== 'paragraph'"
|
|
|
|
v-model="inputValue"
|
|
|
|
autofocus
|
|
|
|
:type="input.type || 'text'"
|
|
|
|
:placeholder="input.placeholder || undefined"
|
|
|
|
@keydown="onInputKeydown"
|
2023-06-11 02:46:35 +02:00
|
|
|
:style="{ width: input.type === 'search' ? '300px' : null }"
|
2023-04-08 02:01:42 +02:00
|
|
|
>
|
|
|
|
<template v-if="input.type === 'password'" #prefix
|
|
|
|
><i class="ph-password ph-bold ph-lg"></i
|
|
|
|
></template>
|
2023-06-08 19:01:51 +02:00
|
|
|
<template v-if="input.type === 'search'" #suffix>
|
|
|
|
<button
|
|
|
|
class="_buttonIcon"
|
|
|
|
@click.stop="openSearchFilters"
|
|
|
|
v-tooltip.noDelay="i18n.ts.filter"
|
|
|
|
>
|
|
|
|
<i class="ph-funnel ph-bold"></i>
|
|
|
|
</button>
|
|
|
|
</template>
|
2023-02-19 00:34:41 +01:00
|
|
|
</MkInput>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkTextarea
|
|
|
|
v-if="input && input.type === 'paragraph'"
|
|
|
|
v-model="inputValue"
|
|
|
|
autofocus
|
|
|
|
:type="paragraph"
|
|
|
|
:placeholder="input.placeholder || undefined"
|
|
|
|
>
|
2023-03-19 08:22:28 +01:00
|
|
|
</MkTextarea>
|
2023-02-19 00:34:41 +01:00
|
|
|
<MkSelect v-if="select" v-model="selectedValue" autofocus>
|
|
|
|
<template v-if="select.items">
|
2023-04-08 02:01:42 +02:00
|
|
|
<option v-for="item in select.items" :value="item.value">
|
|
|
|
{{ item.text }}
|
|
|
|
</option>
|
2023-02-19 00:34:41 +01:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
2023-04-08 02:01:42 +02:00
|
|
|
<optgroup
|
|
|
|
v-for="groupedItem in select.groupedItems"
|
|
|
|
:label="groupedItem.label"
|
|
|
|
>
|
|
|
|
<option
|
|
|
|
v-for="item in groupedItem.items"
|
|
|
|
:value="item.value"
|
|
|
|
>
|
|
|
|
{{ item.text }}
|
|
|
|
</option>
|
2023-02-19 00:34:41 +01:00
|
|
|
</optgroup>
|
|
|
|
</template>
|
|
|
|
</MkSelect>
|
2023-06-08 19:01:51 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<div
|
|
|
|
v-if="(showOkButton || showCancelButton) && !actions"
|
|
|
|
:class="$style.buttons"
|
|
|
|
>
|
2023-02-19 00:34:41 +01:00
|
|
|
<div v-if="!isYesNo">
|
2023-04-08 02:01:42 +02:00
|
|
|
<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
|
|
|
|
>
|
2023-02-19 00:34:41 +01:00
|
|
|
</div>
|
|
|
|
<div v-else>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkButton
|
|
|
|
v-if="showOkButton"
|
|
|
|
inline
|
|
|
|
primary
|
|
|
|
:autofocus="!input && !select"
|
|
|
|
@click="ok"
|
|
|
|
>{{ i18n.ts.yes }}</MkButton
|
|
|
|
>
|
|
|
|
<MkButton
|
|
|
|
v-if="showCancelButton || input || select"
|
|
|
|
inline
|
|
|
|
@click="cancel"
|
|
|
|
>{{ i18n.ts.no }}</MkButton
|
|
|
|
>
|
2023-02-19 00:34:41 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-if="actions" :class="$style.buttons">
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkButton
|
|
|
|
v-for="action in actions"
|
|
|
|
:key="action.text"
|
|
|
|
inline
|
|
|
|
:primary="action.primary"
|
|
|
|
@click="
|
|
|
|
() => {
|
|
|
|
action.callback();
|
|
|
|
modal?.close();
|
|
|
|
}
|
|
|
|
"
|
|
|
|
>{{ action.text }}</MkButton
|
|
|
|
>
|
2022-10-26 07:44:38 +02:00
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</div>
|
2023-02-19 00:34:41 +01:00
|
|
|
</MkModal>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
<script lang="ts" setup>
|
2023-06-11 02:58:22 +02:00
|
|
|
import { onBeforeUnmount, onMounted, ref, shallowRef } from "vue";
|
2023-04-08 02:01:42 +02:00
|
|
|
import MkModal from "@/components/MkModal.vue";
|
|
|
|
import MkButton from "@/components/MkButton.vue";
|
|
|
|
import MkInput from "@/components/form/input.vue";
|
|
|
|
import MkTextarea from "@/components/form/textarea.vue";
|
|
|
|
import MkSelect from "@/components/form/select.vue";
|
2023-06-08 19:01:51 +02:00
|
|
|
import * as os from "@/os";
|
2023-04-08 02:01:42 +02:00
|
|
|
import { i18n } from "@/i18n";
|
2023-06-08 19:01:51 +02:00
|
|
|
import * as Acct from "calckey-js/built/acct";
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
type Input = {
|
2023-04-08 02:01:42 +02:00
|
|
|
type: HTMLInputElement["type"];
|
2022-01-10 16:05:18 +01:00
|
|
|
placeholder?: string | null;
|
|
|
|
default: any | null;
|
|
|
|
};
|
|
|
|
|
|
|
|
type Select = {
|
|
|
|
items: {
|
|
|
|
value: string;
|
|
|
|
text: string;
|
|
|
|
}[];
|
|
|
|
groupedItems: {
|
|
|
|
label: string;
|
|
|
|
items: {
|
|
|
|
value: string;
|
|
|
|
text: string;
|
|
|
|
}[];
|
|
|
|
}[];
|
|
|
|
default: string | null;
|
|
|
|
};
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const props = withDefaults(
|
|
|
|
defineProps<{
|
|
|
|
type?:
|
|
|
|
| "success"
|
|
|
|
| "error"
|
|
|
|
| "warning"
|
|
|
|
| "info"
|
|
|
|
| "question"
|
2023-06-08 19:01:51 +02:00
|
|
|
| "waiting"
|
|
|
|
| "search";
|
2023-04-08 02:01:42 +02:00
|
|
|
title: string;
|
|
|
|
text?: string;
|
|
|
|
input?: Input;
|
|
|
|
select?: Select;
|
|
|
|
icon?: string;
|
|
|
|
actions?: {
|
|
|
|
text: string;
|
|
|
|
primary?: boolean;
|
|
|
|
callback: (...args: any[]) => void;
|
|
|
|
}[];
|
|
|
|
showOkButton?: boolean;
|
|
|
|
showCancelButton?: boolean;
|
|
|
|
isYesNo?: boolean;
|
|
|
|
|
|
|
|
cancelableByBgClick?: boolean;
|
|
|
|
okText?: string;
|
|
|
|
cancelText?: string;
|
|
|
|
}>(),
|
|
|
|
{
|
|
|
|
type: "info",
|
|
|
|
showOkButton: true,
|
|
|
|
showCancelButton: false,
|
|
|
|
isYesNo: false,
|
|
|
|
|
|
|
|
cancelableByBgClick: true,
|
|
|
|
}
|
|
|
|
);
|
2022-01-10 16:05:18 +01:00
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2023-04-08 02:01:42 +02:00
|
|
|
(ev: "done", v: { canceled: boolean; result: any }): void;
|
|
|
|
(ev: "closed"): void;
|
2022-01-10 16:05:18 +01:00
|
|
|
}>();
|
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
const modal = shallowRef<InstanceType<typeof MkModal>>();
|
2022-01-10 16:05:18 +01:00
|
|
|
|
2023-06-08 19:01:51 +02:00
|
|
|
const inputValue = ref(props.input?.default || "");
|
2022-01-10 16:05:18 +01:00
|
|
|
const selectedValue = ref(props.select?.default || null);
|
|
|
|
|
2023-06-08 19:01:51 +02:00
|
|
|
const inputEl = ref<typeof MkInput>();
|
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
function done(canceled: boolean, result?) {
|
2023-04-08 02:01:42 +02:00
|
|
|
emit("done", { canceled, result });
|
2022-01-10 16:05:18 +01:00
|
|
|
modal.value?.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function ok() {
|
|
|
|
if (!props.showOkButton) return;
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const result = props.input
|
|
|
|
? inputValue.value
|
|
|
|
: props.select
|
|
|
|
? selectedValue.value
|
|
|
|
: true;
|
2022-01-10 16:05:18 +01:00
|
|
|
done(false, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
function cancel() {
|
|
|
|
done(true);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
function onBgClick() {
|
|
|
|
if (props.cancelableByBgClick) cancel();
|
|
|
|
}
|
|
|
|
*/
|
2022-05-26 15:53:09 +02:00
|
|
|
function onKeydown(evt: KeyboardEvent) {
|
2023-04-08 02:01:42 +02:00
|
|
|
if (evt.key === "Escape") cancel();
|
2022-01-10 16:05:18 +01:00
|
|
|
}
|
|
|
|
|
2022-05-26 15:53:09 +02:00
|
|
|
function onInputKeydown(evt: KeyboardEvent) {
|
2023-04-08 02:01:42 +02:00
|
|
|
if (evt.key === "Enter") {
|
2022-05-26 15:53:09 +02:00
|
|
|
evt.preventDefault();
|
|
|
|
evt.stopPropagation();
|
2022-01-10 16:05:18 +01:00
|
|
|
ok();
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2022-01-10 16:05:18 +01:00
|
|
|
}
|
|
|
|
|
2023-06-08 19:01:51 +02:00
|
|
|
async function openSearchFilters(ev) {
|
2023-06-11 02:48:35 +02:00
|
|
|
await os.popupMenu(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
icon: "ph-user ph-bold ph-lg",
|
|
|
|
text: "From user",
|
|
|
|
action: () => {
|
|
|
|
os.selectUser().then((user) => {
|
|
|
|
inputValue.value += " from:@" + Acct.toString(user);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-file ph-bold ph-lg",
|
|
|
|
text: "With file",
|
|
|
|
action: () => {
|
|
|
|
os.select({
|
|
|
|
title: "Has file",
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
text: "Image",
|
|
|
|
value: "image",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Video",
|
|
|
|
value: "video",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "Audio",
|
|
|
|
value: "audio",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: "File",
|
|
|
|
value: "file",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}).then((res) => {
|
|
|
|
if (res.canceled) return;
|
|
|
|
inputValue.value += " has:" + res.result;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-link ph-bold ph-lg",
|
|
|
|
text: "From domain",
|
|
|
|
action: () => {
|
|
|
|
inputValue.value += " domain:";
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-calendar-blank ph-bold ph-lg",
|
|
|
|
text: "Posts before",
|
|
|
|
action: () => {
|
|
|
|
os.inputDate({
|
|
|
|
title: "Posts before",
|
|
|
|
}).then((res) => {
|
|
|
|
if (res.canceled) return;
|
|
|
|
inputValue.value += " before:" + res.result;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-calendar-blank ph-bold ph-lg",
|
|
|
|
text: "Posts after",
|
|
|
|
action: () => {
|
|
|
|
os.inputDate({
|
|
|
|
title: "Posts after",
|
|
|
|
}).then((res) => {
|
|
|
|
if (res.canceled) return;
|
|
|
|
inputValue.value += " after:" + res.result;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-eye ph-bold ph-lg",
|
|
|
|
text: "Following only",
|
|
|
|
action: () => {
|
|
|
|
inputValue.value += " filter:following ";
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-users-three ph-bold ph-lg",
|
|
|
|
text: "Followers only",
|
|
|
|
action: () => {
|
|
|
|
inputValue.value += " filter:followers ";
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
ev.target,
|
|
|
|
{ noReturnFocus: true }
|
|
|
|
);
|
2023-06-08 19:01:51 +02:00
|
|
|
inputEl.value.focus();
|
|
|
|
inputEl.value.selectRange(inputValue.value.length, inputValue.value.length); // cursor at end
|
|
|
|
}
|
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
onMounted(() => {
|
2023-04-08 02:01:42 +02:00
|
|
|
document.addEventListener("keydown", onKeydown);
|
2022-01-10 16:05:18 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
2023-04-08 02:01:42 +02:00
|
|
|
document.removeEventListener("keydown", onKeydown);
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-10-17 13:12:00 +02:00
|
|
|
position: relative;
|
2023-02-19 00:34:41 +01:00
|
|
|
margin: auto;
|
2020-10-17 13:12:00 +02:00
|
|
|
padding: 32px;
|
|
|
|
min-width: 320px;
|
|
|
|
max-width: 480px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
2023-02-19 00:34:41 +01:00
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
.icon {
|
|
|
|
font-size: 24px;
|
2021-11-28 12:07:37 +01:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
& + .title {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
.iconInner {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
.type_info {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
.type_success {
|
|
|
|
color: var(--success);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
.type_error {
|
|
|
|
color: var(--error);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
.type_warning {
|
|
|
|
color: var(--warn);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
.title {
|
|
|
|
margin: 0 0 8px 0;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.1em;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
& + .text {
|
|
|
|
margin-top: 8px;
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
2023-02-19 00:34:41 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
.text {
|
|
|
|
margin: 16px 0 0 0;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-02-19 00:34:41 +01:00
|
|
|
.buttons {
|
|
|
|
margin-top: 16px;
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
</style>
|