aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/components/scheduled-scan/scheduled-scan.html
blob: 2abdcaf352705c92bbfed6af6f6fc83083bfd5a6 (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
<!-- 
########################################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) and others #
#                                                                                      #
# All rights reserved. This program and the accompanying materials                     #
# are made available under the terms of the Apache License, Version 2.0                #
# which accompanies this distribution, and is available at                             #
# http://www.apache.org/licenses/LICENSE-2.0                                           #
########################################################################################
 -->
<template name="ScheduledScan">
  <div class="os-scheduled-scan cards white">

    {{#if (getState 'isMessage') }}
    <div class="js-message-panel alert {{#if (getState 'isError')}}alert-danger{{/if}}
        {{#if (getState 'isSuccess')}}alert-success{{/if}}" 
        role="alert">
      {{ getState 'message' }}
    </div>
    {{/if }}

    <h3>{{ getState 'pageHeader' }}</h3>
    <div class="sm-form-container">

      <form role="form" class="sm-item-form form-horizontal">

        <div class="sm-field-group-id cl-field-group">
          <label class="cl-field-label">Id</label>
          <input name="id" 
            disabled="disabled"
            value="{{ modelField '_id' }}"     
            class="sm-input-id cl-input" type="text" placeholder="Id" />
        </div>

        <div class="cl-field-group">
          <label class="cl-field-label">Environment</label>
          {{>MtSelect (argsSelect classStr="cl-input" 
                        options=envsAsOptions
                        selectedValue=(modelField 'environment') 
                        onInput=onInputEnvFn
                        disabled=isGenDisabled
                        )
                        }}
        </div>

        <div class="cl-field-group">
          <label class="cl-field-label">Scan specific object</label>
          {{>MtInput (argsInput classStr="cl-input" 
                        placeholder="Object Id" 
                        inputValue=(modelField 'object_id') 
                        inputType="text" onInput=onInputObjectIdFn
                        disabled=isGenDisabled
                        ) }}
        </div>

        <div class="cl-field-group">
          <label class="cl-field-label">Log level</label>
          {{>MtSelect (argsSelect classStr="cl-input" 
                        options=logLevelsAsOptions
                        selectedValue=(modelField 'log_level') 
                        onInput=onInputLogLevelFn
                        disabled=isGenDisabled
                        ) }}
        </div>

        <div class="cl-field-group">
          <label class="cl-field-label">Clear data</label>
          {{>MtInput (argsInput classStr="cl-input" 
                        inputValue=(modelField 'clear') 
                        inputType="checkbox" 
                        onInput=onInputClearFn
                        disabled=isGenDisabled
                        ) }}
        </div>

        <div class="cl-field-group">
          <label class="cl-field-label">What to scan</label>
          {{>MtSelect (argsSelect classStr="cl-input" 
                        options=scanOnlyFieldOptions
                        selectedValue=scanOnlyFieldsSelectedValue
                        onInput=scanOnlyFieldInputFn
                        disabled=isGenDisabled
                        ) }}
        </div>

        <div class="cl-field-group">
          <label class="cl-field-label">Frequency</label>
          {{>MtSelect (argsSelect classStr="cl-input" 
                        options=freqsAsOptions
                        selectedValue=(modelField 'freq') 
                        onInput=onInputFreqFn
                        disabled=isGenDisabled
                        ) }}
        </div>

        <div class="cl-field-group">
          <label class="cl-field-label">Recurrence</label>
          <div class="cl-info-data">{{ getRecurrenceText (getState 'model') }}</div>
        </div>

        <div class="cl-field-group">
          <label class="cl-field-label">Next run</label>
          <div class="cl-info-data">{{ getNextRunText (getState 'model') }}</div>
        </div>

        {{#if isUpdateableAction }}
        <button type="submit" 
          class="js-submit-button mdl-button mdl-js-button mdl-button--raised 
            mdl-js-ripple-effect mdl-button--colored"
          >{{ actionLabel }}</button>
        {{/if }}

      </form>

    </div>
  </div>
</template>