From 9a11e0f4a38297006b89cc7bb2a60734111582e0 Mon Sep 17 00:00:00 2001 From: Leonardo Bishop Date: Sun, 10 Mar 2024 00:13:25 +0000 Subject: Migrate to nuxt --- components/Control/Button.vue | 82 ++++++++ components/Control/Checkbox.vue | 42 ++++ components/Control/ItemStackForm.vue | 50 +++++ components/Control/ItemStackModal.vue | 172 ++++++++++++++++ components/Control/ItemStackPicker.vue | 100 ++++++++++ components/Control/Modal.vue | 68 +++++++ components/Control/TrueFalseSwitch.vue | 54 ++++++ .../Category/CategoryChildrenOptionsPanel.vue | 53 +++++ .../Editor/Category/CategoryOptionsPanel.vue | 54 ++++++ components/Editor/EditorOptionsPanel.vue | 18 ++ components/Editor/EditorPane.vue | 216 +++++++++++++++++++++ components/Editor/EditorSidebar.vue | 28 +++ components/Editor/EditorSidebarCategory.vue | 94 +++++++++ components/Editor/EditorSidebarQuest.vue | 68 +++++++ components/Editor/Quest/Modal/DeleteQuestModal.vue | 42 ++++ .../Editor/Quest/Modal/DuplicateQuestModal.vue | 69 +++++++ components/Editor/Quest/Modal/RenameQuestModal.vue | 69 +++++++ components/Editor/Quest/QuestOptionsPanel.vue | 145 ++++++++++++++ components/Editor/Quest/QuestTasksOptionsPanel.vue | 98 ++++++++++ .../Editor/Quest/Task/Modal/AddTaskModal.vue | 90 +++++++++ .../Editor/Quest/Task/Modal/ChangeTaskModal.vue | 77 ++++++++ components/Editor/Quest/Task/TaskConfiguration.vue | 209 ++++++++++++++++++++ .../Editor/Quest/Task/TaskConfigurationRow.vue | 195 +++++++++++++++++++ components/Header/SiteHeader.vue | 43 ++++ 24 files changed, 2136 insertions(+) create mode 100644 components/Control/Button.vue create mode 100644 components/Control/Checkbox.vue create mode 100644 components/Control/ItemStackForm.vue create mode 100644 components/Control/ItemStackModal.vue create mode 100644 components/Control/ItemStackPicker.vue create mode 100644 components/Control/Modal.vue create mode 100644 components/Control/TrueFalseSwitch.vue create mode 100644 components/Editor/Category/CategoryChildrenOptionsPanel.vue create mode 100644 components/Editor/Category/CategoryOptionsPanel.vue create mode 100644 components/Editor/EditorOptionsPanel.vue create mode 100644 components/Editor/EditorPane.vue create mode 100644 components/Editor/EditorSidebar.vue create mode 100644 components/Editor/EditorSidebarCategory.vue create mode 100644 components/Editor/EditorSidebarQuest.vue create mode 100644 components/Editor/Quest/Modal/DeleteQuestModal.vue create mode 100644 components/Editor/Quest/Modal/DuplicateQuestModal.vue create mode 100644 components/Editor/Quest/Modal/RenameQuestModal.vue create mode 100644 components/Editor/Quest/QuestOptionsPanel.vue create mode 100644 components/Editor/Quest/QuestTasksOptionsPanel.vue create mode 100644 components/Editor/Quest/Task/Modal/AddTaskModal.vue create mode 100644 components/Editor/Quest/Task/Modal/ChangeTaskModal.vue create mode 100644 components/Editor/Quest/Task/TaskConfiguration.vue create mode 100644 components/Editor/Quest/Task/TaskConfigurationRow.vue create mode 100644 components/Header/SiteHeader.vue (limited to 'components') diff --git a/components/Control/Button.vue b/components/Control/Button.vue new file mode 100644 index 0000000..efd91c2 --- /dev/null +++ b/components/Control/Button.vue @@ -0,0 +1,82 @@ + + + + + \ No newline at end of file diff --git a/components/Control/Checkbox.vue b/components/Control/Checkbox.vue new file mode 100644 index 0000000..e0325e7 --- /dev/null +++ b/components/Control/Checkbox.vue @@ -0,0 +1,42 @@ + + + + + \ No newline at end of file diff --git a/components/Control/ItemStackForm.vue b/components/Control/ItemStackForm.vue new file mode 100644 index 0000000..250e8c9 --- /dev/null +++ b/components/Control/ItemStackForm.vue @@ -0,0 +1,50 @@ + + + + + \ No newline at end of file diff --git a/components/Control/ItemStackModal.vue b/components/Control/ItemStackModal.vue new file mode 100644 index 0000000..642c5f9 --- /dev/null +++ b/components/Control/ItemStackModal.vue @@ -0,0 +1,172 @@ + + + + + \ No newline at end of file diff --git a/components/Control/ItemStackPicker.vue b/components/Control/ItemStackPicker.vue new file mode 100644 index 0000000..d16090e --- /dev/null +++ b/components/Control/ItemStackPicker.vue @@ -0,0 +1,100 @@ + + + + + \ No newline at end of file diff --git a/components/Control/Modal.vue b/components/Control/Modal.vue new file mode 100644 index 0000000..46d5da5 --- /dev/null +++ b/components/Control/Modal.vue @@ -0,0 +1,68 @@ + + + + + \ No newline at end of file diff --git a/components/Control/TrueFalseSwitch.vue b/components/Control/TrueFalseSwitch.vue new file mode 100644 index 0000000..a0a3392 --- /dev/null +++ b/components/Control/TrueFalseSwitch.vue @@ -0,0 +1,54 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/Category/CategoryChildrenOptionsPanel.vue b/components/Editor/Category/CategoryChildrenOptionsPanel.vue new file mode 100644 index 0000000..6e96f64 --- /dev/null +++ b/components/Editor/Category/CategoryChildrenOptionsPanel.vue @@ -0,0 +1,53 @@ + + + + + + diff --git a/components/Editor/Category/CategoryOptionsPanel.vue b/components/Editor/Category/CategoryOptionsPanel.vue new file mode 100644 index 0000000..f7d548c --- /dev/null +++ b/components/Editor/Category/CategoryOptionsPanel.vue @@ -0,0 +1,54 @@ + + + + + + diff --git a/components/Editor/EditorOptionsPanel.vue b/components/Editor/EditorOptionsPanel.vue new file mode 100644 index 0000000..1415d84 --- /dev/null +++ b/components/Editor/EditorOptionsPanel.vue @@ -0,0 +1,18 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/EditorPane.vue b/components/Editor/EditorPane.vue new file mode 100644 index 0000000..bf9532a --- /dev/null +++ b/components/Editor/EditorPane.vue @@ -0,0 +1,216 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/EditorSidebar.vue b/components/Editor/EditorSidebar.vue new file mode 100644 index 0000000..c9539fa --- /dev/null +++ b/components/Editor/EditorSidebar.vue @@ -0,0 +1,28 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/EditorSidebarCategory.vue b/components/Editor/EditorSidebarCategory.vue new file mode 100644 index 0000000..7153b92 --- /dev/null +++ b/components/Editor/EditorSidebarCategory.vue @@ -0,0 +1,94 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/EditorSidebarQuest.vue b/components/Editor/EditorSidebarQuest.vue new file mode 100644 index 0000000..baf06f1 --- /dev/null +++ b/components/Editor/EditorSidebarQuest.vue @@ -0,0 +1,68 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/Quest/Modal/DeleteQuestModal.vue b/components/Editor/Quest/Modal/DeleteQuestModal.vue new file mode 100644 index 0000000..d0b0c5a --- /dev/null +++ b/components/Editor/Quest/Modal/DeleteQuestModal.vue @@ -0,0 +1,42 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/Quest/Modal/DuplicateQuestModal.vue b/components/Editor/Quest/Modal/DuplicateQuestModal.vue new file mode 100644 index 0000000..bcd3782 --- /dev/null +++ b/components/Editor/Quest/Modal/DuplicateQuestModal.vue @@ -0,0 +1,69 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/Quest/Modal/RenameQuestModal.vue b/components/Editor/Quest/Modal/RenameQuestModal.vue new file mode 100644 index 0000000..2ad1481 --- /dev/null +++ b/components/Editor/Quest/Modal/RenameQuestModal.vue @@ -0,0 +1,69 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/Quest/QuestOptionsPanel.vue b/components/Editor/Quest/QuestOptionsPanel.vue new file mode 100644 index 0000000..a462126 --- /dev/null +++ b/components/Editor/Quest/QuestOptionsPanel.vue @@ -0,0 +1,145 @@ + + + + + + diff --git a/components/Editor/Quest/QuestTasksOptionsPanel.vue b/components/Editor/Quest/QuestTasksOptionsPanel.vue new file mode 100644 index 0000000..a79e636 --- /dev/null +++ b/components/Editor/Quest/QuestTasksOptionsPanel.vue @@ -0,0 +1,98 @@ + + + + + + + diff --git a/components/Editor/Quest/Task/Modal/AddTaskModal.vue b/components/Editor/Quest/Task/Modal/AddTaskModal.vue new file mode 100644 index 0000000..57139bb --- /dev/null +++ b/components/Editor/Quest/Task/Modal/AddTaskModal.vue @@ -0,0 +1,90 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/Quest/Task/Modal/ChangeTaskModal.vue b/components/Editor/Quest/Task/Modal/ChangeTaskModal.vue new file mode 100644 index 0000000..c6b5921 --- /dev/null +++ b/components/Editor/Quest/Task/Modal/ChangeTaskModal.vue @@ -0,0 +1,77 @@ + + + + + \ No newline at end of file diff --git a/components/Editor/Quest/Task/TaskConfiguration.vue b/components/Editor/Quest/Task/TaskConfiguration.vue new file mode 100644 index 0000000..0646ad4 --- /dev/null +++ b/components/Editor/Quest/Task/TaskConfiguration.vue @@ -0,0 +1,209 @@ + + + + + + diff --git a/components/Editor/Quest/Task/TaskConfigurationRow.vue b/components/Editor/Quest/Task/TaskConfigurationRow.vue new file mode 100644 index 0000000..f68ce97 --- /dev/null +++ b/components/Editor/Quest/Task/TaskConfigurationRow.vue @@ -0,0 +1,195 @@ + + + + + \ No newline at end of file diff --git a/components/Header/SiteHeader.vue b/components/Header/SiteHeader.vue new file mode 100644 index 0000000..f51e970 --- /dev/null +++ b/components/Header/SiteHeader.vue @@ -0,0 +1,43 @@ + + + \ No newline at end of file -- cgit v1.2.3-70-g09d2