Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate {{partial}} #449

Merged
merged 1 commit into from
Mar 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 102 additions & 0 deletions text/0000-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
- Start Date: 2019-02-17
- Relevant Teams: Ember.js, Learning
- RFC PR: https://github.com/emberjs/rfcs/pull/449
- Tracking: (leave this empty)

# Deprecate `{{partial}}`

## Summary

Partials are an old Ember construct that have no benefits and many downsides when compared to modern Ember components. We should deprecate them in favor of components.

## Motivation

Partials have a number of downsides when compared with components:

- They are hard to reason about as they inherit the scope of the calling template
- They perform poorly in comparison to components

Partials should have no place in modern Ember applications, components should always be preferred.

Once removed, Ember's API will become smaller and more consistent.

## Detailed design

We'll create an AST transform in [`packages/ember-template-compiler`](https://github.com/emberjs/ember.js/tree/master/packages/ember-template-compiler) which will emit a deprecation warning for all uses of `{{partial}}`. The deprecation warning will be:

```
Using `{{partial}}` is deprecated, please use a component instead.
```

This message will link to the following deprecation details which aim to give clear guidance on how to migrate to component:

---

The use of `{{partial}}` has been deprecated, you should replace the partial with a component as follows:

Let's consider a simple example of a `partials/quick-tip` partial being invoked from the `application.hbs` template:

`app/templates/application.hbs`

```hbs
{{#let (hash title="Don't use partials" body="Components are always better") as |tip|}}
{{partial "partials/quick-tip"}}
{{/let}}
```

`app/templates/partials/quick-tip.hbs`

```hbs
<h1>Tip: {{tip.title}}</h1>
<p>{{tip.body}}</p>
<button {{action 'dismissTip'}}>OK</button>
```

Here's the same template code after migrating the `partials/quick-tip` partial to be a component.

`app/templates/application.hbs`

```hbs
{{#let (hash title="Don't use partials" body="Components are always better") as |tip|}}
<QuickTip @tip={{tip}} @onDismiss={{action 'dismissTip'}} />
{{/let}}
```

`app/templates/components/quick-tip.hbs`

```hbs
<h1>Tip: {{@tip.title}}</h1>
<p>{{@tip.body}}</p>
<button {{action @onDismiss}}>OK</button>
```

---

A codemod, while not necessary for this RFC to land, would greatly simplify the migration of partials to components. We should endeavor to create this codemod as part of efforts to implement this RFC. The codemod might work as follows:

* Examine each partial template to recognize which properties originate from the caller scope
* Generate a component to replace each partial
* Replace each `{{partial "foo-bar"}}` invocation with a component invocation, passing arguments as required
* Delete the partial handlebars files

If we do implement a codemod, we should mention it in the deprecation details above.

## How we teach this

We'll mentiton the deprecation in an Ember point release blog post.

The deprecation message will contain a link to clear guidelines on how to migrate from a `{{partial}}` to a component. See the section above beginning with "The use of `{{partial}}` has been deprecated..." for the content.

There are no changes to make to the Ember.js guides, since mentions of `{{partial}}` were removed in 2.x guides.

## Drawbacks

This adds a little churn to Ember's API.

## Alternatives

We could do nothing and leave things as is.

## Unresolved questions

None