Skip to content
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

feat: Sync useField with component v-model #3806

Merged
merged 7 commits into from
Jul 10, 2022
Merged

Conversation

logaretm
Copy link
Owner

@logaretm logaretm commented Jun 16, 2022

What

This PR adds a new capability to useField to allow it to automatically sync the v-model directive when it is used on the component that has called it.

This was a common question and issue where multiple people found syncing the modelValue prop themselves annoying.

I think this is a nice addition that is relatively safe to introduce into useField at this stage.

How

useField will now automatically make the component emit update:modelValue and listen to props.modelValue changes and sync it with the value property. It will also take into account the model modifiers like v-model.number.

For custom models names, you can control what the prop/event names are called with modelPropName option:

// component will now emit `update:custom` and sync `custom` prop value with the `value` returned from `useField`.
const { value } = useField('field', undefined, {
  modelPropName: 'custom'
});

You can disable this behavior if you prefer to do that yourself or if you have specific needs with syncVModel option:

// Now it won't emit anything and won't sync anything.
const { value } = useField('field', undefined, {
  syncVModel: false
});

TODO

  • Make Field component use this behavior instead of implementing its own
  • Write Tests
  • Write docs

Caveats

For those who have been using useField multiple times in the same component it usually won't cause any issues unless you have a v-model being used on the component. this makes me think that this behavior could be disabled by default to avoid that rare case, but again useField was never encouraged to be used like that.

This is why useFieldModel was introduced to replace that use case.

Sorry, something went wrong.

@logaretm logaretm self-assigned this Jun 16, 2022
@logaretm logaretm added the 🌟 feature New feature label Jun 16, 2022
@logaretm logaretm force-pushed the feat/sync-model-events branch from 1aee3f6 to 4fe66ab Compare July 3, 2022 19:05
@codecov-commenter
Copy link

codecov-commenter commented Jul 3, 2022

Codecov Report

Merging #3806 (5309185) into main (3b50d89) will increase coverage by 0.12%.
The diff coverage is 100.00%.

@@            Coverage Diff             @@
##             main    #3806      +/-   ##
==========================================
+ Coverage   96.54%   96.66%   +0.12%     
==========================================
  Files          68       68              
  Lines        1908     1920      +12     
  Branches      481      481              
==========================================
+ Hits         1842     1856      +14     
+ Misses         66       64       -2     
Impacted Files Coverage Δ
packages/vee-validate/src/Field.ts 100.00% <100.00%> (+2.53%) ⬆️
packages/vee-validate/src/useField.ts 98.95% <100.00%> (+0.14%) ⬆️
packages/vee-validate/src/utils/common.ts 99.04% <100.00%> (+0.05%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 3b50d89...5309185. Read the comment docs.

logaretm added 3 commits July 3, 2022 21:29

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@logaretm logaretm marked this pull request as ready for review July 10, 2022 02:43
logaretm added a commit that referenced this pull request Jul 10, 2022
@logaretm logaretm merged commit 0ef7582 into main Jul 10, 2022
@logaretm logaretm deleted the feat/sync-model-events branch July 10, 2022 03:31
logaretm added a commit that referenced this pull request Jul 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🌟 feature New feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants