From 312904f9d0ad551c48228c28e3352e6b11030392 Mon Sep 17 00:00:00 2001 From: Gavin Joyce Date: Sat, 16 Mar 2019 22:56:51 +0000 Subject: [PATCH] Deprecate {{partial}} (#449) --- text/0000-template.md | 102 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 text/0000-template.md diff --git a/text/0000-template.md b/text/0000-template.md new file mode 100644 index 0000000000..fcd330e9e2 --- /dev/null +++ b/text/0000-template.md @@ -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 +

Tip: {{tip.title}}

+

{{tip.body}}

+ +``` + +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|}} + +{{/let}} +``` + +`app/templates/components/quick-tip.hbs` + +```hbs +

Tip: {{@tip.title}}

+

{{@tip.body}}

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