Skip to content

Instantly share code, notes, and snippets.

@Panman82
Created December 1, 2016 19:15
Show Gist options
  • Save Panman82/98a7879d880477dab60ca30c2c839755 to your computer and use it in GitHub Desktop.
Save Panman82/98a7879d880477dab60ca30c2c839755 to your computer and use it in GitHub Desktop.
Nested-templates
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: 'none',
rootURL: config.rootURL
});
Router.map(function() {
this.route('dashboard', function(){
this.route('projects', function(){
this.route('project', {path:':id'});
});
});
});
export default Router;
import Ember from 'ember';
export default Ember.Route.extend({
});
<p>this is the application.hbs file</p>
<hr/>
{{outlet}}
<p>This dashboard.hbs file</p>
<hr/>
{{outlet}}
<p>This dashboard/index.hbs file</p>
<p>This is the dashboard/projects.hbs</p>
<hr/>
{{outlet}}
<p>This is the dashboard/projects/index.hbs</p>
<p>This is the dashboard/projects/project.hbs</p>
import Ember from 'ember';
export default function destroyApp(application) {
Ember.run(application, 'destroy');
}
import Resolver from '../../resolver';
import config from '../../config/environment';
const resolver = Resolver.create();
resolver.namespace = {
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix
};
export default resolver;
import Ember from 'ember';
import Application from '../../app';
import config from '../../config/environment';
const { run } = Ember;
const assign = Ember.assign || Ember.merge;
export default function startApp(attrs) {
let application;
let attributes = assign({rootElement: "#test-root"}, config.APP);
attributes = assign(attributes, attrs); // use defaults, but you can override;
run(() => {
application = Application.create(attributes);
application.setupForTesting();
application.injectTestHelpers();
});
return application;
}
import resolver from './helpers/resolver';
import {
setResolver
} from 'ember-qunit';
setResolver(resolver);
{
"version": "0.10.6",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.9.0",
"ember-data": "2.9.0",
"ember-template-compiler": "2.9.0",
"ember-testing": "2.9.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment