This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
inflight: undefined | |
, fetch: function() { | |
if(this.inflight && this.inflight.then) { | |
return this.inflight.then(fetch.bind(this)) | |
} | |
return this.inflight = Promise.resolve().then(function() { | |
//cant remember what jquery xhr api is ...i think 'done' is the thing here. | |
return this.save().done(function(res){ | |
this.inflight = undefined |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(circleup) ~/dev/circleup/CircleUp-Main-Site$ ./manage.py runserver | |
Performing system checks... | |
System check identified no issues (6 silenced). | |
You have unapplied migrations; your app may not work properly until they are applied. | |
Run 'python manage.py migrate' to apply them. | |
February 09, 2016 - 16:26:10 | |
Django version 1.8.4, using settings 'settings' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import objectPath from "object-path" | |
function assertValue(funcName, value) { | |
if(typeof value !== 'undefined') { | |
return | |
} | |
throw new Error(`You are returning 'undefined' from ${funcName}. This is a bug.`) | |
} | |
/** | |
* nestComponent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const noop = () => {} | |
const identity = obj => obj | |
function bus() { | |
let subscription = () => {} | |
return { | |
publish(...data) { | |
return subscription(...data) | |
}, | |
subscribe(fn) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
GET /queries?clientId=42&type=boards | |
404 Not Found | |
POST /commands | |
{ commands: [{ correlationId: 789, id: 456, command: 'createContext', clientId: '42', type: 'boards' }]} | |
202 Not Dun | |
Location: /poll?correlationId=789 | |
GET /poll?correlationId=789 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var command = { | |
command: 'createContext', | |
id: '42', | |
type: 'boards' | |
} | |
function raiseEvent(event) { | |
//persistEvent(event) | |
publishEvent(event) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 20170217013214 | |
// http://localhost:3002/queries?contextId=333 | |
{ | |
"feed": [ | |
"800", | |
"801", | |
"802", | |
"803" | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var request = { | |
correlationId: '888', | |
commands: [{ | |
command: 'makeComment', | |
contextId: '123', | |
text: 'foible', | |
commentId: '456' | |
}] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
context: { clientId: '42', type: 'screen', contextId: '123' }, | |
threads: { | |
'888': { commentIds: ['555','556'], createdOn: <date> }, | |
'999': { commentIds: ['222', '223'], createdOn: <date> }, | |
}, | |
metadata: { | |
'888': { data: '{"some":"data"}', type: 'json' }, | |
'222': { data: 'some annotation', type: 'string' } | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section class="player-bar" ng-controller="PlayerBarCtrl as playerBar"> | |
<div class="container"> | |
<div class="control-group main-controls"> | |
<a class="previous" ng-click="playerBar.songPlayer.previous()"> | |
<span class="ion-skip-backward"></span> | |
</a> | |
<a class="play-pause"> | |
<span class='ion-play' | |
ng-show="!playerBar.songPlayer.currentSong.playing" | |
ng-click="playerBar.songPlayer.play()"> |