From 562e344bd57ac26be8f6c32ffc7364f576300627 Mon Sep 17 00:00:00 2001 From: hay-kot Date: Tue, 9 Feb 2021 16:39:24 -0900 Subject: [PATCH] refactor/recipe viewer + minor ui improvements --- .../src/components/Recipe/RecipeViewer.vue | 193 ------------------ .../Recipe/RecipeViewer/Ingredients.vue | 34 +++ .../components/Recipe/RecipeViewer/Notes.vue | 36 ++++ .../Recipe/RecipeViewer/RecipeChips.vue | 26 +++ .../components/Recipe/RecipeViewer/Steps.vue | 67 ++++++ .../components/Recipe/RecipeViewer/index.vue | 130 ++++++++++++ 6 files changed, 293 insertions(+), 193 deletions(-) delete mode 100644 frontend/src/components/Recipe/RecipeViewer.vue create mode 100644 frontend/src/components/Recipe/RecipeViewer/Ingredients.vue create mode 100644 frontend/src/components/Recipe/RecipeViewer/Notes.vue create mode 100644 frontend/src/components/Recipe/RecipeViewer/RecipeChips.vue create mode 100644 frontend/src/components/Recipe/RecipeViewer/Steps.vue create mode 100644 frontend/src/components/Recipe/RecipeViewer/index.vue diff --git a/frontend/src/components/Recipe/RecipeViewer.vue b/frontend/src/components/Recipe/RecipeViewer.vue deleted file mode 100644 index 3fbc04646..000000000 --- a/frontend/src/components/Recipe/RecipeViewer.vue +++ /dev/null @@ -1,193 +0,0 @@ - - - - - \ No newline at end of file diff --git a/frontend/src/components/Recipe/RecipeViewer/Ingredients.vue b/frontend/src/components/Recipe/RecipeViewer/Ingredients.vue new file mode 100644 index 000000000..ee758b6bc --- /dev/null +++ b/frontend/src/components/Recipe/RecipeViewer/Ingredients.vue @@ -0,0 +1,34 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/components/Recipe/RecipeViewer/Notes.vue b/frontend/src/components/Recipe/RecipeViewer/Notes.vue new file mode 100644 index 000000000..e25701d27 --- /dev/null +++ b/frontend/src/components/Recipe/RecipeViewer/Notes.vue @@ -0,0 +1,36 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/components/Recipe/RecipeViewer/RecipeChips.vue b/frontend/src/components/Recipe/RecipeViewer/RecipeChips.vue new file mode 100644 index 000000000..cde5d99c3 --- /dev/null +++ b/frontend/src/components/Recipe/RecipeViewer/RecipeChips.vue @@ -0,0 +1,26 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/components/Recipe/RecipeViewer/Steps.vue b/frontend/src/components/Recipe/RecipeViewer/Steps.vue new file mode 100644 index 000000000..4b674668e --- /dev/null +++ b/frontend/src/components/Recipe/RecipeViewer/Steps.vue @@ -0,0 +1,67 @@ + + + + + \ No newline at end of file diff --git a/frontend/src/components/Recipe/RecipeViewer/index.vue b/frontend/src/components/Recipe/RecipeViewer/index.vue new file mode 100644 index 000000000..845c63c95 --- /dev/null +++ b/frontend/src/components/Recipe/RecipeViewer/index.vue @@ -0,0 +1,130 @@ + + + + + \ No newline at end of file