Skip to content

Instantly share code, notes, and snippets.

@kyleshevlin
Created October 19, 2016 18:53
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 kyleshevlin/7842318f5811339ed716029040f5b1d1 to your computer and use it in GitHub Desktop.
Save kyleshevlin/7842318f5811339ed716029040f5b1d1 to your computer and use it in GitHub Desktop.
Contextual Components for Fullpage component for 2s.com
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
panels: [1, 2, 3] // this could be any number of items
});
{{#my-wrap as |w|}}
{{#each panels as |panel|}}
{{#w.section item=panel as |p|}}
{{p.panel}}
{{/w.section}}
{{/each}}
{{#w.section as |f|}}
{{f.mission}}
{{/w.section}}
{{#w.section as |g|}}
{{g.news}}
{{/w.section}}
{{#w.section as |h|}}
{{h.contact}}
{{/w.section}}
{{/my-wrap}}
<p>
And a contact section that goes here.
</p>
<p>
My mission is to figure out how to let my parent component assign indexes to these damn children or some other attribute I can test against and figure out which one is the "active" child component in the viewport!
</p>
<p>
There's a news section in the app here.
</p>
{{yield
(hash
panel=(component 'my-panel' item=item)
mission=(component 'my-mission')
news=(component 'my-news')
contact=(component 'my-contact')
)
}}
<div class="wrap-inner">
{{yield (hash section=(component 'my-section' item=item))}}
</div>
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