SpendTable Vue component

This commit is contained in:
Andrew Croce
2018-09-17 15:06:38 -04:00
parent bd0cf00a40
commit 1715ac99b9
2 changed files with 48 additions and 1 deletions

View File

@@ -0,0 +1,45 @@
import { set } from 'vue/dist/vue'
import { formatDollars } from '../../lib/dollars'
export default {
name: 'spend-table',
props: {
projects: Object,
workspace: Object,
environments: Object,
currentMonthIndex: String,
prevMonthIndex: String,
twoMonthsAgoIndex: String
},
data: function () {
return {
projectsState: this.projects
}
},
created: function () {
Object.keys(this.projects).forEach(project => {
set(this.projectsState[project], 'isVisible', false)
})
},
methods: {
toggle: function (e, projectName) {
this.projectsState = Object.assign(this.projectsState, {
[projectName]: {
isVisible: !this.projectsState[projectName].isVisible
}
})
},
formatDollars: function (value) {
return formatDollars(value, false)
},
round: function (value) {
return Math.round(value)
}
}
}