Skip to main content
Dublin Library

The Publishing Project

Case Study: Building Polymer Applications, Part 3

 

## project-list The `project-list` element is the meat of the application and uses some interesting techniques I've learned from working on creating Polymer elements. This is an example of the JSON model used on their element. It has been redacted for length. ```javascript { "description": "The VR/AR web seems to be the latest buzz word in the web community.", "name": "Moving 2D content to a 3D world", "notes": "", "stage": "Idea", "type": "Code", "url": { "code": "", "other": "", "writeup": "" } } ``` Knowing the structure of the JSON data will help make sense of the data bindings I used below: ```markup ``` ## Next steps Some of the things I’d like to do: - Research why iPad portrait use displays weird. It may have to do with media queries. The way I calculate the width to change the display may be done incorrectly - Move the backend to [Firebase](https://firebase.google.com) using the [Polymerfire collection](https://github.com/firebase/polymerfire/). - Oncce the backend is moved to Firebase, wire CRUD functionality

Edit on Github