httpong v0.3.8
HTTPong for Javascript
If you don't understand the basics of HTTPong, please read the first lines of the spec.
Although this is a draft, everything is tested and it should work in most modern browsers.
Getting started
bower install httpong-js --saveor download it here
<script src="/scripts/httpong-js/dist/httpong.js"></script>
<!-- or -->
<script src="/scripts/httpong-js/dist/httpong.min.js"></script>HTTPong.setHttpFunction($http); // or $.ajax, or something like that
HTTPong.initialize();
var scheme = HTTPong.addScheme(object); // This is the animal-farm scheme, check the spec!
scheme.setApiUrl('/api');
var pigs = scheme.select('pigs'); // select the pigs collection
var promise = pigs.actions.doGetAll(); // sends a GET to /api/pigs
promise.then(function(response) {
for (pig in pigs.getArray()) {
alert('Received pig ' + pig.getField('name')); // or pig.fields.name
}
})Schemes
You can create a scheme in two ways:
new HTTPong.addScheme(scheme_object)
or by creating a meta tag with name=httpong-scheme and content=scheme_object.
A scheme can be retrieved with HTTPong.getScheme(scheme_name)
Collections
When a scheme is created, it immediately creates the defined collections.
They can be retrieved with scheme.select(collection_name)
You can get an array of the elements in a collection with collection.getArray()
Finding a specific object can be done with: collection.find(id) (if id is the selector),
or collection.findBy('name', name)
To load data into the collection, you can use collection.actions.doGetAll(),
or collection.actions.doGetOne(id)
To preload data, which is recommended, create a meta tag with
name=httpong-collection, scheme=scheme_name, content=array and collection=name.
Array is the same data the API would return.
If you are using Rails, check out this library.
To make a new element, use collection.makeNewElement({name: 'Bob'}).
This element will be stored in the new_elements array, and when it is
POSTed, and thus gets a selector value (id gets a value), it will end
up in the elements object.
You shouldn't access the new_elements and elements attributes directly,
just use getArray() or getArray({without_new: true}) for that.
Collection actions
You can do collection actions with the actions key.
The built in ones are doGetOne and doGetAll.
Elements
Fields
Fields can be accessed through the fields key, or with getField and setField
Example:
pig.fields.name;
pig.getField('name');
pig.setField('name', 'Snowball');Actions
You can do actions on the actions key. There are four built in ones:
doGet: Sends a GET and updates the fields, overwriting the original fields.
doPost: Sends a POST to the collection url. Should only be called if the
element is new, because it assigns a selector to the element.
(The server should)
doPut: Sends a PUT with the new data, and expects the same data sent back,
or otherwise small updates.
doDelete: Sends a DELETE, which should remove the element from the server,
but does not delete the element from the collection on the client side.
Use remove to do that.
Example:
var pig = pigs.makeNewElement();
pig.actions.doPost(); // saves the pig, pig gets an id
pig.actions.doGet();
pig.actions.doPut();
pig.actions.doDelete();
pig.actions.doOink(); // sends a PUT to /api/pigs/8/oinkRelations
You can find other elements on the relations key. These functions always start
with get.
Example:
human.relations.getPigs();
pig.relations.getBoss();Other functions
remove: Triggers a doDelete on the element and removes
it from the collection if it is saved. If it is new, it is just removed from
the collection on the client side.
In both cases, it returns a promise.
getField: Can be overridden, e.g. by httpong-js-localization
setField: Can be overridden too.
isNew: Checks if the element has a selector value.
Embedded collections and elements
Can be accessed through their relations.
Snapshots
snapshots.make(tag): Makes a snapshot of the fields and returns a snapshot object,
with a tag, time, data and revert key.
If you call revert, the element fields will revert themselves to that snapshot.
undo(time_or_tag_or_number):
- When passed in a tag, will revert itself to the
last snapshot with that tag. The snapshot with tag
creationis made aftermakeNewElement. Snapshots with tagsbefore_{action}andafter_{action}are made after those actions, likebefore_getandafter_put. - When passed in a time, it will revert itself to a snapshot of that time.
- When passed in a number, it will revert itself n steps.
isPersisted(): Compares fields with the getLastPersisted().
Note: when one of the fields is an object, it will
return true when changing the keys of that object, because the object reference
is the same. The fields are compared with ===. Returns false if the element
is new.
getLastPersisted(): Gets last snapshot where the tag is after_get, after_post
,after_put or creation.
getLast(): Gets last snapshot
getLastWithTag(tag): Gets last snapshot where the tag matches the tag string
or regex.
You can loop through snapshots with the snapshots.list key.
Merging
If data is received in another way, like with WebSockets, it can be merged with
the other data using mergeWith.
Examples
Animal Farm
Pulser
Polyfills
The library includes some polyfills for:
Object.values,
String.prototype.endsWith,
Array.prototype.includes,
String.prototype.includes
Setting a HTTP function
The http function expects one argument object with url, method, data and
headers keys.
It should return a Promise-like object that catches when the response status is
not between 200 and 299, and on other network errors.
The then and catch functions should return a response object with a
data key, that holds the parsed JSON object.
$http and jQuery.ajax support this out of the box.
If you don't work with Angular or jQuery, you can use window.fetch.
Frameworks
To use HTTPong with frameworks, see:
Contributing
Yes please!
Fork it, then do something like this:
git clone https://github.com/<you>/httpong-js
cd httpong-js
npm install
gulp testCheck the gulpfile.js for other tasks.
Make pull requests when your feature should be merged.
9 years ago