mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-10-31 15:45:09 -04:00
82 lines
2.3 KiB
JavaScript
82 lines
2.3 KiB
JavaScript
/*global app, $, me*/
|
|
"use strict";
|
|
|
|
var HumanModel = require('human-model');
|
|
|
|
module.exports = HumanModel.define({
|
|
initialize: function () {
|
|
var self = this;
|
|
$(window).blur(function () {
|
|
self.focused = false;
|
|
});
|
|
$(window).focus(function () {
|
|
self.focused = true;
|
|
if (me._activeContact) {
|
|
me.setActiveContact(me._activeContact);
|
|
}
|
|
self.markActive();
|
|
});
|
|
if (window.macgap) {
|
|
document.addEventListener('sleep', function () {
|
|
clearTimeout(this.idleTimer);
|
|
console.log('went to sleep');
|
|
self.markInactive();
|
|
}, true);
|
|
}
|
|
|
|
if (navigator.mozApps) {
|
|
this.installable = true;
|
|
var req = navigator.mozApps.checkInstalled(window.location.origin + '/manifest.webapp');
|
|
req.onsuccess = function (e) {
|
|
if (req.result) {
|
|
self.installedFirefox = true;
|
|
}
|
|
};
|
|
}
|
|
|
|
this.markActive();
|
|
},
|
|
session: {
|
|
focused: ['bool', true, true],
|
|
active: ['bool', true, false],
|
|
connected: ['bool', true, false],
|
|
hasConnected: ['bool', true, false],
|
|
idleTimeout: ['number', true, 600000],
|
|
idleSince: 'date',
|
|
allowAlerts: ['bool', true, false],
|
|
badge: ['string', true, ''],
|
|
pageTitle: ['string', true, ''],
|
|
installable: ['bool', true, false],
|
|
installedFirefox: ['bool', true, false]
|
|
},
|
|
derived: {
|
|
title: {
|
|
deps: ['pageTitle', 'badge'],
|
|
fn: function () {
|
|
var base = this.pageTitle ? 'Otalk - ' + this.pageTitle : 'Otalk';
|
|
if (this.badge) {
|
|
return this.badge + ' • ' + base;
|
|
}
|
|
return base;
|
|
}
|
|
}
|
|
},
|
|
markActive: function () {
|
|
clearTimeout(this.idleTimer);
|
|
|
|
var wasInactive = !this.active;
|
|
this.active = true;
|
|
this.idleSince = new Date(Date.now());
|
|
|
|
this.idleTimer = setTimeout(this.markInactive.bind(this), this.idleTimeout);
|
|
},
|
|
markInactive: function () {
|
|
if (this.focused) {
|
|
return this.markActive();
|
|
}
|
|
|
|
this.active = false;
|
|
this.idleSince = new Date(Date.now());
|
|
}
|
|
});
|