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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
import { storiesOf } from '@storybook/angular';
import { withKnobs, text, number, boolean, array, select, color, date, button, object } from '@storybook/addon-knobs';
import { withNotes } from '@storybook/addon-notes';
import { action, configureActions } from '@storybook/addon-actions';
import { moduleMetadata } from '@storybook/angular';
import { AutoCompleteComponent, AutocompletePipe } from '../../src/angular/components';
import { FilterBarModule } from '../../src/angular/filterbar/filter-bar.module';
import { HttpClient, HttpHandler } from '@angular/common/http';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
storiesOf('AutoComplete', module)
.addDecorator(withKnobs)
.addDecorator(withNotes)
.addDecorator(
moduleMetadata({
declarations: [
AutoCompleteComponent
],
imports: [
FilterBarModule,
BrowserAnimationsModule
],
providers: [
HttpClient, HttpHandler, AutocompletePipe
]
})
)
.add('Simple data', () => {
const sampleData = ['red', 'yellow', 'orange', 'green', 'white', 'black'];
const _label = text('label', 'Simple data (Array)');
const _placeholder = text('placeholder', 'Simple data');
const _data = array('data', sampleData, ',');
const _event = text('(itemSelected)', 'Event thrown when item selected');
return {
props: {
itemSelected: action('Item was selected '),
_label, _placeholder, _data, _event
},
template: `
<div class='storybook-component-wrapper'>
<div class='storybook-component-info'>Start writing name of color to see autocomplete in action</div>
<sdc-autocomplete
[placeholder]="_placeholder"
[label]="_label"
[data]="_data"
(itemSelected)="itemSelected($event)"
>
</sdc-autocomplete>
</div>
`
}
},
{ notes: `<h2>Simple data</h2>
Using simple data (array), do not need to pass dataSchema.
`
}
).add('Complex data', () => {
const sampleData = [
{id: 'redId', color: 'red'},
{id: 'yellowId', color: 'yellow'},
{id: 'orangeId', color: 'orange'},
{id: 'greenId', color: 'green'},
{id: 'whiteId', color: 'white'},
{id: 'blackId', color: 'black'}
];
const sampleSchema = {key: 'id', value: 'color'};
const _label = text('label', 'Complex data (Object)');
const _placeholder = text('placeholder', 'Complex data');
const _data = array('*data', sampleData, ',');
const _dataSchema = object('dataSchema', sampleSchema);
const _event = text('*(itemSelected)', 'Event thrown when item selected');
return {
props: {
itemSelected: action('Item was selected '),
_label, _placeholder, _data, _dataSchema, _event
},
template: `
<sdc-autocomplete
[placeholder]="_placeholder"
[label]="_label"
[data]="_data"
[dataSchema]="_dataSchema"
(itemSelected)="itemSelected($event)"
>
</sdc-autocomplete>
`
}
},
{ notes: `<h2>Complex data</h2>
Using complex data (object), need to pass also dataSchema.
`
}
).add('Backend data', () => {
const sampleSchema = {key: 'id', value: 'color'};
const _label = text('label', 'Complex data (Object)');
const _placeholder = text('placeholder', 'Complex data');
const _dataUrl = text('dataUrl', '../angular/helpers/autocomplete-server-mock.json');
const _dataSchema = object('dataSchema', sampleSchema);
const _event = text('*(itemSelected)', 'Event thrown when item selected');
return {
props: {
itemSelected: action('Item was selected '),
_label, _placeholder, _dataSchema, _dataUrl, _event
},
template: `
<sdc-autocomplete
[placeholder]="_placeholder"
[label]="_label"
[dataUrl]="_dataUrl"
[dataSchema]="_dataSchema"
(itemSelected)="itemSelected($event)"
>
</sdc-autocomplete>
`
}
},
{ notes: `<h2>Data from server</h2>
Example of auto complete with complex data from server. (In this example the data is not really filtered, because it is from mock data).
`
}
);
|