-
Notifications
You must be signed in to change notification settings - Fork 70
Guide tool #424
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: webpack-build
Are you sure you want to change the base?
Guide tool #424
Changes from all commits
681e355
1c71ac4
a9aa7bc
59a82e2
3136d78
68756d1
7e50ca4
1e1278d
415c650
3e04102
1c743af
2cc9541
e509364
7c451f2
4a546c2
eeb570d
c428f8f
4e03d57
98fe6c8
6ef1307
9a0c56d
c5be2c2
686c68e
ea93925
dfe55d0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,7 +6,7 @@ | |
|
|
||
| <script> | ||
| import Visualiser from "./components/Visualiser.vue"; | ||
| import LayoutSidebar from "./views/layouts/SplitLayout.vue"; | ||
| import LayoutSidebar from "./views/layouts/GuideToolLayout.vue"; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We will need to create a router and make sure your app is navigable.
|
||
| export default { | ||
| name: "App", | ||
|
|
||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -391,11 +391,11 @@ export default class ViewManager { | |
| let groupNum = Registry.currentDevice.layers.length; | ||
| if (groupNum != 0) groupNum = groupNum / 3; | ||
|
|
||
| const newlayers = []; | ||
| let newlayers = []; | ||
| newlayers[0] = new Layer({ z_offset: 0, flip: false }, this.currentDevice.generateNewName("LayerFlow"), LogicalLayerType.FLOW, groupNum.toString()); | ||
| newlayers[1] = new Layer({ z_offset: 0, flip: false }, this.currentDevice.generateNewName("LayerControl"), LogicalLayerType.CONTROL, groupNum.toString()); | ||
| newlayers[2] = new Layer({ z_offset: 0, flip: false }, this.currentDevice.generateNewName("LayerIntegration"), LogicalLayerType.INTEGRATION, groupNum.toString()); | ||
| // Add model layers to current device | ||
| //Add model layers to current device | ||
| Registry.currentDevice.createNewLayerBlock(newlayers); | ||
|
|
||
|
Comment on lines
+394
to
400
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can revert these changes, there's no use for them |
||
| // Find all the edge features | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,29 +7,42 @@ | |
| </template> | ||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can revert all the changes in this file too |
||
| <v-card> | ||
| <v-card-title class="text-h5 lighten-2"> Change All Components: </v-card-title> | ||
| <v-card-title class="text-h5 lighten-2"> | ||
| Change All Components: | ||
| </v-card-title> | ||
|
|
||
| <v-card-text> </v-card-text> | ||
| <v-card-text /> | ||
| <table> | ||
| <tr> | ||
| <th class="font-weight-bold pl-10 pt-4 pb-2"> | ||
| <input v-model="selectAll" type="checkbox" /> | ||
| <span class="pl-1">Select</span> | ||
| </th> | ||
| <th class="font-weight-bold pl-15 pt-4 pb-2">Name</th> | ||
| <th class="font-weight-bold pl-15 pt-4 pb-2"> | ||
| Name | ||
| </th> | ||
| </tr> | ||
| <tr v-for="comp in components" :key="comp.id"> | ||
| <td class="pl-15 pb-2"><input v-model="selected" type="checkbox" :value="comp.id" /></td> | ||
| <td class="pl-15 pb-2">{{ comp.name }}</td> | ||
| <td class="pl-15 pb-2"> | ||
| <input v-model="selected" type="checkbox" :value="comp.id" > | ||
| </td> | ||
|
|
||
| <td class="pl-15 pb-2"> | ||
| {{ comp.name }} | ||
| </td> | ||
| </tr> | ||
| </table> | ||
|
|
||
| <v-divider></v-divider> | ||
| <v-divider /> | ||
|
|
||
| <v-card-actions> | ||
| <v-spacer></v-spacer> | ||
| <v-btn color="green" class="white--text" @click="onSave"> Change </v-btn> | ||
| <v-btn color="red" class="white--text ml-9" @click="dialog = false"> Cancel </v-btn> | ||
| <v-spacer /> | ||
| <v-btn color="green" class="white--text" @click="onSave"> | ||
| Change | ||
| </v-btn> | ||
| <v-btn color="red" class="white--text ml-9" @click="dialog = false"> | ||
| Cancel | ||
| </v-btn> | ||
| </v-card-actions> | ||
| </v-card> | ||
| </v-dialog> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ | |
| <thead v-show="showRename"> | ||
| <v-col> | ||
| <v-row align-start> | ||
| <v-text-field v-model="componentName" label="Name" type="input"> </v-text-field> | ||
| <v-text-field v-model="componentName" label="Name" type="input" /> | ||
| <v-btn x-small depressed @click="cancelRename"> | ||
|
Comment on lines
+7
to
8
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can revert these changes too |
||
| <span class="material-icons">close</span> | ||
| </v-btn> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ | |
| <thead v-show="showRename"> | ||
| <v-col> | ||
| <v-row align-start> | ||
| <v-text-field v-model="connectionName" label="Name" type="input"> </v-text-field> | ||
| <v-text-field v-model="connectionName" label="Name" type="input" /> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can revert this |
||
| <v-btn x-small depressed @click="cancelRename"> | ||
| <span class="material-icons">close</span> | ||
| </v-btn> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure why this got added to the dependencies, please revert this back to whats in
webpack-buildbranch.