[PE] Duplicate Add Slide button in the Insert tab and remove from Collaboration and Plugins tabs.

This commit is contained in:
Julia Radzhabova 2017-11-03 14:06:03 +03:00
parent fe063ad6f5
commit 34166fb17c
3 changed files with 91 additions and 66 deletions

View file

@ -121,6 +121,7 @@ define([
'insert:text' : this.onInsertText.bind(this), 'insert:text' : this.onInsertText.bind(this),
'insert:textart' : this.onInsertTextart.bind(this), 'insert:textart' : this.onInsertTextart.bind(this),
'insert:shape' : this.onInsertShape.bind(this), 'insert:shape' : this.onInsertShape.bind(this),
'add:slide' : this.onAddSlide.bind(this),
'change:compact' : this.onClickChangeCompact 'change:compact' : this.onClickChangeCompact
}, },
'FileMenu': { 'FileMenu': {
@ -225,6 +226,10 @@ define([
PE.getCollection('ShapeGroups').bind({ PE.getCollection('ShapeGroups').bind({
reset: me.onResetAutoshapes.bind(this) reset: me.onResetAutoshapes.bind(this)
}); });
PE.getCollection('SlideLayouts').bind({
reset: me.onResetSlides.bind(this)
});
}, },
attachUIEvents: function(toolbar) { attachUIEvents: function(toolbar) {
@ -232,8 +237,6 @@ define([
* UI Events * UI Events
*/ */
toolbar.btnAddSlide.on('click', _.bind(this.onBtnAddSlide, this));
toolbar.mnuAddSlidePicker.on('item:click', _.bind(this.onAddSlide, this));
if (toolbar.mnuChangeSlidePicker) if (toolbar.mnuChangeSlidePicker)
toolbar.mnuChangeSlidePicker.on('item:click', _.bind(this.onChangeSlide, this)); toolbar.mnuChangeSlidePicker.on('item:click', _.bind(this.onChangeSlide, this));
toolbar.btnPreview.on('click', _.bind(this.onPreviewBtnClick, this)); toolbar.btnPreview.on('click', _.bind(this.onPreviewBtnClick, this));
@ -803,23 +806,16 @@ define([
Common.component.Analytics.trackEvent('ToolBar', 'Open Document'); Common.component.Analytics.trackEvent('ToolBar', 'Open Document');
}, },
onAddSlide: function(picker, item, record) { onAddSlide: function(type) {
if (this.api) { var me = this;
if (record) if ( this.api) {
this.api.AddSlide(record.get('data').idx); this.api.AddSlide(type);
Common.NotificationCenter.trigger('edit:complete', this.toolbar); Common.NotificationCenter.trigger('edit:complete', me.toolbar);
Common.component.Analytics.trackEvent('ToolBar', 'Add Slide'); Common.component.Analytics.trackEvent('ToolBar', 'Add Slide');
} }
}, },
onBtnAddSlide: function() {
this.api.AddSlide();
Common.NotificationCenter.trigger('edit:complete', this.toolbar);
Common.component.Analytics.trackEvent('ToolBar', 'Add Slide');
},
onChangeSlide: function(picker, item, record) { onChangeSlide: function(picker, item, record) {
if (this.api) { if (this.api) {
if (record) if (record)
@ -1717,6 +1713,12 @@ define([
}.bind(this)); }.bind(this));
}, },
onResetSlides: function () {
setTimeout(function () {
this.toolbar.updateAddSlideMenu(PE.getCollection('SlideLayouts'));
}.bind(this), 0);
},
fillEquations: function() { fillEquations: function() {
if (!this.toolbar.btnInsertEquation.rendered || this.toolbar.btnInsertEquation.menu.items.length>0) return; if (!this.toolbar.btnInsertEquation.rendered || this.toolbar.btnInsertEquation.menu.items.length>0) return;
@ -2048,7 +2050,7 @@ define([
var toolbar = this.toolbar; var toolbar = this.toolbar;
toolbar.$el.find('.toolbar').toggleClass('masked', disable); toolbar.$el.find('.toolbar').toggleClass('masked', disable);
this.toolbar.lockToolbar(PE.enumLock.menuFileOpen, disable, {array: [toolbar.btnAddSlide, toolbar.btnChangeSlide, toolbar.btnPreview, toolbar.btnHide]}); this.toolbar.lockToolbar(PE.enumLock.menuFileOpen, disable, {array: [toolbar.btnsAddSlide, toolbar.btnChangeSlide, toolbar.btnPreview, toolbar.btnHide]});
if(disable) { if(disable) {
mask = $("<div class='toolbar-mask'>").appendTo(toolbar.$el.find('.toolbar')); mask = $("<div class='toolbar-mask'>").appendTo(toolbar.$el.find('.toolbar'));
Common.util.Shortcuts.suspendEvents('command+k, ctrl+k, alt+h, command+f5, ctrl+f5'); Common.util.Shortcuts.suspendEvents('command+k, ctrl+k, alt+h, command+f5, ctrl+f5');

View file

@ -41,13 +41,13 @@
</div> </div>
</div> </div>
<div class="separator long"></div> <div class="separator long"></div>
<div class="group">
<span class="btn-slot text x-huge" id="slot-btn-addslide"></span>
</div>
<div class="group" style="display:none;"></div>
</section> </section>
<section class="box-panels"> <section class="box-panels">
<section class="panel" data-tab="home"> <section class="panel" data-tab="home">
<div class="group">
<span class="btn-slot text x-huge slot-addslide"></span>
</div>
<div class="group" style="display:none;"></div>
<div class="group"> <div class="group">
<div class="elset"> <div class="elset">
<span class="btn-slot split" id="slot-btn-changeslide"></span> <span class="btn-slot split" id="slot-btn-changeslide"></span>
@ -123,6 +123,10 @@
</div> </div>
</section> </section>
<section class="panel" data-tab="ins"> <section class="panel" data-tab="ins">
<div class="group">
<span class="btn-slot text x-huge slot-addslide"></span>
</div>
<div class="group" style="display:none;"></div>
<div class="separator long"></div> <div class="separator long"></div>
<div class="group"> <div class="group">
<span class="btn-slot text x-huge" id="slot-btn-inserttable"></span> <span class="btn-slot text x-huge" id="slot-btn-inserttable"></span>

View file

@ -166,17 +166,6 @@ define([
*/ */
var _set = PE.enumLock; var _set = PE.enumLock;
me.btnAddSlide = new Common.UI.Button({
id : 'id-toolbar-button-add-slide',
cls : 'btn-toolbar x-huge icon-top',
iconCls : 'btn-addslide',
split : true,
caption : me.capAddSlide,
lock : [_set.menuFileOpen, _set.slideDeleted, _set.lostConnect, _set.disableOnStart],
menu : true
});
me.slideOnlyControls.push(me.btnAddSlide);
me.btnChangeSlide = new Common.UI.Button({ me.btnChangeSlide = new Common.UI.Button({
id : 'id-toolbar-button-change-slide', id : 'id-toolbar-button-change-slide',
cls : 'btn-toolbar', cls : 'btn-toolbar',
@ -829,7 +818,7 @@ define([
'</div>' '</div>'
].join('')); ].join(''));
this.lockControls = [ this.btnAddSlide, this.btnChangeSlide, this.btnSave, this.lockControls = [ this.btnChangeSlide, this.btnSave,
this.btnCopy, this.btnPaste, this.btnUndo, this.btnRedo, this.cmbFontName, this.cmbFontSize, this.btnCopy, this.btnPaste, this.btnUndo, this.btnRedo, this.cmbFontName, this.cmbFontSize,
this.btnBold, this.btnItalic, this.btnUnderline, this.btnStrikeout, this.btnSuperscript, this.btnBold, this.btnItalic, this.btnUnderline, this.btnStrikeout, this.btnSuperscript,
this.btnSubscript, this.btnFontColor, this.btnClearStyle, this.btnCopyStyle, this.btnMarkers, this.btnSubscript, this.btnFontColor, this.btnClearStyle, this.btnCopyStyle, this.btnMarkers,
@ -956,7 +945,6 @@ define([
_injectComponent('#slot-field-fontname', this.cmbFontName); _injectComponent('#slot-field-fontname', this.cmbFontName);
_injectComponent('#slot-field-fontsize', this.cmbFontSize); _injectComponent('#slot-field-fontsize', this.cmbFontSize);
_injectComponent('#slot-btn-addslide', this.btnAddSlide);
_injectComponent('#slot-btn-changeslide', this.btnChangeSlide); _injectComponent('#slot-btn-changeslide', this.btnChangeSlide);
_injectComponent('#slot-btn-preview', this.btnPreview); _injectComponent('#slot-btn-preview', this.btnPreview);
_injectComponent('#slot-btn-print', this.btnPrint); _injectComponent('#slot-btn-print', this.btnPrint);
@ -1048,7 +1036,20 @@ define([
} }
}); });
var created = me.btnsInsertImage.concat(me.btnsInsertText, me.btnsInsertShape); me.btnsAddSlide = _injectBtns({
slot: '.slot-addslide',
btnconfig: {
id : 'tlbtn-addslide-',
cls : 'btn-toolbar x-huge icon-top',
iconCls : 'btn-addslide',
split : true,
caption : me.capAddSlide,
lock : [PE.enumLock.menuFileOpen, PE.enumLock.slideDeleted, PE.enumLock.lostConnect, PE.enumLock.disableOnStart],
menu : true
}
});
var created = me.btnsInsertImage.concat(me.btnsInsertText, me.btnsInsertShape, me.btnsAddSlide);
this.lockToolbar(PE.enumLock.disableOnStart, true, {array: created}); this.lockToolbar(PE.enumLock.disableOnStart, true, {array: created});
Array.prototype.push.apply(me.slideOnlyControls, created); Array.prototype.push.apply(me.slideOnlyControls, created);
@ -1092,11 +1093,24 @@ define([
}) })
); );
}); });
me.btnsAddSlide.forEach(function (btn, index) {
btn.updateHint(me.tipAddSlide + Common.Utils.String.platformKey('Ctrl+M'));
btn.setMenu(
new Common.UI.Menu({
items: [
{template: _.template('<div id="id-toolbar-menu-addslide-' + index + '" class="menu-layouts" style="width: 302px; margin: 0 4px;"></div>')}
]
})
);
btn.on('click', function (btn, e) {
me.fireEvent('add:slide');
});
});
}, },
createDelayedElements: function () { createDelayedElements: function () {
// set hints // set hints
this.btnAddSlide.updateHint(this.tipAddSlide + Common.Utils.String.platformKey('Ctrl+M'));
this.btnChangeSlide.updateHint(this.tipChangeSlide); this.btnChangeSlide.updateHint(this.tipChangeSlide);
this.btnPreview.updateHint(this.tipPreview); this.btnPreview.updateHint(this.tipPreview);
this.btnPrint.updateHint(this.tipPrint + Common.Utils.String.platformKey('Ctrl+P')); this.btnPrint.updateHint(this.tipPrint + Common.Utils.String.platformKey('Ctrl+P'));
@ -1213,14 +1227,6 @@ define([
}) })
); );
this.btnAddSlide.setMenu(
new Common.UI.Menu({
items: [
{template: _.template('<div id="id-toolbar-menu-addslide" class="menu-layouts" style="width: 302px; margin: 0 4px;"></div>')}
]
})
);
this.btnChangeSlide.setMenu( this.btnChangeSlide.setMenu(
new Common.UI.Menu({ new Common.UI.Menu({
items: [ items: [
@ -1328,29 +1334,6 @@ define([
maxColumns: 10 maxColumns: 10
}); });
this.mnuAddSlidePicker = new Common.UI.DataView({
el: $('#id-toolbar-menu-addslide'),
parentMenu: this.btnAddSlide.menu,
showLast: false,
restoreHeight: 300,
style: 'max-height: 300px;',
store: PE.getCollection('SlideLayouts'),
itemTemplate: _.template([
'<div class="layout" id="<%= id %>" style="width: <%= itemWidth %>px;">',
'<div style="background-image: url(<%= imageUrl %>); width: <%= itemWidth %>px; height: <%= itemHeight %>px;"/>',
'<div class="title"><%= title %></div> ',
'</div>'
].join(''))
});
if (this.btnAddSlide.menu) {
this.btnAddSlide.menu.on('show:after', function () {
me.onSlidePickerShowAfter(me.mnuAddSlidePicker);
me.mnuAddSlidePicker.scroller.update({alwaysVisibleY: true});
me.mnuAddSlidePicker.scroller.scrollTop(0);
});
}
this.mnuAddSlidePicker._needRecalcSlideLayout = true;
var createDataPicker = function (btn) { var createDataPicker = function (btn) {
me.mnuChangeSlidePicker = new Common.UI.DataView({ me.mnuChangeSlidePicker = new Common.UI.DataView({
el: $('#id-toolbar-menu-changeslide'), el: $('#id-toolbar-menu-changeslide'),
@ -1382,7 +1365,6 @@ define([
this.btnChangeSlide.on('render:after', createDataPicker); this.btnChangeSlide.on('render:after', createDataPicker);
this.listenTo(PE.getCollection('SlideLayouts'), 'reset', function () { this.listenTo(PE.getCollection('SlideLayouts'), 'reset', function () {
me.mnuAddSlidePicker._needRecalcSlideLayout = true;
if (me.mnuChangeSlidePicker) if (me.mnuChangeSlidePicker)
me.mnuChangeSlidePicker._needRecalcSlideLayout = true; me.mnuChangeSlidePicker._needRecalcSlideLayout = true;
}); });
@ -1710,6 +1692,43 @@ define([
} }
}, },
updateAddSlideMenu: function(collection) {
if (collection.size()<1) return;
var me = this;
me.btnsAddSlide.forEach(function (btn, index) {
if ( !btn.mnuAddSlidePicker ) {
btn.mnuAddSlidePicker = new Common.UI.DataView({
el: $('#id-toolbar-menu-addslide-' + index),
parentMenu: btn.menu,
showLast: false,
restoreHeight: 300,
style: 'max-height: 300px;',
store: PE.getCollection('SlideLayouts'),
itemTemplate: _.template([
'<div class="layout" id="<%= id %>" style="width: <%= itemWidth %>px;">',
'<div style="background-image: url(<%= imageUrl %>); width: <%= itemWidth %>px; height: <%= itemHeight %>px;"/>',
'<div class="title"><%= title %></div> ',
'</div>'
].join(''))
});
btn.mnuAddSlidePicker.on('item:click', function (picker, item, record, e) {
if (e.type !== 'click') Common.UI.Menu.Manager.hideAll();
if (record)
me.fireEvent('add:slide', [record.get('data').idx]);
});
if (btn.menu) {
btn.menu.on('show:after', function () {
me.onSlidePickerShowAfter(btn.mnuAddSlidePicker);
btn.mnuAddSlidePicker.scroller.update({alwaysVisibleY: true});
btn.mnuAddSlidePicker.scroller.scrollTop(0);
});
}
}
btn.mnuAddSlidePicker._needRecalcSlideLayout = true;
});
},
textBold: 'Bold', textBold: 'Bold',
textItalic: 'Italic', textItalic: 'Italic',
textUnderline: 'Underline', textUnderline: 'Underline',