1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-11 16:40:55 +00:00
FrankerFaceZ/src/ember/chatview.js

1371 lines
36 KiB
JavaScript
Raw Normal View History

2015-06-05 03:59:28 -04:00
var FFZ = window.FrankerFaceZ,
utils = require('../utils'),
constants = require('../constants');
2015-06-05 03:59:28 -04:00
// --------------------
// Settings
// --------------------
FFZ.basic_settings.delayed_chat = {
type: "select",
options: {
0: "No Delay",
300: "Minor (Bot Moderation; 0.3s)",
1200: "Normal (Human Moderation; 1.2s)",
5000: "Large (Spoiler Removal / Really Slow Mods; 5s)",
10000: "Extra Large (10s)",
15000: "Extremely Large (15s)",
20000: "Mods Asleep; Delay Chat (20s)",
30000: "Half a Minute (30s)",
60000: "Why??? (1m)"
},
2015-08-09 23:32:29 -07:00
category: "Chat",
no_bttv: true,
2015-08-09 23:32:29 -07:00
name: "Delay and Filter Chat",
help: "Delay the appearance of chat messages to allow time for moderation and completely hide removed messages.",
2015-08-09 23:32:29 -07:00
get: function() {
if ( ! this.settings.remove_deleted || ! this.settings.remove_bot_ban_notices )
return 0;
return this.settings.chat_delay;
2015-08-09 23:32:29 -07:00
},
set: function(val) {
val = +val;
this.settings.set('remove_deleted', val !== 0);
this.settings.set('remove_bot_ban_notices', val !== 0);
this.settings.set('chat_delay', val);
2015-08-09 23:32:29 -07:00
}
};
FFZ.settings_info.minimal_chat = {
type: "select",
options: {
0: "Disabled",
1: "No Heading",
2: "Minimalistic Input",
3: "All"
},
value: 0,
2015-07-04 17:06:36 -04:00
category: "Chat Appearance",
2015-07-04 17:06:36 -04:00
name: "Minimalistic Chat",
help: "Hide all of the chat user interface, only showing messages and an input box.",
process_value: function(val) {
if ( val === false )
return 0;
else if ( val === true )
return 3;
else if ( typeof val === "string" )
return parseInt(val) || 0;
return val;
},
2015-07-04 17:06:36 -04:00
on_update: function(val) {
document.body.classList.toggle("ffz-minimal-chat-head", val === 1 || val === 3);
document.body.classList.toggle("ffz-minimal-chat-input", val > 1);
2015-07-04 17:06:36 -04:00
if ( this.settings.group_tabs && this._chatv && this._chatv._ffz_tabs ) {
var f = this;
setTimeout(function() {
f._chatv && f._chatv.$('.chat-room').css('top', f._chatv._ffz_tabs.offsetHeight + "px");
f._roomv && f._roomv.get('stuckToBottom') && f._roomv._scrollToBottom();
2015-07-04 17:06:36 -04:00
},0);
}
if ( (val === 1 || val === 3) && this._chatv && this._chatv.get('controller.showList') )
this._chatv.set('controller.showList', false);
// Remove the style if we have it.
if ( ! (val > 1) && this._chat_style ) {
if ( this._inputv ) {
if ( this._inputv._ffz_minimal_style )
this._inputv._ffz_minimal_style.innerHTML = '';
this._inputv._ffz_last_height = undefined;
}
utils.update_css(this._chat_style, "input_height", '');
this._roomv && this._roomv.get('stuckToBottom') && this._roomv._scrollToBottom();
} else if ( val > 1 && this._inputv )
this._inputv.ffzResizeInput();
}
};
FFZ.settings_info.chat_batching = {
type: "select",
options: {
0: "No Batching",
250: "Minor (0.25s)",
500: "Normal (0.5s)",
750: "Large (0.75s)",
1000: "Extreme (1s)"
},
value: 0,
category: "Chat Appearance",
no_bttv: true,
name: "Chat Message Batching",
help: "Display chat messages in batches to improve performance in <em>extremely</em> fast chats.",
process_value: function(val) {
if ( typeof val === "string" )
return parseInt(val) || 0;
return val;
},
on_update: function(val) {
if ( this._roomv )
this._roomv.ffzUpdateStatus();
}
};
2015-08-09 23:32:29 -07:00
FFZ.settings_info.chat_delay = {
type: "select",
options: {
0: "No Delay",
300: "Minor (Bot Moderation; 0.3s)",
1200: "Normal (Human Moderation; 1.2s)",
5000: "Large (Spoiler Removal / Really Slow Mods; 5s)",
10000: "Extra Large (10s)",
15000: "Extremely Large (15s)",
20000: "Mods Asleep; Delay Chat (20s)",
30000: "Half a Minute (30s)",
60000: "Why??? (1m)"
2015-08-09 23:32:29 -07:00
},
value: 0,
category: "Chat Appearance",
no_bttv: true,
2015-08-09 23:32:29 -07:00
name: "Artificial Chat Delay",
help: "Delay the appearance of chat messages to allow for moderation before you see them.",
process_value: function(val) {
if ( typeof val === "string" )
return parseInt(val || "0");
return val;
},
2015-08-09 23:32:29 -07:00
on_update: function (val) {
if ( this._roomv )
this._roomv.ffzUpdateStatus();
2015-08-09 23:32:29 -07:00
}
};
FFZ.settings_info.remove_deleted = {
type: "boolean",
value: false,
no_bttv: true,
category: "Chat Filtering",
name: "Remove Deleted Messages",
help: "Remove deleted messages from chat entirely rather than leaving behind a clickable &lt;deleted message&gt;.",
on_update: function(val) {
if ( this.has_bttv || ! this.rooms || ! val )
return;
for(var room_id in this.rooms) {
var ffz_room = this.rooms[room_id],
room = ffz_room && ffz_room.room;
if ( ! room )
continue;
var msgs = room.get('messages'),
total = msgs.get('length'),
i = total,
alternate;
while(i--) {
var msg = msgs.get(i);
if ( msg.ffz_deleted || msg.deleted ) {
if ( alternate === undefined )
alternate = msg.ffz_alternate;
msgs.removeAt(i);
continue;
}
if ( alternate === undefined )
alternate = msg.ffz_alternate;
else {
alternate = ! alternate;
room.set('messages.' + i + '.ffz_alternate', alternate);
}
}
}
2015-07-04 17:06:36 -04:00
}
};
2015-08-09 23:32:29 -07:00
FFZ.settings_info.remove_bot_ban_notices = {
type: "boolean",
value: false,
no_bttv: true,
2015-08-09 23:32:29 -07:00
category: "Chat Filtering",
name: "Remove Bot Ban Notices",
help: "Remove messages from bots announcing who was banned for what reason and for how long.",
};
2015-06-10 18:46:04 -04:00
FFZ.settings_info.prevent_clear = {
type: "boolean",
value: false,
no_bttv: true,
category: "Chat Filtering",
2015-06-10 18:46:04 -04:00
name: "Show Deleted Messages",
help: "Fade deleted messages instead of replacing them, and prevent chat from being cleared.",
on_update: function(val) {
if ( this.has_bttv || ! this.rooms )
return;
for(var room_id in this.rooms) {
var ffz_room = this.rooms[room_id],
room = ffz_room && ffz_room.room;
if ( ! room )
continue;
room.get("messages").forEach(function(s, n) {
if ( val && ! s.ffz_deleted && s.deleted )
room.set("messages." + n + ".deleted", false);
else if ( s.ffz_deleted && ! val && ! s.deleted )
room.set("messages." + n + ".deleted", true);
});
}
}
};
FFZ.settings_info.chat_history = {
type: "boolean",
value: true,
visible: false,
category: "Chat Appearance",
2015-06-10 18:46:04 -04:00
name: "Chat History <span>Alpha</span>",
help: "Load previous chat messages when loading a chat room so you can see what people have been talking about. <b>This currently only works in a handful of channels due to server capacity.</b>",
};
2015-06-05 03:59:28 -04:00
FFZ.settings_info.group_tabs = {
type: "select",
options: {
0: "Disabled",
1: "Rooms with Recent Activity",
2: "Rooms with Recent Mentions",
3: "All Rooms"
},
value: 0,
process_value: function(val) {
if ( val === false )
return 0;
else if ( val === true )
return 3;
else if ( typeof val === "string" )
return parseInt(val) || 0;
return val;
},
2015-06-05 03:59:28 -04:00
no_bttv: true,
category: "Chat Appearance",
name: "Chat Room Tabs",
help: "Display tabs for chat rooms with recent activity at the top of the chat window for more convenient chatting.",
2015-06-05 03:59:28 -04:00
on_update: function(val) {
if ( this.has_bttv || ! this._chatv )
2015-06-05 03:59:28 -04:00
return;
if ( val )
if ( this._chatv._ffz_tabs )
this._chatv.ffzRebuildTabs();
else
this._chatv.ffzEnableTabs();
2015-06-05 03:59:28 -04:00
else
this._chatv.ffzDisableTabs();
this._chatv.ffzUpdateMenuUnread();
2015-06-05 03:59:28 -04:00
}
};
FFZ.settings_info.pinned_rooms = {
value: [],
visible: false,
};
2015-06-05 03:59:28 -04:00
FFZ.settings_info.visible_rooms = {
value: [],
visible: false,
2015-06-05 03:59:28 -04:00
};
// --------------------
// Initialization
// --------------------
FFZ.prototype.refresh_chat = function() {
var parents, lines = jQuery('ul.chat-lines');
if ( this.has_bttv || ! lines || ! lines.length )
return;
parents = lines.parents('.chatReplay');
if ( parents && parents.length )
return;
// There are chat-lines in the DOM and they aren't chat replay.
var controller = utils.ember_lookup('controller:chat');
if ( ! controller )
return;
var current_room = controller.get("currentRoom");
controller.blurRoom();
controller.focusRoom(current_room);
}
FFZ.prototype.setup_chatview = function() {
document.body.classList.toggle("ffz-minimal-chat-head", this.settings.minimal_chat === 1 || this.settings.minimal_chat === 3);
document.body.classList.toggle("ffz-minimal-chat-input", this.settings.minimal_chat === 2 || this.settings.minimal_chat === 3);
2015-07-04 17:06:36 -04:00
2015-06-05 03:59:28 -04:00
this.log("Hooking the Ember Chat controller.");
var Chat = utils.ember_lookup('controller:chat'),
2015-06-05 03:59:28 -04:00
f = this;
if ( Chat ) {
Chat.reopen({
ffzUpdateChannels: function() {
if ( ! f._chatv || f.has_bttv )
return;
f._chatv.ffzRebuildMenu();
if ( f.settings.group_tabs )
2015-06-05 03:59:28 -04:00
f._chatv.ffzRebuildTabs();
2015-07-04 17:06:36 -04:00
}.observes("currentChannelRoom", "connectedPrivateGroupRooms"),
ffzUpdateInvites: function() {
if ( ! f._chatv || f.has_bttv )
return;
f._chatv.ffzUpdateMenuUnread();
}.observes("invitedPrivateGroupRooms"),
2016-03-26 16:09:36 -04:00
ffzChangedRoom: function() {
if ( f._inputv )
Ember.propertyDidChange(f._inputv, 'ffz_emoticons');
}.observes('currentRoom'),
notificationsCount: function() {
if ( ! f._chatv || f.has_bttv )
return this._super();
var total = this.get('invitedPrivateGroupRooms.length') || 0;
if ( ! f._chatv._ffz_tabs && f._chatv.ffz_unread )
for(var room_id in f._chatv.ffz_unread)
if ( f._chatv.ffz_unread[room_id] )
total++;
return total;
}.property("currentRoom", "currentChannelRoom", "currentChannelRoom.unreadCount", "invitedPrivateGroupRooms.length", "connectedPrivateGroupRooms.@each.unreadCount"),
_kickUserFromRoomNoLongerInList: function() {
// Remove an unread notice for any missing channels.
if ( f._chatv && f._chatv.ffz_unread ) {
var updated = false;
for(var room_id in f._chatv.ffz_unread)
if ( f._chatv.ffz_unread[room_id] && (!f.rooms[room_id] || !f.rooms[room_id].room) ) {
f._chatv.ffz_unread[room_id] = false;
updated = true;
}
if ( updated )
f._chatv.ffzUpdateMenuUnread();
}
var room = this.get("currentRoom"),
room_id = room && room.get('id'),
channel_room = this.get("currentChannelRoom"),
is_group = room && _.contains(this.get("privateGroupRooms.content") || [], room);
if ( room === channel_room || is_group || (f._chatv && f._chatv._ffz_host === room_id) || (f.settings.pinned_rooms && f.settings.pinned_rooms.indexOf(room_id) !== -1) )
return;
this.blurRoom();
if ( ! this.get("showList") )
this.send("toggleMode");
}.observes("privateGroupRooms.@each"),
2015-07-04 17:06:36 -04:00
removeCurrentChannelRoom: function() {
if ( f.has_bttv )
2015-07-04 17:06:36 -04:00
return this._super();
var room = this.get("currentChannelRoom"),
room_id = room && room.get('id'),
user = f.get_user();
2015-07-04 17:06:36 -04:00
// Don't clean up pinned rooms or the current host target.
if ( !((f._chatv && f._chatv._ffz_host === room_id) || (f.settings.pinned_rooms && f.settings.pinned_rooms.indexOf(room_id) !== -1)) ) {
2015-07-04 17:06:36 -04:00
if ( room === this.get("currentRoom") )
this.blurRoom();
// Don't destroy it if it's the user's room.
if ( room && user && user.login !== room_id )
room.ffzScheduleDestroy();
2015-07-04 17:06:36 -04:00
}
this.set("currentChannelRoom", void 0);
}
2015-06-05 03:59:28 -04:00
});
}
this.log("Hooking the Ember Chat view.");
var Chat = utils.ember_resolve('view:chat');
this._modify_cview(Chat);
// For some reason, this doesn't work unless we create an instance of the
// chat view and then destroy it immediately.
try {
Chat.create().destroy();
} catch(err) { }
// Modify all existing Chat views.
var views = utils.ember_views();
for(var key in views) {
if ( ! views.hasOwnProperty(key) )
continue;
var view = views[key];
if ( !(view instanceof Chat) )
continue;
2015-06-05 03:59:28 -04:00
this.log("Manually updating existing Chat view.", view);
try {
if ( ! view.ffzInit )
this._modify_cview(view);
2015-06-05 03:59:28 -04:00
view.ffzInit();
} catch(err) {
this.error("setup: build_ui_link: " + err);
}
}
}
// --------------------
// Modify Chat View
// --------------------
FFZ.prototype._modify_cview = function(view) {
var f = this;
view.reopen({
didInsertElement: function() {
this._super();
2015-06-05 03:59:28 -04:00
try {
2015-06-05 03:59:28 -04:00
this.ffzInit();
} catch(err) {
f.error("view:chat ffzInit error: " + err);
}
},
didUpdate: function() {
this._super();
f.log("view:chat didUpdate", this)
},
willClearRender: function() {
try {
2015-06-05 03:59:28 -04:00
this.ffzTeardown();
} catch(err) {
f.error("view:chat ffzTeardown error: " + err);
}
2015-06-05 03:59:28 -04:00
this._super();
},
2015-06-05 03:59:28 -04:00
ffzInit: function() {
f._chatv = this;
2015-06-05 03:59:28 -04:00
this.$('.textarea-contain').append(f.build_ui_link(this));
this.$('.chat-messages').find('.html-tooltip').tipsy({live: true, html: true, gravity: utils.tooltip_placement(2*constants.TOOLTIP_DISTANCE, 'n')});
this.$('.chat-messages').find('.ffz-tooltip').tipsy({live: true, html: true, title: f.render_tooltip(), gravity: utils.tooltip_placement(2*constants.TOOLTIP_DISTANCE, 'n')});
if ( ! f.has_bttv ) {
if ( f.settings.group_tabs )
this.ffzEnableTabs();
this.ffzRebuildMenu();
}
2015-06-05 03:59:28 -04:00
this.ffz_pruner = setInterval(this.ffzPruneTabs.bind(this), 10000);
2015-06-05 03:59:28 -04:00
setTimeout(function() {
if ( f.settings.group_tabs && f._chatv && f._chatv._ffz_tabs )
2015-06-05 03:59:28 -04:00
f._chatv.$('.chat-room').css('top', f._chatv._ffz_tabs.offsetHeight + "px");
var controller = f._chatv && f._chatv.get('controller');
2015-06-05 03:59:28 -04:00
controller && controller.set('showList', false);
}, 1000);
},
ffzTeardown: function() {
if ( f._chatv === this )
f._chatv = null;
if ( this.ffz_pruner ) {
clearInterval(this.ffz_pruner);
this.ffz_pruner = null;
}
2015-06-05 03:59:28 -04:00
this.$('.textarea-contain .ffz-ui-toggle').remove();
if ( f.settings.group_tabs )
this.ffzDisableTabs();
this.ffzTeardownMenu();
this.ffzUnloadHost();
},
ffzPruneTabs: function() {
if ( ! this._ffz_tabs )
return;
var elements = this._ffz_tabs.querySelectorAll('.ffz-chat-tab:not(.hidden):not(.active)'),
update_height = false;
for(var i=0; i < elements.length; i++) {
var el = elements[i],
room_id = el.getAttribute('data-room'),
was_hidden = el.classList.contains('hidden'),
is_hidden = ! this.ffzTabVisible(room_id);
if ( was_hidden !== is_hidden ) {
el.classList.toggle('hidden', is_hidden);
update_height = true;
}
}
if ( update_height )
this.$('.chat-room').css('top', this._ffz_tabs.offsetHeight + "px");
2015-06-05 03:59:28 -04:00
},
2015-06-05 03:59:28 -04:00
ffzChangeRoom: Ember.observer('controller.currentRoom', function() {
f.update_ui_link();
this.ffz_unread = this.ffz_unread || {};
// Close mod cards when changing to a new room.
if ( f._mod_card )
f._mod_card.send('close');
var room = this.get('controller.currentRoom'),
room_id = room && room.get('id'),
was_unread = room_id && this.ffz_unread[room_id],
update_height = false;
if ( room ) {
room.resetUnreadCount();
room.ffz_last_view = Date.now();
}
2015-06-05 03:59:28 -04:00
if ( room && room._ffz_tab ) {
var was_hidden = room._ffz_tab.classList.contains('hidden'),
is_hidden = ! this.ffzTabVisible(room_id);
if ( was_hidden !== is_hidden ) {
room._ffz_tab.classList.toggle('hidden', is_hidden);
update_height = true;
}
}
if ( was_unread && room_id ) {
this.ffz_unread[room_id] = false;
this.ffzUpdateMenuUnread();
}
if ( this._ffz_chan_table )
jQuery('.ffz-room-row.active', this._ffz_chan_table).removeClass('active');
if ( this._ffz_group_table )
jQuery('.ffz-room-row.active', this._ffz_group_table).removeClass('active');
if ( this._ffz_tabs ) {
jQuery('.ffz-chat-tab.active', this._ffz_tabs).removeClass('active');
// Invite Link
var can_invite = room && room.get('canInvite');
if ( this._ffz_invite )
this._ffz_invite.classList.toggle('hidden', ! can_invite);
this.set('controller.showInviteUser', can_invite && this.get('controller.showInviteUser'));
update_height = true;
}
if ( room && room._ffz_tab ) {
room._ffz_tab.classList.remove('tab-mentioned');
room._ffz_tab.classList.add('active');
var sp = room._ffz_tab.querySelector('span');
if ( sp )
sp.innerHTML = '';
}
2015-06-05 03:59:28 -04:00
if ( room && room._ffz_row ) {
room._ffz_row.classList.remove('row-mentioned');
room._ffz_row.classList.add('active');
var sp = room._ffz_row.querySelector('span');
if ( sp )
sp.innerHTML = '';
}
if ( update_height )
this.$('.chat-room').css('top', this._ffz_tabs.offsetHeight + "px");
}),
// Hosted Channel Chat
ffzUnloadHost: function() {
if ( ! this._ffz_host )
return;
if ( f.settings.pinned_rooms.indexOf(this._ffz_host) === -1 ) {
if ( this.get('controller.currentRoom') === this._ffz_host_room )
this.get('controller').blurRoom();
// Schedule the room to be destroyed. This is after a short
// delay to make sure we aren't just loading the room in a
// new way.
this._ffz_host_room.ffzScheduleDestroy();
}
this._ffz_host = null;
this._ffz_host_room = null;
},
ffzUpdateHost: function() {
var Channel = utils.ember_lookup('controller:channel'),
Room = utils.ember_resolve('model:room'),
target = Room && Channel && Channel.get('hostModeTarget'),
updated = false;
if ( f.has_bttv )
return;
if ( target ) {
var target_id = target.get('id');
if ( this._ffz_host !== target_id ) {
this.ffzUnloadHost();
this._ffz_host = target_id;
this._ffz_host_room = Room.findOne(target_id);
updated = true;
}
} else if ( this._ffz_host ) {
this.ffzUnloadHost();
updated = true;
}
if ( updated ) {
this.ffzRebuildMenu();
this.ffzRebuildTabs();
}
},
// Unread Handling
ffzUpdateMenuUnread: function() {
var el = this.get('element'),
controller = this.get('controller'),
unread_display = el && el.querySelector('#ffz-group-tabs .button .notifications');
Ember.propertyDidChange(controller, 'notificationsCount');
if ( unread_display )
unread_display.innerHTML = utils.format_unread(controller.get('notificationsCount'));
},
ffzUpdateUnread: function(target_id) {
var current_id = this.get('controller.currentRoom.id');
this.ffz_unread = this.ffz_unread || {};
if ( target_id === current_id )
// We don't care about updates to the current room.
return;
var to_update,
update_unread = false,
update_height = false;
// If we DO have a room ID, only update that room.
if ( target_id )
to_update = [target_id];
else
to_update = Object.keys(f.rooms);
for(var i=0; i < to_update.length; i++) {
var room_id = to_update[i],
room = f.rooms[room_id] && f.rooms[room_id].room,
row = room && room._ffz_row,
tab = room && room._ffz_tab,
unread_count = room_id === current_id ? 0 : room.get('unreadCount'),
is_unread = unread_count > 0,
unread = utils.format_unread(unread_count);
if ( this.ffz_unread[room_id] !== is_unread ) {
this.ffz_unread[room_id] = is_unread;
update_unread = true;
2015-06-05 03:59:28 -04:00
}
if ( row ) {
var sp = row.querySelector('span');
if ( sp )
sp.innerHTML = unread;
}
if ( tab ) {
var was_hidden = tab.classList.contains('hidden'),
is_hidden = ! this.ffzTabVisible(room_id),
sp = tab.querySelector('span');
if ( was_hidden !== is_hidden ) {
tab.classList.toggle('hidden', is_hidden);
update_height = true;
}
if ( sp )
sp.innerHTML = unread;
}
}
if ( update_height )
this.$('.chat-room').css('top', this._ffz_tabs.offsetHeight + "px");
if ( update_unread )
this.ffzUpdateMenuUnread();
},
// Menu Rendering
ffzTeardownMenu: function() {
var el = this.get('element'),
room_list = el && el.querySelector('.chat-rooms .tse-content'),
chan_table = room_list && room_list.querySelector('#ffz-channel-table'),
group_table = room_list && room_list.querySelector('#ffz-group-table');
if ( chan_table )
chan_table.parentElement.removeChild(chan_table);
if ( group_table )
group_table.parentElement.removeChild(group_table);
this._ffz_chan_table = null;
this._ffz_group_table = null;
if ( room_list && room_list.classList.contains('ffz-room-list') ) {
room_list.classList.remove('ffz-room-list');
jQuery('.ffz', room_list).removeClass('ffz');
2015-06-05 03:59:28 -04:00
}
for(var room_id in f.rooms)
if ( f.rooms[room_id] && f.rooms[room_id].room && f.rooms[room_id].room._ffz_row )
f.rooms[room_id].room._ffz_row = null;
},
ffzRebuildMenu: function() {
var el = this.get('element'),
room_list = el && el.querySelector('.chat-rooms .tse-content');
if ( ! room_list )
return;
if ( ! room_list.classList.contains('ffz-room-list') ) {
room_list.classList.add('ffz-room-list');
// Find the Pending Invitations
var headers = room_list.querySelectorAll('.list-header'),
hdr = headers.length ? headers[headers.length-1] : undefined;
if ( hdr ) {
hdr.classList.add('ffz');
if ( hdr.nextSibling && hdr.nextSibling.classList )
hdr.nextSibling.classList.add('ffz');
}
}
// Channel Table
var view = this,
chan_table = this._ffz_chan_table || room_list.querySelector('#ffz-channel-table tbody');
if ( ! chan_table ) {
var tbl = document.createElement('table');
tbl.setAttribute('cellspacing', '0');
tbl.id = 'ffz-channel-table';
tbl.className = 'ffz';
tbl.innerHTML = '<thead><tr><th colspan="2">Channels</th><th class="ffz-row-switch" title="Pinning a channel makes it so you always join that channel\'s chat, no matter where you are on Twitch.">Pin</th></tr></thead><tbody></tbody>';
room_list.insertBefore(tbl, room_list.firstChild);
jQuery('.ffz-row-switch', tbl).tipsy({gravity: utils.tooltip_placement(constants.TOOLTIP_DISTANCE, 'se')});
chan_table = this._ffz_chan_table = tbl.querySelector('tbody');
} else
chan_table.innerHTML = '';
// Current Channel
var room = this.get('controller.currentChannelRoom'),
room_id = room && room.get('id'),
row;
if ( room ) {
row = this.ffzBuildRow(room, true);
row && chan_table.appendChild(row);
}
// Host Target
if ( this._ffz_host_room ) {
row = this.ffzBuildRow(this._ffz_host_room, false, true);
row && chan_table.appendChild(row);
}
// Pinned Rooms
for(var i=0; i < f.settings.pinned_rooms.length; i++) {
var pinned_id = f.settings.pinned_rooms[i];
if ( room_id !== pinned_id && this._ffz_host !== pinned_id && f.rooms[pinned_id] && f.rooms[pinned_id].room ) {
row = this.ffzBuildRow(f.rooms[pinned_id].room);
row && chan_table.appendChild(row);
}
}
// Group Chat Table
var group_table = this._ffz_group_table || room_list.querySelector('#ffz-group-table tbody');
if ( ! group_table ) {
var tbl = document.createElement('table');
tbl.setAttribute('cellspacing', '0');
tbl.id = 'ffz-group-table';
tbl.className = 'ffz';
tbl.innerHTML = '<thead><tr><th colspan="2">Group Chats</th></tr></thead><tbody></tbody>';
var before = room_list.querySelector('#ffz-channel-table');
room_list.insertBefore(tbl, before.nextSibling);
group_table = this._ffz_group_table = tbl.querySelector('tbody');
} else
group_table.innerHTML = '';
_.each(this.get('controller.connectedPrivateGroupRooms'), function(room) {
var row = view.ffzBuildRow(room);
row && group_table && group_table.appendChild(row);
});
// Change Create Tooltip
var create_btn = el.querySelector('.button.create');
if ( create_btn )
create_btn.title = 'Create a Group Room';
},
ffzBuildRow: function(room, current_channel, host_channel) {
var view = this,
row = document.createElement('tr'),
icon = document.createElement('td'),
name_el = document.createElement('td'),
btn,
toggle_pinned = document.createElement('td'),
room_id = room.get('id'),
group = room.get('isGroupRoom'),
active_channel = room === this.get('controller.currentRoom'),
unread = utils.format_unread(active_channel ? 0 : room.get('unreadCount')),
name = room.get('tmiRoom.displayName') || (group ? room.get('tmiRoom.name') : FFZ.get_capitalization(room_id, function(name) {
var active_channel = room === view.get('controller.currentRoom');
unread = utils.format_unread(active_channel ? 0 : room.get('unreadCount'));
name_el.innerHTML = utils.sanitize(name) + ' <span>' + unread + '</span>';
}));
row.setAttribute('data-room', room_id);
row.className = 'ffz-room-row';
row.classList.toggle('current-channel', current_channel);
row.classList.toggle('host-channel', host_channel);
row.classList.toggle('group-chat', group);
row.classList.toggle('active', active_channel);
if ( current_channel ) {
icon.innerHTML = constants.CAMERA;
row.title = "Current Channel";
row.classList.add('tooltip');
} else if ( host_channel ) {
icon.innerHTML = constants.EYE;
row.title = "Hosted Channel";
row.classList.add('tooltip');
}
name_el.className = 'ffz-room';
name_el.innerHTML = utils.sanitize(name) + ' <span>' + unread + '</span>';
row.appendChild(icon);
row.appendChild(name_el);
toggle_pinned.className = 'ffz-row-switch';
if ( ! group ) {
toggle_pinned.innerHTML = '<a class="switch' + (f.settings.pinned_rooms.indexOf(room_id) !== -1 ? ' active' : '') + '"><span></span></a>';
btn = toggle_pinned.querySelector('a.switch');
btn.addEventListener('click', function(e) {
e.preventDefault();
e.stopPropagation && e.stopPropagation();
var is_pinned = f.settings.pinned_rooms.indexOf(room_id) !== -1;
if ( is_pinned )
f._leave_room(room_id);
else
f._join_room(room_id);
this.classList.toggle('active', !is_pinned);
});
} else {
btn = document.createElement('a');
btn.className = 'leave-chat tooltip';
btn.innerHTML = constants.CLOSE;
btn.title = 'Leave Group';
toggle_pinned.innerHTML = '';
toggle_pinned.appendChild(btn);
btn.addEventListener('click', function(e) {
e.preventDefault();
e.stopPropagation && e.stopPropagation();
if ( ! confirm('Are you sure you want to leave the group room "' + name + '"?') )
return;
room.get('isGroupRoom') && room.del();
});
}
row.appendChild(toggle_pinned);
row.addEventListener('click', function() {
var controller = view.get('controller');
controller.focusRoom(room);
controller.set('showList', false);
});
room._ffz_row = row;
return row;
},
// Group Tabs
2015-06-05 03:59:28 -04:00
ffzEnableTabs: function() {
if ( f.has_bttv || ! f.settings.group_tabs || this._ffz_tabs )
2015-06-05 03:59:28 -04:00
return;
// Hide the existing chat UI.
this.$(".chat-header").addClass("hidden");
// Create our own UI.
var tabs = this._ffz_tabs = document.createElement("div");
tabs.id = "ffz-group-tabs";
this.$(".chat-header").after(tabs);
// List the Rooms
this.ffzRebuildTabs();
},
ffzDisableTabs: function() {
if ( this._ffz_tabs ) {
this._ffz_tabs.parentElement.removeChild(this._ffz_tabs);
this._ffz_tabs = null;
this._ffz_invite = null;
for(var room_id in f.rooms)
if ( f.rooms[room_id] && f.rooms[room_id].room && f.rooms[room_id].room._ffz_tab )
f.rooms[room_id].room._ffz_tab = null;
}
// Show the old chat UI.
this.$('.chat-room').css('top', '');
this.$(".chat-header").removeClass("hidden");
},
2015-06-05 03:59:28 -04:00
ffzRebuildTabs: function() {
2015-06-05 03:59:28 -04:00
var tabs = this._ffz_tabs || this.get('element').querySelector('#ffz-group-tabs');
if ( ! tabs )
return;
tabs.innerHTML = "";
if ( f.has_bttv || ! f.settings.group_tabs )
return;
2015-06-05 03:59:28 -04:00
var link = document.createElement('a'),
view = this;
2015-06-05 03:59:28 -04:00
// Chat Room Management Button
link.className = 'button glyph-only';
2015-06-05 03:59:28 -04:00
link.title = "Chat Room Management";
link.innerHTML = constants.ROOMS + '<span class="notifications"></span>';
2015-06-05 03:59:28 -04:00
jQuery(link).tipsy({gravity: "n", offset: 5});
2015-06-05 03:59:28 -04:00
link.addEventListener('click', function() {
var controller = view.get('controller');
controller && controller.set('showList', !controller.get('showList'));
});
tabs.appendChild(link);
// Invite Button
2015-06-05 03:59:28 -04:00
link = document.createElement('a'),
link.className = 'button glyph-only tooltip invite';
link.title = "Invite a User";
link.innerHTML = constants.INVITE;
link.addEventListener('click', function() {
var controller = view.get('controller');
controller && controller.set('showInviteUser', controller.get('currentRoom.canInvite') && !controller.get('showInviteUser'));
});
link.classList.toggle('hidden', !this.get("controller.currentRoom.canInvite"));
view._ffz_invite = link;
tabs.appendChild(link);
// Current Room
var room = this.get('controller.currentChannelRoom'),
room_id = room && room.get('id'),
tab;
2015-06-05 03:59:28 -04:00
if ( room ) {
tab = this.ffzBuildTab(room, true);
2015-06-05 03:59:28 -04:00
tab && tabs.appendChild(tab);
}
2015-06-05 03:59:28 -04:00
// Host Target
2015-06-05 03:59:28 -04:00
if ( this._ffz_host_room ) {
tab = view.ffzBuildTab(this._ffz_host_room, false, true);
2015-06-05 03:59:28 -04:00
tab && tabs.appendChild(tab);
}
2015-06-05 03:59:28 -04:00
// Pinned Rooms
for(var i=0; i < f.settings.pinned_rooms.length; i++) {
var pinned_id = f.settings.pinned_rooms[i];
if ( room_id !== pinned_id && this._ffz_host !== pinned_id && f.rooms[pinned_id] && f.rooms[pinned_id].room ) {
tab = view.ffzBuildTab(f.rooms[pinned_id].room, false, false);
2015-06-05 03:59:28 -04:00
tab && tabs.appendChild(tab);
}
}
// Group Chat
2015-06-05 03:59:28 -04:00
_.each(this.get('controller.connectedPrivateGroupRooms'), function(room) {
var tab = view.ffzBuildTab(room);
2015-06-05 03:59:28 -04:00
tab && tabs.appendChild(tab);
});
// Adjust the height of the chat room to account for the height of the numerous tabs.
2015-06-05 03:59:28 -04:00
this.$('.chat-room').css('top', tabs.offsetHeight + "px");
this.ffzUpdateMenuUnread();
2015-06-05 03:59:28 -04:00
},
ffzBuildTab: function(room, current_channel, host_channel) {
var view = this,
tab = document.createElement('span'), name, unread, icon = '',
room_id = room.get('id'),
2015-06-05 03:59:28 -04:00
group = room.get('isGroupRoom'),
active_channel = room === this.get('controller.currentRoom');
2015-06-05 03:59:28 -04:00
tab.setAttribute('data-room', room_id);
2015-06-05 03:59:28 -04:00
tab.className = 'ffz-chat-tab tooltip';
tab.classList.toggle('current-channel', current_channel);
tab.classList.toggle('host-channel', host_channel);
tab.classList.toggle('group-chat', group);
tab.classList.toggle('active', active_channel);
2015-06-05 03:59:28 -04:00
tab.classList.toggle('hidden', ! this.ffzTabVisible(room_id));
2015-06-05 03:59:28 -04:00
unread = utils.format_unread(active_channel ? 0 : room.get('unreadCount'));
name = room.get('tmiRoom.displayName') || (group ? room.get('tmiRoom.name') : FFZ.get_capitalization(room_id, function(name) {
var active_channel = room === view.get('controller.currentRoom');
unread = utils.format_unread(active_channel ? 0 : room.get('unreadCount'));
2015-07-04 17:06:36 -04:00
tab.innerHTML = icon + utils.sanitize(name) + '<span>' + unread + '</span>';
}));
2015-06-05 03:59:28 -04:00
if ( current_channel ) {
2015-07-04 17:06:36 -04:00
icon = constants.CAMERA;
2015-06-05 03:59:28 -04:00
tab.title = "Current Channel";
} else if ( host_channel ) {
2015-07-04 17:06:36 -04:00
icon = constants.EYE;
2015-06-05 03:59:28 -04:00
tab.title = "Hosted Channel";
} else if ( group )
tab.title = "Group Chat";
else
tab.title = "Pinned Channel";
2015-07-04 17:06:36 -04:00
tab.innerHTML = icon + utils.sanitize(name) + '<span>' + unread + '</span>';
2015-06-05 03:59:28 -04:00
tab.addEventListener('click', function() {
var controller = view.get('controller');
controller.focusRoom(room);
controller.set('showList', false);
2015-06-05 03:59:28 -04:00
});
room._ffz_tab = tab;
2015-06-05 03:59:28 -04:00
return tab;
},
ffzTabVisible: function(room_id) {
var room = f.rooms[room_id] && f.rooms[room_id].room,
is_current = room === this.get('controller.currentRoom'),
is_channel = room === this.get('controller.currentChannelRoom'),
2015-06-05 03:59:28 -04:00
now = Date.now();
2015-06-05 03:59:28 -04:00
if ( is_current || is_channel || room_id === this._ffz_host || f.settings.group_tabs === 3 )
// Important Tabs
return true;
2015-06-05 03:59:28 -04:00
else if ( now - room.ffz_last_view < 60000 || now - room.ffz_last_input < 2700000 )
// Recent Self Input or View
return true;
else if ( f.settings.group_tabs === 1 && now - (room.ffz_last_activity || 0) < 2700000 )
// Any Recent Activity
return true;
else if ( f.settings.group_tabs === 2 && now - (room.ffz_last_mention || 0) < 2700000 )
// Recent Mentions
return true;
return false;
}
});
2015-06-05 03:59:28 -04:00
}
// ----------------------
// Chat Room Connections
// ----------------------
FFZ.prototype.connect_extra_chat = function() {
var user = this.get_user();
if ( user && user.login ) {
// Make sure we're in the user's room.
if ( ! this.rooms[user.login] || this.rooms[user.login].room ) {
var Room = utils.ember_resolve('model:room');
Room && Room.findOne(user.login);
}
}
// We don't join extra rooms with BTTV.
2015-06-05 03:59:28 -04:00
if ( this.has_bttv )
return;
for(var i=0; i < this.settings.pinned_rooms.length; i++)
this._join_room(this.settings.pinned_rooms[i], true);
if ( ! this._chatv )
return;
// Rebuild the chat UI.
if ( this.settings.group_tabs )
2015-06-05 03:59:28 -04:00
this._chatv.ffzRebuildTabs();
this._chatv.ffzRebuildMenu();
2015-06-05 03:59:28 -04:00
}
FFZ.prototype.disconnect_extra_chat = function() {
var Chat = utils.ember_lookup('controller:chat'),
current_channel_id = Chat && Chat.get('currentChannelRoom.id'),
current_id = Chat && Chat.get('currentRoom.id'),
user = this.get_user();
if ( ! Chat )
return;
for(var i=0; i < this.settings.pinned_rooms.length; i++) {
var room_id = this.settings.pinned_rooms[i];
if ( room_id === current_channel_id || (user && room_id === user.login) )
continue;
if ( this.rooms[room_id] && this.rooms[room_id].room ) {
if ( current_id === room_id )
Chat.blurRoom();
this.rooms[room_id].room.destroy();
}
}
}
2015-06-05 03:59:28 -04:00
FFZ.prototype._join_room = function(room_id, no_rebuild) {
var did_join = false;
if ( this.settings.pinned_rooms.indexOf(room_id) === -1 ) {
this.settings.pinned_rooms.push(room_id);
this.settings.set("pinned_rooms", this.settings.pinned_rooms);
did_join = true;
}
2015-06-05 03:59:28 -04:00
// Make sure we're not already there.
if ( ! this.rooms[room_id] || ! this.rooms[room_id].room ) {
// Okay, fine. Get it.
var Room = utils.ember_resolve('model:room');
Room && Room.findOne(room_id);
}
2015-06-05 03:59:28 -04:00
// Rebuild the chat UI.
if ( ! no_rebuild && ! this.has_bttv && this._chatv ) {
if ( this.settings.group_tabs )
this._chatv.ffzRebuildTabs();
2015-06-05 03:59:28 -04:00
this._chatv.ffzRebuildMenu();
}
2015-06-05 03:59:28 -04:00
return did_join;
}
FFZ.prototype._leave_room = function(room_id, no_rebuild) {
var did_leave = false;
if ( this.settings.pinned_rooms.indexOf(room_id) !== -1 ) {
this.settings.pinned_rooms.removeObject(room_id);
this.settings.set("pinned_rooms", this.settings.pinned_rooms);
did_leave = true;
}
if ( ! this.rooms[room_id] || ! this.rooms[room_id].room )
return did_leave;
var Chat = utils.ember_lookup('controller:chat'),
r = this.rooms[room_id].room,
user = this.get_user();
2015-06-05 03:59:28 -04:00
if ( ! Chat || Chat.get('currentChannelRoom.id') === room_id || (this._chatv && this._chatv._ffz_host === room_id) )
return did_leave;
if ( Chat.get('currentRoom.id') === room_id )
Chat.blurRoom();
// Don't leave the user's room, but update the UI.
if ( ! user || user.login !== room_id )
r.destroy();
2015-06-05 03:59:28 -04:00
// Rebuild the chat UI.
if ( ! no_rebuild && ! this.has_bttv && this._chatv ) {
if ( this.settings.group_tabs )
this._chatv.ffzRebuildTabs();
this._chatv.ffzRebuildMenu();
}
2015-06-05 03:59:28 -04:00
return did_leave;
}
// ----------------------
// Commands
// ----------------------
FFZ.chat_commands.join = function(room, args) {
if ( this.has_bttv )
return "Pinned Rooms are not available with BetterTTV installed.";
2015-06-05 03:59:28 -04:00
if ( ! args || ! args.length || args.length > 1 )
return "Join Usage: /join <channel>";
var room_id = args[0].toLowerCase();
if ( room_id.charAt(0) === "#" )
room_id = room_id.substr(1);
if ( this._join_room(room_id) )
return "Joining " + room_id + ". You will always connect to this channel's chat unless you later /part from it.";
else
return "You have already joined " + room_id + ". Please use \"/part " + room_id + "\" to leave it.";
}
FFZ.chat_commands.part = function(room, args) {
if ( this.has_bttv )
return "Pinned Rooms are not available with BetterTTV installed.";
2015-06-05 03:59:28 -04:00
if ( ! args || ! args.length || args.length > 1 )
return "Part Usage: /part <channel>";
var room_id = args[0].toLowerCase();
if ( room_id.charAt(0) === "#" )
room_id = room_id.substr(1);
if ( this._leave_room(room_id) )
return "Leaving " + room_id + ".";
else if ( this.rooms[room_id] )
return "You do not have " + room_id + " pinned and you cannot leave the current channel or hosted channels via /part.";
else
return "You are not in " + room_id + ".";
}