Skip to content

Commit 503989a

Browse files
committed
Added file_system_interface and dashboard_items folders and updated all imports and references as well as updated description of some files
Co-authored-by: Terry Tilley [email protected]
1 parent 2625855 commit 503989a

20 files changed

+24
-23
lines changed

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/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/HTMLQueue.vue renamed to src/components/dashboard_items/HTMLQueue.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ 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 {
4141
name: 'HTML Queue',
File renamed without changes.

src/components/home_sidebar_items/ComponentList.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ export default {
6464
// console.log('component', component)
6565
return component
6666
},
67-
activeComponentData() {
67+
activeComponentData () {
6868
return this.activeComponentObj
6969
// set(name){
70-
// this.editComponentName(name)
70+
// this.editComponentName(name)
7171
// }
7272
},
7373
options () {
@@ -111,7 +111,7 @@ export default {
111111
this.setActiveComponent('')
112112
}
113113
},
114-
editCompName(name){
114+
editCompName (name) {
115115
if (name) this.editComponentName(name)
116116
console.log(this.routes[this.activeRoute])
117117
console.log(this.activeComponentObj)

0 commit comments

Comments
 (0)