1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* global $ */
- var PanelToggler = require("../side_pannels/SidePanelToggler");
- var UIUtil = require("../util/UIUtil");
- var AnalyticsAdapter = require("../../statistics/AnalyticsAdapter");
-
- var buttonHandlers = {
- "bottom_toolbar_contact_list": function () {
- AnalyticsAdapter.sendEvent('bottomtoolbar.contacts.toggled');
- BottomToolbar.toggleContactList();
- },
- "bottom_toolbar_film_strip": function () {
- AnalyticsAdapter.sendEvent('bottomtoolbar.filmstrip.toggled');
- BottomToolbar.toggleFilmStrip();
- },
- "bottom_toolbar_chat": function () {
- AnalyticsAdapter.sendEvent('bottomtoolbar.chat.toggled');
- BottomToolbar.toggleChat();
- }
- };
-
-
- var defaultBottomToolbarButtons = {
- 'chat': '#bottom_toolbar_chat',
- 'contacts': '#bottom_toolbar_contact_list',
- 'filmstrip': '#bottom_toolbar_film_strip'
- };
-
-
- var BottomToolbar = (function (my) {
- my.init = function () {
- UIUtil.hideDisabledButtons(defaultBottomToolbarButtons);
-
- for(var k in buttonHandlers)
- $("#" + k).click(buttonHandlers[k]);
- };
-
- my.toggleChat = function() {
- PanelToggler.toggleChat();
- };
-
- my.toggleContactList = function() {
- PanelToggler.toggleContactList();
- };
-
- my.toggleFilmStrip = function() {
- var filmstrip = $("#remoteVideos");
- filmstrip.toggleClass("hidden");
- };
-
- $(document).bind("remotevideo.resized", function (event, width, height) {
- var bottom = (height - $('#bottomToolbar').outerHeight())/2 + 18;
-
- $('#bottomToolbar').css({bottom: bottom + 'px'});
- });
-
- return my;
- }(BottomToolbar || {}));
-
- module.exports = BottomToolbar;
|