1
- import React , { Fragment , useState , useEffect , useCallback } from " react" ;
1
+ import React , { Fragment , useState , useEffect , useCallback } from ' react' ;
2
2
import {
3
3
JsonForms ,
4
4
JsonFormsDispatch ,
5
5
JsonFormsReduxContext
6
- } from "@jsonforms/react" ;
7
- import { Provider } from "react-redux" ;
8
- import Grid from "@material-ui/core/Grid" ;
9
- import Typography from "@material-ui/core/Typography" ;
10
- import withStyles , { WithStyles } from "@material-ui/core/styles/withStyles" ;
11
- import createStyles from "@material-ui/core/styles/createStyles" ;
12
- import { Tabs , Tab } from "@material-ui/core" ;
13
- import logo from "./logo.svg" ;
14
- import "./App.css" ;
15
- import schema from "./schema.json" ;
16
- import uischema from "./uischema.json" ;
17
- import { materialCells , materialRenderers } from "@jsonforms/material-renderers" ;
18
- import { Store } from "redux" ;
19
- import { get } from "lodash" ;
20
- import RatingControl from "./RatingControl" ;
21
- import ratingControlTester from "./ratingControlTester" ;
6
+ } from '@jsonforms/react' ;
7
+ import { Provider } from 'react-redux' ;
8
+ import Grid from '@material-ui/core/Grid' ;
9
+ import Typography from '@material-ui/core/Typography' ;
10
+ import withStyles , { WithStyles } from '@material-ui/core/styles/withStyles' ;
11
+ import createStyles from '@material-ui/core/styles/createStyles' ;
12
+ import { Tabs , Tab } from '@material-ui/core' ;
13
+ import logo from './logo.svg' ;
14
+ import './App.css' ;
15
+ import schema from './schema.json' ;
16
+ import uischema from './uischema.json' ;
17
+ import {
18
+ materialCells ,
19
+ materialRenderers
20
+ } from '@jsonforms/material-renderers' ;
21
+ import { Store } from 'redux' ;
22
+ import { get } from 'lodash' ;
23
+ import RatingControl from './RatingControl' ;
24
+ import ratingControlTester from './ratingControlTester' ;
22
25
23
26
const styles = createStyles ( {
24
27
container : {
25
- padding : " 1em"
28
+ padding : ' 1em'
26
29
} ,
27
30
title : {
28
- textAlign : " center" ,
29
- padding : " 0.25em"
31
+ textAlign : ' center' ,
32
+ padding : ' 0.25em'
30
33
} ,
31
34
dataContent : {
32
- display : " flex" ,
33
- justifyContent : " center" ,
34
- borderRadius : " 0.25em" ,
35
- backgroundColor : " #cecece"
35
+ display : ' flex' ,
36
+ justifyContent : ' center' ,
37
+ borderRadius : ' 0.25em' ,
38
+ backgroundColor : ' #cecece'
36
39
} ,
37
40
demoform : {
38
- margin : " auto" ,
39
- padding : " 1rem"
41
+ margin : ' auto' ,
42
+ padding : ' 1rem'
40
43
}
41
44
} ) ;
42
45
@@ -45,25 +48,25 @@ export interface AppProps extends WithStyles<typeof styles> {
45
48
}
46
49
47
50
const data = {
48
- name : " Send email to Adrian" ,
49
- description : " Confirm if you have passed the subject\nHereby ..." ,
51
+ name : ' Send email to Adrian' ,
52
+ description : ' Confirm if you have passed the subject\nHereby ...' ,
50
53
done : true ,
51
- recurrence : " Daily" ,
54
+ recurrence : ' Daily' ,
52
55
rating : 3
53
56
} ;
54
57
55
58
const getDataAsStringFromStore = ( store : Store ) =>
56
59
store
57
60
? JSON . stringify (
58
- get ( store . getState ( ) , [ " jsonforms" , " core" , " data" ] ) ,
61
+ get ( store . getState ( ) , [ ' jsonforms' , ' core' , ' data' ] ) ,
59
62
null ,
60
63
2
61
64
)
62
- : "" ;
65
+ : '' ;
63
66
64
67
const App = ( { store, classes } : AppProps ) => {
65
68
const [ tabIdx , setTabIdx ] = useState ( 0 ) ;
66
- const [ displayDataAsString , setDisplayDataAsString ] = useState ( "" ) ;
69
+ const [ displayDataAsString , setDisplayDataAsString ] = useState ( '' ) ;
67
70
const [ standaloneData , setStandaloneData ] = useState ( data ) ;
68
71
const handleTabChange = useCallback (
69
72
( event : any , newValue : number ) => {
@@ -92,38 +95,38 @@ const App = ({ store, classes }: AppProps) => {
92
95
93
96
return (
94
97
< Fragment >
95
- < div className = " App" >
96
- < header className = " App-header" >
97
- < img src = { logo } className = " App-logo" alt = " logo" />
98
- < h1 className = " App-title" > Welcome to JSON Forms with React</ h1 >
99
- < p className = " App-intro" > More Forms. Less Code.</ p >
98
+ < div className = ' App' >
99
+ < header className = ' App-header' >
100
+ < img src = { logo } className = ' App-logo' alt = ' logo' />
101
+ < h1 className = ' App-title' > Welcome to JSON Forms with React</ h1 >
102
+ < p className = ' App-intro' > More Forms. Less Code.</ p >
100
103
</ header >
101
104
</ div >
102
105
103
106
< Grid
104
107
container
105
- justify = { " center" }
108
+ justify = { ' center' }
106
109
spacing = { 1 }
107
110
className = { classes . container }
108
111
>
109
112
< Grid item sm = { 6 } >
110
- < Typography variant = { "h3" } className = { classes . title } >
113
+ < Typography variant = { 'h3' } className = { classes . title } >
111
114
Bound data
112
115
</ Typography >
113
116
< div className = { classes . dataContent } >
114
- < pre id = " boundData" > { displayDataAsString } </ pre >
117
+ < pre id = ' boundData' > { displayDataAsString } </ pre >
115
118
</ div >
116
119
</ Grid >
117
120
< Grid item sm = { 6 } >
118
- < Typography variant = { "h3" } className = { classes . title } >
121
+ < Typography variant = { 'h3' } className = { classes . title } >
119
122
Rendered form
120
123
</ Typography >
121
124
< Tabs value = { tabIdx } onChange = { handleTabChange } >
122
- < Tab label = " via Redux" />
123
- < Tab label = " Standalone" />
125
+ < Tab label = ' via Redux' />
126
+ < Tab label = ' Standalone' />
124
127
</ Tabs >
125
128
{ tabIdx === 0 && (
126
- < div className = { classes . demoform } id = " form" >
129
+ < div className = { classes . demoform } id = ' form' >
127
130
{ store ? (
128
131
< Provider store = { store } >
129
132
< JsonFormsReduxContext >
0 commit comments