mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
* merge category and tag selector * unifiy category selector * add hint * spacing * fix nextcloud migration * simplify email validator #261 * formatting * cleanup * auto-gen * format * update run script * unified category/tag selector * rename component * Add advanced search link * remove old code * convert keywords to tags * add proper behavior on rename * proper image name association on rename * fix test cleanup * changelog * set docker comppand * minify on migration Co-authored-by: hay-kot <hay-kot@pm.me>
98 lines
2.3 KiB
Vue
98 lines
2.3 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="Page Name"
|
|
></v-text-field>
|
|
<CategoryTagSelector
|
|
v-model="page.categories"
|
|
ref="categoryFormSelector"
|
|
@mounted="catMounted = true"
|
|
/>
|
|
</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() {
|
|
if (this.create) {
|
|
await api.siteSettings.createPage(this.page);
|
|
} else {
|
|
await api.siteSettings.updatePage(this.page);
|
|
}
|
|
this.pageDialog = false;
|
|
this.page.categories = [];
|
|
this.$emit(NEW_PAGE_EVENT);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style> |