Skip to content

Instantly share code, notes, and snippets.

@scottmessinger
Created July 11, 2012 15:28
Show Gist options
  • Save scottmessinger/3091133 to your computer and use it in GitHub Desktop.
Save scottmessinger/3091133 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
window.App = Ember.Application.create();
WEEKDAYS = []
WEEKDAYS.push(DATES['2012'].weekdays)
WEEKDAYS.push(DATES['2013'].weekdays)
App.store = DS.Store.create({
revision: 4
// , adapter: DS.RESTAdapter.create({ bulkCommit: false })
});
App.Course = DS.Model.extend({
title: DS.attr('string'),
nodeTrees: DS.hasMany('App.Node', { embedded: true, key: 'nodeTrees' } ),
flatTree: function(){
var flat = []
var nodeTrees = this.get('nodeTrees')
console.time('level0 - ember')
flat[0] = nodeTrees.filter(function(d){ if (d.get('depth') == 0) {return true; } })
console.timeEnd('level0 - ember')
console.time('level0 - lodash')
test = _.filter(COURSE[0].nodeTrees, function(d){ if (d.depth === 0) {return true; } })
console.log(test)
console.timeEnd('level0 - lodash')
console.log(test)
flat[1] = nodeTrees.filter(function(d){ if (d.get('depth') == 1) {return true; } })
flat[2] = nodeTrees.filter(function(d){ if (d.get('depth') == 2) {return true; } })
return flat
}.property('nodeTrees'),
calendar: function(){
}.property('')
})
App.Node = DS.Model.extend({
title: DS.attr('string'),
depth: DS.attr('number'),
length: DS.attr('number'),
type: DS.attr('string'),
nodes: DS.hasMany('App.Node')
})
App.nodeController = Ember.ArrayController.create({
})
App.nodeView = Ember.View.extend({
controller: App.nodeController
})
App.store.loadMany(App.Course, COURSE)
})
COURSE = [{
"id" : 1,
"title": "Test course",
"days_off": [1346112000, 1346716800, 1347321600, 1347926400, 1348531200, 1349136000, 1349740800, 1350345600, 1350950400, 1351555200, 1352160000, 1352764800, 1353369600, 1353974400, 1354579200, 1355184000, 1355788800, 1356393600, 1356998400, 1357603200, 1358208000, 1358812800, 1359417600, 1360022400, 1360627200, 1361232000, 1361836800, 1362441600, 1363046400, 1363651200, 1364256000, 1364860800, 1365465600, 1366070400, 1366675200, 1367280000, 1367884800, 1368489600, 1369094400, 1369699200, 1370304000, 1370908800, 1371513600, 1372118400, 1372723200, 1373328000, 1373932800, 1374537600, 1375142400, 1375747200, 1376352000, 1376956800, 1377561600, 1378166400, 1378771200, 1379376000, 1379980800, 1380585600, 1381190400, 1381795200, 1382400000, 1383004800, 1383609600, 1384214400, 1384819200, 1385424000, 1386028800, 1386633600, 1387238400, 1387843200, 1388448000],
"course_start": 1346025600,
"nodeTrees": [
{
"id": 1111,
"title": "ROOT",
"type": "root",
"depth": null,
"nodes": [ 1, 2, 3, 4 ]
},
{
"id": 1,
"title": "Unit A",
"type": "unit",
"length": 40,
"depth": 0,
"nodes": [11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50 ]
},
{
"id": 2,
"title": "Unit B",
"type": "unit",
"length": 50,
"depth": 0,
"nodes": [51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100]
},
{
"id": 3,
"title": "Unit C",
"type": "unit",
"length": 50,
"depth": 0,
"nodes": [101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150]
},
{
"id": 4,
"title": "Unit D",
"type": "unit",
"length": 50,
"depth": 0,
"nodes": [151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200]
},
{
"id": 11,
"title": "Lesson A",
"length": 1,
"depth": 1
},
{
"id": 12,
"title": "Lesson B",
"length": 1,
"depth": 1
},
{
"id": 13,
"title": "Lesson C",
"length": 1,
"depth": 1
},
{
"id": 14,
"title": "Lesson D",
"length": 1,
"depth": 1
},
{
"id": 15,
"title": "Lesson E",
"length": 1,
"depth": 1
},
{
"id": 16,
"title": "Lesson F",
"length": 1,
"depth": 1
},
{
"id": 17,
"title": "Lesson G",
"length": 1,
"depth": 1
},
{
"id": 18,
"title": "Lesson H",
"length": 1,
"depth": 1
},
{
"id": 19,
"title": "Lesson I",
"length": 1,
"depth": 1
},
{
"id": 20,
"title": "Lesson J",
"length": 1,
"depth": 1
},
{
"id": 21,
"title": "Lesson K",
"length": 1,
"depth": 1
},
{
"id": 22,
"title": "Lesson L",
"length": 1,
"depth": 1
},
{
"id": 23,
"title": "Lesson I",
"length": 1,
"depth": 1
},
{
"id": 24,
"title": "Lesson J",
"length": 1,
"depth": 1
},
{
"id": 25,
"title": "Lesson K",
"length": 1,
"depth": 1
},
{
"id": 26,
"title": "Lesson L",
"length": 1,
"depth": 1
},
{
"id": 27,
"title": "Lesson M",
"length": 1,
"depth": 1
},
{
"id": 28,
"title": "Lesson N",
"length": 1,
"depth": 1
},
{
"id": 29,
"title": "Lesson O",
"length": 1,
"depth": 1
},
{
"id": 30,
"title": "Lesson P",
"length": 1,
"depth": 1
},
{
"id": 31,
"title": "Lesson Q",
"length": 1,
"depth": 1
},
{
"id": 32,
"title": "Lesson R",
"length": 1,
"depth": 1
},
{
"id": 33,
"title": "Lesson S",
"length": 1,
"depth": 1
},
{
"id": 34,
"title": "Lesson T",
"length": 1,
"depth": 1
},
{
"id": 35,
"title": "Lesson U",
"length": 1,
"depth": 1
},
{
"id": 36,
"title": "Lesson V",
"length": 1,
"depth": 1
},
{
"id": 37,
"title": "Lesson W",
"length": 1,
"depth": 1
},
{
"id": 38,
"title": "Lesson X",
"length": 1,
"depth": 1
},
{
"id": 39,
"title": "Lesson Y",
"length": 1,
"depth": 1
},
{
"id": 40,
"title": "Lesson Z",
"length": 1,
"depth": 1
},
{
"id": 41,
"title": "Lesson AA",
"length": 1,
"depth": 1
},
{
"id": 42,
"title": "Lesson BB",
"length": 1,
"depth": 1
},
{
"id": 43,
"title": "Lesson CC",
"length": 1,
"depth": 1
},
{
"id": 44,
"title": "Lesson DD",
"length": 1,
"depth": 1
},
{
"id": 45,
"title": "Lesson EE",
"length": 1,
"depth": 1
},
{
"id": 46,
"title": "Lesson FF",
"length": 1,
"depth": 1
},
{
"id": 47,
"title": "Lesson GG",
"length": 1,
"depth": 1
},
{
"id": 48,
"title": "Lesson HH",
"length": 1,
"depth": 1
},
{
"id": 49,
"title": "Lesson II",
"length": 1,
"depth": 1
},
{
"id": 50,
"title": "Lesson JJ",
"length": 1,
"depth": 1
},
{
"id": 51,
"title": "Lesson A",
"length": 1,
"depth": 1
},
{
"id": 52,
"title": "Lesson B",
"length": 1,
"depth": 1
},
{
"id": 53,
"title": "Lesson C",
"length": 1,
"depth": 1
},
{
"id": 54,
"title": "Lesson D",
"length": 1,
"depth": 1
},
{
"id": 55,
"title": "Lesson E",
"length": 1,
"depth": 1
},
{
"id": 56,
"title": "Lesson F",
"length": 1,
"depth": 1
},
{
"id": 57,
"title": "Lesson G",
"length": 1,
"depth": 1
},
{
"id": 58,
"title": "Lesson H",
"length": 1,
"depth": 1
},
{
"id": 59,
"title": "Lesson I",
"length": 1,
"depth": 1
},
{
"id": 60,
"title": "Lesson J",
"length": 1,
"depth": 1
},
{
"id": 61,
"title": "Lesson K",
"length": 1,
"depth": 1
},
{
"id": 62,
"title": "Lesson L",
"length": 1,
"depth": 1
},
{
"id": 63,
"title": "Lesson I",
"length": 1,
"depth": 1
},
{
"id": 64,
"title": "Lesson J",
"length": 1,
"depth": 1
},
{
"id": 65,
"title": "Lesson K",
"length": 1,
"depth": 1
},
{
"id": 66,
"title": "Lesson L",
"length": 1,
"depth": 1
},
{
"id": 67,
"title": "Lesson M",
"length": 1,
"depth": 1
},
{
"id": 68,
"title": "Lesson N",
"length": 1,
"depth": 1
},
{
"id": 69,
"title": "Lesson O",
"length": 1,
"depth": 1
},
{
"id": 70,
"title": "Lesson P",
"length": 1,
"depth": 1
},
{
"id": 71,
"title": "Lesson Q",
"length": 1,
"depth": 1
},
{
"id": 72,
"title": "Lesson R",
"length": 1,
"depth": 1
},
{
"id": 73,
"title": "Lesson S",
"length": 1,
"depth": 1
},
{
"id": 74,
"title": "Lesson T",
"length": 1,
"depth": 1
},
{
"id": 75,
"title": "Lesson U",
"length": 1,
"depth": 1
},
{
"id": 76,
"title": "Lesson V",
"length": 1,
"depth": 1
},
{
"id": 77,
"title": "Lesson W",
"length": 1,
"depth": 1
},
{
"id": 78,
"title": "Lesson X",
"length": 1,
"depth": 1
},
{
"id": 79,
"title": "Lesson Y",
"length": 1,
"depth": 1
},
{
"id": 80,
"title": "Lesson Z",
"length": 1,
"depth": 1
},
{
"id": 81,
"title": "Lesson AA",
"length": 1,
"depth": 1
},
{
"id": 82,
"title": "Lesson BB",
"length": 1,
"depth": 1
},
{
"id": 83,
"title": "Lesson CC",
"length": 1,
"depth": 1
},
{
"id": 84,
"title": "Lesson DD",
"length": 1,
"depth": 1
},
{
"id": 85,
"title": "Lesson EE",
"length": 1,
"depth": 1
},
{
"id": 86,
"title": "Lesson FF",
"length": 1,
"depth": 1
},
{
"id": 87,
"title": "Lesson GG",
"length": 1,
"depth": 1
},
{
"id": 88,
"title": "Lesson HH",
"length": 1,
"depth": 1
},
{
"id": 89,
"title": "Lesson II",
"length": 1,
"depth": 1
},
{
"id": 90,
"title": "Lesson JJ",
"length": 1,
"depth": 1
},
{
"id": 91,
"title": "Lesson KK",
"length": 1,
"depth": 1
},
{
"id": 92,
"title": "Lesson LL",
"length": 1,
"depth": 1
},
{
"id": 93,
"title": "Lesson MM",
"length": 1,
"depth": 1
},
{
"id": 94,
"title": "Lesson NN",
"length": 1,
"depth": 1
},
{
"id": 95,
"title": "Lesson OO",
"length": 1,
"depth": 1
},
{
"id": 96,
"title": "Lesson PP",
"length": 1,
"depth": 1
},
{
"id": 97,
"title": "Lesson QQ",
"length": 1,
"depth": 1
},
{
"id": 98,
"title": "Lesson RR",
"length": 1,
"depth": 1
},
{
"id": 99,
"title": "Lesson SS",
"length": 1,
"depth": 1
},
{
"id": 100,
"title": "Lesson TT",
"length": 1,
"depth": 1
},
{
"id": 101,
"title": "Lesson A",
"length": 1,
"depth": 1
},
{
"id": 102,
"title": "Lesson B",
"length": 1,
"depth": 1
},
{
"id": 103,
"title": "Lesson C",
"length": 1,
"depth": 1
},
{
"id": 104,
"title": "Lesson D",
"length": 1,
"depth": 1
},
{
"id": 105,
"title": "Lesson E",
"length": 1,
"depth": 1
},
{
"id": 106,
"title": "Lesson F",
"length": 1,
"depth": 1
},
{
"id": 107,
"title": "Lesson G",
"length": 1,
"depth": 1
},
{
"id": 108,
"title": "Lesson H",
"length": 1,
"depth": 1
},
{
"id": 109,
"title": "Lesson I",
"length": 1,
"depth": 1
},
{
"id": 110,
"title": "Lesson J",
"length": 1,
"depth": 1
},
{
"id": 111,
"title": "Lesson K",
"length": 1,
"depth": 1
},
{
"id": 112,
"title": "Lesson L",
"length": 1,
"depth": 1
},
{
"id": 113,
"title": "Lesson I",
"length": 1,
"depth": 1
},
{
"id": 114,
"title": "Lesson J",
"length": 1,
"depth": 1
},
{
"id": 115,
"title": "Lesson K",
"length": 1,
"depth": 1
},
{
"id": 116,
"title": "Lesson L",
"length": 1,
"depth": 1
},
{
"id": 117,
"title": "Lesson M",
"length": 1,
"depth": 1
},
{
"id": 118,
"title": "Lesson N",
"length": 1,
"depth": 1
},
{
"id": 119,
"title": "Lesson O",
"length": 1,
"depth": 1
},
{
"id": 120,
"title": "Lesson P",
"length": 1,
"depth": 1
},
{
"id": 121,
"title": "Lesson Q",
"length": 1,
"depth": 1
},
{
"id": 122,
"title": "Lesson R",
"length": 1,
"depth": 1
},
{
"id": 123,
"title": "Lesson S",
"length": 1,
"depth": 1
},
{
"id": 124,
"title": "Lesson T",
"length": 1,
"depth": 1
},
{
"id": 125,
"title": "Lesson U",
"length": 1,
"depth": 1
},
{
"id": 126,
"title": "Lesson V",
"length": 1,
"depth": 1
},
{
"id": 127,
"title": "Lesson W",
"length": 1,
"depth": 1
},
{
"id": 128,
"title": "Lesson X",
"length": 1,
"depth": 1
},
{
"id": 129,
"title": "Lesson Y",
"length": 1,
"depth": 1
},
{
"id": 130,
"title": "Lesson Z",
"length": 1,
"depth": 1
},
{
"id": 131,
"title": "Lesson AA",
"length": 1,
"depth": 1
},
{
"id": 132,
"title": "Lesson BB",
"length": 1,
"depth": 1
},
{
"id": 133,
"title": "Lesson CC",
"length": 1,
"depth": 1
},
{
"id": 134,
"title": "Lesson DD",
"length": 1,
"depth": 1
},
{
"id": 135,
"title": "Lesson EE",
"length": 1,
"depth": 1
},
{
"id": 136,
"title": "Lesson FF",
"length": 1,
"depth": 1
},
{
"id": 137,
"title": "Lesson GG",
"length": 1,
"depth": 1
},
{
"id": 138,
"title": "Lesson HH",
"length": 1,
"depth": 1
},
{
"id": 139,
"title": "Lesson II",
"length": 1,
"depth": 1
},
{
"id": 140,
"title": "Lesson JJ",
"length": 1,
"depth": 1
},
{
"id": 141,
"title": "Lesson KK",
"length": 1,
"depth": 1
},
{
"id": 142,
"title": "Lesson LL",
"length": 1,
"depth": 1
},
{
"id": 143,
"title": "Lesson MM",
"length": 1,
"depth": 1
},
{
"id": 144,
"title": "Lesson NN",
"length": 1,
"depth": 1
},
{
"id": 145,
"title": "Lesson OO",
"length": 1,
"depth": 1
},
{
"id": 146,
"title": "Lesson PP",
"length": 1,
"depth": 1
},
{
"id": 147,
"title": "Lesson QQ",
"length": 1,
"depth": 1
},
{
"id": 148,
"title": "Lesson RR",
"length": 1,
"depth": 1
},
{
"id": 149,
"title": "Lesson SS",
"length": 1,
"depth": 1
},
{
"id": 150,
"title": "Lesson TT",
"length": 1,
"depth": 1
},
{
"id": 151,
"title": "Lesson A",
"length": 1,
"depth": 1
},
{
"id": 152,
"title": "Lesson B",
"length": 1,
"depth": 1
},
{
"id": 153,
"title": "Lesson C",
"length": 1,
"depth": 1
},
{
"id": 154,
"title": "Lesson D",
"length": 1,
"depth": 1
},
{
"id": 155,
"title": "Lesson E",
"length": 1,
"depth": 1
},
{
"id": 156,
"title": "Lesson F",
"length": 1,
"depth": 1
},
{
"id": 157,
"title": "Lesson G",
"length": 1,
"depth": 1
},
{
"id": 158,
"title": "Lesson H",
"length": 1,
"depth": 1
},
{
"id": 159,
"title": "Lesson I",
"length": 1,
"depth": 1
},
{
"id": 160,
"title": "Lesson J",
"length": 1,
"depth": 1
},
{
"id": 161,
"title": "Lesson K",
"length": 1,
"depth": 1
},
{
"id": 162,
"title": "Lesson L",
"length": 1,
"depth": 1
},
{
"id": 163,
"title": "Lesson I",
"length": 1,
"depth": 1
},
{
"id": 164,
"title": "Lesson J",
"length": 1,
"depth": 1
},
{
"id": 165,
"title": "Lesson K",
"length": 1,
"depth": 1
},
{
"id": 166,
"title": "Lesson L",
"length": 1,
"depth": 1
},
{
"id": 167,
"title": "Lesson M",
"length": 1,
"depth": 1
},
{
"id": 168,
"title": "Lesson N",
"length": 1,
"depth": 1
},
{
"id": 169,
"title": "Lesson O",
"length": 1,
"depth": 1
},
{
"id": 170,
"title": "Lesson P",
"length": 1,
"depth": 1
},
{
"id": 171,
"title": "Lesson Q",
"length": 1,
"depth": 1
},
{
"id": 172,
"title": "Lesson R",
"length": 1,
"depth": 1
},
{
"id": 173,
"title": "Lesson S",
"length": 1,
"depth": 1
},
{
"id": 174,
"title": "Lesson T",
"length": 1,
"depth": 1
},
{
"id": 175,
"title": "Lesson U",
"length": 1,
"depth": 1
},
{
"id": 176,
"title": "Lesson V",
"length": 1,
"depth": 1
},
{
"id": 177,
"title": "Lesson W",
"length": 1,
"depth": 1
},
{
"id": 178,
"title": "Lesson X",
"length": 1,
"depth": 1
},
{
"id": 179,
"title": "Lesson Y",
"length": 1,
"depth": 1
},
{
"id": 180,
"title": "Lesson Z",
"length": 1,
"depth": 1
},
{
"id": 181,
"title": "Lesson AA",
"length": 1,
"depth": 1
},
{
"id": 182,
"title": "Lesson BB",
"length": 1,
"depth": 1
},
{
"id": 183,
"title": "Lesson CC",
"length": 1,
"depth": 1
},
{
"id": 184,
"title": "Lesson DD",
"length": 1,
"depth": 1
},
{
"id": 185,
"title": "Lesson EE",
"length": 1,
"depth": 1
},
{
"id": 186,
"title": "Lesson FF",
"length": 1,
"depth": 1
},
{
"id": 187,
"title": "Lesson GG",
"length": 1,
"depth": 1
},
{
"id": 188,
"title": "Lesson HH",
"length": 1,
"depth": 1
},
{
"id": 189,
"title": "Lesson II",
"length": 1,
"depth": 1
},
{
"id": 190,
"title": "Lesson JJ",
"length": 1,
"depth": 1
},
{
"id": 191,
"title": "Lesson KK",
"length": 1,
"depth": 1
},
{
"id": 192,
"title": "Lesson LL",
"length": 1,
"depth": 1
},
{
"id": 193,
"title": "Lesson MM",
"length": 1,
"depth": 1
},
{
"id": 194,
"title": "Lesson NN",
"length": 1,
"depth": 1
},
{
"id": 195,
"title": "Lesson OO",
"length": 1,
"depth": 1
},
{
"id": 196,
"title": "Lesson PP",
"length": 1,
"depth": 1
},
{
"id": 197,
"title": "Lesson QQ",
"length": 1,
"depth": 1
},
{
"id": 198,
"title": "Lesson RR",
"length": 1,
"depth": 1
},
{
"id": 199,
"title": "Lesson SS",
"length": 1,
"depth": 1
},
{
"id": 200,
"title": "Lesson TT",
"length": 1,
"depth": 1
}
]
}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment