| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000 |
- var _ = require('../../../../../src/util')
- var Vue = require('../../../../../src/vue')
- if (_.inBrowser) {
- describe('v-for', function () {
- var el
- beforeEach(function () {
- el = document.createElement('div')
- spyOn(_, 'warn')
- })
- it('objects', function (done) {
- var vm = new Vue({
- el: el,
- data: {
- items: [{a: 1}, {a: 2}]
- },
- template: '<div v-for="item in items">{{$index}} {{item.a}}</div>'
- })
- assertMutations(vm, el, done)
- })
- it('primitives', function (done) {
- var vm = new Vue({
- el: el,
- data: {
- items: [2, 1, 2]
- },
- template: '<div v-for="item in items">{{$index}} {{item}}</div>'
- })
- assertPrimitiveMutations(vm, el, done)
- })
- it('object of objects', function (done) {
- var vm = new Vue({
- el: el,
- data: {
- items: {
- a: {a: 1},
- b: {a: 2}
- }
- },
- template: '<div v-for="item in items">{{$index}} {{$key}} {{item.a}}</div>'
- })
- assertObjectMutations(vm, el, done)
- })
- it('object of primitives', function (done) {
- var vm = new Vue({
- el: el,
- data: {
- items: {
- a: 1,
- b: 2
- }
- },
- template: '<div v-for="item in items">{{$index}} {{$key}} {{item}}</div>'
- })
- assertObjectPrimitiveMutations(vm, el, done)
- })
- it('array of arrays', function () {
- var vm = new Vue({
- el: el,
- data: {
- items: [[1, 1], [2, 2], [3, 3]]
- },
- template: '<div v-for="item in items">{{$index}} {{item}}</div>'
- })
- var markup = vm.items.map(function (item, i) {
- return '<div>' + i + ' ' + item.toString() + '</div>'
- }).join('')
- expect(el.innerHTML).toBe(markup)
- })
- it('repeating object with filter', function () {
- new Vue({
- el: el,
- data: {
- items: {
- a: { msg: 'aaa' },
- b: { msg: 'bbb' }
- }
- },
- template: '<div v-for="item in items | filterBy \'aaa\'">{{item.msg}}</div>'
- })
- expect(el.innerHTML).toBe('<div>aaa</div>')
- })
- it('component', function (done) {
- var vm = new Vue({
- el: el,
- data: {
- items: [{a: 1}, {a: 2}]
- },
- template: '<test v-for="item in items" index="{{$index}}" item="{{item}}"></test>',
- components: {
- test: {
- props: ['index', 'item'],
- template: '<div>{{index}} {{item.a}}</div>',
- replace: true
- }
- }
- })
- assertMutations(vm, el, done)
- })
- it('v-component', function (done) {
- var vm = new Vue({
- el: el,
- data: {
- items: [{a: 1}, {a: 2}]
- },
- template: '<p v-for="item in items" v-component="test" index="{{$index}}" item="{{item}}"></p>',
- components: {
- test: {
- props: ['index', 'item'],
- template: '<div>{{index}} {{item.a}}</div>',
- replace: true
- }
- }
- })
- assertMutations(vm, el, done)
- })
- it('component with inline-template', function (done) {
- var vm = new Vue({
- el: el,
- data: {
- items: [{a: 1}, {a: 2}]
- },
- template:
- '<test v-for="item in items" index="{{$index}}" item="{{item}}" inline-template>' +
- '{{index}} {{item.a}}' +
- '</test>',
- components: {
- test: {
- props: ['index', 'item']
- }
- }
- })
- assertMutations(vm, el, done)
- })
- it('component with primitive values', function (done) {
- var vm = new Vue({
- el: el,
- data: {
- items: [2, 1, 2]
- },
- template: '<test v-for="item in items" index="{{$index}}" value="{{item}}"></test>',
- components: {
- test: {
- props: ['index', 'value'],
- template: '<div>{{index}} {{value}}</div>',
- replace: true
- }
- }
- })
- assertPrimitiveMutations(vm, el, done)
- })
- it('component with object of objects', function (done) {
- var vm = new Vue({
- el: el,
- data: {
- items: {
- a: {a: 1},
- b: {a: 2}
- }
- },
- template: '<test v-for="item in items" key="{{$key}}" index="{{$index}}" value="{{item}}"></test>',
- components: {
- test: {
- props: ['key', 'index', 'value'],
- template: '<div>{{index}} {{key}} {{value.a}}</div>',
- replace: true
- }
- }
- })
- assertObjectMutations(vm, el, done)
- })
- it('nested loops', function () {
- new Vue({
- el: el,
- data: {
- items: [
- { items: [{a: 1}, {a: 2}], a: 1 },
- { items: [{a: 3}, {a: 4}], a: 2 }
- ]
- },
- template: '<div v-for="item in items">' +
- '<p v-for="subItem in item.items">{{$index}} {{subItem.a}} {{$parent.$index}} {{item.a}}</p>' +
- '</div>'
- })
- expect(el.innerHTML).toBe(
- '<div><p>0 1 0 1</p><p>1 2 0 1</p></div>' +
- '<div><p>0 3 1 2</p><p>1 4 1 2</p></div>'
- )
- })
- it('nested loops on object', function () {
- new Vue({
- el: el,
- data: {
- listHash: {
- listA: [{a: 1}, {a: 2}],
- listB: [{a: 1}, {a: 2}]
- }
- },
- template:
- '<div v-for="list in listHash">' +
- '{{$key}}' +
- '<p v-for="item in list">{{item.a}}</p>' +
- '</div>'
- })
- function output (key) {
- var key1 = key === 'listA' ? 'listB' : 'listA'
- return '<div>' + key + '<p>1</p><p>2</p></div>' +
- '<div>' + key1 + '<p>1</p><p>2</p></div>'
- }
- expect(el.innerHTML === output('listA') || el.innerHTML === output('listB')).toBeTruthy()
- })
- it('dynamic component type based on instance data', function () {
- new Vue({
- el: el,
- template: '<component v-for="item in list" is="view-{{item.type}}"></component>',
- data: {
- list: [
- { type: 'a' },
- { type: 'b' },
- { type: 'c' }
- ]
- },
- components: {
- 'view-a': {
- template: 'AAA'
- },
- 'view-b': {
- template: 'BBB'
- },
- 'view-c': {
- template: 'CCC'
- }
- }
- })
- expect(el.innerHTML).toBe('<component>AAA</component><component>BBB</component><component>CCC</component>')
- // primitive
- el = document.createElement('div')
- new Vue({
- el: el,
- template: '<component v-for="type in list" is="view-{{type}}"></component>',
- data: {
- list: ['a', 'b', 'c']
- },
- components: {
- 'view-a': {
- template: 'AAA'
- },
- 'view-b': {
- template: 'BBB'
- },
- 'view-c': {
- template: 'CCC'
- }
- }
- })
- expect(el.innerHTML).toBe('<component>AAA</component><component>BBB</component><component>CCC</component>')
- })
- it('fragment loop', function (done) {
- var vm = new Vue({
- el: el,
- template: '<template v-for="item in list"><p>{{item.a}}</p><p>{{item.a + 1}}</p></template>',
- data: {
- list: [
- { a: 1 },
- { a: 2 },
- { a: 3 }
- ]
- }
- })
- assertMarkup()
- vm.list.reverse()
- _.nextTick(function () {
- assertMarkup()
- vm.list.splice(1, 1)
- _.nextTick(function () {
- assertMarkup()
- vm.list.splice(1, 0, { a: 2 })
- _.nextTick(function () {
- assertMarkup()
- done()
- })
- })
- })
- function assertMarkup () {
- var markup = vm.list.map(function (item) {
- return '<p>' + item.a + '</p><p>' + (item.a + 1) + '</p>'
- }).join('')
- expect(el.innerHTML).toBe(markup)
- }
- })
- it('fragment loop with component', function (done) {
- var vm = new Vue({
- el: el,
- template: '<template v-for="item in list"><test a="{{item.a}}"></test></template>',
- data: {
- list: [
- { a: 1 },
- { a: 2 },
- { a: 3 }
- ]
- },
- components: {
- test: {
- props: ['a'],
- template: '{{a}}'
- }
- }
- })
- assertMarkup()
- vm.list.reverse()
- _.nextTick(function () {
- assertMarkup()
- vm.list.splice(1, 1)
- _.nextTick(function () {
- assertMarkup()
- vm.list.splice(1, 0, { a: 2 })
- _.nextTick(function () {
- assertMarkup()
- done()
- })
- })
- })
- function assertMarkup () {
- var markup = vm.list.map(function (item) {
- return '<test>' + item.a + '</test>'
- }).join('')
- expect(el.innerHTML).toBe(markup)
- }
- })
- it('array filters', function (done) {
- var vm = new Vue({
- el: el,
- template: '<div v-for="item in list | filterBy filterKey | orderBy sortKey -1">{{item.id}}</div>',
- data: {
- filterKey: 'hi!',
- sortKey: 'id',
- list: [
- { id: 1, id2: 4, msg: 'hi!' },
- { id: 2, id2: 3, msg: 'na' },
- { id: 3, id2: 2, msg: 'hi!' },
- { id: 4, id2: 1, msg: 'na' }
- ]
- }
- })
- assertMarkup()
- go(
- function () {
- vm.filterKey = 'na'
- }, assertMarkup
- )
- .then(
- function () {
- vm.sortKey = 'id2'
- }, assertMarkup
- )
- .then(
- function () {
- vm.list[0].id2 = 0
- }, assertMarkup
- )
- .then(
- function () {
- vm.list.push({ id: 0, id2: 4, msg: 'na' })
- }, assertMarkup
- )
- .then(
- function () {
- vm.list = [
- { id: 33, id2: 4, msg: 'hi!' },
- { id: 44, id2: 3, msg: 'na' }
- ]
- }, assertMarkup
- )
- .run(done)
- function assertMarkup () {
- var markup = vm.list
- .filter(function (item) {
- return item.msg === vm.filterKey
- })
- .sort(function (a, b) {
- return a[vm.sortKey] > b[vm.sortKey] ? -1 : 1
- })
- .map(function (item) {
- return '<div>' + item.id + '</div>'
- }).join('')
- expect(el.innerHTML).toBe(markup)
- }
- })
- it('orderBy supporting $key for object repeaters', function (done) {
- var vm = new Vue({
- el: el,
- template: '<div v-for="val in obj | orderBy sortKey">{{val}}</div>',
- data: {
- sortKey: '$key',
- obj: {
- c: 1,
- a: 3,
- b: 2
- }
- }
- })
- expect(el.innerHTML).toBe('<div>3</div><div>2</div><div>1</div>')
- vm.sortKey = 'val'
- _.nextTick(function () {
- expect(el.innerHTML).toBe('<div>1</div><div>2</div><div>3</div>')
- done()
- })
- })
- it('orderBy supporting alias for primitive arrays', function () {
- new Vue({
- el: el,
- template: '<div v-for="val in list | orderBy \'val\'">{{val}}</div>',
- data: {
- list: [3, 2, 1]
- }
- })
- expect(el.innerHTML).toBe('<div>1</div><div>2</div><div>3</div>')
- })
- it('track by id', function (done) {
- var vm = new Vue({
- el: el,
- template: '<test v-for="item in list" item="{{item}}" track-by="id"></test>',
- data: {
- list: [
- { id: 1, msg: 'hi' },
- { id: 2, msg: 'ha' },
- { id: 3, msg: 'ho' }
- ]
- },
- components: {
- test: {
- props: ['item'],
- template: '{{item.msg}}'
- }
- }
- })
- assertMarkup()
- var oldVms = vm.$children.slice()
- // swap the data with different objects, but with
- // the same ID!
- vm.list = [
- { id: 1, msg: 'wa' },
- { id: 2, msg: 'wo' }
- ]
- _.nextTick(function () {
- assertMarkup()
- // should reuse old vms!
- var i = 2
- while (i--) {
- expect(vm.$children[i]).toBe(oldVms[i])
- }
- done()
- })
- function assertMarkup () {
- var markup = vm.list.map(function (item) {
- return '<test>' + item.msg + '</test>'
- }).join('')
- expect(el.innerHTML).toBe(markup)
- }
- })
- it('track by $index', function (done) {
- var vm = new Vue({
- el: el,
- data: {
- items: [{a: 1}, {a: 2}]
- },
- template: '<div v-for="item in items" track-by="$index">{{$index}} {{item.a}}</div>'
- })
- assertMarkup()
- var el1 = el.children[0]
- var el2 = el.children[1]
- vm.items = [{a: 3}, {a: 2}, {a: 1}]
- _.nextTick(function () {
- assertMarkup()
- // should mutate the DOM in-place
- expect(el.children[0]).toBe(el1)
- expect(el.children[1]).toBe(el2)
- done()
- })
- function assertMarkup () {
- expect(el.innerHTML).toBe(vm.items.map(function (item, i) {
- return '<div>' + i + ' ' + item.a + '</div>'
- }).join(''))
- }
- })
- it('warn missing alias', function () {
- new Vue({
- el: el,
- template: '<div v-for="items"></div>'
- })
- expect(hasWarned(_, 'Alias is required in v-for')).toBe(true)
- })
- it('warn duplicate objects', function () {
- var obj = {}
- new Vue({
- el: el,
- template: '<div v-for="item in items"></div>',
- data: {
- items: [obj, obj]
- }
- })
- expect(hasWarned(_, 'Duplicate objects')).toBe(true)
- })
- it('warn duplicate objects on diff', function (done) {
- var obj = {}
- var vm = new Vue({
- el: el,
- template: '<div v-for="item in items"></div>',
- data: {
- items: [obj]
- }
- })
- expect(_.warn).not.toHaveBeenCalled()
- vm.items.push(obj)
- _.nextTick(function () {
- expect(hasWarned(_, 'Duplicate objects')).toBe(true)
- done()
- })
- })
- it('warn duplicate trackby id', function () {
- new Vue({
- el: el,
- template: '<div v-for="item in items" track-by="id"></div>',
- data: {
- items: [{id: 1}, {id: 1}]
- }
- })
- expect(hasWarned(_, 'Duplicate objects with the same track-by key')).toBe(true)
- })
- it('repeat number', function () {
- new Vue({
- el: el,
- template: '<div v-for="n in 3">{{$index}} {{n}}</div>'
- })
- expect(el.innerHTML).toBe('<div>0 0</div><div>1 1</div><div>2 2</div>')
- })
- it('repeat string', function () {
- new Vue({
- el: el,
- template: '<div v-for="letter in \'vue\'">{{$index}} {{letter}}</div>'
- })
- expect(el.innerHTML).toBe('<div>0 v</div><div>1 u</div><div>2 e</div>')
- })
- it('teardown', function () {
- var vm = new Vue({
- el: el,
- template: '<div v-for="item in items"></div>',
- data: {
- items: [{a: 1}, {a: 2}]
- }
- })
- vm._directives[0].unbind()
- expect(vm.$children.length).toBe(0)
- })
- it('with transition', function (done) {
- document.body.appendChild(el)
- var vm = new Vue({
- el: el,
- template: '<div v-for="item in items" transition="test">{{item.a}}</div>',
- data: {
- items: [{a: 1}, {a: 2}, {a: 3}]
- },
- transitions: {
- test: {
- leave: function (el, done) {
- setTimeout(done, 0)
- }
- }
- }
- })
- vm.items.splice(1, 1, {a: 4})
- setTimeout(function () {
- expect(el.innerHTML).toBe(
- '<div transition="test">1</div>' +
- '<div transition="test">4</div>' +
- '<div transition="test">3</div>'
- )
- document.body.removeChild(el)
- done()
- }, 100)
- })
- it('v-model binding on alias', function () {
- var vm = new Vue({
- el: el,
- template:
- '<div v-for="val in items"><input v-model="val"></div>' +
- '<div v-for="val in obj"><input v-model="val"></div>',
- data: {
- items: ['a'],
- obj: { foo: 'a' }
- }
- })
- var a = getInput(1)
- a.value = 'b'
- trigger(a, 'input')
- expect(vm.items[0]).toBe('b')
- var b = getInput(2)
- b.value = 'bar'
- trigger(b, 'input')
- expect(vm.obj.foo).toBe('bar')
- function getInput (x) {
- return vm.$el.querySelector('div:nth-child(' + x + ') input')
- }
- })
- it('warn v-model on alias with filters', function () {
- var vm = new Vue({
- el: el,
- template:
- '<div v-for="item in items | orderBy \'item\'">' +
- '<input v-model="item">' +
- '</div>',
- data: {
- items: ['a', 'b']
- }
- })
- trigger(vm.$el.querySelector('input'), 'input')
- expect(hasWarned(_, 'It seems you are using two-way binding')).toBe(true)
- })
- it('nested track by', function (done) {
- var vm = new Vue({
- el: el,
- template:
- '<div v-for="item in list" track-by="id">' +
- '{{item.msg}}' +
- '<div v-for="subItem in item.list" track-by="id">' +
- '{{subItem.msg}}' +
- '</div>' +
- '</div>',
- data: {
- list: [
- { id: 1, msg: 'hi', list: [
- { id: 1, msg: 'hi foo' }
- ] },
- { id: 2, msg: 'ha', list: [] },
- { id: 3, msg: 'ho', list: [] }
- ]
- }
- })
- assertMarkup()
- var oldNodes = el.children
- var oldInnerNodes = el.children[0].children
- vm.list = [
- { id: 1, msg: 'wa', list: [
- { id: 1, msg: 'hi foo' },
- { id: 2, msg: 'hi bar' }
- ] },
- { id: 2, msg: 'wo', list: [] }
- ]
- _.nextTick(function () {
- assertMarkup()
- // should reuse old frags!
- var i = 2
- while (i--) {
- expect(el.children[i]).toBe(oldNodes[i])
- }
- expect(el.children[0].children[0]).toBe(oldInnerNodes[0])
- done()
- })
- function assertMarkup () {
- var markup = vm.list.map(function (item) {
- var sublist = item.list.map(function (item) {
- return '<div>' + item.msg + '</div>'
- }).join('')
- return '<div>' + item.msg + sublist + '</div>'
- }).join('')
- expect(el.innerHTML).toBe(markup)
- }
- })
- it('switch between object-converted & array mode', function (done) {
- var obj = {
- a: { msg: 'AA' },
- b: { msg: 'BB' }
- }
- var arr = [obj.b, obj.a]
- var vm = new Vue({
- el: el,
- template: '<div v-for="item in obj">{{item.msg}}</div>',
- data: {
- obj: obj
- }
- })
- expect(el.innerHTML).toBe(Object.keys(obj).map(function (key) {
- return '<div>' + obj[key].msg + '</div>'
- }).join(''))
- vm.obj = arr
- _.nextTick(function () {
- expect(el.innerHTML).toBe('<div>BB</div><div>AA</div>')
- // make sure it cleared the cache
- expect(vm._directives[0].cache.a).toBeNull()
- expect(vm._directives[0].cache.b).toBeNull()
- done()
- })
- })
- })
- }
- /**
- * Simple helper for chained async asssertions
- *
- * @param {Function} fn - the data manipulation function
- * @param {Function} cb - the assertion fn to be called on nextTick
- */
- function go (fn, cb) {
- return {
- stack: [{fn: fn, cb: cb}],
- then: function (fn, cb) {
- this.stack.push({fn: fn, cb: cb})
- return this
- },
- run: function (done) {
- var self = this
- var step = this.stack.shift()
- if (!step) return done()
- step.fn()
- _.nextTick(function () {
- step.cb()
- self.run(done)
- })
- }
- }
- }
- /**
- * Assert mutation and markup correctness for v-for on
- * an Array of Objects
- */
- function assertMutations (vm, el, done) {
- assertMarkup()
- var poppedItem
- go(
- function () {
- vm.items.push({a: 3})
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.shift()
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.reverse()
- },
- assertMarkup
- )
- .then(
- function () {
- poppedItem = vm.items.pop()
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.unshift(poppedItem)
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.sort(function (a, b) {
- return a.a > b.a ? 1 : -1
- })
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.splice(1, 1, {a: 5})
- },
- assertMarkup
- )
- // test swapping the array
- .then(
- function () {
- vm.items = [{a: 0}, {a: 1}, {a: 2}]
- },
- assertMarkup
- )
- .run(done)
- function assertMarkup () {
- var tag = el.children[0].tagName.toLowerCase()
- var markup = vm.items.map(function (item, i) {
- var el = '<' + tag + '>' + i + ' ' + item.a + '</' + tag + '>'
- return el
- }).join('')
- expect(el.innerHTML).toBe(markup)
- }
- }
- /**
- * Assert mutation and markup correctness for v-for on
- * an Array of primitive values
- */
- function assertPrimitiveMutations (vm, el, done) {
- assertMarkup()
- go(
- function () {
- // check duplicate
- vm.items.push(2, 2, 3)
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.shift()
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.reverse()
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.pop()
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.unshift(3)
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.sort(function (a, b) {
- return a > b ? 1 : -1
- })
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.splice(1, 1, 5)
- },
- assertMarkup
- )
- // test swapping the array
- .then(
- function () {
- vm.items = [1, 2, 2]
- },
- assertMarkup
- )
- .run(done)
- function assertMarkup () {
- var markup = vm.items.map(function (item, i) {
- return '<div>' + i + ' ' + item + '</div>'
- }).join('')
- expect(el.innerHTML).toBe(markup)
- }
- }
- /**
- * Assert mutation and markup correctness for v-for on
- * an Object of Objects
- */
- function assertObjectMutations (vm, el, done) {
- assertMarkup()
- go(
- function () {
- vm.items.a = {a: 3}
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items = {
- c: {a: 1},
- d: {a: 2}
- }
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.$add('a', {a: 3})
- },
- assertMarkup
- )
- .run(done)
- function assertMarkup () {
- var markup = Object.keys(vm.items).map(function (key, i) {
- return '<div>' + i + ' ' + key + ' ' + vm.items[key].a + '</div>'
- }).join('')
- expect(el.innerHTML).toBe(markup)
- }
- }
- /**
- * Assert mutation and markup correctness for v-for on
- * an Object of primitive values
- */
- function assertObjectPrimitiveMutations (vm, el, done) {
- assertMarkup()
- go(
- function () {
- vm.items.a = 3
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items = {
- c: 1,
- d: 2
- }
- },
- assertMarkup
- )
- .then(
- function () {
- vm.items.$add('a', 3)
- },
- assertMarkup
- )
- .run(done)
- function assertMarkup () {
- var markup = Object.keys(vm.items).map(function (key, i) {
- return '<div>' + i + ' ' + key + ' ' + vm.items[key] + '</div>'
- }).join('')
- expect(el.innerHTML).toBe(markup)
- }
- }
- /**
- * Helper for triggering events
- */
- function trigger (target, event, process) {
- var e = document.createEvent('HTMLEvents')
- e.initEvent(event, true, true)
- if (process) process(e)
- target.dispatchEvent(e)
- return e
- }
|