This project prevents page freezing when displaying long lists and tables.
This is done using auto-inserted | limitTo in ng-repeat.
Page or element scroll is displayed using auto-created element with calculated height.
Demo:
Demo source:
- Add library to your project:
bower install angular-se-delayed-list --save - Add module to your project:
angular.module("seDelayedListDirectiveDemoApp", ["seDelayedList"])... - Add
se-delayed-list directivein element beforeng-repeat(note thatdemoCtrl.limitis a random variable where current limit will be stored and auto-appended to| limitTofilter ):
<div data-se-delayed-list="demoCtrl.limit">
<table class="table table-bordered">
...(data-ng-repeat="expression")...
</table>
</div>- Add 'fill' element to preserve scroll size (
se-delayed-list-fill) next tong-repeat:
<tbody>
<tr data-ng-repeat="user in demoCtrl.users track by user.id">
...
</tr>
<tr data-se-delayed-list-fill="40">
...(add td here - keep correct table structure)...
</tr>
</tbody>- Optionally you can add waiter image:
<tr data-se-delayed-list-fill="40"
style="background: url('https://i1.wp.com/cdnjs.cloudflare.com/ajax/libs/galleriffic/2.0.1/css/loader.gif') center top no-repeat;">
<!-- you can get loader from: http://www.ajaxload.info/ and use classes, not style -->
<td></td>
</tr>jQueryis required -find("[data-ng-repeat]");- works only if
ng-repeatis set withdata-ng-repeat
Developer should have w3c validator, git, npm, grunt and bower installed. These command should be invoked:
webapp$ npm installwebapp$ bower update
Then app can be deployed in any web server.
- MERGE should not be used! Only REBASE (
git pull --rebase) grunt- this will run tests/validators
git add .git commit -m "TRAC_NUMBER TRAC_DESCRIPTION - more information (if needed)"git pull --rebasegruntgit push
To use grunt with the project following environment variables MUST be set (e.g. in ~/.profile):
export SEDELAYEDLIST_W3C_LOCAL_URL=http://10.20.30.140:9980/w3c-validator/check
Where local w3c validator is installed on http://10.20.30.140:9980/w3c-validator/check (outside Setelis LAN - w3c validator should be installed manually - see the section Installing W3C Validator)
- create/find issue
git pull --rebasegrunt watch- implement the selected issue
grunt- this will run tests/validators
git add .git commit -m "NUMBER TRAC_DESCRIPTION - more information (if needed)"git pull --rebasegruntgit push- again
There are several commands:
grunt- validates (tests, static analyzers, html validator) the project
grunt build- builds the project (see the dist/ folder)
w3c free online validator will block your IP if you try to validate project HTMLs many times (this happens usually when modifying html files when grunt watch is started).
How to install w3c validator + HTML5 validator (validator.nu):
Ubuntu 13.10+: there are some issues, see http://askubuntu.com/questions/471523/install-wc3-markup-validator-locally
Short version:
sudo mkdir /etc/apache2/conf.d
sudo apt-get install w3c-markup-validator libapache2-mod-perl2
sudo ln -s /etc/w3c/httpd.conf /etc/apache2/conf-enabled/w3c-markup-validator.conf
sudo gedit /etc/apache2/conf-available/serve-cgi-bin.conf<IfModule mod_alias.c>
<IfModule mod_cgi.c>
Define ENABLE_USR_LIB_CGI_BIN
</IfModule>
<IfModule mod_cgid.c>
Define ENABLE_USR_LIB_CGI_BIN
</IfModule>
<IfModule mod_perl.c>
Define ENABLE_USR_LIB_CGI_BIN
</IfModule>
<IfDefine ENABLE_USR_LIB_CGI_BIN>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Require all granted
</Directory>
</IfDefine>
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Then follow the steps that haven't already been taken in http://blog.simplytestable.com/installing-the-w3c-html-validator-with-html5-support-on-ubuntu/
These should be changed in original tutorial:
- HTML5 = http://localhost:8888
- java should be version 7!
Restart apache when done:
sudo service apache2 restart
For HTML validator you can follow these instructions: http://validator.github.io/validator/#build-instructions