Verison 1.0.3 Release
Based on Buildbotics 0.4.14
This commit is contained in:
70
src/pug/templates/path-viewer.pug
Normal file
70
src/pug/templates/path-viewer.pug
Normal file
@@ -0,0 +1,70 @@
|
||||
//-/////////////////////////////////////////////////////////////////////////////
|
||||
//- //
|
||||
//- This file is part of the Buildbotics firmware. //
|
||||
//- //
|
||||
//- Copyright (c) 2015 - 2018, Buildbotics LLC //
|
||||
//- All rights reserved. //
|
||||
//- //
|
||||
//- This file ("the software") is free software: you can redistribute it //
|
||||
//- and/or modify it under the terms of the GNU General Public License, //
|
||||
//- version 2 as published by the Free Software Foundation. You should //
|
||||
//- have received a copy of the GNU General Public License, version 2 //
|
||||
//- along with the software. If not, see <http://www.gnu.org/licenses/>. //
|
||||
//- //
|
||||
//- The software is distributed in the hope that it will be useful, but //
|
||||
//- WITHOUT ANY WARRANTY; without even the implied warranty of //
|
||||
//- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU //
|
||||
//- Lesser General Public License for more details. //
|
||||
//- //
|
||||
//- You should have received a copy of the GNU Lesser General Public //
|
||||
//- License along with the software. If not, see //
|
||||
//- <http://www.gnu.org/licenses/>. //
|
||||
//- //
|
||||
//- For information regarding this software email: //
|
||||
//- "Joseph Coffland" <joseph@buildbotics.com> //
|
||||
//- //
|
||||
//-/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
script#path-viewer-template(type="text/x-template")
|
||||
.path-viewer(v-show="enabled", :class="{small: small}")
|
||||
.path-viewer-toolbar
|
||||
.tool-button(title="Toggle path view size.",
|
||||
@click="small = !small", :class="{active: !small}")
|
||||
.fa.fa-arrows-alt
|
||||
|
||||
.tool-button(@click="showTool = !showTool", :class="{active: showTool}",
|
||||
title="Show/hide tool.")
|
||||
img(src="images/tool.png")
|
||||
|
||||
.tool-button(@click="showBBox = !showBBox", :class="{active: showBBox}",
|
||||
title="Show/hide bounding box.")
|
||||
img(src="images/bbox.png")
|
||||
|
||||
.tool-button(@click="showAxes = !showAxes", :class="{active: showAxes}",
|
||||
title="Show/hide axes.")
|
||||
img(src="images/axes.png")
|
||||
|
||||
.tool-button(@click="showIntensity = !showIntensity",
|
||||
:class="{active: showIntensity}", title="Show/hide LASER intensity.")
|
||||
img(src="images/intensity.png")
|
||||
|
||||
each view in "isometric top front".split(" ")
|
||||
.tool-button(@click=`snap('${view}')`, title=`Snap to ${view} view.`)
|
||||
img(src=`images/${view}.png`)
|
||||
|
||||
.path-viewer-content
|
||||
|
||||
table.path-viewer-messages(
|
||||
v-if="typeof toolpath.messages != 'undefined' && " +
|
||||
"toolpath.messages.length")
|
||||
tr
|
||||
th Level
|
||||
th Location
|
||||
th Message
|
||||
|
||||
tr(v-for="msg in toolpath.messages", :class="'log-' + msg.level")
|
||||
td.level {{msg.level}}
|
||||
td.location
|
||||
| {{msg.line}}
|
||||
span(v-if="msg.column") :{{msg.column}}
|
||||
td.message {{msg.msg}}
|
||||
Reference in New Issue
Block a user