2018-05-22 15:03:45 +00:00
|
|
|
<form>
|
2019-12-17 18:47:37 +00:00
|
|
|
<fieldset>
|
|
|
|
<div role="group">
|
|
|
|
<fieldset>
|
|
|
|
<h2>Source</h2>
|
2018-06-15 11:47:12 +00:00
|
|
|
<label data-test-source-element class="type-text{{if item.error.SourceName ' has-error'}}">
|
2019-12-17 18:47:37 +00:00
|
|
|
<span>Source Service</span>
|
2020-02-21 16:48:54 +00:00
|
|
|
<PowerSelectWithCreate
|
|
|
|
@options={{services}}
|
|
|
|
@searchField="Name"
|
|
|
|
@selected={{SourceName}}
|
|
|
|
@searchPlaceholder="Type service name"
|
|
|
|
@buildSuggestion={{action "createNewLabel" "Use a future Consul Service called '{{term}}'"}}
|
|
|
|
@showCreateWhen={{action "isUnique"}}
|
|
|
|
@onCreate={{action "change" "SourceName"}}
|
|
|
|
@onChange={{action "change" "SourceName"}} as |service|>
|
|
|
|
{{#if (eq service.Name '*') }}
|
|
|
|
* (All Services)
|
|
|
|
{{else}}
|
|
|
|
{{service.Name}}
|
|
|
|
{{/if}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</PowerSelectWithCreate>
|
2019-12-17 18:47:37 +00:00
|
|
|
<em>Search for an existing service, write in a future one, or write in any Service URI.</em>
|
2018-05-22 15:03:45 +00:00
|
|
|
</label>
|
2019-12-17 18:47:37 +00:00
|
|
|
{{#if (env 'CONSUL_NSPACES_ENABLED')}}
|
|
|
|
<label data-test-source-nspace class="type-text{{if item.error.SourceNS ' has-error'}}">
|
|
|
|
<span>Source Namespace</span>
|
2020-02-21 16:48:54 +00:00
|
|
|
<PowerSelectWithCreate
|
|
|
|
@options={{nspaces}}
|
|
|
|
@searchField="Name"
|
|
|
|
@selected={{SourceNS}}
|
|
|
|
@searchPlaceholder="Type namespace name"
|
|
|
|
@buildSuggestion={{action "createNewLabel" "Use a future Consul Namespace called '{{term}}'"}}
|
|
|
|
@showCreateWhen={{action "isUnique"}}
|
|
|
|
@onCreate={{action "change" "SourceNS"}}
|
|
|
|
@onChange={{action "change" "SourceNS"}} as |nspace|>
|
|
|
|
{{#if (eq nspace.Name '*') }}
|
|
|
|
* (All Namespaces)
|
|
|
|
{{else}}
|
|
|
|
{{nspace.Name}}
|
|
|
|
{{/if}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</PowerSelectWithCreate>
|
2019-12-17 18:47:37 +00:00
|
|
|
<em>Search for an existing namespace, write in a future one.</em>
|
|
|
|
</label>
|
|
|
|
{{/if}}
|
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
|
|
<h2>Destination</h2>
|
2018-06-15 11:47:12 +00:00
|
|
|
<label data-test-destination-element class="type-text{{if item.error.DestinationName ' has-error'}}">
|
2019-12-17 18:47:37 +00:00
|
|
|
<span>Destination Service</span>
|
2020-02-21 16:48:54 +00:00
|
|
|
<PowerSelectWithCreate
|
|
|
|
@options={{services}}
|
|
|
|
@searchField="Name"
|
|
|
|
@selected={{DestinationName}}
|
|
|
|
@searchPlaceholder="Type service name"
|
|
|
|
@buildSuggestion={{action "createNewLabel" "Use a future Consul Service called '{{term}}'"}}
|
|
|
|
@showCreateWhen={{action "isUnique"}}
|
|
|
|
@onCreate={{action "change" "DestinationName"}}
|
|
|
|
@onChange={{action "change" "DestinationName"}} as |service|>
|
|
|
|
{{#if (eq service.Name '*') }}
|
|
|
|
* (All Services)
|
|
|
|
{{else}}
|
|
|
|
{{service.Name}}
|
|
|
|
{{/if}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</PowerSelectWithCreate>
|
2019-12-17 18:47:37 +00:00
|
|
|
<em>Search for an existing service or write in a future one.</em>
|
2018-05-22 15:03:45 +00:00
|
|
|
</label>
|
2019-12-17 18:47:37 +00:00
|
|
|
{{#if (env 'CONSUL_NSPACES_ENABLED')}}
|
|
|
|
<label data-test-destination-nspace class="type-text{{if item.error.DestinationNS ' has-error'}}">
|
|
|
|
<span>Destination Namespace</span>
|
2020-02-21 16:48:54 +00:00
|
|
|
<PowerSelectWithCreate
|
|
|
|
@options={{nspaces}}
|
|
|
|
@searchField="Name"
|
|
|
|
@selected={{DestinationNS}}
|
|
|
|
@searchPlaceholder="Type namespace name"
|
|
|
|
@buildSuggestion={{action "createNewLabel" "Use a future Consul Namespace called '{{term}}'"}}
|
|
|
|
@showCreateWhen={{action "isUnique"}}
|
|
|
|
@onCreate={{action "change" "DestinationNS"}}
|
|
|
|
@onChange={{action "change" "DestinationNS"}} as |nspace|>
|
|
|
|
{{#if (eq nspace.Name '*') }}
|
|
|
|
* (All Namespaces)
|
|
|
|
{{else}}
|
|
|
|
{{nspace.Name}}
|
|
|
|
{{/if}}
|
2020-02-19 19:26:38 +00:00
|
|
|
</PowerSelectWithCreate>
|
2019-12-17 18:47:37 +00:00
|
|
|
<em>For the destination, you may choose any namespace for which you have access.</em>
|
2018-05-22 15:03:45 +00:00
|
|
|
</label>
|
2019-12-17 18:47:37 +00:00
|
|
|
{{/if}}
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
<div role="radiogroup" class={{if item.error.Action ' has-error'}}>
|
|
|
|
{{#each (array 'allow' 'deny') as |intent|}}
|
|
|
|
<label>
|
|
|
|
<span>{{ capitalize intent }}</span>
|
|
|
|
<input type="radio" name="Action" value="{{intent}}" checked={{if (eq item.Action intent) 'checked'}} onchange={{ action 'change' }}/>
|
|
|
|
</label>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
<label class="type-text{{if item.error.Description ' has-error'}}">
|
|
|
|
<span>Description (Optional)</span>
|
|
|
|
<input type="text" name="Description" value="{{item.Description}}" placeholder="Description (Optional)" onchange={{action 'change'}} />
|
|
|
|
</label>
|
|
|
|
</fieldset>
|
|
|
|
<div>
|
2018-05-22 15:03:45 +00:00
|
|
|
{{#if create }}
|
2019-12-17 18:47:37 +00:00
|
|
|
<button type="submit" {{ action "create" item}} disabled={{if (or item.isPristine item.isInvalid) 'disabled'}}>Save</button>
|
2018-05-22 15:03:45 +00:00
|
|
|
{{ else }}
|
2019-12-17 18:47:37 +00:00
|
|
|
<button type="submit" {{ action "update" item}} disabled={{if item.isInvalid 'disabled'}}>Save</button>
|
2018-05-22 15:03:45 +00:00
|
|
|
{{/if}}
|
2019-12-17 18:47:37 +00:00
|
|
|
<button type="reset" {{ action "cancel" item}}>Cancel</button>
|
2018-05-22 15:03:45 +00:00
|
|
|
{{# if (and item.ID (not-eq item.ID 'anonymous')) }}
|
2020-02-19 19:26:38 +00:00
|
|
|
<ConfirmationDialog @message="Are you sure you want to delete this Intention?">
|
|
|
|
<BlockSlot @name="action" as |confirm|>
|
2019-12-17 18:47:37 +00:00
|
|
|
<button data-test-delete type="button" class="type-delete" {{action confirm 'delete' item parent}}>Delete</button>
|
2020-02-19 19:26:38 +00:00
|
|
|
</BlockSlot>
|
|
|
|
<BlockSlot @name="dialog" as |execute cancel message|>
|
|
|
|
<DeleteConfirmation @message={{message}} @execute={{execute}} @cancel={{cancel}} />
|
|
|
|
</BlockSlot>
|
|
|
|
</ConfirmationDialog>
|
2018-05-22 15:03:45 +00:00
|
|
|
{{/if}}
|
2019-12-17 18:47:37 +00:00
|
|
|
</div>
|
2018-05-22 15:03:45 +00:00
|
|
|
</form>
|
|
|
|
|