Skip to content

Instantly share code, notes, and snippets.

@Gaurav0
Last active May 5, 2021 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Gaurav0/e6481c33c3150e3418606e79decaed78 to your computer and use it in GitHub Desktop.
Save Gaurav0/e6481c33c3150e3418606e79decaed78 to your computer and use it in GitHub Desktop.
Inject owner into class
import { setOwner } from '@ember/application';
import { inject as service } from '@ember/service';
export default class MyClass {
@service myService;
constructor(owner) {
setOwner(this, owner);
this.appName = this.myService.appName;
}
}
import Controller from '@ember/controller';
import { getOwner } from '@ember/application';
import { tracked } from '@glimmer/tracking';
import MyClass from '../classes/my-class';
export default class ApplicationController extends Controller {
@tracked appName;
constructor() {
super(...arguments);
this.appName = new MyClass(getOwner(this) ).appName;
}
}
import Service from '@ember/service';
export default class MyService extends Service {
appName = 'Ember Twiddle';
}
<h1>Welcome to {{this.appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
{
"version": "0.17.2",
"EmberENV": {
"FEATURES": {},
"_TEMPLATE_ONLY_GLIMMER_COMPONENTS": true,
"_APPLICATION_TEMPLATE_WRAPPER": false,
"_JQUERY_INTEGRATION": false
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js",
"ember": "3.18.1",
"ember-template-compiler": "3.18.1",
"ember-testing": "3.18.1"
},
"addons": {
"@glimmer/component": "1.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment