2018-02-13 21:24:49 -06:00
|
|
|
<template>
|
2018-04-07 12:30:37 -05:00
|
|
|
<div class="mk-notes">
|
2018-02-13 21:24:49 -06:00
|
|
|
<slot name="head"></slot>
|
2018-02-22 02:51:08 -06:00
|
|
|
<slot></slot>
|
2018-04-07 12:30:37 -05:00
|
|
|
<template v-for="(note, i) in _notes">
|
|
|
|
<mk-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-13 21:24:49 -06:00
|
|
|
</p>
|
|
|
|
</template>
|
2018-02-22 02:37:40 -06:00
|
|
|
<footer>
|
|
|
|
<slot name="tail"></slot>
|
|
|
|
</footer>
|
2018-02-13 21:24:49 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-02-21 14:30:37 -06:00
|
|
|
|
2018-02-13 21:24:49 -06:00
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
2018-04-07 12:30:37 -05:00
|
|
|
notes: {
|
2018-02-13 21:24:49 -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-13 21:24:49 -06:00
|
|
|
});
|
|
|
|
}
|
2018-02-22 07:03:44 -06:00
|
|
|
},
|
|
|
|
methods: {
|
2018-04-07 12:30:37 -05:00
|
|
|
onNoteUpdated(i, note) {
|
|
|
|
Vue.set((this as any).notes, i, note);
|
2018-02-22 07:03:44 -06:00
|
|
|
}
|
2018-02-13 21:24:49 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-03-02 22:47:55 -06:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
.mk-notes
|
2018-02-13 21:24:49 -06:00
|
|
|
background #fff
|
|
|
|
border-radius 8px
|
|
|
|
box-shadow 0 0 0 1px rgba(0, 0, 0, 0.2)
|
|
|
|
|
|
|
|
> .init
|
|
|
|
padding 64px 0
|
|
|
|
text-align center
|
|
|
|
color #999
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .empty
|
|
|
|
margin 0 auto
|
|
|
|
padding 32px
|
|
|
|
max-width 400px
|
|
|
|
text-align center
|
|
|
|
color #999
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
display block
|
|
|
|
margin-bottom 16px
|
|
|
|
font-size 3em
|
|
|
|
color #ccc
|
|
|
|
|
|
|
|
> .date
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
line-height 32px
|
|
|
|
text-align center
|
|
|
|
font-size 0.9em
|
|
|
|
color #aaa
|
|
|
|
background #fdfdfd
|
|
|
|
border-bottom solid 1px #eaeaea
|
|
|
|
|
|
|
|
span
|
|
|
|
margin 0 16px
|
|
|
|
|
|
|
|
[data-fa]
|
|
|
|
margin-right 8px
|
|
|
|
|
|
|
|
> footer
|
|
|
|
text-align center
|
|
|
|
border-top solid 1px #eaeaea
|
|
|
|
border-bottom-left-radius 4px
|
|
|
|
border-bottom-right-radius 4px
|
|
|
|
|
2018-02-22 02:51:08 -06:00
|
|
|
&:empty
|
|
|
|
display none
|
|
|
|
|
2018-02-13 21:24:49 -06:00
|
|
|
> button
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
width 100%
|
|
|
|
color $theme-color
|
|
|
|
border-radius 0 0 8px 8px
|
|
|
|
|
|
|
|
&:disabled
|
|
|
|
opacity 0.7
|
|
|
|
|
|
|
|
</style>
|