mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-10 19:45:02 -05:00
91 lines
2.8 KiB
JavaScript
91 lines
2.8 KiB
JavaScript
/*global app, me, XMPP, client, Resample*/
|
|
"use strict";
|
|
|
|
var BasePage = require('./base');
|
|
var templates = require('../templates');
|
|
|
|
|
|
module.exports = BasePage.extend({
|
|
template: templates.pages.main,
|
|
classBindings: {
|
|
shouldAskForAlertsPermission: '.enableAlerts'
|
|
},
|
|
srcBindings: {
|
|
avatar: '#avatarChanger img'
|
|
},
|
|
textBindings: {
|
|
status: '.status'
|
|
},
|
|
events: {
|
|
'click .enableAlerts': 'enableAlerts',
|
|
'dragover': 'handleAvatarChangeDragOver',
|
|
'drop': 'handleAvatarChange',
|
|
'change #uploader': 'handleAvatarChange',
|
|
'blur .status': 'handleStatusChange'
|
|
},
|
|
initialize: function (spec) {
|
|
me.shouldAskForAlertsPermission = app.notifier.shouldAskPermission();
|
|
this.renderAndBind();
|
|
},
|
|
enableAlerts: function () {
|
|
app.notifier.askPermission(function () {
|
|
var shouldAsk = app.notifier.shouldAskPermission();
|
|
if (!shouldAsk) {
|
|
app.notifier.show({
|
|
title: 'Ok, sweet!',
|
|
description: "You'll now be notified of stuff that happens."
|
|
});
|
|
}
|
|
});
|
|
},
|
|
handleAvatarChangeDragOver: function (e) {
|
|
e.preventDefault();
|
|
return false;
|
|
},
|
|
handleAvatarChange: function (e) {
|
|
var file;
|
|
|
|
e.preventDefault();
|
|
|
|
if (e.dataTransfer) {
|
|
file = e.dataTransfer.files[0];
|
|
} else if (e.target.files) {
|
|
file = e.target.files[0];
|
|
} else {
|
|
return;
|
|
}
|
|
|
|
if (file.type.match('image.*')) {
|
|
console.log('Got an image file!', file.type);
|
|
var fileTracker = new FileReader();
|
|
fileTracker.onload = function () {
|
|
var resampler = new Resample(this.result, 80, 80, function (data) {
|
|
var b64Data = data.split(',')[1];
|
|
var id = XMPP.crypto.createHash('sha1').update(atob(b64Data)).digest('hex');
|
|
console.log(id);
|
|
app.storage.avatars.add({id: id, uri: data});
|
|
client.publishAvatar(id, b64Data, function (err, res) {
|
|
if (err) return;
|
|
client.useAvatars([{
|
|
id: id,
|
|
width: 80,
|
|
height: 80,
|
|
type: 'image/png',
|
|
bytes: b64Data.length
|
|
}]);
|
|
});
|
|
});
|
|
};
|
|
fileTracker.readAsDataURL(file);
|
|
}
|
|
},
|
|
handleStatusChange: function (e) {
|
|
var text = e.target.textContent;
|
|
me.status = text;
|
|
client.sendPresence({
|
|
status: text,
|
|
caps: client.disco.caps
|
|
});
|
|
}
|
|
});
|