Giter Club home page Giter Club logo

ember-masonry-grid's Introduction

ember-masonry-grid

This ember-cli addon imports the Masonry library and allows you to quickly and easily build masonry grid views.

Build Status Ember Observer Score

Installation

ember install ember-masonry-grid

That's it! The Masonry library will automatically be imported in your app, and the masonry-grid component will be available to all of your templates.

Basic Usage

The masonry-grid component accepts all of the options that Masonry exposes. The naming is the same, and any option not specified will use the Masonry default.

For example, if we wanted to a basic masonry layout, we'd set up the following in our controller.

import Ember from 'ember';

export default Ember.Controller.extend({
  items: Ember.A([
    { name: 'Item 1' },
    { name: 'Item 2' },
    { name: 'Item 3' }
  ]);
});

And in our template:

{{#masonry-grid items=items as |item|}}
  {{item.name}}
{{/masonry-grid}}

If we wanted to redefine the itemSelector for Masonry, we'd write the following:

{{#masonry-grid items=items itemSelector=".piece" as |item|}}
  {{item.name}}
{{/masonry-grid}}

This would also change the classes for the underlying masonry-item components.

For a full list of options that are exposed, please see the Masonry options.

Custom Layouts

If you want more control over the each masonry-item, you can supply a custom layout to masonry-grid.

{{#masonry-grid items=items customLayout=true as |item index grid|}}
  {{#masonry-item item=item grid=grid }}
    {{item.name}}
  {{/masonry-item}}
{{/masonry-grid}}

Adding and Removing Items from a Masonry Layout

While Masonry exposes prepend, append, and remove methods, we don't have to worry about them. You can add and remove items from your items array and it will have the same effect.

Every time items is updated, Masonry will account for it and generate a new layout.

Available Actions

The following actions are made available by masonry-grid.

  • onLayoutComplete (layout)
    Triggered each time Masonry finishes a layout

  • onItemClick (event, item)
    Triggered when a click event occurs (or bubbles) on a masonry-item

Contributing

If you find an issue or missing functionality, please don't hesistate to open a pull request.

Installation

  • git clone this repository
  • npm install
  • bower install

Running

Running Tests

  • npm test

Building

  • ember build

For more information on using ember-cli, visit http://www.ember-cli.com/.

ember-masonry-grid's People

Contributors

homu avatar greenkeeperio-bot avatar ifiokjr avatar josepjaume avatar turbo87 avatar tomdale avatar ember-tomster avatar codepreneur avatar

Watchers

Juan José Villegas avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.