1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/components/modal-new-integration.hbs
Kevin Ansfield d6058dbf27 Co-located component template files
no issue

Keeps component JS backing files and template files in the same directory which avoids hunting across directories when working with components. Also lets you see all components when looking at one directory, whereas previously template-only or js-only components may not have been obvious without looking at both directories.

- ran [codemod](https://github.com/ember-codemods/ember-component-template-colocation-migrator/) for app-level components
- manually moved in-repo-addon component templates in `lib/koenig-editor`
- removed all explicit `layout` imports as JS/template associations are now made at build-time removing the need for them
- updated `.embercli` to default to new flat component structure
2020-05-18 13:14:08 +01:00

45 lines
1.7 KiB
Handlebars

<header class="modal-header" data-test-modal="new-integration">
<h1>New custom integration</h1>
</header>
{{!-- disable mouseDown so it doesn't trigger focus-out validations --}}
<button class="close" href title="Close" {{action "closeModal"}} {{action (optional this.noop) on="mouseDown"}}>
{{svg-jar "close"}}
</button>
<div class="modal-body">
<fieldset>
<GhFormGroup @errors={{this.integration.errors}} @hasValidated={{this.integration.hasValidated}} @property="name">
<label for="new-integration-name" class="fw6">Name</label>
<input type="text"
value={{this.integration.name}}
oninput={{action "updateName" value="target.value"}}
id="new-integration-name"
class="gh-input mt1"
placeholder="Integration name..."
name="integration-name"
autofocus="autofocus"
autocapitalize="off"
autocorrect="off"
data-test-input="new-integration-name">
<GhErrorMessage @errors={{this.integration.errors}} @property="name" data-test-error="new-integration-name" />
</GhFormGroup>
</fieldset>
</div>
<div class="modal-footer">
<button
class="gh-btn"
{{action "closeModal"}}
{{!-- disable mouseDown so it doesn't trigger focus-out validations --}}
{{action (optional this.noop) on="mouseDown"}}
data-test-button="cancel-new-integration"
>
<span>Cancel</span>
</button>
<GhTaskButton @buttonText="Create"
@successText="Created"
@task={{this.createIntegration}}
@class="gh-btn gh-btn-green gh-btn-icon"
data-test-button="create-integration" />
</div>