Skip to content

Commit

Permalink
Deprecate {{partial}}
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinJoyce committed Feb 19, 2019
1 parent 7d46cfa commit 302825c
Showing 1 changed file with 98 additions and 0 deletions.
98 changes: 98 additions & 0 deletions text/0000-template.md
@@ -0,0 +1,98 @@
- Start Date: 2019-02-17
- Relevant Teams: Ember.js, Learning
- RFC PR: https://github.com/emberjs/rfcs/pull/TODO
- 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 consistetnt.

## 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>
```

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|}}
{{quick-tip tip=tip}}
{{/let}}
```

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

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

---

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.

## Drawbacks

This adds a little churn to Ember's API.

## Alternatives

We could do nothing and leave things as is.

## Unresolved questions

None

0 comments on commit 302825c

Please sign in to comment.