2022-08-02 13:26:58 +00:00
|
|
|
<form class="form-horizontal -mt-4" name="edgeJobForm">
|
2022-01-17 05:53:32 +00:00
|
|
|
<div class="col-sm-12 form-section-title"> Edge job configuration </div>
|
2020-06-25 03:25:51 +00:00
|
|
|
<!-- name-input -->
|
2022-08-02 13:26:58 +00:00
|
|
|
<div class="form-group mt-4">
|
2023-02-12 21:04:24 +00:00
|
|
|
<label for="edgejob_name" class="col-sm-2 control-label required text-left">Name </label>
|
2022-08-02 13:26:58 +00:00
|
|
|
<div class="col-sm-10">
|
2020-06-25 03:25:51 +00:00
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
class="form-control"
|
|
|
|
ng-model="$ctrl.model.Name"
|
|
|
|
ng-pattern="/^[a-zA-Z0-9][a-zA-Z0-9_.-]+$/"
|
|
|
|
id="edgejob_name"
|
|
|
|
name="edgejob_name"
|
2022-08-02 13:26:58 +00:00
|
|
|
placeholder="e.g. backup-app-prod"
|
2020-06-25 03:25:51 +00:00
|
|
|
required
|
|
|
|
auto-focus
|
|
|
|
/>
|
2022-09-14 23:09:19 +00:00
|
|
|
<div class="help-block" ng-show="edgeJobForm.edgejob_name.$invalid">
|
|
|
|
<div class="small text-warning">
|
|
|
|
<div ng-messages="edgeJobForm.edgejob_name.$error">
|
|
|
|
<p ng-message="required" class="vertical-center">
|
2022-11-28 02:00:28 +00:00
|
|
|
<span><pr-icon icon="'alert-triangle'" class-name="'icon-sm icon-warning'"></pr-icon></span> This field is required.
|
2022-09-14 23:09:19 +00:00
|
|
|
</p>
|
|
|
|
<p ng-message="pattern" class="vertical-center">
|
2022-11-28 02:00:28 +00:00
|
|
|
<span><pr-icon icon="'alert-triangle'" class-name="'icon-sm icon-warning'"></pr-icon></span> Allowed characters are: [a-zA-Z0-9_.-]
|
2022-09-14 23:09:19 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-06-25 03:25:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-14 23:09:19 +00:00
|
|
|
|
2020-06-25 03:25:51 +00:00
|
|
|
<!-- !name-input -->
|
|
|
|
<!-- cron-input -->
|
|
|
|
<!-- edge-job-method-select -->
|
2022-01-17 05:53:32 +00:00
|
|
|
<div class="col-sm-12 form-section-title"> Edge job configuration </div>
|
2023-02-07 03:33:57 +00:00
|
|
|
|
|
|
|
<box-selector slim="true" radio-name="'configuration'" value="$ctrl.formValues.cronMethod" options="$ctrl.cronMethods" on-change="($ctrl.onCronMethodChange)"></box-selector>
|
|
|
|
|
2020-06-25 03:25:51 +00:00
|
|
|
<!-- !edge-job-method-select -->
|
|
|
|
<!-- basic-edge-job -->
|
|
|
|
<div ng-if="$ctrl.formValues.cronMethod === 'basic'">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="recurring" class="col-sm-2 control-label text-left">Recurring Edge job</label>
|
|
|
|
<div class="col-sm-10">
|
2022-08-02 13:26:58 +00:00
|
|
|
<label class="switch"><input type="checkbox" name="recurring" ng-model="$ctrl.model.Recurring" /><span class="slider round"></span></label>
|
2020-06-25 03:25:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- not-recurring -->
|
|
|
|
<div ng-if="!$ctrl.model.Recurring">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="edgejob_cron" class="col-sm-2 control-label text-left">Schedule date</label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<input class="form-control" moment-picker ng-model="$ctrl.formValues.datetime" format="YYYY-MM-DD HH:mm" />
|
|
|
|
</div>
|
2022-08-02 13:26:58 +00:00
|
|
|
<div class="col-sm-12 small text-muted mt-2.5"> Time should be set according to the chosen environments' timezone. </div>
|
2020-06-25 03:25:51 +00:00
|
|
|
<div ng-show="edgeJobForm.datepicker.$invalid">
|
|
|
|
<div class="col-sm-12 small text-warning">
|
|
|
|
<div ng-messages="edgeJobForm.datepicker.$error">
|
2022-08-02 13:26:58 +00:00
|
|
|
<p ng-message="required" class="vertical-center">
|
2022-11-28 02:00:28 +00:00
|
|
|
<span><pr-icon icon="'alert-triangle'" class-name="'icon-sm icon-warning'"></pr-icon></span> This field is required.
|
2022-08-02 13:26:58 +00:00
|
|
|
</p>
|
2020-06-25 03:25:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- !not-recurring -->
|
|
|
|
<!-- recurring -->
|
|
|
|
<div ng-if="$ctrl.model.Recurring">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="edgejob_value" class="col-sm-2 control-label text-left">Edge job time</label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<select
|
|
|
|
id="edgejob_value"
|
|
|
|
name="edgejob_value"
|
|
|
|
class="form-control"
|
|
|
|
ng-model="$ctrl.formValues.scheduleValue"
|
|
|
|
ng-options="value.displayed for value in $ctrl.scheduleValues"
|
|
|
|
required
|
|
|
|
></select>
|
|
|
|
</div>
|
|
|
|
<div ng-show="edgeJobForm.edgejob_value.$invalid">
|
|
|
|
<div class="col-sm-12 small text-warning">
|
|
|
|
<div ng-messages="edgeJobForm.edgejob_value.$error">
|
2022-08-02 13:26:58 +00:00
|
|
|
<p ng-message="required" class="vertical-center">
|
2022-11-28 02:00:28 +00:00
|
|
|
<span><pr-icon icon="'alert-triangle'" class-name="'icon-sm icon-warning'"></pr-icon></span> This field is required.
|
2022-08-02 13:26:58 +00:00
|
|
|
</p>
|
2020-06-25 03:25:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- !recurring -->
|
|
|
|
</div>
|
|
|
|
<!-- !basic-edge-job -->
|
|
|
|
<!-- advanced-schedule -->
|
|
|
|
<div ng-if="$ctrl.formValues.cronMethod === 'advanced'">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="edgejob_cron" class="col-sm-2 control-label text-left">Cron rule</label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
class="form-control"
|
|
|
|
ng-model="$ctrl.model.CronExpression"
|
|
|
|
id="edgejob_cron"
|
|
|
|
name="edgejob_cron"
|
2022-08-02 13:26:58 +00:00
|
|
|
placeholder="e.g. 0 2 * * *"
|
2020-06-25 03:25:51 +00:00
|
|
|
required
|
|
|
|
ng-pattern="$ctrl.cronRegex"
|
|
|
|
/>
|
2022-09-14 23:09:19 +00:00
|
|
|
<div class="help-block" ng-show="edgeJobForm.edgejob_cron.$invalid && edgeJobForm.edgejob_cron.$dirty">
|
|
|
|
<div class="small text-warning">
|
|
|
|
<div ng-messages="edgeJobForm.edgejob_cron.$error">
|
|
|
|
<p ng-message="required" class="vertical-center">
|
2022-11-28 02:00:28 +00:00
|
|
|
<span><pr-icon icon="'alert-triangle'" class-name="'icon-sm icon-warning'"></pr-icon></span> This field is required.
|
2022-09-14 23:09:19 +00:00
|
|
|
</p>
|
|
|
|
<p ng-message="pattern" class="vertical-center">
|
2022-11-28 02:00:28 +00:00
|
|
|
<span><pr-icon icon="'alert-triangle'" class-name="'icon-sm icon-warning'"></pr-icon></span> This field format is invalid.
|
2022-09-14 23:09:19 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-06-25 03:25:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-14 23:09:19 +00:00
|
|
|
<div class="col-sm-12 small text-muted mt-2.5"> Time should be set according to the chosen environments' timezone. </div>
|
2020-06-25 03:25:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- !advanced-schedule -->
|
|
|
|
|
|
|
|
<!-- execution-method -->
|
|
|
|
<div ng-if="!$ctrl.model.Id">
|
2022-01-17 05:53:32 +00:00
|
|
|
<div class="col-sm-12 form-section-title"> Job content </div>
|
2023-02-07 03:33:57 +00:00
|
|
|
<box-selector value="$ctrl.formValues.method" options="$ctrl.buildMethods" radio-name="buildMethod" on-change="($ctrl.onBuildMethodChange)" slim="true"></box-selector>
|
2020-06-25 03:25:51 +00:00
|
|
|
</div>
|
|
|
|
<!-- !execution-method -->
|
2023-02-07 03:33:57 +00:00
|
|
|
|
2020-06-25 03:25:51 +00:00
|
|
|
<!-- web-editor -->
|
2023-03-30 09:26:32 +00:00
|
|
|
<!-- TODO use web-editor-form component -->
|
2020-06-25 03:25:51 +00:00
|
|
|
<div ng-show="$ctrl.formValues.method === 'editor'">
|
2022-01-17 05:53:32 +00:00
|
|
|
<div class="col-sm-12 form-section-title"> Web editor </div>
|
2020-06-25 03:25:51 +00:00
|
|
|
<div class="form-group">
|
|
|
|
<div class="col-sm-12">
|
|
|
|
<code-editor
|
|
|
|
identifier="execute-edge-job-editor"
|
2023-03-30 09:26:32 +00:00
|
|
|
placeholder="Define or paste the content of your script file here"
|
2020-06-25 03:25:51 +00:00
|
|
|
on-change="($ctrl.editorUpdate)"
|
|
|
|
value="$ctrl.model.FileContent"
|
2023-05-17 02:07:21 +00:00
|
|
|
shell="true"
|
2020-06-25 03:25:51 +00:00
|
|
|
></code-editor>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- !web-editor -->
|
|
|
|
<!-- upload -->
|
|
|
|
<div ng-show="$ctrl.formValues.method === 'upload'">
|
2022-01-17 05:53:32 +00:00
|
|
|
<div class="col-sm-12 form-section-title"> Upload </div>
|
2020-06-25 03:25:51 +00:00
|
|
|
<div class="form-group">
|
2022-01-17 05:53:32 +00:00
|
|
|
<span class="col-sm-12 text-muted small"> You can upload a script file from your computer. </span>
|
2020-06-25 03:25:51 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="col-sm-12">
|
2021-02-15 23:43:35 +00:00
|
|
|
<button type="button" class="btn btn-sm btn-primary" ngf-select ng-model="$ctrl.model.File">Select file</button>
|
2022-08-02 13:26:58 +00:00
|
|
|
<span class="space-left">
|
2020-06-25 03:25:51 +00:00
|
|
|
{{ $ctrl.model.File.name }}
|
2022-11-28 02:00:28 +00:00
|
|
|
<span ng-if="!$ctrl.model.File"><pr-icon icon="'x'" class-name="'icon icon-danger'"></pr-icon></span>
|
2020-06-25 03:25:51 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- !upload -->
|
2022-12-19 21:54:51 +00:00
|
|
|
|
2023-05-30 18:33:22 +00:00
|
|
|
<edge-groups-selector ng-if="$ctrl.model.EdgeGroups" value="$ctrl.model.EdgeGroups" on-change="($ctrl.onChangeGroups)"></edge-groups-selector>
|
2022-12-19 21:54:51 +00:00
|
|
|
|
2022-01-17 05:53:32 +00:00
|
|
|
<div class="col-sm-12 form-section-title"> Target environments </div>
|
2020-06-25 03:25:51 +00:00
|
|
|
<!-- node-selection -->
|
|
|
|
<associated-endpoints-selector
|
|
|
|
endpoint-ids="$ctrl.model.Endpoints"
|
|
|
|
tags="$ctrl.tags"
|
|
|
|
groups="$ctrl.groups"
|
|
|
|
has-backend-pagination="true"
|
|
|
|
on-associate="($ctrl.associateEndpoint)"
|
|
|
|
on-dissociate="($ctrl.dissociateEndpoint)"
|
|
|
|
></associated-endpoints-selector>
|
|
|
|
<!-- !node-selection -->
|
|
|
|
<!-- actions -->
|
2022-01-17 05:53:32 +00:00
|
|
|
<div class="col-sm-12 form-section-title"> Actions </div>
|
2020-06-25 03:25:51 +00:00
|
|
|
<div class="form-group">
|
|
|
|
<div class="col-sm-12">
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="btn btn-primary btn-sm"
|
|
|
|
ng-disabled="$ctrl.actionInProgress || !edgeJobForm.$valid
|
2022-12-19 21:54:51 +00:00
|
|
|
|| ($ctrl.model.Endpoints.length === 0 && $ctrl.model.EdgeGroups.length === 0)
|
2020-06-25 03:25:51 +00:00
|
|
|
|| ($ctrl.formValues.method === 'upload' && !$ctrl.model.File)
|
|
|
|
|| ($ctrl.formValues.method === 'editor' && !$ctrl.model.FileContent)
|
|
|
|
"
|
|
|
|
ng-click="$ctrl.action()"
|
|
|
|
button-spinner="$ctrl.actionInProgress"
|
|
|
|
>
|
|
|
|
<span ng-hide="$ctrl.actionInProgress">{{ $ctrl.formActionLabel }}</span>
|
|
|
|
<span ng-show="$ctrl.actionInProgress">In progress...</span>
|
|
|
|
</button>
|
2022-08-02 13:26:58 +00:00
|
|
|
<span class="text-danger space-left" ng-if="$ctrl.state.formValidationError">
|
2020-06-25 03:25:51 +00:00
|
|
|
{{ $ctrl.state.formValidationError }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- !actions -->
|
|
|
|
</form>
|