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
|
import { storiesOf } from '@storybook/angular';
import { withKnobs, text, number, boolean, array, select, color, date, button } from '@storybook/addon-knobs';
import { withNotes } from '@storybook/addon-notes';
import { action, configureActions } from '@storybook/addon-actions';
import { moduleMetadata } from '@storybook/angular';
import { TabsModule } from '../../src/angular/tabs/tabs.module';
import { FormElementsModule } from '../../src/angular/form-elements/form-elements.module';
let stories = storiesOf('Tabs', module)
.addDecorator(withKnobs)
.addDecorator(withNotes)
.addDecorator(
moduleMetadata({
declarations: [
],
imports: [
TabsModule,
FormElementsModule
]
})
)
let containsTitle = true;
let containsTitleIcon = true;
createStory(stories, "All options", containsTitle, containsTitleIcon, "Tabs", "Full example of simple tabs.");
createStory(stories, "Tabs with text", containsTitle, !containsTitleIcon, "Tabs with titles", "Simple tabs with text title.");
createStory(stories, "Tabs with icons", !containsTitle, containsTitleIcon, "Tabs with icons", "Simple tabs with icon title.");
function createStory(stories, title, containsTitle, containsTitleIcon, notesTitle, notesText){
stories.add(title, () => {
const _title1 = containsTitle ? text('Tab1 title', 'tab1 ') : null;
const _title2 = containsTitle ? text('Tab2 title', 'tab2 ') : null;
const _titleIcon1 = containsTitleIcon ? text('Tab1 titleIcon', 'inputs-o') : null;
const _titleIcon2 = containsTitleIcon ? text('Tab2 titleIcon', 'edit-file-o') : null;
const _active1 = boolean('Tab1 disabled', false);
const _active2 = boolean('Tab2 disabled', false);
const _selectTab = text('*(selectTab)', 'Event throws when select tab changed, see in Action logger tab.');
return {
props: {
selectTab: action('select tab changed'),
_title1, _titleIcon1, _active1,
_title2, _titleIcon2, _active2, _selectTab
},
template: `
<sdc-tabs (selectedTab)="selectTab($event)">
<sdc-tab [title]="_title1" [titleIcon]="_titleIcon1" [active]="_active1">This is tab 1</sdc-tab>
<sdc-tab [title]="_title2" [titleIcon]="_titleIcon2" [active]="_active2">This is tab 2</sdc-tab>
</sdc-tabs>
`
}
},
{ notes: `<h2>` + notesTitle + `</h2>` + notesText + `<br>Use the KNOBS tab to change values.`
}
)
}
|