forked from parse-community/parse-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* * chore(package): update lockfile package-lock.json * chore(package): added react-simple-code-editor dependency * feat(CodeEditor): added CodeEditor component * added id tho the code editor props * added playground to dashboard * added react-json dependency to show playground results * update changelog * fix playground button CSS spacing and update risky dependencies * fix(React life-cycle): fixes requested on PR parse-community#1464 review * feat(Playground): update CodeEditor component and show result just in console * feat(Playground): update CodeEditor component and show result just in console * fix(Playground): fix erron in test of CodeEditor component * Update parse-dashboard-config.json * fix(Playground): implemented requested changes and put Playground into JS Console * fix(Playground): fix double quotes and change JS Console playground * fix(Playground): fix missing dependency Co-authored-by: Antonio Davi Macedo Coelho de Castro <[email protected]>
- Loading branch information
1 parent
7085e53
commit ed5e4f3
Showing
52 changed files
with
1,835 additions
and
1,157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,25 @@ | ||
{ | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"browser": true | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"browser": true | ||
}, | ||
"parser": "babel-eslint", | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"experimentalObjectRestSpread": true, | ||
"jsx": true | ||
}, | ||
"parser": "babel-eslint", | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"experimentalObjectRestSpread": true, | ||
"jsx": true | ||
}, | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"react" | ||
], | ||
"rules": { | ||
"react/jsx-uses-vars": 1, | ||
"react/jsx-uses-react": 1, | ||
"react/react-in-jsx-scope": 1, | ||
"no-console": 0, | ||
"no-case-declarations": 0 | ||
} | ||
"sourceType": "module" | ||
}, | ||
"plugins": ["react"], | ||
"rules": { | ||
"react/jsx-uses-vars": 1, | ||
"react/jsx-uses-react": 1, | ||
"react/react-in-jsx-scope": 1, | ||
"no-console": 0, | ||
"no-case-declarations": 0, | ||
"quotes": ["error", "single"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
{ | ||
"apps": [{ | ||
"serverURL": "http://localhost:1338/parse", | ||
"appId": "hello", | ||
"masterKey": "world", | ||
"appName": "", | ||
"iconName": "", | ||
"primaryBackgroundColor": "", | ||
"secondaryBackgroundColor": "" | ||
}], | ||
"apps": [ | ||
{ | ||
"serverURL": "http://localhost:1338/parse", | ||
"appId": "hello", | ||
"masterKey": "world", | ||
"appName": "", | ||
"iconName": "", | ||
"primaryBackgroundColor": "", | ||
"secondaryBackgroundColor": "" | ||
} | ||
], | ||
"iconsFolder": "icons" | ||
} |
Oops, something went wrong.