FoundKey/packages/client/src/pages/clip.vue

158 lines
3.1 KiB
Vue
Raw Normal View History

2020-11-15 03:34:47 +00:00
<template>
<MkSpacer :content-max="800">
<div v-if="clip">
<div class="okzinsic _panel">
<div v-if="clip.description" class="description">
<Mfm :text="clip.description" :is-note="false" :i="$i"/>
</div>
<div class="user">
<MkAvatar :user="clip.user" class="avatar" :show-indicator="true"/> <MkUserName :user="clip.user" :nowrap="false"/>
</div>
2020-11-15 03:34:47 +00:00
</div>
<XNotes :pagination="pagination" :detail="true"/>
</div>
</MkSpacer>
2020-11-15 03:34:47 +00:00
</template>
<script lang="ts">
import { computed, defineComponent } from 'vue';
2021-11-11 17:02:25 +00:00
import MkContainer from '@/components/ui/container.vue';
import XPostForm from '@/components/post-form.vue';
import XNotes from '@/components/notes.vue';
import * as os from '@/os';
import * as symbols from '@/symbols';
2020-11-15 03:34:47 +00:00
export default defineComponent({
components: {
MkContainer,
XPostForm,
XNotes,
},
props: {
clipId: {
type: String,
required: true
}
},
data() {
return {
2021-04-10 03:54:12 +00:00
[symbols.PAGE_INFO]: computed(() => this.clip ? {
2020-11-15 03:34:47 +00:00
title: this.clip.name,
icon: 'fas fa-paperclip',
bg: 'var(--bg)',
actions: [{
2021-04-20 18:32:16 +00:00
icon: 'fas fa-ellipsis-h',
2020-11-15 03:34:47 +00:00
handler: this.menu
}],
2020-11-15 03:34:47 +00:00
} : null),
clip: null,
pagination: {
2022-01-12 17:26:10 +00:00
endpoint: 'clips/notes' as const,
2020-11-15 03:34:47 +00:00
limit: 10,
params: computed(() => ({
2020-11-15 03:34:47 +00:00
clipId: this.clipId,
}))
2020-11-15 03:34:47 +00:00
},
};
},
computed: {
isOwned(): boolean {
return this.$i && this.clip && (this.$i.id === this.clip.userId);
2020-11-15 03:34:47 +00:00
}
},
watch: {
clipId: {
async handler() {
this.clip = await os.api('clips/show', {
clipId: this.clipId,
});
},
immediate: true
}
},
created() {
},
methods: {
menu(ev) {
2021-08-08 03:19:10 +00:00
os.popupMenu([this.isOwned ? {
icon: 'fas fa-pencil-alt',
2020-12-26 01:47:36 +00:00
text: this.$ts.edit,
2020-11-15 03:34:47 +00:00
action: async () => {
const { canceled, result } = await os.form(this.clip.name, {
name: {
type: 'string',
2020-12-26 01:47:36 +00:00
label: this.$ts.name,
2020-11-15 03:34:47 +00:00
default: this.clip.name
},
description: {
type: 'string',
required: false,
multiline: true,
2020-12-26 01:47:36 +00:00
label: this.$ts.description,
2020-11-15 03:34:47 +00:00
default: this.clip.description
},
isPublic: {
type: 'boolean',
2020-12-26 01:47:36 +00:00
label: this.$ts.public,
2020-11-15 03:34:47 +00:00
default: this.clip.isPublic
}
});
if (canceled) return;
os.apiWithDialog('clips/update', {
clipId: this.clip.id,
...result
});
}
} : undefined, this.isOwned ? {
icon: 'fas fa-trash-alt',
2020-12-26 01:47:36 +00:00
text: this.$ts.delete,
2020-11-15 03:34:47 +00:00
danger: true,
action: async () => {
const { canceled } = await os.confirm({
2020-11-15 03:34:47 +00:00
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>
<style lang="scss" scoped>
.okzinsic {
position: relative;
margin-bottom: var(--margin);
2020-11-15 03:34:47 +00:00
> .description {
padding: 16px;
}
2020-11-15 03:47:54 +00:00
> .user {
$height: 32px;
padding: 16px;
border-top: solid 0.5px var(--divider);
2020-11-15 03:47:54 +00:00
line-height: $height;
> .avatar {
width: $height;
height: $height;
}
}
2020-11-15 03:34:47 +00:00
}
</style>