Commit graph

189 commits

Author SHA1 Message Date
SachaG
2b0f8cdd88 Change data structure of translations in db to match MongoDB standards 2018-05-21 09:42:08 +09:00
SachaG
b10d8bdb5c Formatting 2018-05-11 09:52:04 +09:00
SachaG
ab674a1163 Merge branch 'devel' into i18n2
# Conflicts:
#	packages/vulcan-forms/lib/components/Form.jsx
#	packages/vulcan-forms/lib/components/FormComponent.jsx
2018-05-11 09:48:34 +09:00
SachaG
9638e4a759 Merge branch 'erikdakoda5' of https://github.com/ErikDakoda/Vulcan into ErikDakoda-erikdakoda5
# Conflicts:
#	packages/vulcan-forms/lib/components/FormComponent.jsx
2018-05-11 09:40:45 +09:00
Erik Dakoda
2fe3b2cd28
Merge branch 'devel' into erikdakoda5 2018-05-10 10:10:27 -04:00
Erik Schannen
150d9392e7 Changes to SmartForm behaviour - refactoring
- Added new `FormComponent.isCustomInput` method
 - Pulled `renderComponent` up from `FormComponentInner` to `FormComponent`
 - Pulled some input-type-specific logic up when it was universal, or pushed it down when it should be handled by each ui library
2018-05-10 10:03:59 -04:00
SachaG
af666027c3 Add locale field to user schema; change it when setLocale is called on client 2018-05-10 17:48:06 +09:00
SachaG
6979ac8bee addLocale -> registerLocale 2018-05-10 17:17:44 +09:00
SachaG
f320b3363b Move registerSetting to index 2018-05-10 10:18:55 +09:00
SachaG
d60b16ea0d Merge branch 'erikdakoda5' of https://github.com/ErikDakoda/Vulcan into ErikDakoda-erikdakoda5
# Conflicts:
#	packages/vulcan-forms/lib/components/FormComponent.jsx
2018-05-10 09:44:50 +09:00
SachaG
6a30f44adf Merge branch 'devel' into i18n2
# Conflicts:
#	packages/vulcan-forms/lib/components/FormComponent.jsx
2018-05-10 08:34:50 +09:00
ochicf
d3cd373606 merge value only when is array or object and is an accepted type 2018-05-09 15:59:59 +02:00
SachaG
e8936b590b Add migration script; fix input prop bug 2018-05-09 10:38:21 +09:00
SachaG
4950f10b20 Get locale from GraphQL header 2018-05-09 09:46:47 +09:00
Erik Schannen
c3f33cb7e0 Changes to SmartForm behaviour
- Moved UI portions of FormComponent to FormComponentInner.jsx in vulcan-ui-bootstrap

 - Added user alert when the user navigates to another route while there are unsaved changed in the form (disabled by default)

 - Added setting forms.warnUnsavedChanges and SmartForm property warnUnsavedChanges to enable user alert

 - Added optional Revert button in FormSubmits to allow the user to discard any changes to the form; this is activated by passing a "revertCallback" property to SmartForm (which can be empty: () => {})

 - Added two functions that form components can access in the child context: refetchForm() to refetch the document from the database (in case it was updated by a background process), isChanged() to determine if there are any unsaved changes

 - For any phrases I have added to en_US.js I also added it to es_ES.js and fr_FR.js with the comment // TODO: translate

 - Updated Form.clearForm and Form.mutationSuccessCallback so that the user can continue working on the document after submitting it

 - The form now scrolls the flash message into view when a submit results in errors

 - Fixed bugs in FormComponent.shouldComponentUpdate() and Form.getDocument()

 - Fixed bug in FormComponent.handleChange() - number fields could not be cleared, only set to 0

 - Fixed a bug in FormComponent.getValue() - it returned the initial value of a checkbox even after it was set to false, and a number even after it was set to 0
