mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 21:53:09 +02:00
46 lines
1.2 KiB
Vue
46 lines
1.2 KiB
Vue
<template>
|
|
<MkModal ref="modal" :prefer-type="'dialog:top'" @click="modal.close()" @closed="onModalClosed()">
|
|
<MkPostForm ref="form" v-bind="props" autofocus freeze-after-posted @posted="onPosted" @cancel="modal.close()" @esc="modal.close()"/>
|
|
</MkModal>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import * as misskey from 'misskey-js';
|
|
import MkModal from '@/components/MkModal.vue';
|
|
import MkPostForm from '@/components/MkPostForm.vue';
|
|
|
|
const props = defineProps<{
|
|
reply?: misskey.entities.Note;
|
|
renote?: misskey.entities.Note;
|
|
channel?: any; // TODO
|
|
mention?: misskey.entities.User;
|
|
specified?: misskey.entities.User;
|
|
initialText?: string;
|
|
initialVisibility?: typeof misskey.noteVisibilities;
|
|
initialFiles?: misskey.entities.DriveFile[];
|
|
initialLocalOnly?: boolean;
|
|
initialVisibleUsers?: misskey.entities.User[];
|
|
initialNote?: misskey.entities.Note;
|
|
instant?: boolean;
|
|
fixed?: boolean;
|
|
autofocus?: boolean;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'closed'): void;
|
|
}>();
|
|
|
|
let modal = $shallowRef<InstanceType<typeof MkModal>>();
|
|
let form = $shallowRef<InstanceType<typeof MkPostForm>>();
|
|
|
|
function onPosted() {
|
|
modal.close({
|
|
useSendAnimation: true,
|
|
});
|
|
}
|
|
|
|
function onModalClosed() {
|
|
emit('closed');
|
|
}
|
|
</script>
|