dyfactor-plugin-disambiguate-locals

0.1.1 • Public • Published

Disambiguate Locals

Build Status

This is a Dynamic Dyfcator Plugin that identifies local properties that are typically resolved by Ember's property fallback functionality. This is meant to provide a migration path for RFC#308.

Usage

> yarn add dyfactor-plugin-disambiguate-locals --dev

> dyfactor run template disambiguate-locals ./app --level <extract|modify>

What Does This Do?

Given a template and component that look this:

import Component from '@ember/component';

export Component.extend({
  name: 'Chad',
  company: 'LinkedIn'
});
<h1>{{name}}!</h1>
<h2>Company: {{company}}</h2>

<ul>
  {{#each projects as |project|}}
    <li>{{project.name}}</li>
  {{/each}}
</ul>

This plugin will either re-write the template to:

-  <h1>{{name}}!</h1>
+  <h1>{{this.name}}!</h1>
-  <h2>Company: {{company}}</h2>
+  <h2>Company: {{this.company}}</h2>

   <ul>
     {{#each projects as |project|}}
       <li>{{project.name}}</li>
     {{/each}}
   </ul>

or write a telemetry file to disk that looks like the following:

{
  "./app/templates/components/top-card.hbs": ["name", "company"]
}

Readme

Keywords

none

Package Sidebar

Install

npm i dyfactor-plugin-disambiguate-locals

Weekly Downloads

2

Version

0.1.1

License

MIT

Unpacked Size

89.5 kB

Total Files

9

Last publish

Collaborators

  • chadhietala