Giter VIP home page Giter VIP logo

jewel's Introduction

Jewel

Operate with DOM elements like they're ActiveRecord models.

Getting Started

Dependencies

  • jQuery

Compatability

  • Safari
  • Google Chrome
  • Firefox
  • Opera
  • IE - not tested

Include Jewel (0.7kb minified and gzipped):

<!-- jQuery must be included before that -->
<script src="jewel.min.js"></script>

Usage

Let's say we have such HTML:

<div id="posts">
	<div class="post">
		<h1>First title</h1>
		<p>First body</p>
	</div>
	<div class="post">
		<h1>Second title</h1>
		<p>Second body</p>
	</div>
</div>

Now, we need to define Post model:

var Post = Jewel.define('#posts', { // selector for a wrapper element
	keys: {
		title: 'h1', // selector for title, h1 in our case. Will be used as #posts .post h1
		body: 'p', // selector for body. Will be used as #posts .post p
	},
	template: function(fields){ // function that returns HTML for new posts, you can use custom templating engine here.
		return "<div class=\"post\"><h1>" + fields.title + "</h1><p>" + fields.body + "</p></div>"
	}
});

That's it! We can start doing cool stuff:

// Finding all posts
var posts = Post.all;

// Finding first post
var post = Post.find({ limit: 1 })[0];

// Finding second post

post = Post.find({ skip: 1 })[0];
post.title; // "Second title"

// Updating post

post.title = 'Last post';
post.save();

// Removing post

post.remove();

// Removing all posts

Post.remove();

// Creating new one

post = new Post;
post.title = 'Latest post';
post.body = 'Latest content';
post.save(); // will be prepended to #posts

Tests

Run tests by opening test/test.hmtl in browser.

Contributing

  • Fork
  • Write code, build using grunt
  • Write tests for the code
  • Commit & push
  • Send pull request

License

(The MIT License)

Copyright (c) 2011 Vadim Demedes [email protected]

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.

jewel's People

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

hairyhum

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.