From 05916e6666b22c2c4fc310f88ddbc5cc0ac313b4 Mon Sep 17 00:00:00 2001 From: Angelina Filippova Date: Mon, 1 Apr 2019 16:03:11 +0700 Subject: [PATCH] Add ability to submit new notes --- src/store/modules/reports.js | 15 +++++++++++++-- src/views/reports/components/TimelineItem.vue | 15 ++++++++++++++- 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/src/store/modules/reports.js b/src/store/modules/reports.js index 983c16b8..cb0bdd22 100644 --- a/src/store/modules/reports.js +++ b/src/store/modules/reports.js @@ -39,8 +39,19 @@ const reports = { } ] }, - mutations: {}, - actions: {} + mutations: { + SET_REPORT: (state, { index, report }) => { + state.fetchedReports[index] = report + } + }, + actions: { + async AddNote({ commit, state, getters }, { reportId, note }) { + const report = state.fetchedReports.find(report => report.id === reportId) + report.notes = [...report.notes, note] + const reportIndex = state.fetchedReports.findIndex(report => report.id === reportId) + commit('SET_REPORT', { reportIndex, report }) + } + } } export default reports diff --git a/src/views/reports/components/TimelineItem.vue b/src/views/reports/components/TimelineItem.vue index 21f10864..245c3a71 100644 --- a/src/views/reports/components/TimelineItem.vue +++ b/src/views/reports/components/TimelineItem.vue @@ -22,6 +22,7 @@ + Submit @@ -47,6 +48,12 @@ export default { methods: { toggleNoteInput() { this.$data.showNewNoteInput = !this.$data.showNewNoteInput + }, + addNewNote(reportId) { + const currentUserNickname = this.$store.state.user.name + const note = { author: currentUserNickname, text: this.$data.note, timestamp: '2019/04/01' } + this.$store.dispatch('AddNote', { reportId, note }) + this.$data.note = '' } } } @@ -56,6 +63,9 @@ export default { .el-card__body { padding: 17px 17px 0; } + .el-collapse { + border-bottom: none; + } .el-collapse-item__header { height: 46px; } @@ -79,7 +89,6 @@ export default { align-items: baseline; } .new-note { - margin-bottom: 17px; p { font-size: 13px; font-weight: 500; @@ -94,6 +103,10 @@ export default { .note-text { margin-bottom: 14px; } + .submit-button { + display: block; + margin: 7px 0 17px auto; + } .timestamp { margin: 0; font-style: italic;