-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstories-array.js
52 lines (50 loc) · 1.55 KB
/
stories-array.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import Vue from 'vue'
import { storiesOf } from '@storybook/vue'
import ObjectInspector from '../src/index.js'
storiesOf('Arrays', module)
.add('Empty Array', () => ({
components: { ObjectInspector },
template: '<object-inspector :data="[]"/>',
}))
.add('Empty Array (show non-enumerable properties)', () => ({
components: { ObjectInspector },
template:
'<object-inspector showNonenumerable :expandLevel="1" :data="[]"/>',
}))
.add('Basic Array', () => ({
components: { ObjectInspector },
template: '<object-inspector :expandLevel="1" :data="[`cold`, `ice`]"/>',
}))
.add('Array with different types of elements', () => ({
components: { ObjectInspector },
template: '<object-inspector :expandLevel="1" :data="[`a`, 1, {}]"/>',
}))
.add('Long Array', () => ({
components: { ObjectInspector },
template: '<object-inspector :data="data"/>',
data() {
return { data: new Array(1000).fill(0).map((x, i) => i + '') }
},
}))
.add('Array with big objects', () => ({
components: { ObjectInspector },
template: '<object-inspector :data="data"/>',
data() {
return {
data: new Array(100).fill(0).map((x, i) => ({
key: i,
name: `John #${i}`,
dateOfBirth: new Date(i * 10e8),
address: `${i} Main Street`,
zip: 90210 + i,
})),
}
},
}))
.add('Uint32Array', () => ({
components: { ObjectInspector },
template: '<object-inspector :data="data"/>',
data() {
return { data: new Uint32Array(1000) }
},
}))