ember-service-helper

0.2.1 • Public • Published

ember-service-helper

CI npm version Download Total Ember Observer Score code style: prettier dependencies devDependencies

Simple template helper to inject services into templates.

Installation

ember install ember-service-helper

Usage

There are two ways to invoke the {{service}} helper.

  • {{service serviceName}} — Returns the service itself.
    Like calling owner.lookup(`service:${serviceName}`)
  • {{service serviceName methodName}} — Returns the method, bound to the instance.

Properties

Getting Properties

Example using the built-in {{get}} helper and ember-responsive. Note that {{get}} returns a bound reference.

{{#if (get (service "breakpoints") "isDesktop")}}
  Desktop breakpoint
{{else}}
  Mobile breakpoint
{{/if}}

Setting Properties

Example using ember-set-helper.

<ColorPicker @update={{set (service "preferences") "favoriteColor"}}>

Methods

Example using the {{pick}} helper from ember-composable-helpers to get the event.target.checked property.

<label>
  Enable dark mode
  <input
    type="checkbox"
    checked={{get (service "theme") "isDark"}}
    {{on "input" (pick "target.checked" (service "theme" "toggleDarkMode"))}}
  >
</label>
export default class ThemeService extends Service {
  @tracked isDark = false;

  toggleDarkMode(newValue = !this.isDark) {
    // Even though this method isn't using `@action`, the `{{service}}` helper
    // binds it to the service instance.
    this.isDark = newValue;
  }
}

Related

Package Sidebar

Install

npm i ember-service-helper

Weekly Downloads

363

Version

0.2.1

License

MIT

Unpacked Size

6.67 kB

Total Files

6

Last publish

Collaborators

  • buschtoens