Created
February 1, 2022 10:58
-
-
Save mohamedali-s-4725/50d164014c9b8b0b8d5259c79437d3b9 to your computer and use it in GitHub Desktop.
Iterate 1000+ items in each
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Controller from '@ember/controller'; | |
import $ from 'jquery'; | |
import { A } from '@ember/array'; | |
import { set } from '@ember/object'; | |
export default Controller.extend({ | |
count: A(), | |
maxCount: A(), | |
totalCount: 1000, | |
showList: false, | |
paginateLimit: 0, | |
scrollBinded: false, | |
bindScroll(selector, namespace, scroll_function) { | |
let onScroll; | |
set(this, 'scrollBinded', true); | |
onScroll = function(event) { | |
return scroll_function(event); | |
}; | |
let eventName = namespace ? 'scroll.' + namespace : 'scroll'; | |
$(selector).on(eventName, onScroll); | |
}, | |
unbindScroll(selector, namespace) { | |
set(this, 'scrollBinded', false); | |
let eventName = namespace ? 'scroll.' + namespace : 'scroll'; | |
$(selector).off(eventName); | |
}, | |
actions:{ | |
toggleList(enablePaginate){ | |
let self = this; | |
if(enablePaginate){ | |
self.send('allowPaginate'); | |
} | |
if (self.showList){ | |
set(self, 'count', self.count.clear()); | |
set(self, 'paginateLimit', 0); | |
self.unbindScroll('.list-wrapper', null); | |
} else { | |
let arrayList = A(); | |
for(let i=0; i<self.totalCount; i++){ | |
arrayList.push(i+1); | |
} | |
set(self, 'maxCount', arrayList); | |
if (self.paginateLimit){ | |
set(self, 'count', arrayList.slice(0, this.paginateLimit)); | |
} else { | |
set(self, 'count', arrayList); | |
} | |
} | |
set(self, 'showList', !self.showList); | |
}, | |
allowPaginate(){ | |
set(this, 'paginateLimit', this.paginateLimit ? 0 : 15); | |
}, | |
paginateDDList(){ | |
if(this.paginateLimit){ | |
let self = this, | |
scollListElement = $('.list-wrapper')[0]; | |
if(!this.scrollBinded){ | |
self.bindScroll('.list-wrapper', null, function(){ | |
if (scollListElement.clientHeight + scollListElement.scrollTop > (scollListElement.scrollHeight - 15)) { | |
set(self, 'paginateLimit', self.paginateLimit + 10); | |
set(self, 'count', self.maxCount.slice(0, self.paginateLimit)); | |
} | |
if (self.paginateLimit > self.totalCount){ | |
set(self, 'paginateLimit', self.totalCount); | |
self.unbindScroll('.list-wrapper', null); | |
} | |
}); | |
} | |
} | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment