Files
mealie/frontend/pages/group/data/recipe-actions.vue

122 lines
3.2 KiB
Vue
Raw Normal View History

<template>
<div>
<GroupDataPage
:icon="$globals.icons.categories"
:title="$t('data-pages.categories.category-data')"
:table-headers="tableHeaders"
:table-config="tableConfig"
:data="actionStore.recipeActions.value || []"
:bulk-actions="[{ icon: $globals.icons.delete, text: $t('general.delete'), event: 'delete-selected' }]"
:create-form="createForm"
:edit-form="editForm"
initial-sort="title"
@create-one="handleCreate"
@edit-one="handleEdit"
@delete-one="actionStore.actions.deleteOne"
@bulk-action="handleBulkAction"
/>
</div>
</template>
<script setup lang="ts">
import { validators } from "~/composables/use-validators";
import { useGroupRecipeActions } from "~/composables/use-group-recipe-actions";
import type { GroupRecipeActionOut } from "~/lib/api/types/household";
import type { TableHeaders, TableConfig } from "~/components/global/CrudTable.vue";
import type { AutoFormItems } from "~/types/auto-forms";
import { fieldTypes } from "~/composables/forms";
const i18n = useI18n();
const tableConfig: TableConfig = {
hideColumns: true,
canExport: true,
};
const tableHeaders: TableHeaders[] = [
{
text: i18n.t("general.id"),
value: "id",
show: false,
},
{
text: i18n.t("general.title"),
value: "title",
show: true,
sortable: true,
},
{
text: i18n.t("general.url"),
value: "url",
show: true,
},
{
text: i18n.t("data-pages.recipe-actions.action-type"),
value: "actionType",
show: true,
sortable: true,
},
];
const actionStore = useGroupRecipeActions(null, null);
// ============================================================
// Form items (shared)
const formItems: AutoFormItems = [
{
label: i18n.t("general.title"),
varName: "title",
type: fieldTypes.TEXT,
rules: [validators.required],
},
{
label: i18n.t("general.url"),
varName: "url",
type: fieldTypes.TEXT,
rules: [validators.required, validators.url],
},
{
label: i18n.t("data-pages.recipe-actions.action-type"),
varName: "actionType",
type: fieldTypes.SELECT,
options: [{ text: "link" }, { text: "post" }],
rules: [validators.required],
},
];
// ============================================================
// Create
const createForm = reactive({
items: formItems,
data: {} as GroupRecipeActionOut,
});
async function handleCreate() {
await actionStore.actions.createOne(createForm.data);
createForm.data = {} as GroupRecipeActionOut;
}
// ============================================================
// Edit Action
const editForm = reactive({
items: formItems,
data: {} as GroupRecipeActionOut,
});
async function handleEdit(editFormData: GroupRecipeActionOut) {
await actionStore.actions.updateOne(editFormData);
editForm.data = {} as GroupRecipeActionOut;
}
// ============================================================
// Bulk Actions
async function handleBulkAction(event: string, items: GroupRecipeActionOut[]) {
console.log("Bulk Action Event:", event, "Items:", items);
if (event === "delete-selected") {
const ids = items.filter(item => item.id != null).map(item => item.id!);
await actionStore.actions.deleteMany(ids);
}
}
</script>