12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094 |
- import { beVisible, beHidden, haveAttribute, haveClasses, notHaveClasses, haveText, html, notBeVisible, notHaveAttribute, notExist, haveFocus, test, ensureNoConsoleWarns} from '../../../utils'
- test('it works with x-model',
- [html`
- <div
- x-data="{ active: null, people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb' },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- x-model="active"
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="active ? active.name : 'Select Person'"></button>
- <ul x-listbox:options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('ul').should(notBeVisible())
- get('button')
- .should(haveText('Select Person'))
- .click()
- get('ul').should(beVisible())
- get('button').click()
- get('ul').should(notBeVisible())
- get('button').click()
- get('[option="2"]').click()
- get('ul').should(notBeVisible())
- get('button').should(haveText('Arlene Mccoy'))
- },
- )
- test('it works with internal state',
- [html`
- <div
- x-data="{ people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb' },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="$listbox.selected ? $listbox.selected.name : 'Select Person'"></button>
- <ul x-listbox:options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('ul').should(notBeVisible())
- get('button')
- .should(haveText('Select Person'))
- .click()
- get('ul').should(beVisible())
- get('button').click()
- get('ul').should(notBeVisible())
- get('button').click()
- get('[option="2"]').click()
- get('ul').should(notBeVisible())
- get('button').should(haveText('Arlene Mccoy'))
- },
- )
- test('$listbox/$listboxOption',
- [html`
- <div
- x-data="{ people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb' },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="$listbox.selected ? $listbox.selected.name : 'Select Person'"></button>
- <article x-text="$listbox.active?.name"></article>
- <ul x-listbox:options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- 'disabled': $listboxOption.isDisabled,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('article').should(haveText(''))
- get('[option="5"]').should(haveClasses(['disabled']))
- get('button')
- .should(haveText('Select Person'))
- .click()
- get('article').should(haveText('Wade Cooper'))
- get('[option="1"]').should(haveClasses(['active']))
- get('ul').type('{downarrow}')
- get('article').should(haveText('Arlene Mccoy'))
- get('[option="2"]').should(haveClasses(['active']))
- get('button').should(haveText('Select Person'))
- get('[option="2"]').click()
- get('button').should(haveText('Arlene Mccoy'))
- get('[option="2"]').should(haveClasses(['selected']))
- },
- )
- test('"name" prop',
- [html`
- <div
- x-data="{ people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb' },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- name="person"
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="$listbox.selected ? $listbox.selected : 'Select Person'"></button>
- <ul x-listbox:options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person.id"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('input').should(haveAttribute('value', 'null'))
- get('button').click()
- get('input').should(haveAttribute('value', 'null'))
- get('[option="2"]').click()
- get('input').should(beHidden())
- .should(haveAttribute('name', 'person'))
- .should(haveAttribute('value', '2'))
- .should(haveAttribute('type', 'hidden'))
- get('button').click()
- get('[option="4"]').click()
- get('input').should(beHidden())
- .should(haveAttribute('name', 'person'))
- .should(haveAttribute('value', '4'))
- .should(haveAttribute('type', 'hidden'))
- },
- );
- test('"name" prop with object value',
- [html`
- <div
- x-data="{ people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb' },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- name="person"
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="$listbox.selected ? $listbox.selected.name : 'Select Person'"></button>
- <ul x-listbox:options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('input[name="person"]').should(haveAttribute('value', 'null'))
- get('button').click()
- get('[name="person[id]"]').should(notExist())
- get('[option="2"]').click()
- get('input[name="person"]').should(notExist())
- get('[name="person[id]"]').should(beHidden())
- .should(haveAttribute('value', '2'))
- .should(haveAttribute('type', 'hidden'))
- get('[name="person[name]"]').should(beHidden())
- .should(haveAttribute('value', 'Arlene Mccoy'))
- .should(haveAttribute('type', 'hidden'))
- get('button').click()
- get('[option="4"]').click()
- get('[name="person[id]"]').should(beHidden())
- .should(haveAttribute('value', '4'))
- .should(haveAttribute('type', 'hidden'))
- get('[name="person[name]"]').should(beHidden())
- .should(haveAttribute('value', 'Tom Cook'))
- .should(haveAttribute('type', 'hidden'))
- },
- );
- test('"default-value" prop',
- [html`
- <div
- x-data="{ people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb' },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- name="person"
- default-value="2"
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="$listbox.selected ? $listbox.selected : 'Select Person'"></button>
- <ul x-listbox:options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person.id"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('input').should(beHidden())
- .should(haveAttribute('name', 'person'))
- .should(haveAttribute('value', '2'))
- .should(haveAttribute('type', 'hidden'))
- },
- );
- test('"multiple" prop',
- [html`
- <div
- x-data="{
- people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb' },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]
- }"
- x-listbox
- multiple
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="$listbox.selected ? $listbox.selected.join(',') : 'Select People'"></button>
- <ul x-listbox:options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person.id"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('button').click()
- get('[option="2"]').click()
- get('ul').should(beVisible())
- get('button').should(haveText('2'))
- get('[option="4"]').click()
- get('button').should(haveText('2,4'))
- get('ul').should(beVisible())
- get('[option="4"]').click()
- get('button').should(haveText('2'))
- get('ul').should(beVisible())
- },
- );
- test('"multiple" and "name" props together',
- [html`
- <div
- x-data="{
- people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb' },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]
- }"
- x-listbox
- multiple
- name="people"
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="$listbox.selected ? $listbox.selected.map(p => p.id).join(',') : 'Select People'"></button>
- <ul x-listbox:options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('input[name="people"]').should(notExist())
- get('button').click()
- get('[name="people[0][id]"]').should(notExist())
- get('[option="2"]').click()
- get('ul').should(beVisible())
- get('button').should(haveText('2'))
- get('input[name="people"]').should(notExist())
- get('[name="people[0][id]"]').should(beHidden())
- .should(haveAttribute('value', '2'))
- .should(haveAttribute('type', 'hidden'))
- get('[name="people[0][name]"]').should(beHidden())
- .should(haveAttribute('value', 'Arlene Mccoy'))
- .should(haveAttribute('type', 'hidden'))
- get('[option="4"]').click()
- get('[name="people[0][id]"]').should(beHidden())
- .should(haveAttribute('value', '2'))
- .should(haveAttribute('type', 'hidden'))
- get('[name="people[0][name]"]').should(beHidden())
- .should(haveAttribute('value', 'Arlene Mccoy'))
- .should(haveAttribute('type', 'hidden'))
- get('[name="people[1][id]"]').should(beHidden())
- .should(haveAttribute('value', '4'))
- .should(haveAttribute('type', 'hidden'))
- get('[name="people[1][name]"]').should(beHidden())
- .should(haveAttribute('value', 'Tom Cook'))
- .should(haveAttribute('type', 'hidden'))
- get('button').should(haveText('2,4'))
- get('ul').should(beVisible())
- get('[option="4"]').click()
- get('[name="people[0][id]"]').should(beHidden())
- .should(haveAttribute('value', '2'))
- .should(haveAttribute('type', 'hidden'))
- get('[name="people[0][name]"]').should(beHidden())
- .should(haveAttribute('value', 'Arlene Mccoy'))
- .should(haveAttribute('type', 'hidden'))
- get('[name="people[1][id]"]').should(notExist())
- get('[name="people[1][name]"]').should(notExist())
- get('button').should(haveText('2'))
- get('ul').should(beVisible())
- },
- );
- test('keyboard controls',
- [html`
- <div
- x-data="{ active: null, people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb', disabled: true },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- x-model="active"
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="active ? active.name : 'Select Person'"></button>
- <ul x-listbox:options options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('.active').should(notExist())
- get('button').focus().type(' ')
- get('[options]')
- .should(beVisible())
- .should(haveFocus())
- get('[option="1"]')
- .should(haveClasses(['active']))
- get('[options]')
- .type('{downarrow}')
- get('[option="2"]')
- .should(haveClasses(['active']))
- get('[options]')
- .type('{downarrow}')
- get('[option="4"]')
- .should(haveClasses(['active']))
- get('[options]')
- .type('{uparrow}')
- get('[option="2"]')
- .should(haveClasses(['active']))
- get('[options]')
- .type('{home}')
- get('[option="1"]')
- .should(haveClasses(['active']))
- get('[options]')
- .type('{end}')
- get('[option="10"]')
- .should(haveClasses(['active']))
- get('[options]')
- .type('{pageUp}')
- get('[option="1"]')
- .should(haveClasses(['active']))
- get('[options]')
- .type('{pageDown}')
- get('[option="10"]')
- .should(haveClasses(['active']))
- get('[options]')
- .tab()
- .should(haveFocus())
- .should(beVisible())
- .tab({ shift: true })
- .should(haveFocus())
- .should(beVisible())
- .type('{esc}')
- .should(notBeVisible())
- },
- )
- test('"horizontal" keyboard controls',
- [html`
- <div
- x-data="{ active: null, people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb', disabled: true },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- x-model="active"
- horizontal
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="active ? active.name : 'Select Person'"></button>
- <ul x-listbox:options options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('.active').should(notExist())
- get('button').focus().type(' ')
- get('[options]')
- .should(haveAttribute('aria-orientation', 'horizontal'))
- .should(beVisible())
- .should(haveFocus())
- get('[option="1"]')
- .should(haveClasses(['active']))
- get('[options]')
- .type('{rightarrow}')
- get('[option="2"]')
- .should(haveClasses(['active']))
- get('[options]')
- .type('{rightarrow}')
- get('[option="4"]')
- .should(haveClasses(['active']))
- get('[options]')
- .type('{leftarrow}')
- get('[option="2"]')
- .should(haveClasses(['active']))
- },
- )
- test('"by" prop with string value',
- [html`
- <div
- x-data="{ active: null, people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb', disabled: true },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- x-model="active"
- by="id"
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="active ? active.name : 'Select Person'"></button>
- <ul x-listbox:options options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('ul').should(notBeVisible())
- get('button')
- .should(haveText('Select Person'))
- .click()
- get('ul').should(beVisible())
- get('button').click()
- get('ul').should(notBeVisible())
- get('button').click()
- get('[option="2"]').click()
- get('ul').should(notBeVisible())
- get('button').should(haveText('Arlene Mccoy'))
- },
- )
- test('search',
- [html`
- <div
- x-data="{ active: null, people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb', disabled: true },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- x-model="active"
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="active ? active.name : 'Select Person'"></button>
- <ul x-listbox:options options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get, wait }) => {
- get('.active').should(notExist())
- get('button').click()
- get('[options]')
- .type('ar')
- get('[option="2"]')
- .should(haveClasses(['active']))
- wait(500)
- get('[options]')
- .type('ma')
- get('[option="8"]')
- .should(haveClasses(['active']))
- },
- )
- test('changing value manually changes internal state',
- [html`
- <div
- x-data="{ active: null, people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb', disabled: true },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- x-model="active"
- >
- <label x-listbox:label>Assigned to</label>
- <button toggle x-listbox:button x-text="$listbox.selected ? $listbox.selected : 'Select Person'"></button>
- <button select-tim @click="active = 4">Select Tim</button>
- <ul x-listbox:options options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person.id"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('[select-tim]').click()
- get('[option="4"]').should(haveClasses(['selected']))
- get('[option="1"]').should(notHaveClasses(['selected']))
- get('[toggle]').should(haveText('4'))
- },
- )
- test('has accessibility attributes',
- [html`
- <div
- x-data="{ active: null, people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb', disabled: true },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- x-model="active"
- >
- <label x-listbox:label>Assigned to</label>
- <button x-listbox:button x-text="active ? active.name : 'Select Person'"></button>
- <ul x-listbox:options options>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('button')
- .should(haveAttribute('aria-haspopup', 'true'))
- .should(haveAttribute('aria-labelledby', 'alpine-listbox-label-1'))
- .should(haveAttribute('aria-expanded', 'false'))
- .should(notHaveAttribute('aria-controls'))
- .should(haveAttribute('id', 'alpine-listbox-button-1'))
- .click()
- .should(haveAttribute('aria-expanded', 'true'))
- .should(haveAttribute('aria-controls', 'alpine-listbox-options-1'))
- get('[options]')
- .should(haveAttribute('aria-orientation', 'vertical'))
- .should(haveAttribute('role', 'listbox'))
- .should(haveAttribute('id', 'alpine-listbox-options-1'))
- .should(haveAttribute('aria-labelledby', 'alpine-listbox-button-1'))
- .should(notHaveAttribute('aria-activedescendant'))
- .should(haveAttribute('tabindex', '0'))
- .should(haveAttribute('aria-activedescendant', 'alpine-listbox-option-1'))
- get('[option="1"]')
- .should(haveAttribute('role', 'option'))
- .should(haveAttribute('id', 'alpine-listbox-option-1'))
- .should(haveAttribute('tabindex', '-1'))
- .should(haveAttribute('aria-selected', 'false'))
- get('[option="2"]')
- .should(haveAttribute('role', 'option'))
- .should(haveAttribute('id', 'alpine-listbox-option-2'))
- .should(haveAttribute('tabindex', '-1'))
- .should(haveAttribute('aria-selected', 'false'))
- get('[options]')
- .type('{downarrow}')
- .should(haveAttribute('aria-activedescendant', 'alpine-listbox-option-2'))
- get('[option="2"]')
- .click()
- .should(haveAttribute('aria-selected', 'true'))
- },
- )
- test('"static" prop',
- [html`
- <div
- x-data="{ active: null, show: false, people: [
- { id: 1, name: 'Wade Cooper' },
- { id: 2, name: 'Arlene Mccoy' },
- { id: 3, name: 'Devon Webb' },
- { id: 4, name: 'Tom Cook' },
- { id: 5, name: 'Tanya Fox', disabled: true },
- { id: 6, name: 'Hellen Schmidt' },
- { id: 7, name: 'Caroline Schultz' },
- { id: 8, name: 'Mason Heaney' },
- { id: 9, name: 'Claudie Smitham' },
- { id: 10, name: 'Emil Schaefer' },
- ]}"
- x-listbox
- x-model="active"
- >
- <label x-listbox:label>Assigned to</label>
- <button normal-toggle x-listbox:button x-text="active ? active.name : 'Select Person'"></button>
- <button real-toggle @click="show = ! show">Toggle</button>
- <ul x-listbox:options x-show="show" static>
- <template x-for="person in people" :key="person.id">
- <li
- :option="person.id"
- x-listbox:option
- :value="person"
- :disabled="person.disabled"
- >
- <span x-text="person.name"></span>
- </li>
- </template>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('ul').should(notBeVisible())
- get('[normal-toggle]')
- .should(haveText('Select Person'))
- .click()
- get('ul').should(notBeVisible())
- get('[real-toggle]').click()
- get('ul').should(beVisible())
- get('[option="2"]').click()
- get('ul').should(beVisible())
- get('[normal-toggle]').should(haveText('Arlene Mccoy'))
- },
- )
- test('works with morph',
- [html`
- <div x-data="{ value: null }">
- <div x-listbox x-model="value">
- <button x-listbox:button>Select Framework</button>
- <ul x-listbox:options>
- <li x-listbox:option value="laravel">Laravel</li>
- </ul>
- </div>
- Selected: <span x-text="value"></span>
- </div>
- `],
- ({ get }, reload, window, document) => {
- let toHtml = html`
- <div x-data="{ value: null }">
- <div x-listbox x-model="value">
- <button x-listbox:button>Select Framework (updated)</button>
- <ul x-listbox:options>
- <li x-listbox:option value="laravel">Laravel</li>
- </ul>
- </div>
- Selected: <span x-text="value"></span>
- </div>
- `
- ensureNoConsoleWarns()
- get('div').then(([el]) => window.Alpine.morph(el, toHtml))
- get('button').should(haveText('Select Framework (updated)'))
- },
- )
- test('boolean option values',
- [html`
- <div x-data="{ value: null }" x-listbox x-model="value">
- <label x-listbox:label>Value</label>
- <button x-listbox:button x-text="value !== null ? value.toString() : 'Select boolean'"></button>
- <ul x-listbox:options options>
- <li
- option="boolean-true"
- x-listbox:option
- :value="true"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }">
- <span>Yes</span>
- </li>
- <li
- option="boolean-false"
- x-listbox:option
- :value="false"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }">
- <span>No</span>
- </li>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('ul').should(notBeVisible())
- get('button')
- .should(haveText('Select boolean'))
- .click()
- get('ul').should(beVisible())
- get('[option="boolean-true"]').should(notHaveClasses(['selected']))
- get('[option="boolean-false"]').should(notHaveClasses(['selected']))
- get('[option="boolean-true"]').click()
- get('ul').should(notBeVisible())
- get('button').should(haveText('true'))
- get('button').click()
- get('ul').should(beVisible())
- get('[option="boolean-true"]').should(haveClasses(['selected']))
- get('[option="boolean-false"]').should(notHaveClasses(['selected']))
- get('[option="boolean-false"]').click()
- get('ul').should(notBeVisible())
- get('button').should(haveText('false'))
- get('button').click()
- get('ul').should(beVisible())
- get('[option="boolean-true"]').should(notHaveClasses(['selected']))
- get('[option="boolean-false"]').should(haveClasses(['selected']))
- },
- )
- test('integer option values',
- [html`
- <div x-data="{ value: null }" x-listbox x-model="value">
- <label x-listbox:label>Value</label>
- <button x-listbox:button x-text="value !== null ? value.toString() : 'Select number'"></button>
- <ul x-listbox:options options>
- <li
- option="0"
- x-listbox:option
- :value="0"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }">
- <span>0</span>
- </li>
- <li
- option="1"
- x-listbox:option
- :value="1"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }">
- <span>1</span>
- </li>
- <li
- option="2"
- x-listbox:option
- :value="2"
- :class="{
- 'selected': $listboxOption.isSelected,
- 'active': $listboxOption.isActive,
- }">
- <span>2</span>
- </li>
- </ul>
- </div>
- `],
- ({ get }) => {
- get('ul').should(notBeVisible())
- get('button')
- .should(haveText('Select number'))
- .click()
- get('ul').should(beVisible())
- get('[option="0"]').should(notHaveClasses(['selected']))
- get('[option="1"]').should(notHaveClasses(['selected']))
- get('[option="2"]').should(notHaveClasses(['selected']))
- get('[option="1"]').click()
- get('ul').should(notBeVisible())
- get('button').should(haveText('1'))
- get('button').click()
- get('ul').should(beVisible())
- get('[option="0"]').should(notHaveClasses(['selected']))
- get('[option="1"]').should(haveClasses(['selected']))
- get('[option="2"]').should(notHaveClasses(['selected']))
- get('[option="0"]').click()
- get('ul').should(notBeVisible())
- get('button').should(haveText('0'))
- get('button').click()
- get('ul').should(beVisible())
- get('[option="0"]').should(haveClasses(['selected']))
- get('[option="1"]').should(notHaveClasses(['selected']))
- get('[option="2"]').should(notHaveClasses(['selected']))
- get('[option="2"]').click()
- get('ul').should(notBeVisible())
- get('button').should(haveText('2'))
- get('button').click()
- get('ul').should(beVisible())
- get('[option="0"]').should(notHaveClasses(['selected']))
- get('[option="1"]').should(notHaveClasses(['selected']))
- get('[option="2"]').should(haveClasses(['selected']))
- },
- )
- // test "by" attribute
|