-
-
Notifications
You must be signed in to change notification settings - Fork 763
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Create Recipe From HTML or JSON (#4274)
Co-authored-by: Kuchenpirat <[email protected]>
- Loading branch information
1 parent
edf4204
commit 4c1d855
Showing
23 changed files
with
407 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,171 @@ | ||
<template> | ||
<v-form ref="domUrlForm" @submit.prevent="createFromHtmlOrJson(newRecipeData, importKeywordsAsTags, stayInEditMode)"> | ||
<div> | ||
<v-card-title class="headline"> {{ $tc('recipe.import-from-html-or-json') }} </v-card-title> | ||
<v-card-text> | ||
<p> | ||
{{ $tc("recipe.import-from-html-or-json-description") }} | ||
</p> | ||
<p> | ||
{{ $tc("recipe.json-import-format-description-colon") }} | ||
<a href="https://schema.org/Recipe" target="_blank">https://schema.org/Recipe</a> | ||
</p> | ||
<v-switch | ||
v-model="isEditJSON" | ||
:label="$tc('recipe.json-editor')" | ||
class="mt-2" | ||
@change="handleIsEditJson" | ||
/> | ||
<LazyRecipeJsonEditor | ||
v-if="isEditJSON" | ||
v-model="newRecipeData" | ||
height="250px" | ||
class="mt-10" | ||
:options="EDITOR_OPTIONS" | ||
/> | ||
<v-textarea | ||
v-else | ||
v-model="newRecipeData" | ||
:label="$tc('new-recipe.recipe-html-or-json')" | ||
:prepend-inner-icon="$globals.icons.codeTags" | ||
validate-on-blur | ||
autofocus | ||
filled | ||
clearable | ||
class="rounded-lg mt-2" | ||
rounded | ||
:hint="$tc('new-recipe.url-form-hint')" | ||
persistent-hint | ||
/> | ||
<v-checkbox v-model="importKeywordsAsTags" hide-details :label="$tc('recipe.import-original-keywords-as-tags')" /> | ||
<v-checkbox v-model="stayInEditMode" hide-details :label="$tc('recipe.stay-in-edit-mode')" /> | ||
</v-card-text> | ||
<v-card-actions class="justify-center"> | ||
<div style="width: 250px"> | ||
<BaseButton | ||
:disabled="!newRecipeData" | ||
large | ||
rounded | ||
block | ||
type="submit" | ||
:loading="loading" | ||
/> | ||
</div> | ||
</v-card-actions> | ||
</div> | ||
</v-form> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { computed, defineComponent, reactive, toRefs, ref, useContext, useRoute, useRouter } from "@nuxtjs/composition-api"; | ||
import { AxiosResponse } from "axios"; | ||
import { useTagStore } from "~/composables/store/use-tag-store"; | ||
import { useUserApi } from "~/composables/api"; | ||
import { validators } from "~/composables/use-validators"; | ||
import { VForm } from "~/types/vuetify"; | ||
const EDITOR_OPTIONS = { | ||
mode: "code", | ||
search: false, | ||
mainMenuBar: false, | ||
}; | ||
export default defineComponent({ | ||
setup() { | ||
const state = reactive({ | ||
error: false, | ||
loading: false, | ||
isEditJSON: false, | ||
}); | ||
const { $auth } = useContext(); | ||
const route = useRoute(); | ||
const groupSlug = computed(() => route.value.params.groupSlug || $auth.user?.groupSlug || ""); | ||
const domUrlForm = ref<VForm | null>(null); | ||
const api = useUserApi(); | ||
const router = useRouter(); | ||
const tags = useTagStore(); | ||
const importKeywordsAsTags = computed({ | ||
get() { | ||
return route.value.query.use_keywords === "1"; | ||
}, | ||
set(v: boolean) { | ||
router.replace({ query: { ...route.value.query, use_keywords: v ? "1" : "0" } }); | ||
}, | ||
}); | ||
const stayInEditMode = computed({ | ||
get() { | ||
return route.value.query.edit === "1"; | ||
}, | ||
set(v: boolean) { | ||
router.replace({ query: { ...route.value.query, edit: v ? "1" : "0" } }); | ||
}, | ||
}); | ||
function handleResponse(response: AxiosResponse<string> | null, edit = false, refreshTags = false) { | ||
if (response?.status !== 201) { | ||
state.error = true; | ||
state.loading = false; | ||
return; | ||
} | ||
if (refreshTags) { | ||
tags.actions.refresh(); | ||
} | ||
router.push(`/g/${groupSlug.value}/r/${response.data}?edit=${edit.toString()}`); | ||
} | ||
const newRecipeData = ref<string | object | null>(null); | ||
function handleIsEditJson() { | ||
if (state.isEditJSON) { | ||
if (newRecipeData.value) { | ||
try { | ||
newRecipeData.value = JSON.parse(newRecipeData.value as string); | ||
} catch { | ||
newRecipeData.value = { "data": newRecipeData.value }; | ||
} | ||
} else { | ||
newRecipeData.value = {}; | ||
} | ||
} else if (newRecipeData.value && Object.keys(newRecipeData.value).length > 0) { | ||
newRecipeData.value = JSON.stringify(newRecipeData.value); | ||
} else { | ||
newRecipeData.value = null; | ||
} | ||
} | ||
handleIsEditJson(); | ||
async function createFromHtmlOrJson(htmlOrJsonData: string | object | null, importKeywordsAsTags: boolean, stayInEditMode: boolean) { | ||
if (!htmlOrJsonData || !domUrlForm.value?.validate()) { | ||
return; | ||
} | ||
let dataString; | ||
if (typeof htmlOrJsonData === "string") { | ||
dataString = htmlOrJsonData; | ||
} else { | ||
dataString = JSON.stringify(htmlOrJsonData); | ||
} | ||
state.loading = true; | ||
const { response } = await api.recipes.createOneByHtmlOrJson(dataString, importKeywordsAsTags); | ||
handleResponse(response, stayInEditMode, importKeywordsAsTags); | ||
} | ||
return { | ||
EDITOR_OPTIONS, | ||
domUrlForm, | ||
importKeywordsAsTags, | ||
stayInEditMode, | ||
newRecipeData, | ||
handleIsEditJson, | ||
createFromHtmlOrJson, | ||
...toRefs(state), | ||
validators, | ||
}; | ||
}, | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.