mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-13 01:37:56 +01:00
43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
import 'babel-polyfill'
|
|
import React from 'react';
|
|
import { Interface } from 'doodle3d-slicer';
|
|
import { render } from 'react-dom';
|
|
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
|
|
import injectTapEventPlugin from 'react-tap-event-plugin';
|
|
import jss from 'jss';
|
|
import preset from 'jss-preset-default';
|
|
import normalize from 'normalize-jss';
|
|
import queryString from 'query-string';
|
|
import getMuiTheme from 'material-ui/styles/getMuiTheme';
|
|
import { grey400, blue500, blue700 } from 'material-ui/styles/colors';
|
|
|
|
const muiTheme = getMuiTheme({
|
|
palette: {
|
|
primary1Color: blue500,
|
|
primary2Color: blue700,
|
|
accent1Color: blue500,
|
|
}
|
|
});
|
|
|
|
injectTapEventPlugin();
|
|
|
|
jss.setup(preset());
|
|
jss.createStyleSheet(normalize).attach();
|
|
jss.createStyleSheet({
|
|
'@global': {
|
|
'*': { margin: 0, padding: 0 },
|
|
'#app, body, html': { height: '100%', fontFamily: 'sans-serif' },
|
|
body: { overflow: 'auto' },
|
|
html: { overflow: 'hidden' }
|
|
}
|
|
}).attach();
|
|
|
|
let { file, selectedPrinter, actions, name } = queryString.parse(location.search);
|
|
if (actions) actions = JSON.parse(actions);
|
|
|
|
render((
|
|
<MuiThemeProvider muiTheme={muiTheme}>
|
|
<Interface actions={actions} fileUrl={file} selectedPrinter={selectedPrinter} name={name}/>
|
|
</MuiThemeProvider>
|
|
), document.getElementById('app'));
|