parsley/app/javascript/components/TheLogCreator.vue

63 lines
1.2 KiB
Vue
Raw Normal View History

2018-04-13 10:25:18 -05:00
<template>
<div>
<log-edit v-if="log.recipe !== null" :log="log"></log-edit>
<button type="button" class="button is-primary" @click="save">Save</button>
<router-link class="button is-secondary" to="/">Cancel</router-link>
</div>
</template>
<script>
import LogEdit from "./LogEdit";
import { mapState } from "vuex";
import api from "../lib/Api";
import * as Errors from '../lib/Errors';
export default {
data() {
return {
validationErrors: [],
log: {
date: null,
rating: null,
notes: null,
recipe: null
}
}
},
computed: {
...mapState({
recipeId: state => state.route.params.recipeId,
})
},
methods: {
save() {
this.loadResource(
api.postLog(this.log)
.then(() => this.$router.push('/'))
.catch(Errors.onlyFor(Errors.ApiValidationError, err => this.validationErrors = err.validationErrors()))
);
}
},
created() {
this.loadResource(
api.getRecipe(this.recipeId)
.then(data => { this.log.recipe = data; return data; })
);
},
components: {
LogEdit
}
}
</script>
<style lang="scss" scoped>
</style>