2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkModal ref="modal" :preferType="'dialog'" @click="modal.close()" @closed="onModalClosed()">
|
2023-07-08 09:55:02 +00:00
|
|
|
<MkPostForm ref="form" :class="$style.form" v-bind="props" autofocus freezeAfterPosted @posted="onPosted" @cancel="modal.close()" @esc="modal.close()"/>
|
2020-10-17 11:12:00 +00:00
|
|
|
</MkModal>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-12-31 10:46:16 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkModal from '@/components/MkModal.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkPostForm from '@/components/MkPostForm.vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-12-31 10:46:16 +00:00
|
|
|
const props = defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
reply?: Misskey.entities.Note;
|
|
|
|
renote?: Misskey.entities.Note;
|
2022-12-31 10:46:16 +00:00
|
|
|
channel?: any; // TODO
|
2023-09-04 04:33:38 +00:00
|
|
|
mention?: Misskey.entities.User;
|
|
|
|
specified?: Misskey.entities.User;
|
2022-12-31 10:46:16 +00:00
|
|
|
initialText?: string;
|
2023-09-04 04:33:38 +00:00
|
|
|
initialVisibility?: typeof Misskey.noteVisibilities;
|
|
|
|
initialFiles?: Misskey.entities.DriveFile[];
|
2022-12-31 10:46:16 +00:00
|
|
|
initialLocalOnly?: boolean;
|
2023-09-04 04:33:38 +00:00
|
|
|
initialVisibleUsers?: Misskey.entities.User[];
|
|
|
|
initialNote?: Misskey.entities.Note;
|
2022-12-31 10:46:16 +00:00
|
|
|
instant?: boolean;
|
|
|
|
fixed?: boolean;
|
|
|
|
autofocus?: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
|
|
|
}>();
|
|
|
|
|
2023-01-03 04:37:32 +00:00
|
|
|
let modal = $shallowRef<InstanceType<typeof MkModal>>();
|
|
|
|
let form = $shallowRef<InstanceType<typeof MkPostForm>>();
|
2022-12-31 10:46:16 +00:00
|
|
|
|
|
|
|
function onPosted() {
|
|
|
|
modal.close({
|
|
|
|
useSendAnimation: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function onModalClosed() {
|
|
|
|
emit('closed');
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
2023-07-08 09:55:02 +00:00
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.form {
|
|
|
|
max-height: 100%;
|
|
|
|
margin: 0 auto auto auto;
|
|
|
|
}
|
|
|
|
</style>
|