mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-22 13:37:58 +01:00
add basic settings drop downs
This commit is contained in:
parent
dc6c1d7575
commit
88e056aece
@ -11,10 +11,15 @@ import { sliceGeometry } from '../slicer.js';
|
|||||||
import RaisedButton from 'material-ui/RaisedButton';
|
import RaisedButton from 'material-ui/RaisedButton';
|
||||||
import Paper from 'material-ui/Paper';
|
import Paper from 'material-ui/Paper';
|
||||||
import Slider from 'material-ui/Slider';
|
import Slider from 'material-ui/Slider';
|
||||||
|
import { Tabs, Tab } from 'material-ui/Tabs';
|
||||||
|
import SelectField from 'material-ui/SelectField'
|
||||||
|
import MenuItem from 'material-ui/MenuItem';
|
||||||
|
import { grey50 } from 'material-ui/styles/colors';
|
||||||
|
|
||||||
const styles = {
|
const styles = {
|
||||||
container: {
|
container: {
|
||||||
position: 'relative'
|
position: 'relative',
|
||||||
|
backgroundColor: grey50
|
||||||
},
|
},
|
||||||
canvas: {
|
canvas: {
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
@ -28,7 +33,7 @@ const styles = {
|
|||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
top: '10px',
|
top: '10px',
|
||||||
right: '10px',
|
right: '10px',
|
||||||
width: '300px',
|
width: '380px',
|
||||||
padding: '10px 20px',
|
padding: '10px 20px',
|
||||||
},
|
},
|
||||||
overlay: {
|
overlay: {
|
||||||
@ -42,6 +47,9 @@ const styles = {
|
|||||||
},
|
},
|
||||||
sliceActions: {
|
sliceActions: {
|
||||||
listStyleType: 'none'
|
listStyleType: 'none'
|
||||||
|
},
|
||||||
|
button: {
|
||||||
|
margin: '5px 0'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -50,7 +58,11 @@ class Interface extends React.Component {
|
|||||||
width: 720,
|
width: 720,
|
||||||
height: 480,
|
height: 480,
|
||||||
printers: printerSettings,
|
printers: printerSettings,
|
||||||
defaultPrinter: 'ultimaker2'
|
defaultPrinter: 'ultimaker2',
|
||||||
|
quality: qualitySettings,
|
||||||
|
defaultQuality: 'medium',
|
||||||
|
materials: materialSettings,
|
||||||
|
defaultMaterial: 'pla',
|
||||||
};
|
};
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
geometry: (props, propName) => {
|
geometry: (props, propName) => {
|
||||||
@ -63,6 +75,10 @@ class Interface extends React.Component {
|
|||||||
classes: PropTypes.objectOf(PropTypes.string),
|
classes: PropTypes.objectOf(PropTypes.string),
|
||||||
printers: PropTypes.object.isRequired,
|
printers: PropTypes.object.isRequired,
|
||||||
defaultPrinter: PropTypes.string.isRequired,
|
defaultPrinter: PropTypes.string.isRequired,
|
||||||
|
quality: PropTypes.object.isRequired,
|
||||||
|
defaultQuality: PropTypes.string.isRequired,
|
||||||
|
materials: PropTypes.object.isRequired,
|
||||||
|
defaultMaterial: PropTypes.string.isRequired,
|
||||||
onCompleteActions: PropTypes.arrayOf(PropTypes.shape({ title: PropTypes.string, callback: PropTypes.func })).isRequired,
|
onCompleteActions: PropTypes.arrayOf(PropTypes.shape({ title: PropTypes.string, callback: PropTypes.func })).isRequired,
|
||||||
};
|
};
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
@ -165,8 +181,8 @@ class Interface extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { width, height, classes, onCompleteActions } = this.props;
|
const { width, height, classes, onCompleteActions, printers, materials, quality } = this.props;
|
||||||
const { sliced, isSlicing, progress, gcode, controlMode } = this.state;
|
const { sliced, isSlicing, progress, gcode, controlMode, printer } = this.state;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={{ width, height }} className={classes.container}>
|
<div style={{ width, height }} className={classes.container}>
|
||||||
@ -189,12 +205,37 @@ class Interface extends React.Component {
|
|||||||
/>
|
/>
|
||||||
</div>}
|
</div>}
|
||||||
{!sliced && <Paper className={classes.sliceBar}>
|
{!sliced && <Paper className={classes.sliceBar}>
|
||||||
<RaisedButton fullWidth disabled={isSlicing} onTouchTap={this.slice} primary label="slice" />
|
<Tabs>
|
||||||
|
<Tab label="basic settings">
|
||||||
|
<div>
|
||||||
|
<SelectField name="printer" value={printer} floatingLabelText="Printer" fullWidth>
|
||||||
|
{Object.entries(printers).map(([value, { title }]) => (
|
||||||
|
<MenuItem key={value} value={value} primaryText={title} />
|
||||||
|
))}
|
||||||
|
</SelectField>
|
||||||
|
<SelectField value="medium" floatingLabelText="Quality" fullWidth>
|
||||||
|
{Object.entries(quality).map(([value, { title }]) => (
|
||||||
|
<MenuItem key={value} value={value} primaryText={title} />
|
||||||
|
))}
|
||||||
|
</SelectField>
|
||||||
|
<SelectField value="pla" floatingLabelText="Material" fullWidth>
|
||||||
|
{Object.entries(materials).map(([value, { title }]) => (
|
||||||
|
<MenuItem key={value} value={value} primaryText={title} />
|
||||||
|
))}
|
||||||
|
</SelectField>
|
||||||
|
</div>
|
||||||
|
</Tab>
|
||||||
|
<Tab label="advanced settings">
|
||||||
|
<div>
|
||||||
|
</div>
|
||||||
|
</Tab>
|
||||||
|
</Tabs>
|
||||||
|
<RaisedButton className={classes.button} fullWidth disabled={isSlicing} onTouchTap={this.slice} primary label="slice" />
|
||||||
</Paper>}
|
</Paper>}
|
||||||
{sliced && <Paper className={classes.sliceBar}>
|
{sliced && <Paper className={classes.sliceBar}>
|
||||||
<RaisedButton fullWidth onTouchTap={this.reset} primary label="slice again" />
|
<RaisedButton className={classes.button} fullWidth onTouchTap={this.reset} primary label="slice again" />
|
||||||
{onCompleteActions.map(({ title, callback }, i) => (
|
{onCompleteActions.map(({ title, callback }, i) => (
|
||||||
<RaisedButton key={i} fullWidth onTouchTap={() => callback(gcode.gcode)} primary label={title} />
|
<RaisedButton className={classes.button} key={i} fullWidth onTouchTap={() => callback(gcode.gcode)} primary label={title} />
|
||||||
))}
|
))}
|
||||||
</Paper>}
|
</Paper>}
|
||||||
{isSlicing && <div className={classes.overlay}>
|
{isSlicing && <div className={classes.overlay}>
|
||||||
|
Loading…
Reference in New Issue
Block a user