2013-06-22 06:24:24 +00:00
|
|
|
'use strict';
|
2013-06-24 23:41:59 +00:00
|
|
|
define(
|
|
|
|
[
|
|
|
|
'signalR'
|
|
|
|
], function () {
|
|
|
|
|
|
|
|
_.extend(Backbone.Collection.prototype, {BindSignalR: function (options) {
|
|
|
|
|
|
|
|
if (!options || !options.url) {
|
|
|
|
console.assert(this.url, 'url must be provided or collection must have url');
|
|
|
|
options = {
|
|
|
|
url: this.url.replace('api', 'signalr')
|
|
|
|
};
|
|
|
|
}
|
2013-05-05 21:24:33 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
var self = this;
|
|
|
|
|
|
|
|
var _getStatus = function (status) {
|
|
|
|
switch (status) {
|
|
|
|
case 0:
|
|
|
|
return 'connecting';
|
|
|
|
case 1:
|
|
|
|
return 'connected';
|
|
|
|
case 2:
|
|
|
|
return 'reconnecting';
|
|
|
|
case 4:
|
|
|
|
return 'disconnected';
|
|
|
|
default:
|
|
|
|
throw 'invalid status ' + status;
|
|
|
|
}
|
2013-05-06 00:33:43 +00:00
|
|
|
|
2013-06-14 23:18:37 +00:00
|
|
|
};
|
2013-05-05 21:24:33 +00:00
|
|
|
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
var connection = $.connection(options.url);
|
2013-05-05 21:24:33 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
connection.stateChanged(function (change) {
|
|
|
|
console.debug('{0} [{1}]'.format(options.url, _getStatus(change.newState)));
|
|
|
|
});
|
2013-05-05 21:24:33 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
connection.received(function (model) {
|
|
|
|
console.debug(model);
|
|
|
|
self.fetch();
|
|
|
|
});
|
2013-05-06 00:33:43 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
connection.start({ transport:
|
|
|
|
[
|
|
|
|
'longPolling'
|
|
|
|
] });
|
2013-05-06 00:33:43 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
return this;
|
|
|
|
}});
|
|
|
|
});
|
2013-05-06 00:33:43 +00:00
|
|
|
|
|
|
|
|