1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-19 21:29:40 +02:00
mealie/frontend/src/components/AddRecipe.vue

86 lines
2.1 KiB
Vue
Raw Normal View History

2020-12-24 16:37:38 -09:00
<template>
<div class="text-center">
<v-dialog v-model="addRecipe" width="650" @click:outside="reset">
<v-card :loading="processing">
<v-card-title class="headline"> From URL </v-card-title>
<v-card-text>
<v-form>
<v-text-field v-model="recipeURL" label="Recipe URL"></v-text-field>
</v-form>
2021-01-03 12:07:01 -09:00
<v-alert v-if="error" color="red" outlined type="success">
Looks like there was an error parsing the URL. Check the log and
debug/last_recipe.json to see what went wrong.
</v-alert>
2020-12-24 16:37:38 -09:00
</v-card-text>
<v-divider></v-divider>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn color="primary" text @click="createRecipe"> Submit </v-btn>
</v-card-actions>
</v-card>
</v-dialog>
<v-speed-dial v-model="fab" fixed right bottom open-on-hover>
<template v-slot:activator>
2021-01-05 17:54:37 -09:00
<v-btn v-model="fab" color="accent" dark fab>
2020-12-24 16:37:38 -09:00
<v-icon> mdi-plus </v-icon>
</v-btn>
</template>
2020-12-24 19:32:49 -09:00
<v-btn fab dark small color="primary" @click="addRecipe = true">
2020-12-24 16:37:38 -09:00
<v-icon>mdi-link</v-icon>
</v-btn>
2021-01-05 17:54:37 -09:00
<v-btn fab dark small color="accent" @click="navCreate">
<v-icon>mdi-square-edit-outline</v-icon>
</v-btn>
2020-12-24 16:37:38 -09:00
</v-speed-dial>
</div>
</template>
<script>
import api from "../api";
export default {
data() {
return {
2021-01-03 12:07:01 -09:00
error: false,
2020-12-24 16:37:38 -09:00
fab: false,
addRecipe: false,
recipeURL: "",
processing: false,
};
},
methods: {
async createRecipe() {
this.processing = true;
2021-01-03 12:07:01 -09:00
let response = await api.recipes.createByURL(this.recipeURL);
if (response.status !== 201) {
this.error = true;
this.processing = false;
return;
}
2020-12-24 16:37:38 -09:00
this.addRecipe = false;
this.processing = false;
2021-01-03 12:07:01 -09:00
this.$router.push(`/recipe/${response.data}`);
2020-12-24 16:37:38 -09:00
},
navCreate() {
this.$router.push("/new");
},
reset() {
(this.fab = false),
(this.addRecipe = false),
(this.recipeURL = ""),
(this.processing = false);
},
},
};
</script>
<style>
</style>