mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
beb5ae1737
no issue
- This will help with the octane migration and you can still run the lint rules even when they are todos. (Checkout the docs at 158b119667/docs/todos.md
) The good news is any new code will be checked against the recommended config.
- I fixed all the auto fixable things we could get in this PR as well
89 lines
4.1 KiB
Handlebars
89 lines
4.1 KiB
Handlebars
<header class="modal-header" data-test-modal="webhook-form">
|
|
<h1 data-test-text="title">{{this.title}}</h1>
|
|
</header>
|
|
<button class="close" href title="Close" type="button" {{action "closeModal"}} {{action (optional this.noop) on="mouseDown"}}>
|
|
{{svg-jar "close"}}
|
|
</button>
|
|
|
|
<form>
|
|
<div class="modal-body">
|
|
<div class="gh-main-section-block">
|
|
<div class="gh-main-section-content grey gh-product-priceform-block">
|
|
<GhFormGroup @errors={{this.errors}} @property="name">
|
|
<label for="name" class="fw6">Name</label>
|
|
<GhTextInput
|
|
@value={{readonly this.price.nickname}}
|
|
@input={{action (mut this.price.nickname) value="target.value"}}
|
|
@name="name"
|
|
@id="name"
|
|
@class="gh-input" />
|
|
<GhErrorMessage @errors={{this.errors}} @property="name" />
|
|
</GhFormGroup>
|
|
<GhFormGroup @errors={{this.errors}} @property="description">
|
|
<label for="description" class="fw6">Description</label>
|
|
<GhTextInput
|
|
@value={{readonly this.price.description}}
|
|
@input={{action (mut this.price.description) value="target.value"}}
|
|
@name="description"
|
|
@id="description"
|
|
@class="gh-input" />
|
|
<GhErrorMessage @errors={{this.errors}} @property="description" />
|
|
</GhFormGroup>
|
|
<div class="gh-product-priceform-pricecurrency">
|
|
<GhFormGroup @errors={{this.errors}} @property="amount">
|
|
<label for="amount" class="fw6">Price</label>
|
|
<div class="flex items-center justify-center gh-labs-price-label">
|
|
<GhTextInput
|
|
@id="amount"
|
|
@value={{this.price.amount}}
|
|
@type="number"
|
|
@disabled={{this.isExistingPrice}}
|
|
@input={{action "setAmount" value="target.value"}}
|
|
/>
|
|
</div>
|
|
<GhErrorMessage @errors={{this.errors}} @property="amount" />
|
|
</GhFormGroup>
|
|
<GhFormGroup @class="for-select">
|
|
<label class="fw6 f8"for="currency">Plan currency</label>
|
|
<span class="gh-select mt1">
|
|
{{one-way-select this.selectedCurrencyObj
|
|
id="currency"
|
|
name="currency"
|
|
options=(readonly this.allCurrencies)
|
|
optionValuePath="value"
|
|
optionLabelPath="label"
|
|
disabled=this.isExistingPrice
|
|
update=(action "setCurrency")
|
|
}}
|
|
{{svg-jar "arrow-down-small"}}
|
|
</span>
|
|
</GhFormGroup>
|
|
</div>
|
|
<GhFormGroup @errors={{this.price.errors}} @hasValidated={{this.price.hasValidated}} @property="billing-period">
|
|
<label for="billing-period" class="fw6">Billing period</label>
|
|
<GhProductsPriceBillingperiod
|
|
@updatePeriod={{action "updatePeriod"}}
|
|
@triggerId="period-input"
|
|
@value={{this.price.interval}} @disabled={{this.isExistingPrice}}
|
|
/>
|
|
<GhErrorMessage @errors={{this.errors}} @property="interval" />
|
|
</GhFormGroup>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<div class="modal-footer">
|
|
<button
|
|
class="gh-btn" data-test-button="cancel-webhook" type="button" {{action "closeModal"}}
|
|
{{!-- disable mouseDown so it doesn't trigger focus-out validations --}}
|
|
{{action (optional this.noop) on="mouseDown"}}
|
|
>
|
|
<span>Cancel</span>
|
|
</button>
|
|
<GhTaskButton @buttonText="Save"
|
|
@successText={{this.successText}}
|
|
@task={{this.savePrice}}
|
|
@class="gh-btn gh-btn-black gh-btn-icon"
|
|
data-test-button="save-price" />
|
|
</div> |