-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Playground #1464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Playground #1464
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
93f2fc1
* chore(package): update lockfile package-lock.json
MutterPedro f5e156a
added id tho the code editor props
76a6f82
Merge branch 'master' of github.com:parse-community/parse-dashboard i…
MutterPedro 6108838
Merge branch 'playground' of github.com:MutterPedro/parse-dashboard i…
MutterPedro ea1bd42
added playground to dashboard
MutterPedro 105ac0c
added react-json dependency to show playground results
MutterPedro bc6413a
added saving code feature and fixed multiline run feature
MutterPedro 473a1f0
update changelog
MutterPedro 04e767b
Merge branch 'master' into playground
MutterPedro c2e405e
Merge branch 'master' into playground
MutterPedro 772c15f
fix playground button CSS spacing and update risky dependencies
3fd2e9d
Merge branch 'master' into playground
767afb2
Merge branch 'master' into playground
davimacedo 892528e
fix(React life-cycle): fixes requested on PR #1464 review
de395c3
Merge branch 'master' of github.com:parse-community/parse-dashboard i…
9594f6e
Merge branch 'playground' of github.com:MutterPedro/parse-dashboard i…
c2c4e59
feat(Playground): update CodeEditor component and show result just in…
ca7a6d7
feat(Playground): update CodeEditor component and show result just in…
6a2ba91
fix(Playground): fix conflicts
0262c9f
fix(Playground): fix erron in test of CodeEditor component
078454b
Update parse-dashboard-config.json
MutterPedro d9c7fb6
fix(Playground): implemented requested changes and put Playground int…
00be77f
Merge branch 'master' into playground
MutterPedro 457337f
fix(Playground): fix double quotes and change JS Console playground
adde42b
fix(Playground): fix merge conflicts
e7cd71a
fix(Playground): fix merge conflicts
cd71380
fix(Playground): fix merge conflicts
c954d73
Merge branch 'playground' of github.com:MutterPedro/parse-dashboard i…
1a60ed7
fix(Playground): fix missing dependency
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.