mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
2231dd84c2
no issue
Ember is migrating to `<AngleBracketSyntax />` for component invocation, see https://github.com/emberjs/rfcs/blob/master/text/0311-angle-bracket-invocation.md
We were in a half-way situation where some templates used angle bracket syntax in some places, this PR updates templates to use the syntax everywhere.
This simplifies the rules for what template code is referring to...
`<Component>` = a component
`{{helper}}` = a helper (or locally assigned handlebars variable)
`{{this.foo}}` = data on the template backing context (a component/controller)
`{{@foo}}` = a named argument passed into the component that the component backing class has not modified (note: this commit does not introduce any named arguments)
- ran codemod https://github.com/ember-codemods/ember-angle-brackets-codemod on the following directories:
- `app/templates`
- `lib/koenig-editor/addon/templates`
- removed positional params from components as angle bracket syntax does not support them
- `gh-feature-flag`
- `gh-tour-item`
- `gh-cm-editor`
- `gh-fullscreen-modal`
- `gh-task-button`
- updates some code that was missed in 3c851293c1
to use explicit this
28 lines
1.1 KiB
Handlebars
28 lines
1.1 KiB
Handlebars
<div class="gh-flow">
|
|
<header class="gh-flow-head">
|
|
<nav class="gh-flow-nav">
|
|
{{#if this.showBackLink}}
|
|
<LinkTo @route={{this.backRoute}} @classNames="gh-flow-back">{{svg-jar "arrow-left-small"}} Back</LinkTo>
|
|
{{/if}}
|
|
<ol>
|
|
<GhActivatingListItem @route="setup.one" @linkClasses="step">
|
|
{{svg-jar "check-circle"}}<span class="num">1</span>
|
|
</GhActivatingListItem>
|
|
<li class="divider"></li>
|
|
<GhActivatingListItem @route="setup.two" @linkClasses="step">
|
|
{{svg-jar "check-circle"}}<span class="num">2</span>
|
|
</GhActivatingListItem>
|
|
<li class="divider"></li>
|
|
<GhActivatingListItem @route="setup.three" @linkClasses="step">
|
|
{{svg-jar "check-circle"}}<span class="num">3</span>
|
|
</GhActivatingListItem>
|
|
</ol>
|
|
</nav>
|
|
</header>
|
|
<div class="gh-flow-content-wrap">
|
|
<section class="gh-flow-content">
|
|
{{outlet}}
|
|
</section>
|
|
</div>
|
|
</div>
|