Commit graph

5661 commits

Author SHA1 Message Date
Sacha Greif
858fbece5e
Merge pull request #2021 from Apollinaire/getParametersFix
collection.getParameters handles schema extension for searchable fields
2018-07-23 15:14:44 +02:00
Apollinaire
fefc21bb2f collection.getParameters handles schema extension for searchable fields
Instead of using `schema` passed when creating the collection, `getParameters` should fetch the schema from `collection.simpleSchema()._schema` to include the fields added with `collection.addField`.

I originally found this when making the `groups` field searchable, with: 
```
Users.addField([
  {
    fieldName: 'groups',
    fieldSchema: {
      type: Array,
      searchable: true,
    },
  },
  {
    fieldName: 'groups.$',
    fieldSchema: {
      type: String,
    },
  },
]);
```
2018-07-23 11:59:22 +02:00
Sacha Greif
0edde32608
Merge pull request #2020 from monkeywithacupcake/patch-1
Open Collective Updates
2018-07-22 21:06:19 +02:00
jess
025551b04b
Open Collective Updates
Hi, I'm making updates for Open Collective. Either you or a supporter signed this repo up for Open Collective. This pull request adds backers and sponsors from your Open Collective https://opencollective.com/vulcan❤️

It adds two badges at the top to show the latest number of backers and sponsors. It also adds placeholders so that the avatar/logo of new backers/sponsors can automatically be shown without having to update your README.md. [more info](https://github.com/opencollective/opencollective/wiki/Github-banner). See how it looks on this [repo](https://github.com/apex/apex#backers).

You can also add a postinstall script to let people know after npm|yarn install that you are welcoming donations (optional). [More info](https://github.com/OpenCollective/opencollective-cli)
You can also add a "Donate" button to your website and automatically show your backers and sponsors there with our widgets. Have a look here: https://opencollective.com/widgets

P.S: As with any pull request, feel free to comment or suggest changes. The only thing "required" are the placeholders on the README because we believe it's important to acknowledge the people in your community that are contributing (financially or with code!).

Thank you for your great contribution to the open source community. You are awesome! 🙌
And welcome to the open collective community! 😊

Come chat with us in the #opensource channel on https://slack.opencollective.com - great place to ask questions and share best practices with other open source sustainers!
2018-07-22 11:42:38 -07:00
Sacha Greif
4fe5278bcc
Merge pull request #2013 from OrigenStudio/dynamic-loader
Dynamic loader improvements
2018-07-14 13:51:59 +02:00
SachaG
97c1ea1630 Improve MutatioButton 2018-07-14 09:09:01 +02:00
SachaG
dfd4bb023e MutationButton component 2018-07-13 21:47:36 +02:00
SachaG
4af2492e07 Make Card and Datatable components more flexible when working with static data; add title prop 2018-07-11 08:34:01 +02:00
SachaG
2eeb5af8a8 Add static text component to display simple text data in forms 2018-07-10 10:08:42 +02:00
SachaG
b34f0a25ce Add support for new addFields form props to force adding unmutable "static" (disabled) fields 2018-07-10 10:02:08 +02:00
SachaG
8a446680cf Minor fixes to form, mutators; query, and payments 2018-07-07 18:49:04 +02:00
SachaG
a55ef866b0 Clear all current values 2018-07-04 11:25:44 +02:00
SachaG
b2fc0d0c5b Use Utils.pluralize function 2018-07-04 11:11:46 +02:00
SachaG
e0b540eeb1 Use callback ref; fix withMutation; handle errors with no path 2018-07-04 10:59:10 +02:00
SachaG
861980b468 Internationalize field labels in forms and form errors 2018-07-02 16:59:29 +02:00
ochicf
3b156b73bd eslint disable 2018-06-30 12:19:32 +02:00
ochicf
d783afb3df Merge remote-tracking branch 'upstream/devel' into dynamic-loader 2018-06-30 12:15:16 +02:00
ochicf
4b17124877 refactor dynamicLoader, rename getDynamicComponent
getDynamicComponent is renamed to renderDynamicComponent and the first is marked as deprecated.
2018-06-30 12:14:43 +02:00
SachaG
35c811e791 Fix form error labels to work with intl fields 2018-06-30 11:48:37 +02:00
SachaG
bb80001056 Fix eslint issues 2018-06-30 11:34:17 +02:00
ochicf
fb096256a1 add delayedComponent function 2018-06-30 11:21:45 +02:00
Sacha Greif
5230f3ae06
Merge pull request #2011 from OrigenStudio/field-value-merge
FormComponent value handling improvements
2018-06-30 09:35:42 +02:00
SachaG
12dd5b1141 Missed a conflict 2018-06-30 09:33:31 +02:00
SachaG
5f7d9f792f Merge branch 'OrigenStudio-form-errors' into devel 2018-06-30 09:26:35 +02:00
SachaG
da98a6bd53 Merge branch 'form-errors' of https://github.com/OrigenStudio/Vulcan into OrigenStudio-form-errors
# Conflicts:
#	packages/vulcan-lib/lib/modules/validation.js
2018-06-30 09:26:26 +02:00
SachaG
7a10103590 Pass down disabled prop explicitely 2018-06-30 09:23:49 +02:00
ochicf
cafa28fa90 retrieve nested values using path instead of name 2018-06-29 20:04:01 +02:00
ochicf
affd4d61f1 remove added props to remove complexity
this commit undoes some changes introduced in this PR that added more complexity than usefulness
2018-06-29 20:03:54 +02:00
ochicf
1433ca9629 rename context to errorContext to avoid confusion with React's 2018-06-29 19:26:06 +02:00
ochicf
7d4a1685d4 add missing import 2018-06-29 13:22:46 +02:00
ochicf
f7b949b86c use getDeletedValues to apply DRY 2018-06-29 13:22:21 +02:00
ochicf
198d7f6e5d refactor mergeValue
- takes into account deletedValues
- only will merge simple objects. this prevents merging with different prototype such as `File`
2018-06-29 13:06:52 +02:00
ochicf
2e2c480b34 add getDeletedValues and getNestedDeletedValues functions 2018-06-29 13:04:35 +02:00
ochicf
59965f9614 fix: properly retrieve parent path when current path is of an array elem
Example: for path `fieldArray[0]`, parent path was `fieldArray[0`, now is `fieldArray`.
2018-06-29 13:01:56 +02:00
ochicf
ea01b8ef10 add path utils module 2018-06-29 12:58:59 +02:00
ochicf
6f437f0284 remove shouldMergeValue function 2018-06-29 12:57:11 +02:00
ochicf
3f6a3f6731 return undefined to indiciate that the merge has not happened 2018-06-29 12:55:55 +02:00
ochicf
057896f0df remove shouldMergeValue prop 2018-06-29 12:55:03 +02:00
SachaG
e921c9762c Remove intl fields sub-schema optional:false 2018-06-28 22:17:58 +02:00
SachaG
dc3d8f8ec0 Refactor 2018-06-28 21:54:45 +02:00
SachaG
a13e61d8b0 Merge branch 'devel' of https://github.com/VulcanJS/Vulcan into devel 2018-06-28 21:35:55 +02:00
SachaG
2d2d1033b5 Enable required locale validation for individual locales; add support for intl: true on schema fields 2018-06-28 21:35:44 +02:00
SachaG
a01ca2ab6e Move FormIntl/FormNested switch from FromComponentInner to FormComponent 2018-06-28 18:36:57 +02:00
Sacha Greif
8b5ff7918d
Merge pull request #2009 from Apollinaire/apolloTracing
New default for Apollo tracing
2018-06-28 17:37:35 +02:00
Sacha Greif
f4668b0cd4
Merge pull request #2008 from Apollinaire/UsersListLimit
Remove hardcoded limit to users List resolver
2018-06-28 17:37:17 +02:00
ochicf
939f2d7ca5 Merge branch 'devel' into field-value-merge 2018-06-28 12:34:31 +02:00
ochicf
d3f24f43cd use shouldMergeValue and mergeValue & allow them to be injected as props 2018-06-28 12:32:32 +02:00
ochicf
84ea1bd84e add shouldMergeValue and mergeValue functions 2018-06-28 12:31:35 +02:00
ochicf
c821610d46 allow injection of emptyValue and defaultValue
both default to '' so they behave the same way as they did
2018-06-28 12:30:56 +02:00
ochicf
8025590020 allow injection of isEmptyValue as prop, default to FormUtils' one 2018-06-28 12:20:45 +02:00