glowingbear-mainbox/js/models.js

242 lines
6.4 KiB
JavaScript
Raw Normal View History

2013-10-09 17:53:25 +02:00
/*
* This file contains the weechat models and various
* helper methods to work with them.
*/
var models = angular.module('weechatModels', []);
models.service('models', ['$rootScope', '$filter', function($rootScope, $filter) {
2013-10-09 17:53:25 +02:00
/*
* Buffer class
*/
this.Buffer = function(message) {
// weechat properties
var fullName = message['full_name']
var shortName = message['short_name']
var title = message['title']
var number = message['number']
var pointer = message['pointers'][0]
2013-10-16 00:32:56 +02:00
var local_variables = message['local_vars'];
2013-10-23 15:29:28 +02:00
var notify = 3 // Default 3 == message
2013-10-09 17:53:25 +02:00
var lines = []
var active = false
var notification = 0
var unread = 0
var lastSeen = -2
2013-10-09 17:53:25 +02:00
// Buffer opened message does not include notify level
2013-10-23 15:29:28 +02:00
if( message['notify'] != undefined ) {
notify = message['notify'];
}
2013-10-09 17:53:25 +02:00
/*
* Adds a line to this buffer
*
* @param line the BufferLine object
* @return undefined
*/
var addLine = function(line) {
lines.push(line);
}
2013-10-09 17:53:25 +02:00
return {
id: pointer,
fullName: fullName,
shortName: shortName,
number: number,
title: title,
lines: lines,
2013-10-12 20:44:40 +02:00
addLine: addLine,
lastSeen: lastSeen,
unread: unread,
notification: notification,
2013-10-16 00:32:56 +02:00
localvars: local_variables,
notify: notify,
2013-10-09 17:53:25 +02:00
}
}
/*
* BufferLine class
*/
this.BufferLine = function(message) {
var buffer = message['buffer'];
var date = message['date'];
var shortTime = $filter('date')(date, 'HH:mm');
2013-10-09 17:53:25 +02:00
function addClasses(textElements) {
var typeToClassPrefixFg = {
'option': 'cof-',
'weechat': 'cwf-',
'ext': 'cef-'
};
var typeToClassPrefixBg = {
'option': 'cob-',
'weechat': 'cwb-',
'ext': 'ceb-'
};
textElements.forEach(function(textEl) {
textEl.classes = [];
// foreground color
var prefix = typeToClassPrefixFg[textEl.fgColor.type];
textEl.classes.push(prefix + textEl.fgColor.name);
// background color
prefix = typeToClassPrefixBg[textEl.bgColor.type];
textEl.classes.push(prefix + textEl.bgColor.name);
// attributes
if (textEl.attrs.name !== null) {
textEl.classes.push('coa-' + textEl.attrs.name);
}
for (var attr in textEl.attrs.override) {
val = textEl.attrs.override[attr];
if (val) {
textEl.classes.push('a-' + attr);
} else {
textEl.classes.push('a-no-' + attr);
}
2013-10-09 17:53:25 +02:00
}
});
}
var prefix = weeChat.Protocol.rawText2Rich(message['prefix']);
addClasses(prefix);
2013-10-12 02:37:11 +02:00
2013-10-09 17:53:25 +02:00
var tags_array = message['tags_array'];
var displayed = message['displayed'];
var highlight = message['highlight'];
var content = weeChat.Protocol.rawText2Rich(message['message']);
addClasses(content);
2013-10-12 02:37:11 +02:00
2013-10-10 12:24:11 +02:00
var rtext = "";
2013-10-12 02:37:11 +02:00
if(content[0] != undefined) {
rtext = content[0]['text'];
2013-10-09 17:53:25 +02:00
}
return {
2013-10-12 02:37:11 +02:00
prefix: prefix,
2013-10-09 17:53:25 +02:00
content: content,
date: date,
shortTime: shortTime,
2013-10-09 17:53:25 +02:00
buffer: buffer,
tags: tags_array,
highlight: highlight,
displayed: displayed,
2013-10-10 12:24:11 +02:00
text: rtext,
2013-10-09 17:53:25 +02:00
}
}
var BufferList = []
activeBuffer = null;
unreads = 0;
notifications = 0;
2013-10-09 17:53:25 +02:00
this.model = { 'buffers': {} }
/*
* Adds a buffer to the list
*
* @param buffer buffer object
* @return undefined
*/
this.addBuffer = function(buffer) {
BufferList[buffer.id] = buffer;
if (BufferList.length == 1) {
activeBuffer = buffer.id;
}
this.model.buffers[buffer.id] = buffer;
}
this.getBufferByIndex = function(index) {
var i = 0;
for (var v in BufferList) {
if (index == ++i) {
return BufferList[v];
}
}
}
2013-10-09 17:53:25 +02:00
/*
* Returns the current active buffer
*
* @return active buffer object
*/
this.getActiveBuffer = function() {
return activeBuffer;
}
/*
* Sets the buffer specifiee by bufferId as active.
* Deactivates the previous current buffer.
*
* @param bufferId id of the new active buffer
* @return undefined
*/
this.setActiveBuffer = function(bufferId) {
2013-10-12 20:44:40 +02:00
var previousBuffer = this.getActiveBuffer();
2013-10-09 17:53:25 +02:00
2013-10-12 20:44:40 +02:00
if (previousBuffer) {
// turn off the active status for the previous buffer
previousBuffer.active = false;
// Save the last line we saw
2013-10-12 21:06:24 +02:00
previousBuffer.lastSeen = previousBuffer.lines.length-1;
2013-10-09 17:53:25 +02:00
}
activeBuffer = _.find(this.model['buffers'], function(buffer) {
if (buffer['id'] == bufferId) {
return buffer;
}
});
2013-10-09 17:53:25 +02:00
activeBuffer.active = true;
2013-10-15 15:21:13 +02:00
activeBuffer.unread = 0;
activeBuffer.notification = 0;
$rootScope.$emit('activeBufferChanged');
2013-10-15 15:21:13 +02:00
$rootScope.$emit('notificationChanged');
2013-10-09 17:53:25 +02:00
}
/*
* Returns the buffer list
*/
this.getBuffers = function() {
return BufferList;
}
/*
* Returns a specific buffer object
*
* @param bufferId id of the buffer
* @return the buffer object
*/
this.getBuffer = function(bufferId) {
return _.find(this.model['buffers'], function(buffer) {
if (buffer['id'] == bufferId) {
return buffer;
}
});
}
/*
* Closes a weechat buffer. Sets the first buffer
* as active.
*
* @param bufferId id of the buffer to close
* @return undefined
*/
this.closeBuffer = function(bufferId) {
delete(this.model['buffers'][bufferId.id]);
var firstBuffer = _.keys(this.model['buffers'])[0];
this.setActiveBuffer(firstBuffer);
}
}]);