mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-19 10:22:21 -05:00
* automated docs update * recipe rating component * recipe partial updates - closes #25 * use Vue.delete to update store * format * arrow functions * fix tests * format * initial context menu * localize * add confirmation dialog * context menu * fix bare exception * update line length * format all file with prettier * update changelog * download as json * update python dependencies * update javascript dependencies Co-authored-by: hay-kot <hay-kot@pm.me>
99 lines
2.4 KiB
Vue
99 lines
2.4 KiB
Vue
<template>
|
|
<v-dialog v-model="pageDialog" max-width="500">
|
|
<v-card>
|
|
<v-app-bar dark dense color="primary">
|
|
<v-icon left>
|
|
mdi-page-layout-body
|
|
</v-icon>
|
|
|
|
<v-toolbar-title class="headline">
|
|
{{ title }}
|
|
</v-toolbar-title>
|
|
|
|
<v-spacer></v-spacer>
|
|
</v-app-bar>
|
|
<v-form ref="newGroup" @submit.prevent="submitForm">
|
|
<v-card-text>
|
|
<v-text-field autofocus v-model="page.name" :label="$t('settings.page-name')"></v-text-field>
|
|
<CategoryTagSelector
|
|
v-model="page.categories"
|
|
ref="categoryFormSelector"
|
|
@mounted="catMounted = true"
|
|
:tag-selector="false"
|
|
/>
|
|
</v-card-text>
|
|
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn color="grey" text @click="pageDialog = false">
|
|
{{ $t("general.cancel") }}
|
|
</v-btn>
|
|
<v-btn color="primary" type="submit">
|
|
{{ buttonText }}
|
|
</v-btn>
|
|
</v-card-actions>
|
|
</v-form>
|
|
</v-card>
|
|
</v-dialog>
|
|
</template>
|
|
|
|
<script>
|
|
const NEW_PAGE_EVENT = "refresh-page";
|
|
import { api } from "@/api";
|
|
import CategoryTagSelector from "@/components/FormHelpers/CategoryTagSelector";
|
|
export default {
|
|
components: {
|
|
CategoryTagSelector,
|
|
},
|
|
data() {
|
|
return {
|
|
catMounted: false,
|
|
title: "",
|
|
buttonText: "",
|
|
create: false,
|
|
pageDialog: false,
|
|
page: {
|
|
name: "",
|
|
position: 0,
|
|
categories: [],
|
|
},
|
|
};
|
|
},
|
|
watch: {
|
|
catMounted(val) {
|
|
if (val) this.pushSelected();
|
|
},
|
|
},
|
|
methods: {
|
|
open(parameters) {
|
|
this.page = parameters.data;
|
|
this.create = parameters.create;
|
|
this.buttonText = parameters.buttonText;
|
|
this.title = parameters.title;
|
|
this.pageDialog = true;
|
|
|
|
if (this.catMounted) this.pushSelected();
|
|
},
|
|
pushSelected() {
|
|
this.$refs.categoryFormSelector.setInit(this.page.categories);
|
|
},
|
|
async submitForm() {
|
|
let response;
|
|
if (this.create) {
|
|
response = await api.siteSettings.createPage(this.page);
|
|
} else {
|
|
response = await api.siteSettings.updatePage(this.page);
|
|
}
|
|
|
|
if (response) {
|
|
this.pageDialog = false;
|
|
this.page.categories = [];
|
|
this.$emit(NEW_PAGE_EVENT);
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|