2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-09-17 15:39:15 +02:00
|
|
|
<div class="fcuexfpr">
|
|
|
|
<div class="_root">
|
|
|
|
<transition name="fade" mode="out-in">
|
|
|
|
<div v-if="note" class="note">
|
|
|
|
<div class="_gap" v-if="showNext">
|
|
|
|
<XNotes class="_content" :pagination="next" :no-gap="true"/>
|
2021-04-17 04:40:47 +02:00
|
|
|
</div>
|
2021-09-17 15:39:15 +02:00
|
|
|
|
|
|
|
<div class="main _gap">
|
|
|
|
<MkButton v-if="!showNext && hasNext" class="load next" @click="showNext = true"><i class="fas fa-chevron-up"></i></MkButton>
|
|
|
|
<div class="note _gap">
|
|
|
|
<MkRemoteCaution v-if="note.user.host != null" :href="note.url || note.uri" class="_isolated"/>
|
|
|
|
<XNoteDetailed v-model:note="note" :key="note.id" class="_isolated note"/>
|
|
|
|
</div>
|
|
|
|
<div class="_content clips _gap" v-if="clips && clips.length > 0">
|
|
|
|
<div class="title">{{ $ts.clip }}</div>
|
|
|
|
<MkA v-for="item in clips" :key="item.id" :to="`/clips/${item.id}`" class="item _panel _gap">
|
|
|
|
<b>{{ item.name }}</b>
|
|
|
|
<div v-if="item.description" class="description">{{ item.description }}</div>
|
|
|
|
<div class="user">
|
|
|
|
<MkAvatar :user="item.user" class="avatar" :show-indicator="true"/> <MkUserName :user="item.user" :nowrap="false"/>
|
|
|
|
</div>
|
|
|
|
</MkA>
|
|
|
|
</div>
|
|
|
|
<MkButton v-if="!showPrev && hasPrev" class="load prev" @click="showPrev = true"><i class="fas fa-chevron-down"></i></MkButton>
|
2021-04-17 04:40:47 +02:00
|
|
|
</div>
|
2020-02-16 14:15:49 +01:00
|
|
|
|
2021-09-17 15:39:15 +02:00
|
|
|
<div class="_gap" v-if="showPrev">
|
|
|
|
<XNotes class="_content" :pagination="prev" :no-gap="true"/>
|
|
|
|
</div>
|
2021-04-17 04:40:47 +02:00
|
|
|
</div>
|
2021-09-17 15:39:15 +02:00
|
|
|
<MkError v-else-if="error" @retry="fetch()"/>
|
|
|
|
<MkLoading v-else/>
|
|
|
|
</transition>
|
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { computed, defineComponent } from 'vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import XNote from '@client/components/note.vue';
|
|
|
|
import XNoteDetailed from '@client/components/note-detailed.vue';
|
|
|
|
import XNotes from '@client/components/notes.vue';
|
|
|
|
import MkRemoteCaution from '@client/components/remote-caution.vue';
|
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
|
|
|
import * as os from '@client/os';
|
2021-04-10 05:54:12 +02:00
|
|
|
import * as symbols from '@client/symbols';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
2020-02-16 14:15:49 +01:00
|
|
|
XNote,
|
2021-01-01 14:41:20 +01:00
|
|
|
XNoteDetailed,
|
2020-02-16 14:15:49 +01:00
|
|
|
XNotes,
|
2020-03-21 05:07:02 +01:00
|
|
|
MkRemoteCaution,
|
2020-10-17 13:12:00 +02:00
|
|
|
MkButton,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2020-10-24 18:21:41 +02:00
|
|
|
props: {
|
|
|
|
noteId: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: computed(() => this.note ? {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts.note,
|
2021-09-17 15:39:15 +02:00
|
|
|
subtitle: new Date(this.note.createdAt).toLocaleString(),
|
2020-11-03 12:36:12 +01:00
|
|
|
avatar: this.note.user,
|
2021-04-10 16:52:45 +02:00
|
|
|
path: `/notes/${this.note.id}`,
|
2021-04-10 06:38:24 +02:00
|
|
|
share: {
|
|
|
|
title: this.$t('noteOf', { user: this.note.user.name }),
|
|
|
|
text: this.note.text,
|
|
|
|
},
|
2021-09-17 15:39:15 +02:00
|
|
|
bg: 'var(--bg)',
|
2020-10-17 13:12:00 +02:00
|
|
|
} : null),
|
2020-01-29 20:37:25 +01:00
|
|
|
note: null,
|
2020-11-17 06:59:15 +01:00
|
|
|
clips: null,
|
2020-02-16 14:15:49 +01:00
|
|
|
hasPrev: false,
|
|
|
|
hasNext: false,
|
|
|
|
showPrev: false,
|
|
|
|
showNext: false,
|
2020-01-29 20:37:25 +01:00
|
|
|
error: null,
|
2020-02-16 14:15:49 +01:00
|
|
|
prev: {
|
|
|
|
endpoint: 'users/notes',
|
|
|
|
limit: 10,
|
|
|
|
params: init => ({
|
|
|
|
userId: this.note.userId,
|
|
|
|
untilId: this.note.id,
|
|
|
|
})
|
|
|
|
},
|
|
|
|
next: {
|
|
|
|
reversed: true,
|
|
|
|
endpoint: 'users/notes',
|
|
|
|
limit: 10,
|
|
|
|
params: init => ({
|
|
|
|
userId: this.note.userId,
|
|
|
|
sinceId: this.note.id,
|
|
|
|
})
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
watch: {
|
2020-10-24 18:21:41 +02:00
|
|
|
noteId: 'fetch'
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
fetch() {
|
2021-04-17 04:40:47 +02:00
|
|
|
this.note = null;
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('notes/show', {
|
2020-10-24 18:21:41 +02:00
|
|
|
noteId: this.noteId
|
2020-01-29 20:37:25 +01:00
|
|
|
}).then(note => {
|
2021-08-16 08:21:58 +02:00
|
|
|
this.note = note;
|
2020-02-16 14:15:49 +01:00
|
|
|
Promise.all([
|
2020-11-17 06:59:15 +01:00
|
|
|
os.api('notes/clips', {
|
|
|
|
noteId: note.id,
|
|
|
|
}),
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('users/notes', {
|
2020-02-16 14:15:49 +01:00
|
|
|
userId: note.userId,
|
|
|
|
untilId: note.id,
|
|
|
|
limit: 1,
|
|
|
|
}),
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('users/notes', {
|
2020-02-16 14:15:49 +01:00
|
|
|
userId: note.userId,
|
|
|
|
sinceId: note.id,
|
|
|
|
limit: 1,
|
|
|
|
}),
|
2020-11-17 06:59:15 +01:00
|
|
|
]).then(([clips, prev, next]) => {
|
|
|
|
this.clips = clips;
|
2020-02-16 14:15:49 +01:00
|
|
|
this.hasPrev = prev.length !== 0;
|
|
|
|
this.hasNext = next.length !== 0;
|
|
|
|
});
|
2020-01-29 20:37:25 +01:00
|
|
|
}).catch(e => {
|
|
|
|
this.error = e;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-04-17 04:40:47 +02:00
|
|
|
.fade-enter-active,
|
|
|
|
.fade-leave-active {
|
|
|
|
transition: opacity 0.125s ease;
|
|
|
|
}
|
|
|
|
.fade-enter-from,
|
|
|
|
.fade-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
.fcuexfpr {
|
2021-08-16 08:21:58 +02:00
|
|
|
background: var(--bg);
|
|
|
|
|
2021-09-17 15:39:15 +02:00
|
|
|
> ._root {
|
|
|
|
> .note {
|
|
|
|
> .main {
|
|
|
|
> .load {
|
|
|
|
min-width: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
border-radius: 999px;
|
2020-11-17 06:59:15 +01:00
|
|
|
|
2021-09-17 15:39:15 +02:00
|
|
|
&.next {
|
|
|
|
margin-bottom: var(--margin);
|
|
|
|
}
|
2020-11-17 06:59:15 +01:00
|
|
|
|
2021-09-17 15:39:15 +02:00
|
|
|
&.prev {
|
|
|
|
margin-top: var(--margin);
|
|
|
|
}
|
2020-11-17 06:59:15 +01:00
|
|
|
}
|
|
|
|
|
2021-08-16 08:21:58 +02:00
|
|
|
> .note {
|
2021-09-17 15:39:15 +02:00
|
|
|
> .note {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
2021-08-16 08:21:58 +02:00
|
|
|
}
|
|
|
|
|
2021-09-17 15:39:15 +02:00
|
|
|
> .clips {
|
|
|
|
> .title {
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 12px;
|
|
|
|
}
|
2020-11-17 06:59:15 +01:00
|
|
|
|
2021-09-17 15:39:15 +02:00
|
|
|
> .item {
|
|
|
|
display: block;
|
|
|
|
padding: 16px;
|
2020-11-17 06:59:15 +01:00
|
|
|
|
2021-09-17 15:39:15 +02:00
|
|
|
> .description {
|
|
|
|
padding: 8px 0;
|
|
|
|
}
|
2020-11-17 06:59:15 +01:00
|
|
|
|
2021-09-17 15:39:15 +02:00
|
|
|
> .user {
|
|
|
|
$height: 32px;
|
|
|
|
padding-top: 16px;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
line-height: $height;
|
2020-11-17 06:59:15 +01:00
|
|
|
|
2021-09-17 15:39:15 +02:00
|
|
|
> .avatar {
|
|
|
|
width: $height;
|
|
|
|
height: $height;
|
|
|
|
}
|
2020-11-17 06:59:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|