mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-24 07:39:41 +02:00
* Add pytesseract * Add simple ocr endpoint replace extension argument * feat/ocr-editor gui * fix frontend linting issues * Add service unit tests * Add split text modes & single ingredient/instruction editing * make split mode really reactive * Remove default step and ingredient * make the linter haappy * Accept only image uploads * Add automatic recipe title suggestion * Correct regex * fix incorrect array.map method usage * make the linter happy again * Swap route to use asset name * Rearange buttons * fix test data * feat: Allow making image the recipe image * Add translation * Make the linter happy * Restrict function setPropertyValueByPath generic * Restrict template literal type * Add a more friendly icon to creation page * update poetry lock file * Correct sloppy ocr classes * Make MyPy happy * Rewrite safer tests * Add tesseract to backend test CI container dependencies * Make canvas element a component global * Remove unwanted spaces in selected text * Add way to know if recipe was created with ocr * Access to ocr-editor for ocr recipes * Update Alembic revision * Make the frontend build * Fix scrolling offset bug * Allow creation of recipes with custom settings * Fix rebasing mistakes * Add format_tsv_output test * Exclude the tests data directory only * Enforce camelCase for frontend functions * Remove import of unused component * Fix type and class initialization * Add multi-language support * Highlight words in mount * Fix image ratio bug * Better ocr creation page * Revert awkward feature to scroll in Selection mode * Rebasing alembic migrations sux * Remove obsolete getShared function * Add function docstring * Move down ocr creation option * Make toolbar icons more generic * Show help at the bottom of the page * move ocr types to own file * Use template ref for the canvas * Use i18n.tc to get strings directly * Correct naming mistake * Move Ocr editor to own directory * Create Ocr Editor parts * Safeguard recipe properties access * Add loading frontend animation due to longer request time * minor cleanup chores Co-authored-by: Miroito <alban.vachette@gmail.com>
95 lines
2.4 KiB
Vue
95 lines
2.4 KiB
Vue
<template>
|
|
<div>
|
|
<v-container class="flex-column">
|
|
<BasePageTitle divider>
|
|
<template #header>
|
|
<v-img max-height="175" max-width="175" :src="require('~/static/svgs/recipes-create.svg')"></v-img>
|
|
</template>
|
|
<template #title> Recipe Creation </template>
|
|
Select one of the various ways to create a recipe
|
|
<template #content>
|
|
<div class="ml-auto">
|
|
<BaseOverflowButton v-model="subpage" rounded :items="subpages"> </BaseOverflowButton>
|
|
</div>
|
|
</template>
|
|
</BasePageTitle>
|
|
<section>
|
|
<NuxtChild />
|
|
</section>
|
|
</v-container>
|
|
|
|
<AdvancedOnly>
|
|
<v-container class="d-flex justify-end">
|
|
<v-btn outlined rounded to="/group/migrations"> Looking For Migrations? </v-btn>
|
|
</v-container>
|
|
</AdvancedOnly>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, useRouter, useContext, computed, useRoute } from "@nuxtjs/composition-api";
|
|
import { MenuItem } from "~/components/global/BaseOverflowButton.vue";
|
|
import AdvancedOnly from "~/components/global/AdvancedOnly.vue";
|
|
|
|
export default defineComponent({
|
|
components: { AdvancedOnly },
|
|
setup() {
|
|
const { $globals } = useContext();
|
|
|
|
const subpages: MenuItem[] = [
|
|
{
|
|
icon: $globals.icons.link,
|
|
text: "Import with URL",
|
|
value: "url",
|
|
},
|
|
{
|
|
icon: $globals.icons.edit,
|
|
text: "Create Recipe",
|
|
value: "new",
|
|
},
|
|
{
|
|
icon: $globals.icons.zip,
|
|
text: "Import with .zip",
|
|
value: "zip",
|
|
},
|
|
{
|
|
icon: $globals.icons.fileImage,
|
|
text: "Create recipe from an image",
|
|
value: "ocr",
|
|
},
|
|
{
|
|
icon: $globals.icons.link,
|
|
text: "Bulk URL Import",
|
|
value: "bulk",
|
|
},
|
|
{
|
|
icon: $globals.icons.robot,
|
|
text: "Debug Scraper",
|
|
value: "debug",
|
|
},
|
|
];
|
|
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
|
|
const subpage = computed({
|
|
set(subpage: string) {
|
|
router.push({ path: `/recipe/create/${subpage}`, query: route.value.query });
|
|
},
|
|
get() {
|
|
return route.value.path.split("/").pop() ?? "url";
|
|
},
|
|
});
|
|
|
|
return {
|
|
subpages,
|
|
subpage,
|
|
};
|
|
},
|
|
head() {
|
|
return {
|
|
title: this.$t("general.create") as string,
|
|
};
|
|
},
|
|
});
|
|
</script>
|