Daniel J. Summers c703d717d8 Wrote API calls for history updates
Also switched app pkg mgt to yarn
2017-09-22 19:27:23 -05:00

41 lines
887 B
Vue

<template lang="pug">
el-row.journal-request
el-col(:span='4')
p
el-button(icon='check' @click='markPrayed()' title='Pray')
el-button(icon='edit' @click='editRequest()' title='Edit')
el-button(icon='document' @click='viewHistory()' title='Show History')
el-col(:span='16'): p {{ request.text }}
el-col(:span='4'): p {{ asOf }}
</template>
<script>
import moment from 'moment'
export default {
name: 'request-list-item',
props: ['request'],
data () {
return {}
},
methods: {
markPrayed () {
alert(`Marking ${this.request.requestId} prayed`)
// TODO: write function
}
},
computed: {
asOf () {
// FIXME: why isn't this already a number?
return moment(parseInt(this.request.asOf)).fromNow()
}
}
}
</script>
<style>
.journal-request {
border-bottom: dotted 1px lightgray;
}
</style>