Andrew Nicolaou
f8d6cb4940
Merge branch 'master' into feature/public-api
2019-06-11 09:59:22 +02:00
siddhant
b7df80a96c
Add sorting to sketches #789 ( #910 )
...
* reselect added
* Added Reselect Sorting
* Refactor App
* added svgs
* Refactor
* Fixed Issues
* re: #789 , update sorting styling, create sorting actions and reducers, add sort by sketch name
* re #789 , change names of svg icons
* re: #789 , use orderBy instead of sortBy, fix styling jumps
2019-06-06 17:17:33 -04:00
Cassie Tarakajian
18f646bde9
for #950 , update babel to v7 ( #1077 )
...
* for #950 , upgrade babel to v7
* fix linting errors
* for #950 , remove @babel/core from devDependencies (so it's only in dependencies) and change babel-loader config to use .babelrc
* for #950 , changes to .babelrc to make work
* for #950 , include core-js modules in webpack config for IE support with babel/plugin-syntax-dynamic-import
* for #950 , update babel and associated packages to LTS
2019-06-05 12:05:31 -04:00
Cassie Tarakajian
b41b3538b9
fixes #417 , add default p5.js inclusion to non-minified version, and update default p5.js version to latest ( #1084 )
2019-05-29 17:29:53 -04:00
Andrew Nicolaou
693542eef5
Forces light theme on Account page
...
This is until this page's components are made theme-aware
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
fe513fdb54
Adds spacing around social login button
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
34fea139f2
Fixes Account back behaviour
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
3cedf37647
Changes API_KEY_REMOVED action constant to match API_KEY_CREATED
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
c508765310
Fixes linting errors
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
89dd41d81f
lastUserAt should be null if the key has never been used
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
3e760ca0b8
Styles Account and APIKeys components
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
a03eed1603
Copy button copies token to clipboard
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
ed87d4cd26
Aligns AccountView to top of page
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
504eacaf64
Displays all API keys in a table, including new token information
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
de5e1a9e8f
Removes AdvancedSettingsView as functionality now in AccountView
2019-05-29 12:51:50 -04:00
Andrew Nicolaou
90f34d7a5a
Updates client UI to request token generation from server
2019-05-29 12:51:50 -04:00
Vertmo
3b55ff81d2
Hashing keys before storing them
2019-05-29 12:51:50 -04:00
Vertmo
78695d3983
Improved interface for copying key after creation
2019-05-29 12:51:50 -04:00
Vertmo
4d4f636623
You can now generate keys from the advanced settings interface
2019-05-29 12:51:50 -04:00
Vertmo
3d2a862d9d
Added design of the API key page
2019-05-29 12:51:50 -04:00
Cassie Tarakajian
507b0b28b1
fixes #417 , add default p5.js inclusion to non-minified version, and update default p5.js version to latest ( #1084 )
2019-05-24 12:40:20 -04:00
Cassie Tarakajian
18239eb2e0
fixes #1065 , checks if cmController.getContent is defined ( #1071 )
2019-05-10 18:26:48 -04:00
Cassie Tarakajian
d4cdd1b790
fixes #1061 , sets selected file if it gets unset ( #1066 )
2019-05-06 14:50:28 -04:00
Ziyao Wei
10403a7f59
Fix race condition that's causing preview/console and code to be out of sync ( #990 ) ( #1031 )
...
* Fix race condition that's causing preview/console and code to be out of sync (#990 )
* Refactor
* Fix undefined prop error
2019-05-02 15:30:56 -04:00
siddhant
538a41c617
Added Loader to indicate loading of sketches ( #880 )
...
* Added Loader to indicate loading of sketches
* Fixed styles
* Changed styles
* remove prefixes
* Issues Fixed:
* added Loader
* Refactor
* Issues Fixed
* clean up loader functions
2019-05-01 16:32:39 -04:00
Cassie Tarakajian
9d22c3c146
fixes #1057 , fullscreen wasn't rendering because clearConsole was not defined ( #1058 )
2019-05-01 15:31:55 -04:00
Ankur Ingale
07b55d7ee4
Fixed Issue #896 ( #1049 )
2019-04-30 17:44:41 -04:00
Cassie Tarakajian
8b296a51aa
Fixes #1052 , in which you can't save a sketch after uploading a file ( #1053 )
...
Fixes #1052 , in which a user can't save a sketch after uploading a file
2019-04-24 13:32:23 -04:00
Apoorv Taneja
ac188eb6d9
fixed ( #958 )
2019-04-17 15:30:50 -04:00
Cassie Tarakajian
7d1901649f
Project synching, for #790 ( #1039 )
...
* add isSaving to project reducer, move actions to functions, start work to get comprehensive frontend/backend syncing working
* handle making changes while saving project, handle saving from another window
* add change to handle saving new sketch, and adding new changes while saving
2019-04-17 14:08:33 -04:00
Cassie Tarakajian
5abf4c4e06
fixes #1026 ( #1028 )
2019-04-11 16:25:37 -04:00
progfay
276f115d3f
set default theme value (light) ( #1001 )
2019-03-28 16:53:22 -04:00
Marton Soos
3bf3fe1452
Fix multiple file options showing up ( #987 ) ( #988 )
...
* Fix multiple file options showing up (#987 )
This change ensures that the file options composite widget is
hidden if and only if none of its components is in focus. This
is achieved by having a variable keep track of the state of
the composite widget (in focus / not in focus).
* Fix #987
Modified fix for #987 according to the requested changes.
Moved isFocused to the components state and created a method
for hadling the function calls executed in onBlur.
* Fix #987 - final touches
Renamed method blurComponent to onBlurComponent. Moved duplicated
code from onFocus callback to a new method called onFocusComponent.
2019-03-27 15:52:57 -04:00
Cassie Tarakajian
2d77ddb650
Merge branch 'master' into feature/remove-indentation-options
2019-03-26 15:38:58 -04:00
Laksh Singla
24302b56de
Added softwrap preference for users. ( #970 )
...
* Client and server side code added for Linewrap option
* Linked linewrap prop with the Editor.jsx property
* linewrap defaults to true
* Renamed 'LineWrap' to 'WordWrap'
2019-03-26 15:37:44 -04:00
cdr
49e786a82d
Use more straightforward tab keymap function
2019-03-26 02:12:42 -04:00
cdr
20be8eb5bd
Fix tab indentation setting
2019-03-23 20:53:07 -04:00
cdr
d1ce054abf
Remove indentation config from actions, reducers, and constants
2019-03-21 21:08:59 -04:00
cdr
ddb93e6c8d
Remove indentation PropTypes from IDEView.jsx
2019-03-21 21:02:22 -04:00
cdr
096f8a1f65
Hardcode 2-space configuration in Editor.jsx
2019-03-21 20:52:56 -04:00
cdr
679ef12b54
Remove indentation options from Preferences.jsx
2019-03-21 20:26:52 -04:00
Ankur Ingale
80765e03c7
Fixed Issue #659 ( #964 )
...
* Fixed Issue #659
* Undo changes in package.json and package-lock.json
* Resolved error
2019-03-21 17:08:46 -04:00
siddhant
98d7933dee
Added length cap to sketch name ( #944 )
2019-03-20 16:32:01 -04:00
Gaurang Tandon
1b468aa4ec
fixes #795 ( #935 )
...
* fixes #795
* fix lint
2019-03-20 14:28:15 -04:00
Cassie Tarakajian
1d2cb87c33
for #874 , also fixes bug in which file options could be revealed by right clicking even if user isn't owner of sketch
2019-03-14 16:10:50 -04:00
nimish
a018929489
Remove file menu on blur
2019-03-13 18:10:47 +05:30
Nimish Agrawal
87c012b9f6
Autofocus on Add File menu ( #882 )
2019-03-12 16:17:27 -04:00
Cassie Tarakajian
d9670f7bc3
fixes #865 ( #869 )
2019-03-05 16:25:34 -05:00
siddhant1
b6e2c4c983
Migrated from momentjs to date-fns
2019-03-02 15:05:40 +05:30
Oliver Wright
e37926de74
Refactor Toolbar Props - See #824 ( #849 )
2019-03-01 16:21:00 -05:00