Programming Steps
Step-By-Step Programming For Beginners
Auto-Codes
C Language
Cobol 85 Language
ColdFusion Language
Cordova
HTML5
Java Language
Mobile
Objective-C Language
PhoneGap
PHP
Python Language
Ruby Language
Learn the powerful enterprise adaptable database:
Getting Started With ADABAS & Natural
Friday, June 2, 2017
220 Ionic-v1 Collection-Repeat: 1.0.0-beta.9
Collection-Repeat: 1.0.0-beta.9
code example:
<html ng-app="contactsApp"> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title>Collection-Repeat: Early Preview</title> <link href="https://code.ionicframework.com/1.0.0-beta.9/css/ionic.css" rel="stylesheet"> <script src="https://code.ionicframework.com/1.0.0-beta.9/js/ionic.bundle.js"></script> <style> .button.button-icon.input-button { position: absolute; right: 0; top: 5px; color: #bbb; } .item img { height: 60px; width: 60px; float: left; margin-top: 20px; margin-right: 10px; } .list .my-item.item { left: 0; right: 0; padding-top: 0; padding-bottom: 0; } </style> </head> <body ng-controller="MainCtrl"> <ion-header-bar class="bar-positive"> <h1 class="title">3000 Contacts</h1> <div class="button" ng-click="scrollBottom()"> Scroll To Bottom </div> </ion-header-bar> <ion-header-bar class="bar-light bar-subheader"> <input type="search" placeholder="Filter contacts..." ng-model="search" ng-focus="searchFocused = true" ng-blur="searchFocused = false" ng-change="scrollTop()"> <button ng-if="search.length" class="button button-icon ion-android-close input-button" ng-click="clearSearch()"> </button> </ion-header-bar> <ion-content> <div class="list"> <a class="item my-item" collection-repeat="item in getContacts()" collection-item-height="getItemHeight(item)" collection-item-width="getItemWidth(item)" ng-href="https://www.google.com/#q={{item.first_name + '+' + item.last_name}}" ng-style="{'line-height': getItemHeight(item) + 'px'}" ng-class="{'item-divider': item.isLetter}"> <img ng-if="!item.isLetter" ng-src="http://placekitten.com/60/{{55 + ($index % 10)}}"> {{item.letter || (item.first_name+' '+item.last_name)}} </a> </div> </ion-content> <script> angular.module('contactsApp', ['ionic']) .controller('MainCtrl', function($scope, $ionicScrollDelegate, filterFilter) { var letters = $scope.letters = []; var contacts = $scope.contacts = []; var currentCharCode = 'A'.charCodeAt(0) - 1; //window.CONTACTS is defined below window.CONTACTS .sort(function(a, b) { return a.last_name > b.last_name ? 1 : -1; }) .forEach(function(person) { //Get the first letter of the last name, and if the last name changes //put the letter in the array var personCharCode = person.last_name.toUpperCase().charCodeAt(0); //We may jump two letters, be sure to put both in //(eg if we jump from Adam Bradley to Bob Doe, add both C and D) var difference = personCharCode - currentCharCode; for (var i = 1; i <= difference; i++) { addLetter(currentCharCode + i); } currentCharCode = personCharCode; contacts.push(person); }); //If names ended before Z, add everything up to Z for (var i = currentCharCode + 1; i <= 'Z'.charCodeAt(0); i++) { addLetter(i); } function addLetter(code) { var letter = String.fromCharCode(code); contacts.push({ isLetter: true, letter: letter }); letters.push(letter); } //Letters are shorter, everything else is 52 pixels $scope.getItemHeight = function(item) { return item.isLetter ? 40 : 100; }; $scope.getItemWidth = function(item) { return '100%'; }; $scope.scrollBottom = function() { $ionicScrollDelegate.scrollBottom(true); }; var letterHasMatch = {}; $scope.getContacts = function() { letterHasMatch = {}; //Filter contacts by $scope.search. //Additionally, filter letters so that they only show if there //is one or more matching contact return contacts.filter(function(item) { var itemDoesMatch = !$scope.search || item.isLetter || item.first_name.toLowerCase().indexOf($scope.search.toLowerCase()) > -1 || item.last_name.toLowerCase().indexOf($scope.search.toLowerCase()) > -1; //Mark this person's last name letter as 'has a match' if (!item.isLetter && itemDoesMatch) { var letter = item.last_name.charAt(0).toUpperCase(); letterHasMatch[letter] = true; } return itemDoesMatch; }).filter(function(item) { //Finally, re-filter all of the letters and take out ones that don't //have a match if (item.isLetter && !letterHasMatch[item.letter]) { return false; } return true; }); }; $scope.clearSearch = function() { $scope.search = ''; }; }); window.CONTACTS = [{"id":1,"first_name":"Patrick","last_name":"Rogers","country":"Cyprus","email":"progers@yata.net"}, {"id":2,"first_name":"Janet","last_name":"Gordon","country":"Croatia","email":"jgordon@skivee.biz"}, {"id":3,"first_name":"Kathy","last_name":"Hamilton","country":"Armenia","email":"khamilton@rhynyx.biz"}, {"id":4,"first_name":"Stephanie","last_name":"Johnson","country":"Mauritius","email":"sjohnson@jabbertype.mau"} ]; </script> </body> </html>
See the Pen
Collection-Repeat: 1.0.0-beta.9
by Ionic (
@ionic
) on
CodePen
.
https://codepen.io/ionic/pens/public/
201706,20170602
Related Posts:
314 ionic-v1 Ionic Slide Tab
313 ionic-v1 Custom Loading Bar
312 ionic-v1 Ionic Simple Progress ...
Ionic V1 Project My Club
315 ionic-v1 Ionic Tinder Cards 2
Related Posts Widget
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment