ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 3.22.181.92
Web Server : Apache
System : Linux vps64074.inmotionhosting.com 3.10.0-1160.105.1.vz7.214.3 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : nicngo5 ( 1001)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /home/nicngo5/funds.upgrade.nicn.gov.ng/funds-upgraded/node_modules/alpinejs/test/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/nicngo5/funds.upgrade.nicn.gov.ng/funds-upgraded/node_modules/alpinejs/test/watch.spec.js
import Alpine from 'alpinejs'
import { wait } from '@testing-library/dom'

global.MutationObserver = class {
    observe() {}
}

test('$watch', async () => {
    document.body.innerHTML = `
        <div x-data="{ foo: 'bar', bob: 'lob' }" x-init="$watch('foo', value => { bob = value })">
            <h1 x-text="foo"></h1>
            <h2 x-text="bob"></h2>

            <button x-on:click="foo = 'baz'"></button>
        </div>
    `

    Alpine.start()

    expect(document.querySelector('h1').textContent).toEqual('bar')
    expect(document.querySelector('h2').textContent).toEqual('lob')

    document.querySelector('button').click()

    await wait(() => {
        expect(document.querySelector('h1').textContent).toEqual('baz')
        expect(document.querySelector('h2').textContent).toEqual('baz')
    })
})

test('$watch nested properties', async () => {
    document.body.innerHTML = `
        <div x-data="{ foo: { bar: 'baz', bob: 'lob' } }" x-init="
            $watch('foo.bar', value => { foo.bob = value });
        ">
            <h1 x-text="foo.bar"></h1>
            <h2 x-text="foo.bob"></h2>

            <button x-on:click="foo.bar = 'law'"></button>
        </div>
    `

    Alpine.start()

    expect(document.querySelector('h1').textContent).toEqual('baz')
    expect(document.querySelector('h2').textContent).toEqual('lob')

    document.querySelector('button').click()

    await wait(() => {
        expect(document.querySelector('h1').textContent).toEqual('law')
        expect(document.querySelector('h2').textContent).toEqual('law')
    })
})

test('$watch arrays', async () => {
    document.body.innerHTML = `
        <div x-data="{ foo: ['one'], bob: 'lob' }" x-init="$watch('foo', value => { bob = value })">
            <h1 x-text="foo"></h1>
            <h2 x-text="bob"></h2>

            <button id="push" x-on:click="foo.push('two')"></button>
            <button id="pop" x-on:click="foo.pop()"></button>
            <button id="unshift" x-on:click="foo.unshift('zero')"></button>
            <button id="shift" x-on:click="foo.shift()"></button>
            <button id="assign" x-on:click="foo = [2,1,3]"></button>
            <button id="sort" x-on:click="foo.sort()"></button>
            <button id="reverse" x-on:click="foo.reverse()"></button>
        </div>
    `

    Alpine.start()

    expect(document.querySelector('h1').textContent).toEqual('one')
    expect(document.querySelector('h2').textContent).toEqual('lob')

    document.querySelector('#push').click()

    await wait(() => {
        expect(document.querySelector('h1').textContent).toEqual('one,two')
        expect(document.querySelector('h2').textContent).toEqual('one,two')
    })

    document.querySelector('#pop').click()

    await wait(() => {
        expect(document.querySelector('h1').textContent).toEqual('one')
        expect(document.querySelector('h2').textContent).toEqual('one')
    })

    document.querySelector('#unshift').click()

    await wait(() => {
        expect(document.querySelector('h1').textContent).toEqual('zero,one')
        expect(document.querySelector('h2').textContent).toEqual('zero,one')
    })

    document.querySelector('#shift').click()

    await wait(() => {
        expect(document.querySelector('h1').textContent).toEqual('one')
        expect(document.querySelector('h2').textContent).toEqual('one')
    })

    document.querySelector('#assign').click()

    await wait(() => {
        expect(document.querySelector('h1').textContent).toEqual('2,1,3')
        expect(document.querySelector('h2').textContent).toEqual('2,1,3')
    })

    document.querySelector('#sort').click()

    await wait(() => {
        expect(document.querySelector('h1').textContent).toEqual('1,2,3')
        expect(document.querySelector('h2').textContent).toEqual('1,2,3')
    })

    document.querySelector('#reverse').click()

    await wait(() => {
        expect(document.querySelector('h1').textContent).toEqual('3,2,1')
        expect(document.querySelector('h2').textContent).toEqual('3,2,1')
    })
})

test('$watch nested arrays', async () => {
    document.body.innerHTML = `
        <div x-data="{ foo: {baz: ['one']}, bob: 'lob' }" x-init="$watch('foo.baz', value => { bob = value })">
            <h1 x-text="foo.baz"></h1>
            <h2 x-text="bob"></h2>

            <button id="push" x-on:click="foo.baz.push('two')"></button>
        </div>
    `

    Alpine.start()

    expect(document.querySelector('h1').textContent).toEqual('one')
    expect(document.querySelector('h2').textContent).toEqual('lob')

    document.querySelector('#push').click()

    await wait(() => {
        expect(document.querySelector('h1').textContent).toEqual('one,two')
        expect(document.querySelector('h2').textContent).toEqual('one,two')
    })
})

test('$watch with magic properties', async () => {
    document.body.innerHTML = `
        <div x-data="{ foo: 'bar', bob: 'car' }" x-init="$watch('$self.foo', value => bob = value)">
            <span x-text="bob"></span>

            <button x-on:click="$self.foo = 'far'"></button>
        </div>
    `

    Alpine.addMagicProperty('self', function (el) {
        return el.__x.$data
    })

    Alpine.start()

    expect(document.querySelector('span').textContent).toEqual('car')

    document.querySelector('button').click()

    await wait(() => {
        expect(document.querySelector('span').textContent).toEqual('far')
    })
})

Anon7 - 2022
AnonSec Team