Skip to content

Instantly share code, notes, and snippets.

@gossi
Last active September 23, 2020 20:55
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 gossi/b8b77f000ae29d52534b10936c4c4674 to your computer and use it in GitHub Desktop.
Save gossi/b8b77f000ae29d52534b10936c4c4674 to your computer and use it in GitHub Desktop.
link modifier
import Controller from '@ember/controller';
import { action } from '@ember/object';
export default class ApplicationController extends Controller {
appName = 'Ember Twiddle';
@action
sayHello() {
console.log('hellooooooo');
}
}
import EmberRouter from '@ember/routing/router';
import config from './config/environment';
const Router = EmberRouter.extend({
location: 'none',
rootURL: config.rootURL
});
Router.map(function() {
this.route('page-1');
this.route('page-2');
});
export default Router;
<h1>Welcome to {{this.appName}}</h1>
<br>
<button {{link (link "page-1")}}>Page 1</button>
<button {{link (link "page-2")}}>Page 2</button>
<br>
{{outlet}}
<br>
<br>
<div {{link (link "page-1")}}>
This is a block of sth
<button {{on "click" this.sayHello}}>say hello</button>
</div>
<br>
<button {{on "click" this.sayHello}} {{link (link "page-1")}}>Page 1</button>
<button {{link (link "page-2")}} {{on "click" this.sayHello}}>Page 2</button>
{
"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-modifier": "1.0.3",
"ember-link": "1.1.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment