summaryrefslogtreecommitdiffstats
path: root/catalog-ui/app/scripts/view-models/forms/resource-instance-name-form/resource-instance-name-view.html
blob: e04343adbd52b18a880d9a65e0e9b54a8bf53bf6 (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
<sdc-modal modal="modalInstanceName" type="classic" class="w-sdc-modal-resource-instance-name modal-type-confirmation" buttons="footerButtons" header="Instance Name" show-close-button="true">

    <form novalidate class="w-sdc-form" name="forms.editNameForm">
        <div class="i-sdc-form-item" data-ng-class="{error:(editNameForm.componentInstanceName.$dirty && editNameForm.resourceInstanceName.$invalid)}">
            <label class="i-sdc-form-label required">Instance Name</label>
            <input class="w-sdc-modal-resource-instance-input i-sdc-form-input"
                   name="componentInstanceName"
                   data-ng-maxlength="50"
                   data-ng-model="componentInstanceModel.name"
                   type="text"
                   data-required
                   data-ng-pattern="validationPattern"
                   maxlength="50"
                   autofocus
                   placeholder="Enter instance name..."
                   data-tests-id="instanceName"
                />

            <div class="input-error" data-ng-show="forms.editNameForm.componentInstanceName.$dirty && forms.editNameForm.componentInstanceName.$invalid">
                <span ng-show="forms.editNameForm.componentInstanceName.$error.required" translate="VALIDATION_ERROR_REQUIRED" translate-values="{'field': 'Resource name' }"></span>
                <span ng-show="forms.editNameForm.componentInstanceName.$error.maxlength" translate="VALIDATION_ERROR_MAX_LENGTH" translate-values="{'max': '50' }"></span>
                <span ng-show="forms.editNameForm.componentInstanceName.$error.pattern" translate="VALIDATION_ERROR_SPECIAL_CHARS_NOT_ALLOWED"></span>
            </div>

        </div>
    </form>

</sdc-modal>



<!--

<div class="w-sdc-modal w-sdc-modal-resource-instance-name">
    <header>
        <div class="w-sdc-modal-head">
            Instance Name
        </div>
    </header>
    <div>
        <form novalidate class="w-sdc-modal-body w-sdc-form" name="editNameForm">
            <div class="i-sdc-form-item" data-ng-class="{error:(editNameForm.componentInstanceName.$dirty && editNameForm.resourceInstanceName.$invalid)}">
                <label class="i-sdc-form-label required">Instance Name</label>
                <input class="w-sdc-modal-resource-instance-input i-sdc-form-input"
                       name="componentInstanceName"
                       data-ng-maxlength="50"
                       data-ng-model="componentInstanceModel.name"
                       type="text"
                       data-required
                       data-ng-pattern="validationPattern"
                       maxlength="50"
                       autofocus
                       placeholder="Enter instance name..."
                       data-tests-id="instanceName"
                    />

                <div class="input-error" data-ng-show="editNameForm.componentInstanceName.$dirty && editNameForm.componentInstanceName.$invalid">
                    <span ng-show="editNameForm.componentInstanceName.$error.required" translate="VALIDATION_ERROR_REQUIRED" translate-values="{'field': 'Resource name' }"></span>
                    <span ng-show="editNameForm.componentInstanceName.$error.maxlength" translate="VALIDATION_ERROR_MAX_LENGTH" translate-values="{'max': '50' }"></span>
                    <span ng-show="editNameForm.componentInstanceName.$error.pattern" translate="VALIDATION_ERROR_SPECIAL_CHARS_NOT_ALLOWED"></span>
                </div>

            </div>
        </form>

        <div class="w-sdc-modal-action">
            <button class="w-sdc-btn-blue" data-ng-click="save()" type="button" data-ng-disabled="(!componentInstanceModel.name || componentInstanceModel.name === oldName) || isAlreadyPressed">Ok</button>
            <button class="w-sdc-btn-dark-gray" data-ng-click="close()" type="button">Cancel</button>
        </div>
    </div>
</div>
-->