summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/deck/deck.note-column.vue
blob: bcc887e2fd93d3b1a3978e7c3b93dce95838b4e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<template>
<x-column>
	<template #header>
		<fa :icon="['far', 'comment-alt']"/><mk-user-name :user="note.user" v-if="note"/>
	</template>

	<div class="rvtscbadixhhbsczoorqoaygovdeecsx" v-if="note">
		<div class="is-remote" v-if="note.user.host != null">
			<details>
				<summary><fa icon="exclamation-triangle"/> {{ $t('@.is-remote-post') }}</summary>
				<a :href="note.url || note.uri" rel="nofollow noopener" target="_blank">{{ $t('@.view-on-remote') }}</a>
			</details>
		</div>
		<mk-note :note="note" :detail="true" :key="note.id"/>
	</div>
</x-column>
</template>

<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
import XColumn from './deck.column.vue';

export default Vue.extend({
	i18n: i18n(),
	components: {
		XColumn,
	},

	data() {
		return {
			note: null,
			fetching: true
		};
	},

	watch: {
		$route: 'fetch'
	},

	created() {
		this.fetch();
	},

	methods: {
		fetch() {
			this.fetching = true;

			this.$root.api('notes/show', {
				noteId: this.$route.params.note
			}).then(note => {
				this.note = note;
				this.fetching = false;
			});
		}
	}
});
</script>

<style lang="stylus" scoped>
.rvtscbadixhhbsczoorqoaygovdeecsx
	> .is-remote
		padding 8px 16px
		font-size 12px

		&.is-remote
			color var(--remoteInfoFg)
			background var(--remoteInfoBg)

		> a
			font-weight bold

</style>