• Stars
    star
    1,098
  • Rank 42,084 (Top 0.9 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 11 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A lightweight masonry-like grid for AngularJS.

angular-deckgrid

A lightweight masonry-like grid for AngularJS.

Website / Demo

Installation

  1. bower install --save angular-deckgrid

  2. Include angular-deckgrid in your HTML.

    <script src="<your-bower-components>/angular-deckgrid/angular-deckgrid.js"></script>
  3. Inject the angular-deckgrid module in your application.

    angular.module('your.module', [
        'akoenig.deckgrid'
    ]);

Usage

The directive does not depend on the visual representation. All the responsiveness and beauty comes from your CSS file. But wait a second. Let's take a look how the directive will be integrated. An example:

<div deckgrid source="photos" cardTemplate="templates/deckgrid-card.html" class="deckgrid"></div>

Okay, we assume that you have a collection of photos and you want to display these in a deckgrid, where every photo provides a name and a source URL. The internal structure of this collection is completely up to you. You can use any collection structure you want. No restrictions at all.

The attributes

  • source: The collection of objects that should be passed into your deckgrid (by reference. Object change will be reflected in the grid).
  • cardTemplate: The URL to the template which represents one single card in the deckgrid.

Alternative ways to provide the template

  • cardTemplateString attribute: You can provide this attribute instead of the cardTemplate attribute to use the attribute value directly as the template. Example:

    <div deckgrid class="deckgrid" source="photos" cardTemplateString="<p>{{card.title}}</p>"></div>
  • No template attribute: if you omit a template attribute (cardTemplate and cardTemplateString), the inner HTML of the directive will be used as the template, like in:

    <div deckgrid class="deckgrid" source="photos">
        <div class="a-card">
            <h1>{{card.title}}</h1>
    
            <img src="" data-ng-src="{{card.src}}">
        </div>
    </div>

Note: if you use one of these alternative ways to provide the card template, you don't have to use an external template file. However, using such a file is recommended, esp. for more complex templates.

A complete example: Photogrid

Okay, you have your controller ready and your template is fine so far. The only thing what is missing is a flexible grid. Let's start!

Your possible data structure

$scope.photos = [
    {id: 'p1', 'title': 'A nice day!', src: "http://lorempixel.com/300/400/"},
    {id: 'p2', 'title': 'Puh!', src: "http://lorempixel.com/300/400/sports"},
    {id: 'p3', 'title': 'What a club!', src: "http://lorempixel.com/300/400/nightlife"}
];

Your possible card template (it is completely up to you)

<div class="a-card">
    <h1>{{card.title}}</h1>

    <img src="" data-ng-src="{{card.src}}">
</div>

Accessing the card's index

In order to use the index of the current card from within the card's template, use the $index property of the card object, like:

<span>{{card.$index}}</span>

This index reflects the index of the corresponding object in the source collection.

That's all! Ehm, no. If you run your application now, you will notice that there is only one column. What is missing? Well, we have to define the configuration for the visual representation. And what is the best place for something like this? Yes, for sure! Your CSS file(s).

The grid configuration

The grid items will be distributed by your configured CSS selectors. An example:

.deckgrid[deckgrid]::before {
    /* Specifies that the grid should have a maximum of 4 columns. Each column will have the classes 'column' and 'column-1-4' */
    content: '4 .column.column-1-4';
    font-size: 0; /* See https://github.com/akoenig/angular-deckgrid/issues/14#issuecomment-35728861 */
    visibility: hidden;
}

.deckgrid .column {
    float: left;
}

.deckgrid .column-1-4 {
    width: 25%;
}

The responsiveness

In order to support different grid representations for different screen sizes, you can define the respective media queries like:

.deckgrid .column-1-1 {
    width: 100%;
}

@media screen and (max-width: 480px){
    .deckgrid[deckgrid]::before {
        content: '1 .column.column-1-1';
    }
}
...

This will define that for a device with a maximum screen width of 480px, only one column should be used. As I mentioned before. It is completely up to you how to define the column sizes. Go crazy. Although this example represents an adaptive kind of layout you are able to realize a responsive layout as well. The module is for the segmentation part, you have the full control over your layout.

Scope

You may wonder why it is not possible to access your scope in the card template. The angular-deckgrid uses directives of AngularJS internally which creates new scopes. To avoid the "anti-pattern" of using "$parent.$parent.$parent.yourFunction()" in the card template, the angular-deckgrid provides a shortcut mother.* which points to your scope. An example:

<button data-ng-click="mother.doSomething()">Click me!</button>

A click on this button would execute the doSomething() function in your scope.

In action

Do you use the angular-deckgrid and would like to be featured here? Just send me an email and I will add you and your application to this list.

  • raindrop.io: "Smart bookmarks - A beautiful way to remember the most important"
  • infowrap.com: "An infowrap is engineered to hold everything people need together on a single page and keep them up to date."
  • theonegenerator.com: "This webapp is designed to any user in need of randomly generated data for testing cases, gaming and lottery spins."
  • vazoo.de: "Vazoo - Der Beauty-Preisvergleich"
  • vitaliator.com: "Vitaliator - Das Fitnessnetzwerk"

Changelog

Version 0.6.0 (Future)

  • Open: [Bugfix] We need a solution to prevent the model binding for innerHTML templates (e.g. ngIf not working) #44

Version 0.5.0 (20141031)

  • Upgraded AngularJS dependency in bower.json (v1.3.0).
  • Changed the collection comparison which triggers the repaint (see #48).
  • Switched from $watch to $watchCollection to gain a bit more performance (see #56).
  • Ported the ordinary undefined checks to AngularJS standard functions.

Version 0.4.4 (20140514)

  • Merged #47
  • Merged #51

Version 0.4.3 (20140422)

  • [Bugfix] OnMediaQueryChange Listeners not being removed onDestroy. #35

Version 0.4.2 (20140422)

  • [Bugfix] Problems with device orientation #46

Version 0.4.1 (20140317)

  • [Bugfix] If model is not ready by rendering, there's an error #31
  • [Feature] Multiple grids on page with cardTemplateString use the last template available #33

Version 0.4.0 (20140224)

  • [Feature] Functionality for passing inline templates.

Version 0.3.0 (20140220)

  • [Feature] It is now possible to access the index of a card from within the card's template. This is accessible via the $index property of the card reference like {{card.$index}}.

Version 0.2.3 (20140215)

  • [Bugfix] If rule.cssRules is undefined, the style investigation should always exit.

Version 0.2.2 (20140214)

  • [Bugfix] Implemented check for the case if the selectorText of the css rules is undefined.

Version 0.2.1 (20131127)

  • [Feature] There are some directives in the template of the angular-deckgrid, which creates new scopes. In order to access the parent scope which is responsible for embedding the angular-deckgrid directive, this release contains a shortcut for accessing your scope ({{mother.*}}).

Version 0.2.0 (20131123)

  • [Feature] Better event handling of media query changes.

Version 0.1.1 (20131122)

  • [Feature] Added log message for the case when the CSS configuration is not available (#1)

Version 0.1.0 (20131121)

  • Initial release. Functionality for rendering grids.

Credits

  • All the people who made outstanding contributions to the angular-deckgrid so far.
  • AngularJS Needless to say. You know the beast. One of the best frontend frameworks in the world.
  • Rolando Murillo and Giorgio Leveroni, the guys behind salvattore who inspired me to implement a similar solution for the AngularJS world.

Author

Copyright 2013 - 2014, André König ([email protected])

More Repositories

1

imacss

An application and library that transforms image files to data URIs and embeds them into a single CSS file.
JavaScript
403
star
2

prisma-kubernetes-deployment

Demo how to deploy a Prisma server to a Kubernetes cluster.
88
star
3

codegrabber

A simple way of pulling in remote content.
JavaScript
86
star
4

express-lingua

An i18n middleware for the Express.js framework.
JavaScript
67
star
5

kast

An UDP multicast framework.
JavaScript
56
star
6

npm-run.plugin.zsh

Autocompletion support for `npm run`.
Shell
54
star
7

gulp-svg2png

A gulp plugin for converting SVGs to PNGs.
TypeScript
54
star
8

cinnamon

A lightweight continuous integration server for Node.js applications.
JavaScript
38
star
9

gulp.plugin.zsh

Autocompletion support for your gulp.js tasks (zsh).
Shell
32
star
10

ninit

Community-driven module bootstrapper with a focus on sharing personal best practices.
JavaScript
22
star
11

github-trending

A library for fetching the current trending repositories on GitHub.
JavaScript
22
star
12

prisma-docker-compose

Demonstrates how to start a Prisma cluster (MySQL + Prisma) via Docker Compose
18
star
13

jutebag

A command line interface for Pocket a.k.a. getpocket.com a.k.a. Read It Later
JavaScript
15
star
14

pulumi-hcloud

Provider for using Pulumi with Hetzner Cloud
Go
10
star
15

adhoc

Opinionated higher-order component for establishing ad-hoc stream-based unidirectional data flows
JavaScript
10
star
16

fuchur

Fuchur analyzes the status of all your git repositories at once.
JavaScript
9
star
17

dots

Modular dotfiles manager
Shell
7
star
18

helm-prisma

A Helm Chart for easily installing Prisma on a Kubernetes cluster.
6
star
19

eventastic

An event store on top of RethinkDB.
TypeScript
5
star
20

boilerplate-redux-react

My personal redux + react boilerplate.
JavaScript
5
star
21

remix-observable-file-upload-demo

TypeScript
4
star
22

gulp-imacss

A gulp plugin for using imacss (the image to datauri to CSS transformer).
JavaScript
4
star
23

minerva-game

minerva ist eine digitale Version des im Jahre 1957 erstmals erschienenen Brettspiels "Risiko".
Java
3
star
24

laessig

A little tool belt which provides helpers for your day-to-day work with LESS.
JavaScript
3
star
25

marlene

A little poster generator written in Node.js and some frontend canvas magic.
JavaScript
3
star
26

awesome-react-components

📦 Collection of great React components
2
star
27

zed-gfm-preview

GitHub Markdown Preview for Zed
JavaScript
2
star
28

gulp-spellcheck

A gulp plugin for spell-checking with GNU Aspell.
JavaScript
2
star
29

solar

A lightweight key-value store for node.js
JavaScript
2
star
30

nyc-opendata

A wrapper around the official NYC OpenData API which provides a simplification and caching.
JavaScript
2
star
31

mailbouncer

An easy-to-configurable mail bouncer.
JavaScript
2
star
32

betaville-opendata

An aggregation layer for consuming data from the NYC OpenData project.
Java
2
star
33

transcripter

A "change data capture" library for MySQL / MariaDB
1
star
34

metalsmith-metaobject

A plugin to pass an object as metadata to metalsmith.
JavaScript
1
star
35

ifon

Observes your internet connection and executes configured apps if you're online or offline.
1
star
36

bunchitos

Loads a bunch of Node.js modules by a given prefix.
JavaScript
1
star
37

express-slicer

An Express middleware that provides the functionality for partial JSON responses based on the querystring.
JavaScript
1
star
38

sharebox

1
star
39

cinnamon-webui

The frontend of cinnamon.
JavaScript
1
star
40

octobrain

Helps you to avoid typing GitHub URIs over and over again.
JavaScript
1
star
41

akoenig

1
star