Skip to content

Instantly share code, notes, and snippets.

@RakChamp25
Created January 19, 2021 04:24
Show Gist options
  • Save RakChamp25/e537d3be918cff1bed8ca88a5823b794 to your computer and use it in GitHub Desktop.
Save RakChamp25/e537d3be918cff1bed8ca88a5823b794 to your computer and use it in GitHub Desktop.
notifications
import Controller from '@ember/controller';
import { inject as service } from '@ember/service';
import { action } from '@ember/object';
export default class ApplicationController extends Controller {
@service
notifications;
appName = 'Ember Twiddle';
@action
notify() {
this.notifications.info('You have one unread message');
}
}
<h1 {{on "click" this.notify}}>Welcome to {{this.appName}}</h1>
<br>
<br>
{{outlet}}
<NotificationContainer position="top-right" zindex="9999" />
<br>
<br>
{
"version": "0.17.1",
"EmberENV": {
"FEATURES": {},
"_TEMPLATE_ONLY_GLIMMER_COMPONENTS": false,
"_APPLICATION_TEMPLATE_WRAPPER": true,
"_JQUERY_INTEGRATION": true
},
"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",
"ember-cli-notifications": "6.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment