summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/components/notes.vue
blob: 1a33a4240b4c64ab9bd35a207b5482663c7f6458 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<template>
<div class="mk-notes">
	<transition-group name="mk-notes" class="transition">
		<template v-for="(note, i) in _notes">
			<x-note :note="note" :key="note.id" @update:note="onNoteUpdated(i, $event)"/>
			<p class="date" :key="note.id + '_date'" v-if="i != notes.length - 1 && note._date != _notes[i + 1]._date">
				<span>%fa:angle-up%{{ note._datetext }}</span>
				<span>%fa:angle-down%{{ _notes[i + 1]._datetext }}</span>
			</p>
		</template>
	</transition-group>
	<footer>
		<slot name="footer"></slot>
	</footer>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
import XNote from './notes.note.vue';

export default Vue.extend({
	components: {
		XNote
	},
	props: {
		notes: {
			type: Array,
			default: () => []
		}
	},
	computed: {
		_notes(): any[] {
			return (this.notes as any).map(note => {
				const date = new Date(note.createdAt).getDate();
				const month = new Date(note.createdAt).getMonth() + 1;
				note._date = date;
				note._datetext = `${month}${date}日`;
				return note;
			});
		}
	},
	methods: {
		focus() {
			(this.$el as any).children[0].focus();
		},
		onNoteUpdated(i, note) {
			Vue.set((this as any).notes, i, note);
		}
	}
});
</script>

<style lang="stylus" scoped>
root(isDark)
	.transition
		.mk-notes-enter
		.mk-notes-leave-to
			opacity 0
			transform translateY(-30px)

		> *
			transition transform .3s ease, opacity .3s ease

		> .date
			display block
			margin 0
			line-height 32px
			font-size 14px
			text-align center
			color isDark ? #666b79 : #aaa
			background isDark ? #242731 : #fdfdfd
			border-bottom solid 1px isDark ? #1c2023 : #eaeaea

			span
				margin 0 16px

			[data-fa]
				margin-right 8px

	> footer
		> *
			display block
			margin 0
			padding 16px
			width 100%
			text-align center
			color #ccc
			border-top solid 1px #eaeaea
			border-bottom-left-radius 4px
			border-bottom-right-radius 4px

		> button
			&:hover
				background #f5f5f5

			&:active
				background #eee

.mk-notes[data-darkmode]
	root(true)

.mk-notes:not([data-darkmode])
	root(false)

</style>