2018-05-08 20:09:42 -04:00
SachaG
5b5884d33c Move intl logic to vulcan:lib (keep vulcan:i18n with same API as react-i18n); add isIntlField helper; add IntlString type 2018-05-08 12:23:42 +09:00
SachaG
2c03bd352a Use two-field strategy for getting all locale strings 2018-05-08 11:05:24 +09:00
SachaG
2dadce31e7 Merge branch 'devel' into i18n2 2018-05-07 17:46:14 +09:00
SachaG
55800a9b30 Add support for intl fields to API and SmartForm 2018-05-07 17:41:22 +09:00
SachaG
18bde83fbc v1.10.1 2018-05-04 12:04:10 +09:00
Bernardo Dias
087e5db923 Revert catch callback of removeMutation 2018-05-02 13:39:52 -03:00
Bernardo Dias
37200ec9ae Add document attributes to error catch of editMutation and removeMutation 2018-05-02 13:17:12 -03:00
Bernardo Dias
f099e6557d Include document prop in mutationErrorCallback method 2018-05-02 13:17:12 -03:00
SachaG
dd0ff54f9a Disable FormComponent shouldComponentUpdate callback for now 2018-05-02 18:14:15 +09:00
Bernardo Dias
aeef482e81
Update FormSubmit.jsx
`void` operator expects one argument, otherwise it throws `Uncaught SyntaxError: Unexpected token )`
2018-05-01 16:02:31 -03:00
SachaG
94fc8fffe9 Only rerender FormComponent when necessary 2018-04-30 09:36:42 +09:00
Sacha Greif
d94a568dd8
Merge pull request #1964 from Apollinaire/fieldErrors
Fix field errors display
2018-04-28 11:15:00 +09:00
SachaG
7b1c66cb43 Factor out error handling code; clean up form props; pass currentUser down to FormComponent 2018-04-28 10:54:03 +09:00
Apollinaire
1f67c9c29e Fix field errors display
Added `error.properties` to follow fae7b5a032 .
Kept `error.data` for backwards compatibility, not sure that it's needed. If it is, it might be good to add it to FormErrors too
2018-04-27 18:40:48 +02:00
Sacha Greif
c4efabdd07
Merge pull request #1960 from justinr1234/fix-form-props
Fix Form props
2018-04-24 10:31:04 +09:00
SachaG
f9ed4b0dd5 Button -> Components.Button 2018-04-24 10:20:51 +09:00
Justin Reynolds
30e340d8af Fix Form props 2018-04-23 13:00:08 -05:00
SachaG
2e0f9184cc Fixing mistakes 2018-04-23 09:51:33 +09:00
SachaG
b4f960301b Isolate bootstrap dependencies in new vulcan-ui-bootstrap package 2018-04-23 09:47:04 +09:00
SachaG
63bc4e562a v1.9.1 2018-04-21 18:30:15 +09:00
SachaG
23e261141b control -> input 2018-04-21 18:24:54 +09:00
SachaG
299d83df98 Merge branch 'devel' of https://github.com/VulcanJS/Vulcan into devel 2018-04-21 17:58:29 +09:00
SachaG
fae7b5a032 Improve error handling 2018-04-21 17:57:53 +09:00
Apollinaire
cde919b3ea do not pass FormNested's own inputProperties to FormNestedItem 2018-04-20 17:34:55 +02:00
Apollinaire
6e9da3fbb7 formInput -> input 2018-04-20 16:25:11 +02:00
SachaG
98b9be82f7 v1.9.0 2018-04-17 08:19:54 +09:00
SachaG
45d508ca89 control -> input; forn -> inputProperties 2018-04-14 18:09:35 +09:00
SachaG
bef525eea8 Improve upload error handling; add clearFieldErrors; 2018-04-14 17:21:10 +09:00
SachaG
e37704a94c handle default values properly 2018-04-10 17:23:23 +09:00
SachaG
cc97d1a473 Improve form error handling; fix control css class 2018-04-09 13:10:42 +09:00
SachaG
9b3b545219 Avoid error when no arguments are passed 2018-04-07 11:53:40 +09:00
SachaG
8073af7d11 Add option to keep/exclude hidden fields 2018-04-07 10:09:38 +09:00
SachaG
7c33b37004 Clean up form props/context 2018-04-06 17:56:25 +09:00
Apollinaire
6e39058e51 use this.getCollection() instead of props.collection 2018-03-29 12:15:21 +02:00
SachaG
6735f9aaf3 Improve errors & validation; improve getValue; get rid of autoValue 2018-03-29 11:58:24 +09:00