aboutsummaryrefslogtreecommitdiffstats
path: root/stories/ng2-component-lab/validation.component.exp.ts
blob: 7f18c9311bf04af5e20468cfa8649fc8b26394f1 (plain)
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import { experimentOn } from '@islavi/ng2-component-lab';
import { RegexPatterns } from '../../src/angular/common/enums';
import { DropDownOptionType, IDropDownOption } from './../../src/angular/form-elements/dropdown/dropdown-models';

const options1: IDropDownOption[] = [
    {
        label: 'First Option',
        value: 'First Option',
    },
    {
        label: 'Second Option',
        value: 'Second Option',
    },
    {
        label: 'Third Option',
        value: 'Third Option',
        type: DropDownOptionType.Simple
    }
];

export default experimentOn('Validation')
    .group("Validation", [
        {
            id: 'validation1',
            showSource: true,
            title: 'Simple validation',
            description: 'Simple validation (validating that email is valid and that user inserted something in the field). \
                            By default the validation starts after first key press',
            context: {
                emailPattern: RegexPatterns.email
            },
            template: `
                <sdc-input #email label="Please enter valid email address" [maxLength]="50" required="true"></sdc-input>
                <sdc-validation [validateElement]="email">
                    <sdc-required-validator message="Field is required!"></sdc-required-validator>
                    <sdc-regex-validator message="This is not a valid email!" [pattern]="emailPattern"></sdc-regex-validator>
                </sdc-validation>
            `
        },
        {
            id: 'validation2',
            showSource: true,
            title: 'Simple validation',
            description: 'Simple validation',
            context: {
                numbersPattern: RegexPatterns.numbers,
                isValueHundred: (value: any) => {
                    return (Number(value) === 100) ? true : false;
                }
            },
            template: `
                <sdc-input #numberValidator label="Please enter some number" [maxLength]="10" required="true"></sdc-input>
                <sdc-validation [validateElement]="numberValidator">
                    <sdc-regex-validator message="This is not a number!" [pattern]="numbersPattern"></sdc-regex-validator>
                    <sdc-custom-validator message="The number should be 100" [callback]="isValueHundred"></sdc-custom-validator>
                </sdc-validation>
            `
        },
        {
            id: 'validation3',
            showSource: true,
            title: 'Disabled validation',
            description: 'Disabled validation',
            context: {
                emailPattern: RegexPatterns.email
            },
            template: `
                <sdc-input #email label="Please enter valid email address" [maxLength]="50" required="true"></sdc-input>
                <sdc-validation [validateElement]="email" disabled='true'>
                    <sdc-required-validator message="Field is required!"></sdc-required-validator>
                    <sdc-regex-validator message="This is not a valid email!" [pattern]="emailPattern"></sdc-regex-validator>
                </sdc-validation>
            `
        },
        {
            id: 'validation4',
            showSource: true,
            title: 'Validation with value already entered',
            description: 'Validation with value already entered',
            context: {
                emailPattern: RegexPatterns.email
            },
            template: `
                <sdc-input #email label="Please enter valid email address" [maxLength]="50" required="true" value="notvalidemail@"></sdc-input>
                <sdc-validation [validateElement]="email">
                    <sdc-required-validator message="Field is required!"></sdc-required-validator>
                    <sdc-regex-validator message="This is not a valid email!" [pattern]="emailPattern"></sdc-regex-validator>
                </sdc-validation>
            `
        },
        {
            id: 'validation5',
            showSource: true,
            title: 'Validation with validity changed callback',
            description: 'Simple validation with alert when validity changes',
            context: {
                numbersPattern: RegexPatterns.numbers,
                validityChanged: (newState: boolean) => {
                    alert("Validity has changed to " + newState);
                }
            },
            template: `
                <sdc-input #validatorWithCallback label="Please enter a number" [maxLength]="10" required="true"></sdc-input>
                <sdc-validation [validateElement]="validatorWithCallback" (validityChanged)="validityChanged($event)">
                    <sdc-regex-validator message="This is not a number!" [pattern]="numbersPattern"></sdc-regex-validator>
                </sdc-validation>
            `
        },
        {
            id: 'dropdownWithValidation',
            showSource: true,
            context: {
                options: options1,
                isThirdOption: (value: any) => {
                    return value === 'Third Option';
                }
            },
            title: 'DropDown with validation',
            description: 'DropDown with validation',
            template: `
            <sdc-dropdown #mydropdown label="Hi I am a label" placeHolder="Please choose option" [options]="options"></sdc-dropdown>
            <sdc-validation [validateElement]="mydropdown">
                <sdc-required-validator message="Field is required!"></sdc-required-validator>
                <sdc-custom-validator message="Please select the third option" [callback]="isThirdOption"></sdc-custom-validator>
            </sdc-validation>
            `
        },
        {
            id: 'validationGroup',
            showSource: true,
            context: {
                options: options1,
                emailPattern: RegexPatterns.email,
                isThirdOption: (value: any) => {
                    return value === 'Third Option';
                },
                validateGroup: (validationGroup) => {
                    validationGroup.validate();
                }
            },
            title: 'Validation group',
            description: 'Validation group (activating validation from code)',
            template: `
            <sdc-validation-group #validationGroup>

                <sdc-input #email label="Please enter valid email address" [maxLength]="50" required="true"></sdc-input>
                <sdc-validation [validateElement]="email">
                    <sdc-required-validator message="Field is required!"></sdc-required-validator>
                    <sdc-regex-validator message="This is not a valid email!" [pattern]="emailPattern"></sdc-regex-validator>
                </sdc-validation>

                <sdc-dropdown #mydropdown label="Hi I am a label" placeHolder="Please choose option" [options]="options"></sdc-dropdown>
                <sdc-validation [validateElement]="mydropdown">
                    <sdc-required-validator message="Field is required!"></sdc-required-validator>
                    <sdc-custom-validator message="Please select the third option" [callback]="isThirdOption"></sdc-custom-validator>
                </sdc-validation>

            </sdc-validation-group>
            <sdc-button text="validate group" (click)="validateGroup(validationGroup)"></sdc-button>
            `
        }
    ]);