2018-02-12 18:12:54 -06:00
|
|
|
<template>
|
2018-04-07 12:30:37 -05:00
|
|
|
<div class="mk-notes">
|
|
|
|
<template v-for="(note, i) in _notes">
|
|
|
|
<x-note :note="note" :key="note.id" @update:note="onNoteUpdated(i, $event)"/>
|
|
|
|
<p class="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>
|
2018-02-20 10:39:51 -06:00
|
|
|
</p>
|
2018-02-12 18:12:54 -06:00
|
|
|
</template>
|
|
|
|
<footer>
|
|
|
|
<slot name="footer"></slot>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-04-07 12:30:37 -05:00
|
|
|
import XNote from './notes.note.vue';
|
2018-02-12 18:12:54 -06:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-02-20 08:02:24 -06:00
|
|
|
components: {
|
2018-04-07 12:30:37 -05:00
|
|
|
XNote
|
2018-02-20 08:02:24 -06:00
|
|
|
},
|
2018-02-12 18:12:54 -06:00
|
|
|
props: {
|
2018-04-07 12:30:37 -05:00
|
|
|
notes: {
|
2018-02-12 18:12:54 -06:00
|
|
|
type: Array,
|
|
|
|
default: () => []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2018-04-07 12:30:37 -05:00
|
|
|
_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;
|
2018-02-12 18:12:54 -06:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
focus() {
|
|
|
|
(this.$el as any).children[0].focus();
|
2018-02-22 07:03:44 -06:00
|
|
|
},
|
2018-04-07 12:30:37 -05:00
|
|
|
onNoteUpdated(i, note) {
|
|
|
|
Vue.set((this as any).notes, i, note);
|
2018-02-12 18:12:54 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-04-19 13:41:24 -05:00
|
|
|
root(isDark)
|
2018-02-12 18:12:54 -06:00
|
|
|
> .date
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
line-height 32px
|
|
|
|
font-size 14px
|
|
|
|
text-align center
|
2018-04-19 13:41:24 -05:00
|
|
|
color isDark ? #666b79 : #aaa
|
|
|
|
background isDark ? #242731 : #fdfdfd
|
|
|
|
border-bottom solid 1px isDark ? #1c2023 : #eaeaea
|
2018-02-12 18:12:54 -06:00
|
|
|
|
|
|
|
span
|
|
|
|
margin 0 16px
|
|
|
|
|
|
|
|
[data-fa]
|
|
|
|
margin-right 8px
|
|
|
|
|
|
|
|
> footer
|
2018-03-05 05:09:26 -06:00
|
|
|
> *
|
|
|
|
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
|
2018-02-12 18:12:54 -06:00
|
|
|
|
2018-03-05 05:09:26 -06:00
|
|
|
&:active
|
|
|
|
background #eee
|
2018-04-19 13:41:24 -05:00
|
|
|
|
|
|
|
.mk-notes[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-notes:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
2018-02-12 18:12:54 -06:00
|
|
|
</style>
|