Socket
Socket
Sign inDemoInstall

angularparse

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    angularparse

Services for using Parse query and objects saving inside angular lifecycle


Version published
Maintainers
1
Install size
11.7 kB
Created

Readme

Source

Angular-Parse

Angular-Parse is a set of services for using Parse query and objects saving inside angular lifecycle using promises and without the hassle of using $scope.$apply

Quick Start

Services

  • parseQuery: Used to build Parse.Query objects
  • parsePersistence: Used to persist/save/destroy Parse.Objects back to Parse servers

parseQuery

  • Creating a Parse.Query object

A Parse.Query object can be created using the common Parse way

var TestObject = Parse.Object.extend("TestObject");
var query = new Parse.Query(TestObject);

which is useful if you are using TestObject in more than one place. But angular-parse has the following shortcut:

var query = parseQuery.new('TestObject');
  • Executing a simple Query
parseQuery.find(query).then(function(results) {
  // do something with the query execution results
}, function(error) {
  // do something with the returning error 
});
  • More Options

The parseQuery.query(query, options, fnc) method:

query: the Parse.Query object that will be executed

options: the options parameter when executing a Parse.Query. Default value: {}

fnc: The query funcion being executed, for example: find or count. Default value: 'find'

Also, parseQuery has some auxiliary methods acting as shortcuts for parseQuery.query: find, count and total

parsePersistence

  • Creating a Parse.Object

Similiar to the parseQuery service, A Parse.Object object can be created using the common Parse way

var TestObject = Parse.Object.extend("TestObject");
var myObject = new TestObject();

And angular-parse has the following shortcut:

var myObject = parsePersistence.new('TestObject');
  • Saving Data
parsePersistence.save(myObject, {foo: "bar promise"}).then(function(object) { 
  // do something with the returning object
}, function(error) {
  // do something with the returning error 
});
  • More Options

The parsePersistence.persist(obj, data, fnc) method:

obj: the Parse.Object object being used

data: the optional data parameter when saving the object

fnc: The object funcion being executed, for example: save or destroy.

Also, parsePersistence has some auxiliary methods acting as shortcuts for parseQuery.persist: save and destroy.

Authors

Felipe Sabino

The MIT License

Copyright (c) 2012 Olivier Louvignes

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.

FAQs

Last updated on 30 Dec 2013

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc