-
Notifications
You must be signed in to change notification settings - Fork 7
Adicionar suporte a v-model ao SegmentedControl #1093
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
Open
lucasn4s
wants to merge
5
commits into
main
Choose a base branch
from
feature/segmented-control-v-model-3936232099814014702
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
b197b47
feat: add v-model support to SegmentedControl
google-labs-jules[bot] 4a26262
docs: documenta o evento do update:model-value
f5e941a
refactor: corrige comentários e bumpa para versão correta
b93e99a
Merge branch 'main' into feature/segmented-control-v-model-3936232099…
jvictordev1 12d2096
build: corrige versão
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -0,0 +1,128 @@ | ||
| import { describe, test, expect } from 'vitest'; | ||
| import SegmentedControl from '../components/SegmentedControl.vue'; | ||
| import { mount } from '@vue/test-utils'; | ||
| import { nextTick } from 'vue'; | ||
|
|
||
| describe('SegmentedControl v-model', () => { | ||
| test('should respect initial modelValue', async () => { | ||
| const wrapper = mount(SegmentedControl, { | ||
| props: { | ||
| segments: ['Segment 1', 'Segment 2'], | ||
| modelValue: 'Segment 2', | ||
| }, | ||
| }); | ||
|
|
||
| const activeButtons = wrapper.findAll('.segment-control__button--active'); | ||
| expect(activeButtons.length).toBe(1); | ||
| expect(activeButtons[0].text()).toBe('Segment 2'); | ||
| }); | ||
|
|
||
| test('should update modelValue when a segment is clicked', async () => { | ||
| const wrapper = mount(SegmentedControl, { | ||
| props: { | ||
| segments: ['Segment 1', 'Segment 2'], | ||
| modelValue: 'Segment 1', | ||
| 'onUpdate:modelValue': (e) => wrapper.setProps({ modelValue: e }), | ||
| }, | ||
| }); | ||
|
|
||
| const buttons = wrapper.findAll('.segment-control__button'); | ||
| await buttons[1].trigger('click'); | ||
|
|
||
| expect(wrapper.emitted('update:modelValue')).toBeTruthy(); | ||
| expect(wrapper.emitted('update:modelValue')![0]).toEqual(['Segment 2']); | ||
| }); | ||
|
|
||
| test('should default to the first segment if no modelValue is provided', async () => { | ||
| const wrapper = mount(SegmentedControl, { | ||
| props: { | ||
| segments: ['Segment 1', 'Segment 2'], | ||
| }, | ||
| }); | ||
|
|
||
| await nextTick(); | ||
|
|
||
| const activeButtons = wrapper.findAll('.segment-control__button--active'); | ||
| expect(activeButtons.length).toBe(1); | ||
| expect(activeButtons[0].text()).toBe('Segment 1'); | ||
| }); | ||
|
|
||
| test('should still emit click event when a segment is clicked', async () => { | ||
| const wrapper = mount(SegmentedControl, { | ||
| props: { | ||
| segments: ['Segment 1', 'Segment 2'], | ||
| modelValue: 'Segment 1', | ||
| }, | ||
| }); | ||
|
|
||
| const buttons = wrapper.findAll('.segment-control__button'); | ||
| await buttons[1].trigger('click'); | ||
|
|
||
| expect(wrapper.emitted('click')).toBeTruthy(); | ||
| expect(wrapper.emitted('click')![0]).toEqual(['Segment 2', 1]); | ||
| }); | ||
|
|
||
| test('should respect initial falsy modelValue (e.g. empty string) if it is a valid segment', async () => { | ||
| const wrapper = mount(SegmentedControl, { | ||
| props: { | ||
| segments: ['Segment 1', ''], | ||
| modelValue: '', | ||
| }, | ||
| }); | ||
|
|
||
| await nextTick(); | ||
|
|
||
| const activeButtons = wrapper.findAll('.segment-control__button--active'); | ||
| expect(activeButtons.length).toBe(1); | ||
| expect(activeButtons[0].text()).toBe(''); | ||
| expect(wrapper.emitted('update:modelValue')).toBeFalsy(); | ||
| }); | ||
|
|
||
| test('should NOT emit update:modelValue on mount if initial modelValue is a valid segment', async () => { | ||
| const wrapper = mount(SegmentedControl, { | ||
| props: { | ||
| segments: ['Segment 1', 'Segment 2'], | ||
| modelValue: 'Segment 2', | ||
| }, | ||
| }); | ||
|
|
||
| await nextTick(); | ||
|
|
||
| expect(wrapper.emitted('update:modelValue')).toBeFalsy(); | ||
| }); | ||
|
|
||
| test('should NOT emit update:modelValue on mount if initial modelValue is a valid falsy segment', async () => { | ||
| const wrapper = mount(SegmentedControl, { | ||
| props: { | ||
| segments: ['Segment 1', ''], | ||
| modelValue: '', | ||
| }, | ||
| }); | ||
|
|
||
| await nextTick(); | ||
|
|
||
| expect(wrapper.emitted('update:modelValue')).toBeFalsy(); | ||
| }); | ||
|
|
||
| test('should update modelValue to the first segment when segments list is loaded dynamically after mount', async () => { | ||
| const wrapper = mount(SegmentedControl, { | ||
| props: { | ||
| segments: [], | ||
| modelValue: '', | ||
| 'onUpdate:modelValue': (e) => wrapper.setProps({ modelValue: e }), | ||
| }, | ||
| }); | ||
|
|
||
| expect(wrapper.findAll('.segment-control__button--active').length).toBe(0); | ||
|
|
||
| await wrapper.setProps({ segments: ['Segment A', 'Segment B'] }); | ||
|
|
||
| expect(wrapper.emitted('update:modelValue')).toBeTruthy(); | ||
| expect(wrapper.emitted('update:modelValue')![0]).toEqual(['Segment A']); | ||
|
|
||
| const activeButtons = wrapper.findAll('.segment-control__button--active'); | ||
| expect(activeButtons.length).toBe(1); | ||
| expect(activeButtons[0].text()).toBe('Segment A'); | ||
| }); | ||
| }); | ||
|
|
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.