0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/templates/components/wizard-mapper-input.hbs

55 Zeilen
1,2 KiB
Handlebars

2020-04-01 07:03:26 +02:00
{{#if hasOutput}}
<div class="mapper-connector mapper-block">
2020-03-23 06:41:04 +01:00
{{combo-box
value=input.type
2020-03-29 09:49:33 +02:00
content=inputTypes
onChange=(action (mut input.type))}}
2020-03-23 06:41:04 +01:00
</div>
2020-03-21 18:30:11 +01:00
{{/if}}
2020-03-23 06:41:04 +01:00
{{#if hasPairs}}
2020-04-01 07:03:26 +02:00
<div class="mapper-pairs mapper-block">
2020-03-23 06:41:04 +01:00
{{#each input.pairs as |pair|}}
2020-04-01 07:03:26 +02:00
{{wizard-mapper-pair
2020-03-23 06:41:04 +01:00
pair=pair
last=pair.last
2020-03-24 10:35:46 +01:00
inputType=inputType
2020-03-23 06:41:04 +01:00
keyPlaceholder=keyPlaceholder
valuePlaceholder=valuePlaceholder
options=options
removePair=(action 'removePair')}}
{{/each}}
2020-04-01 07:03:26 +02:00
{{#if hasOutput}}
2020-03-24 10:35:46 +01:00
<a {{action 'addPair'}} class="add-pair">
{{d-icon 'plus'}}
</a>
2020-03-23 06:41:04 +01:00
{{/if}}
</div>
2020-03-24 10:35:46 +01:00
{{/if}}
2018-05-24 07:34:58 +02:00
2020-04-01 07:03:26 +02:00
{{#if hasOutput}}
{{#if hasPairs}}
<div class="mapper-connector mapper-block">
{{combo-box
value=input.connector
content=connectors
onChange=(action (mut input.connector))}}
2020-03-24 10:35:46 +01:00
</div>
{{/if}}
2020-03-21 18:30:11 +01:00
2020-04-01 07:03:26 +02:00
<div class="output mapper-block">
{{wizard-mapper-selector
2020-03-24 10:35:46 +01:00
selectorType='output'
inputType=inputType
2020-03-21 18:30:11 +01:00
value=input.output
activeType=input.output_type
customPlaceholder=outputPlaceholder
options=options}}
</div>
{{/if}}
2020-03-24 10:35:46 +01:00
<a class="remove-input" {{action remove input}}>
{{d-icon 'times'}}
</a>