12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- import { haveText, html, test } from '../../utils'
- test('x-data attribute value is optional',
- html`
- <div x-data>
- <span x-text="'foo'"></span>
- </div>
- `,
- ({ get }) => get('span').should(haveText('foo'))
- )
- test('x-data can be nested',
- html`
- <div x-data="{ foo: 'bar', bar: 'baz' }">
- <div x-data="{ bar: 'bob' }">
- <h1 x-text="foo"></h1>
- <h2 x-text="bar"></h2>
- <button id="inner" @click="foo = 'bob'; bar = 'lob'">click</button>
- </div>
- <h3 x-text="foo"></h3>
- <h4 x-text="bar"></h4>
- <button id="outer" @click="foo = 'law'; bar = 'blog'">click</button>
- </div>
- `,
- ({ get }) => {
- get('h1').should(haveText('bar'))
- get('h2').should(haveText('bob'))
- get('h3').should(haveText('bar'))
- get('h4').should(haveText('baz'))
- get('button#inner').click()
- get('h1').should(haveText('bob'))
- get('h2').should(haveText('lob'))
- get('h3').should(haveText('bob'))
- get('h4').should(haveText('baz'))
- get('button#outer').click()
- get('h1').should(haveText('law'))
- get('h2').should(haveText('lob'))
- get('h3').should(haveText('law'))
- get('h4').should(haveText('blog'))
- }
- )
- test('x-data can use attributes from a reusable function',
- html`
- <script>
- window.test = () => {
- return {
- foo: 'bar'
- }
- }
- </script>
- <div x-data="test()">
- <span x-text="foo"></span>
- </div>
- `,
- ({ get }) => get('span').should(haveText('bar'))
- )
- test('x-data can use $el',
- html`
- <div x-data="{ text: $el.dataset.text }" data-text="test">
- <span x-text="text"></span>
- </div>
- `,
- ({ get }) => get('span').should(haveText('test'))
- )
- test('functions in x-data are reactive',
- html`
- <div x-data="{ foo: 'bar', getFoo() {return this.foo}}">
- <span x-text="getFoo()"></span>
- <button x-on:click="foo = 'baz'">click me</button>
- </div>
- `,
- ({ get }) => {
- get('span').should(haveText('bar'))
- get('button').click()
- get('span').should(haveText('baz'))
- }
- )
- test('functions in x-data have access to proper this context',
- html`
- <div x-data="{ foo: undefined, change() { this.foo = 'baz' }}" x-init="foo = 'bar'">
- <button @click="change()">change</button>
- <span x-text="foo"></span>
- </div>
- `,
- ({ get }) => {
- get('span').should(haveText('bar'))
- get('button').click()
- get('span').should(haveText('baz'))
- }
- )
|