Skip to content

Commit eddd34a

Browse files
Merge pull request #9 from oslabs-beta/fileStructure
Faraz Moallemi/File Structure Update
2 parents d8b2933 + 503989a commit eddd34a

22 files changed

+50343
-19300
lines changed

package-lock.json

Lines changed: 50312 additions & 19270 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/CodeSnippet.vue renamed to src/components/dashboard_items/CodeSnippet.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!--
22
Description:
3+
Located under Component Details in Dashboard
34
Dynamically renders Code Snippet in Dashboard
45
Functionality includes: Displays children components and (nested) HTML elements in order of selection.
56
-->

src/components/ComponentDetails.vue renamed to src/components/dashboard_items/ComponentDetails.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<CodeSnippet/>
2121
</q-tab-panel>
2222
<q-tab-panel name="html" :style="{height: `${height}vh`}">
23-
<HomeQueue />
23+
<HTMLQueue />
2424
</q-tab-panel>
2525
<q-tab-panel name="state">
2626
<ul id="stateList">
@@ -51,13 +51,13 @@
5151

5252
<script>
5353
import { mapState } from 'vuex'
54-
import HomeQueue from './HomeQueue'
54+
import HTMLQueue from './HTMLQueue'
5555
import CodeSnippet from './CodeSnippet'
5656
5757
export default {
5858
name: 'ComponentDetails',
5959
components: {
60-
HomeQueue,
60+
HTMLQueue,
6161
CodeSnippet
6262
},
6363
computed: {

src/components/Dashboard.vue renamed to src/components/dashboard_items/Dashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
Description:
3-
Displays OverVue's dashboard containing Code Snippet, component details (TBD), Project Tree, and HTML Elements tabs
3+
Displays OverVue's dashboard containing Component Details, Vuex Store, and the Project Tree
44
Functionality includes: opening/closing drawer, deselecting active html, and
55
toggling to html elements tab during component creation
66
-->

src/components/HomeQueue.vue renamed to src/components/dashboard_items/HTMLQueue.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ Description:
3434
<script>
3535
3636
import { mapState, mapActions } from 'vuex'
37-
import { setSelectedElementList, deleteSelectedElement, deleteFromComponentHtmlList } from '../store/types'
38-
import { breadthFirstSearch } from '../utils/search.util'
37+
import { setSelectedElementList, deleteSelectedElement, deleteFromComponentHtmlList } from '../../store/types'
38+
import { breadthFirstSearch } from '../../utils/search.util'
3939
4040
export default {
41-
name: 'HomeQueue',
41+
name: 'HTML Queue',
4242
props: {
4343
name: {
4444
type: String
@@ -105,7 +105,7 @@ export default {
105105
},
106106
watch: {
107107
activeComponent: function () {
108-
// console.log('watching activeComponent in HomeQueue')
108+
// console.log('watching activeComponent in HTMLQueue')
109109
if (this.activeComponent !== '') {
110110
this.component = true
111111
} else {
File renamed without changes.

0 commit comments

Comments
 (0)