simple but flexible listview module for angular.js, it makes manage a listview with angular.js fairly easy
check this http://codepen.io/yaoyi/pen/xbKAn to get the complete demo
assume that you have a list of data:
$scope.items = [
{
title: "title1",
date: new Date(),
filesize: "45678",
width: "400",
height: "600",
tags: ['wedding','travel'],
thumb: 'cover1.jpg'
},
{
title: "title2",
date: new Date(),
filesize: "1567802",
width: "300",
height: "500",
tags: ['wedding'],
thumb: 'cover2.jpg'
},
{
title: "title3",
date: new Date(),
filesize: "4567822",
width: "400",
height: "500",
tags: ['travel', 'family'],
thumb: 'cover3.jpg'
}
]
you start with showing title/date/filesize, for some reason, you want to add width column to the listview, in this case you have to modify the listview template, even worse if multi listview instances required in one project, which may have different column needs, that would be troublesome. so let's keep it dry with this module
1.include files
<link rel="stylesheet" href="css/listview.css" media="screen" type="text/css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.10/angular.min.js"></script>
<script src="js/listview.js"></script>
2.add codes below
<div
data-listview=""
data-items="items"
data-columns="title, date, filesize">
</div>
var app = angular.module('demo', ['ui.listview']);
app.controller('DemoCtrl', ['$scope', function($scope){
}])
then if needs width info, just change
<div
data-listview=""
data-items="items"
data-columns="title, date, filesize">
</div>
to
<div
data-listview=""
data-items="items"
data-columns="title, date, filesize, width">
</div>
the module allows you to customize the column by adding column templates and passing methods.
for example, use custom method to format the date column.
1.add methods in your controller
function formatDate(dateStr) {
var datetime = new Date(dateStr);
var year = datetime.getFullYear();
var month = datetime.getMonth();
var date = datetime.getDate();
var hours = datetime.getHours();
var minutes = datetime.getMinutes();
var ampm = hours >= 12 ? 'PM' : 'AM';
hours = hours % 12;
hours = hours ? hours : 12;
minutes = minutes < 10 ? '0'+minutes : minutes;
return date + '/' + month + '/' + year + ' ' + hours + ':' + minutes + ampm;
}
2.add this method to $scope.listview
$scope.listview = {}
$scope.listview.methods = {
date: formatDate
}
3.pass listview.methods to module
<div
data-listview=""
data-items="items"
data-columns="title, date, filesize"
data-methods="listview.methods">
</div>
change color of date column to red
<script type="text/ng-template" id="column-date.html">
<span style="color:red;">{{_format(column,item)}}</span>
</script>
or change styles of tag column
<script type="text/ng-template" id="column-tags.html">
<div ng-repeat="tag in item[column]" class="tag">
<span>{{tag}}</span>
</div>
</script>
The MIT License
Copyright (c) 2013 yaoyi, https://github.com/yaoyi
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.