Skip to content

Instantly share code, notes, and snippets.

@ngouy
Last active July 2, 2018 16:05
Show Gist options
  • Save ngouy/0109e442611d64e9b87142694dc69a4e to your computer and use it in GitHub Desktop.
Save ngouy/0109e442611d64e9b87142694dc69a4e to your computer and use it in GitHub Desktop.
infinite load
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
idxs: [1, 2, 3, 4],
});
import EmberRouter from '@ember/routing/router';
import config from './config/environment';
const Router = EmberRouter.extend({
location: 'none',
rootURL: config.rootURL
});
Router.map(function() {
[1, 2, 3, 4].forEach(idx => {
this.route(`page-${idx}`);
});
});
export default Router;
welcome<br>
<br>
{{outlet}}
<br><br>
{{#each idxs as |idx|}}
{{#link-to (concat 'page-' idx)}}
page {{idx}}<br>
{{/link-to}}
{{/each}}
click on one top link, it will insert a new { {content-for "body"} }<br>
In a true ember dev environment, it does it without a click, and infinite insert many and many content-for body as soon as the url with wrong content is reached, until it crash or it's killed
<br><br>
unexisting component
{{#each idxs as |idx|}}
{{#nope-to (concat 'page-' idx)}}
page {{idx}}<br>
{{/nope-to}}
{{/each}}
<br><br>
{
"version": "0.15.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.2.2",
"ember-template-compiler": "3.2.2",
"ember-testing": "3.2.2"
},
"addons": {
"ember-data": "3.2.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment