Skip to content

Instantly share code, notes, and snippets.

View robwormald's full-sized avatar

Rob Wormald robwormald

View GitHub Profile
module.exports = {
index: function (req,res) {
//empty object hold the data
var viewData = {}
viewData.user = req.user;
File.find( function foundFiles(err, files) {
// in the old data model, you had to do a bunch of crufty bullshit
$scope.messages = Messages.all();
$scope.$onRootScope('messages.updated', function() {
$scope.messages = Messages.all();
});
// ew, what's even going on there? Well, it loads the data from the Messages service,
// but then has to wait for an event to make sure it actually updates when the data changes.
// Like a peasant.
@robwormald
robwormald / p.js
Last active August 29, 2015 14:02 — forked from EduceHealth/p.js
//opt 1
SomeService.getStuff().then(function(stuff){
return SomeService.manipulateStuff(stuff);
}).then(function(manipulatedStuff){
//do stuff...
});
//opt 2
SomeService.getStuff().then(SomeService.manipulateStuff).then(function(manipulatedStuff){
//do stuff...
// user.js
module.exports = {
schema: true,
attributes: {
name: {
type: 'string',
required: true
},
var myApp = angular.module('myApp');
myApp.service('Auth', function($http) {
this.onLoginSuccess = function(loginResponse){
TokenHandler.setToken(loginResponse.data.token);
return ({success:1, msg: "Logged in refreshing ....", type:"success"})
},
this.onLoginFailure = function(loginError){
return ({success:0, msg: "LError Loggin in", type:"danger"})
//bluebird promise lib >>>> anything
var q = require('bluebird');
module.exports.bootstrap = function(cb) {
//returns a promise
var findOrCreateForm = function(){
return Form.find().then(function(forms){
if(forms.length > 0){
return forms;
/**
* CityController
*
* @description :: Server-side logic for managing cities
* @help :: See http://links.sailsjs.org/docs/controllers
*/
module.exports = {
SomeService.placeSearch(options).then(function(results){
res.json(results);
})
@robwormald
robwormald / JWT.js
Last active August 29, 2015 14:13 — forked from sonicparke/JWT.js
(function(){
app.factory('JWT', JWT);
function JWT($window, $q){
var store = $window.localStorage;
var key = 'AXC_API_Storage.Token';
var service = {
getToken: getToken,
@robwormald
robwormald / t.js
Last active August 29, 2015 14:17
//returns array of users
function getUser(){
return fetch('user.json');
}
function getAccountsForUser(user){
return fetch(`users/${user.id}/accounts`);
}
function getPropertiesForAccount(account){