mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-01 12:26:44 -06:00
53 lines
1.7 KiB
Vue
53 lines
1.7 KiB
Vue
<template>
|
|
<!-- eslint-disable vue/no-mutating-props -->
|
|
<XContainer :draggable="true" @remove="() => $emit('remove')">
|
|
<template #header><i class="ti ti-note"></i> {{ $ts._pages.blocks.note }}</template>
|
|
|
|
<section style="padding: 0 16px 0 16px;">
|
|
<MkInput v-model="id">
|
|
<template #label>{{ $ts._pages.blocks._note.id }}</template>
|
|
<template #caption>{{ $ts._pages.blocks._note.idDescription }}</template>
|
|
</MkInput>
|
|
<MkSwitch v-model="props.modelValue.detailed"><span>{{ $ts._pages.blocks._note.detailed }}</span></MkSwitch>
|
|
|
|
<XNote v-if="note && !props.modelValue.detailed" :key="note.id + ':normal'" v-model:note="note" style="margin-bottom: 16px;"/>
|
|
<XNoteDetailed v-if="note && props.modelValue.detailed" :key="note.id + ':detail'" v-model:note="note" style="margin-bottom: 16px;"/>
|
|
</section>
|
|
</XContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
/* eslint-disable vue/no-mutating-props */
|
|
import { watch } from 'vue';
|
|
import XContainer from '../page-editor.container.vue';
|
|
import MkInput from '@/components/MkInput.vue';
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
import XNote from '@/components/MkNote.vue';
|
|
import XNoteDetailed from '@/components/MkNoteDetailed.vue';
|
|
import * as os from '@/os';
|
|
|
|
const props = defineProps<{
|
|
modelValue: any
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'update:modelValue', value: any): void;
|
|
}>();
|
|
|
|
let id: any = $ref(props.modelValue.note);
|
|
let note: any = $ref(null);
|
|
|
|
watch($$(id), async () => {
|
|
if (id && (id.startsWith('http://') || id.startsWith('https://'))) {
|
|
id = (id.endsWith('/') ? id.slice(0, -1) : id).split('/').pop();
|
|
}
|
|
|
|
emit('update:modelValue', {
|
|
...props.modelValue,
|
|
note: id,
|
|
});
|
|
note = await os.api('notes/show', { noteId: id });
|
|
}, {
|
|
immediate: true,
|
|
});
|
|
</script>
|