Refactor clip page to Composition API (#8822)

* Refactor clip page to use Composition API

* Refactor clip page

* Refactor clip page

* Refactor clip page
This commit is contained in:
futchitwo 2022-06-18 18:23:54 +09:00 committed by Chloe Kudryavtsev
parent a8f7514d0d
commit 72c3d16c29

View file

@ -15,121 +15,90 @@
</MkSpacer> </MkSpacer>
</template> </template>
<script lang="ts"> <script lang="ts" setup>
import { computed, defineComponent } from 'vue'; import { computed, watch } from 'vue';
import MkContainer from '@/components/ui/container.vue'; import * as misskey from 'misskey-js';
import XPostForm from '@/components/post-form.vue';
import XNotes from '@/components/notes.vue'; import XNotes from '@/components/notes.vue';
import { $i } from '@/account';
import { i18n } from '@/i18n';
import * as os from '@/os'; import * as os from '@/os';
import * as symbols from '@/symbols'; import * as symbols from '@/symbols';
export default defineComponent({ const props = defineProps<{
components: { clipId: string,
MkContainer, }>();
XPostForm,
XNotes,
},
props: { let clip: misskey.entities.Clip = $ref<misskey.entities.Clip>();
clipId: { const pagination = {
type: String, endpoint: 'clips/notes' as const,
required: true limit: 10,
} params: computed(() => ({
}, clipId: props.clipId,
})),
};
data() { const isOwned: boolean | null = $computed<boolean | null>(() => $i && clip && ($i.id === clip.userId));
return {
[symbols.PAGE_INFO]: computed(() => this.clip ? {
title: this.clip.name,
icon: 'fas fa-paperclip',
bg: 'var(--bg)',
actions: [{
icon: 'fas fa-ellipsis-h',
handler: this.menu
}],
} : null),
clip: null,
pagination: {
endpoint: 'clips/notes' as const,
limit: 10,
params: computed(() => ({
clipId: this.clipId,
}))
},
};
},
computed: { watch(() => props.clipId, async () => {
isOwned(): boolean { clip = await os.api('clips/show', {
return this.$i && this.clip && (this.$i.id === this.clip.userId); clipId: props.clipId,
} });
}, }, {
immediate: true,
});
watch: { defineExpose({
clipId: { [symbols.PAGE_INFO]: computed(() => clip ? {
async handler() { title: clip.name,
this.clip = await os.api('clips/show', { icon: 'fas fa-paperclip',
clipId: this.clipId, bg: 'var(--bg)',
actions: isOwned ? [{
icon: 'fas fa-pencil-alt',
text: i18n.ts.edit,
handler: async (): Promise<void> => {
const { canceled, result } = await os.form(clip.name, {
name: {
type: 'string',
label: i18n.ts.name,
default: clip.name,
},
description: {
type: 'string',
required: false,
multiline: true,
label: i18n.ts.description,
default: clip.description,
},
isPublic: {
type: 'boolean',
label: i18n.ts.public,
default: clip.isPublic,
},
});
if (canceled) return;
os.apiWithDialog('clips/update', {
clipId: clip.id,
...result,
}); });
}, },
immediate: true }, {
} icon: 'fas fa-trash-alt',
}, text: i18n.ts.delete,
danger: true,
handler: async (): Promise<void> => {
const { canceled } = await os.confirm({
type: 'warning',
text: i18n.t('deleteAreYouSure', { x: clip.name }),
});
if (canceled) return;
created() { await os.apiWithDialog('clips/delete', {
clipId: clip.id,
}, });
},
methods: { }] : [],
menu(ev) { } : null),
os.popupMenu([this.isOwned ? {
icon: 'fas fa-pencil-alt',
text: this.$ts.edit,
action: async () => {
const { canceled, result } = await os.form(this.clip.name, {
name: {
type: 'string',
label: this.$ts.name,
default: this.clip.name
},
description: {
type: 'string',
required: false,
multiline: true,
label: this.$ts.description,
default: this.clip.description
},
isPublic: {
type: 'boolean',
label: this.$ts.public,
default: this.clip.isPublic
}
});
if (canceled) return;
os.apiWithDialog('clips/update', {
clipId: this.clip.id,
...result
});
}
} : undefined, this.isOwned ? {
icon: 'fas fa-trash-alt',
text: this.$ts.delete,
danger: true,
action: async () => {
const { canceled } = await os.confirm({
type: 'warning',
text: this.$t('deleteAreYouSure', { x: this.clip.name }),
});
if (canceled) return;
await os.apiWithDialog('clips/delete', {
clipId: this.clip.id,
});
}
} : undefined], ev.currentTarget ?? ev.target);
}
}
}); });
</script> </script>