Skip to content

Commit 3f5a76a

Browse files
committed
Added beginners drawer/form of Settings screen
1 parent 247d49f commit 3f5a76a

File tree

7 files changed

+203
-23
lines changed

7 files changed

+203
-23
lines changed

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"editor.formatOnSave": true,
33
"eslint.enable": true,
4-
"editor.tabSize": 2
4+
"editor.tabSize": 2,
5+
"git.autofetch": true
56
}

package-lock.json

+118-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
"electron-devtools-installer": "^2.2.4",
5959
"electron-squirrel-startup": "^1.0.0",
6060
"elgato-stream-deck": "github:tedkulp/node-elgato-stream-deck",
61+
"formik": "^1.5.8",
62+
"formik-material-ui": "0.0.20",
6163
"jimp": "^0.6.4",
6264
"lodash": "^4.17.15",
6365
"mobx": "^5.13.0",

src/components/Config.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import CssBaseline from '@material-ui/core/CssBaseline';
77
import Paper from '@material-ui/core/Paper';
88

99
import ConfigGrid from './ConfigGrid';
10+
import Drawer from './Drawer';
1011

1112
const { ipcRenderer } = window.require('electron');
1213

@@ -56,6 +57,7 @@ export default _props => {
5657
<main className={classes.layout}>
5758
<Paper className={classes.paper}>
5859
<ConfigGrid />
60+
<Drawer />
5961
</Paper>
6062
</main>
6163
</React.Fragment>

src/components/ConfigGridCell.jsx

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33
import { makeStyles } from '@material-ui/styles';
4-
import { useStoreState, useStoreActions } from 'easy-peasy';
4+
import { useStoreActions } from 'easy-peasy';
55

66
import Grid from '@material-ui/core/Grid';
77
import Paper from '@material-ui/core/Paper';
@@ -17,19 +17,16 @@ const useStyles = makeStyles(_theme => ({
1717

1818
const ConfigGridCell = ({ col, row }) => {
1919
const classes = useStyles();
20-
const _currentIndex = useStoreState(state => state.currentIndex);
2120
const setCurrentIndex = useStoreActions(actions => actions.setCurrentIndex);
22-
// const clearCurrentIndex = useStoreActions(actions => actions.clearCurrentIndex);
2321

2422
col = col || 1;
2523
row = row || 1;
2624

25+
const currentIndex = `${col},${row}`;
26+
2727
return (
28-
<Grid item xs={2} onClick={() => setCurrentIndex(`${row},${col}`)}>
29-
<Paper className={classes.cell}>
30-
{/* eslint-disable-next-line react/jsx-one-expression-per-line */}
31-
{row},{col}
32-
</Paper>
28+
<Grid item xs={2} onClick={() => setCurrentIndex(currentIndex)}>
29+
<Paper className={classes.cell}>{currentIndex}</Paper>
3330
</Grid>
3431
);
3532
};

src/components/Drawer.jsx

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
import React from 'react';
2+
// import { get } from 'lodash';
3+
import { useStoreState, useStoreActions } from 'easy-peasy';
4+
import { Formik, Field } from 'formik';
5+
import { TextField, Select } from 'formik-material-ui';
6+
import { makeStyles } from '@material-ui/core/styles';
7+
8+
import Drawer from '@material-ui/core/Drawer';
9+
import FormControl from '@material-ui/core/FormControl';
10+
import InputLabel from '@material-ui/core/InputLabel';
11+
import MenuItem from '@material-ui/core/MenuItem';
12+
13+
const useStyles = makeStyles({
14+
field: {
15+
marginBottom: '1em'
16+
},
17+
container: {
18+
padding: '1em',
19+
width: 350
20+
}
21+
});
22+
23+
const defaultButton = {
24+
name: '',
25+
type: 'switch'
26+
};
27+
28+
export default () => {
29+
const classes = useStyles();
30+
const currentIndex = useStoreState(state => state.currentIndex);
31+
const currentButton = useStoreState(state => state.currentButton || defaultButton);
32+
const clearCurrentIndex = useStoreActions(actions => actions.clearCurrentIndex);
33+
34+
return (
35+
<Drawer open={!!currentIndex} onClose={clearCurrentIndex} anchor="right">
36+
<div className={classes.container}>
37+
<Formik initialValues={currentButton}>
38+
{({ handleSubmit }) => (
39+
<form onSubmit={handleSubmit}>
40+
<Field
41+
name="name"
42+
label="Name"
43+
component={TextField}
44+
fullWidth
45+
className={classes.field}
46+
/>
47+
<FormControl className={classes.field} fullWidth>
48+
<InputLabel htmlFor="type">Type</InputLabel>
49+
<Field name="type" select fullWidth component={Select}>
50+
<MenuItem value="switch">Switch Scene</MenuItem>
51+
<MenuItem value="toggle">Toggle Scene</MenuItem>
52+
<MenuItem value="toggleSource">Toggle Source</MenuItem>
53+
<MenuItem value="toggleSceneSource">Toggle Scene Source</MenuItem>
54+
<MenuItem value="momentary">Momentary</MenuItem>
55+
<MenuItem value="cycle">Cycle (Not Implemented)</MenuItem>
56+
<MenuItem value="bindKey">Global Keypress</MenuItem>
57+
<MenuItem value="toggleStudio">Toggle Studio Mode</MenuItem>
58+
<MenuItem value="previewTransition">Transition</MenuItem>
59+
</Field>
60+
</FormControl>
61+
</form>
62+
)}
63+
</Formik>
64+
</div>
65+
</Drawer>
66+
);
67+
};

0 commit comments

Comments
 (0)