web-apps/apps/presentationeditor/main/app/controller/Animation.js

338 lines
14 KiB
JavaScript
Raw Normal View History

2021-10-15 01:15:43 +00:00
/*
*
* (c) Copyright Ascensio System SIA 2010-2019
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha
* street, Riga, Latvia, EU, LV-1050.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
/**
* Animation.js
*
* Created by Olga.Animation on 13.10.21
* Copyright (c) 2021 Ascensio System SIA. All rights reserved.
*
*/
define([
'core',
'jquery',
'underscore',
'backbone',
2021-12-01 05:08:41 +00:00
'presentationeditor/main/app/view/Animation',
'presentationeditor/main/app/view/AnimationDialog'
2021-10-15 01:15:43 +00:00
], function () {
'use strict';
PE.Controllers.Animation = Backbone.Controller.extend(_.extend({
models : [],
collections : [],
views : [
'PE.Views.Animation'
],
options: {
alias: 'Animation'
},
sdkViewName : '#id_main',
initialize: function () {
this.addListeners({
'PE.Views.Animation': {
2021-12-03 03:46:24 +00:00
'animation:preview': _.bind(this.onPreviewClick, this),
'animation:parameters': _.bind(this.onParameterClick, this),
'animation:duration': _.bind(this.onDurationChange, this),
'animation:selecteffect': _.bind(this.onEffectSelect, this),
'animation:delay': _.bind(this.onDelayChange, this),
'animation:animationpane': _.bind(this.onAnimationPane, this),
'animation:addanimation': _.bind(this.onAddAnimation, this),
2021-10-19 15:00:09 +00:00
'animation:startselect': _.bind(this.onStartSelect, this),
2021-11-29 08:40:47 +00:00
'animation:checkrewind': _.bind(this.onCheckRewindChange,this),
2021-12-06 22:13:24 +00:00
'animation:repeat': _.bind(this.onRepeatChange, this),
'animation:additional': _.bind(this.onAnimationAdditional, this)
2021-10-15 01:15:43 +00:00
},
'Toolbar': {
2021-12-03 03:46:24 +00:00
'tab:active': _.bind(this.onActiveTab, this)
2021-10-15 01:15:43 +00:00
}
});
2021-11-22 08:54:14 +00:00
this.EffectGroups = Common.define.effectData.getEffectGroupData();
2021-10-15 01:15:43 +00:00
},
onLaunch: function () {
this._state = {};
},
setConfig: function (config) {
this.appConfig = config.mode;
this.view = this.createView('PE.Views.Animation', {
2021-12-03 03:46:24 +00:00
toolbar : config.toolbar,
mode : config.mode
2021-10-15 01:15:43 +00:00
});
return this;
},
setApi: function (api) {
this.api = api;
2021-12-03 03:46:24 +00:00
this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onFocusObject, this));
this.api.asc_registerCallback('asc_onCountPages', _.bind(this.onApiCountPages, this));
2021-10-15 01:15:43 +00:00
return this;
},
onApiCountPages: function (count) {
if (this._state.no_slides !== (count<=0)) {
this._state.no_slides = (count<=0);
this.lockToolbar(PE.enumLock.noSlides, this._state.no_slides);
}
},
createToolbarPanel: function() {
return this.view.getPanel();
},
getView: function(name) {
return !name && this.view ?
this.view : Backbone.Controller.prototype.getView.call(this, name);
},
onPreviewClick: function() {
2021-11-23 04:47:35 +00:00
this.api.asc_StartAnimationPreview();
2021-10-15 01:15:43 +00:00
},
2021-10-24 00:14:52 +00:00
onParameterClick: function (value) {
2021-11-22 08:54:14 +00:00
this._state.EffectOption = value;
2021-11-29 08:40:47 +00:00
if(this.api && this.AnimationProperties) {
this.AnimationProperties.asc_putSubtype(value);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
2021-10-15 01:15:43 +00:00
},
2021-12-01 05:08:41 +00:00
onAnimationPane: function() {
(new PE.Views.AnimationDialog({
2021-12-03 03:46:24 +00:00
api : this.api,
activeEffect : this._state.Effect
2021-12-01 05:08:41 +00:00
})).show();
2021-10-15 01:15:43 +00:00
},
2021-12-06 22:13:24 +00:00
onAnimationAdditional: function() {
(new PE.Views.AnimationDialog({
api : this.api,
activeEffect : this._state.Effect
})).show();
},
2021-12-02 22:36:15 +00:00
onAddAnimation: function(picker, record) {
2021-11-29 08:40:47 +00:00
var type = record.get('value');
var group = _.findWhere(Common.define.effectData.getEffectGroupData(), {id: record.get('group')}).value;
2021-12-03 03:46:24 +00:00
this.addNewEffect(type, group, false);
2021-10-15 01:15:43 +00:00
},
2021-12-02 21:41:39 +00:00
addNewEffect: function (type, group, replace) {
2021-12-01 05:08:41 +00:00
if (this._state.Effect == type) return;
2021-12-03 03:46:24 +00:00
var parameter = this.view.setMenuParameters(type, undefined, group == this._state.EffectGroups);
this.api.asc_AddAnimation(group, type, (parameter != undefined)?parameter:0, replace);
this._state.EffectGroups = group;
this._state.Effect = type;
2021-12-01 05:08:41 +00:00
},
2021-10-19 15:00:09 +00:00
onDurationChange: function(field, newValue, oldValue, eOpts) {
2021-11-29 08:40:47 +00:00
if (this.api) {
this._state.Duration = field.getNumberValue() * 1000;
this.AnimationProperties.asc_putDuration(this._state.Duration);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
2021-10-15 01:15:43 +00:00
},
2021-10-19 15:00:09 +00:00
onDelayChange: function(field, newValue, oldValue, eOpts) {
2021-11-29 08:40:47 +00:00
if (this.api) {
this._state.Delay = field.getNumberValue() * 1000;
this.AnimationProperties.asc_putDelay(this._state.Delay);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
2021-10-19 15:00:09 +00:00
},
2021-10-15 01:15:43 +00:00
2021-12-03 03:46:24 +00:00
onRepeatChange: function (field, newValue, oldValue, eOpts){
if (this.api) {
this._state.Repeat = field.getNumberValue() * 1000;
this.AnimationProperties.asc_putRepeatCount(this._state.Repeat);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
},
2021-10-15 01:15:43 +00:00
onEffectSelect: function (combo, record) {
2021-12-03 03:46:24 +00:00
if (this.api) {
var type = record.get('value');
var group = (type != AscFormat.ANIM_PRESET_NONE) ? _.findWhere(Common.define.effectData.getEffectGroupData(), {id: record.get('group')}).value : undefined;
this.addNewEffect(type, group, this._state.Effect != AscFormat.ANIM_PRESET_NONE);
}
2021-10-19 15:00:09 +00:00
},
onStartSelect: function (combo, record) {
2021-11-29 08:40:47 +00:00
if (this.api) {
2021-12-03 03:46:24 +00:00
this._state.StartEffect = record.value;
2021-11-29 08:40:47 +00:00
this.AnimationProperties.asc_putStartType(this._state.StartEffect);
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
},
2021-10-15 01:15:43 +00:00
2021-11-29 08:40:47 +00:00
onCheckRewindChange: function (field, newValue, oldValue, eOpts) {
if (this.api && this.AnimationProperties) {
this.AnimationProperties.asc_putRewind(field.getValue() == 'checked');
this.api.asc_SetAnimationProperties(this.AnimationProperties);
}
2021-10-15 01:15:43 +00:00
},
onFocusObject: function(selectedObjects) {
2021-12-03 03:46:24 +00:00
var isAnimtionObject = false, isAnimation = false;
2021-10-15 01:15:43 +00:00
for (var i = 0; i<selectedObjects.length; i++) {
var eltype = selectedObjects[i].get_ObjectType();
if (eltype === undefined)
continue;
2021-11-29 08:40:47 +00:00
if (eltype == Asc.c_oAscTypeSelectElement.Animation) {
this.AnimationProperties = selectedObjects[i].get_ObjectValue();
2021-12-03 03:46:24 +00:00
2021-11-29 08:40:47 +00:00
this.loadSettings(this.AnimationProperties);
2021-10-15 01:15:43 +00:00
if (this._state.onactivetab) {
this.setLocked();
this.setSettings();
2021-12-03 03:46:24 +00:00
isAnimation = true;
2021-10-15 01:15:43 +00:00
}
}
2021-12-03 03:46:24 +00:00
else if((eltype == Asc.c_oAscTypeSelectElement.Shape) ||
(eltype == Asc.c_oAscTypeSelectElement.Tab) ||
(eltype == Asc.c_oAscTypeSelectElement.Text) ||
(eltype == Asc.c_oAscTypeSelectElement.Image)) {
isAnimtionObject = true;
}
2021-10-15 01:15:43 +00:00
}
2021-12-03 03:46:24 +00:00
this.setLockedByObjects (isAnimtionObject, isAnimation);
2021-10-15 01:15:43 +00:00
},
2021-12-03 03:46:24 +00:00
setLockedByObjects: function (isAnimtionObject, isAnimation) {
if(isAnimtionObject)
{
if(isAnimation) {
if (this._state.Effect == AscFormat.ANIM_PRESET_NONE) {
this.view.setDisabled(true);
this.view.listEffects.setDisabled(false);
this.view.effectId = AscFormat.ANIM_PRESET_NONE;
} else {
this.view.setDisabled(false);
this.view.btnParameters.setDisabled(this.view.btnParameters.menu.items.length == 0)
}
}
else {
this.view.setDisabled(true);
this.view.listEffects.setDisabled(false);
2021-11-29 08:40:47 +00:00
}
}
2021-12-03 03:46:24 +00:00
else
this.view.setDisabled(true);
this.view.btnAddAnimation.setDisabled(this.view.listEffects.isDisabled());
2021-11-29 08:40:47 +00:00
},
2021-10-19 15:00:09 +00:00
2021-11-29 08:40:47 +00:00
loadSettings: function (props) {
this.AnimationProperties = props;
var value;
this._state.EffectGroup = this.AnimationProperties.asc_getClass();
value = this.AnimationProperties.asc_getType();
2021-12-03 03:46:24 +00:00
(value == undefined) && (value = AscFormat.ANIM_PRESET_NONE);
2021-11-29 08:40:47 +00:00
this._state.EffectOption = this.AnimationProperties.asc_getSubtype();
this._state.Effect = value;
value = this.AnimationProperties.asc_getDuration();
2021-10-19 15:00:09 +00:00
if (Math.abs(this._state.Duration - value) > 0.001 ||
(this._state.Duration === null || value === null) && (this._state.Duration !== value) ||
(this._state.Duration === undefined || value === undefined) && (this._state.Duration !== value)) {
this._state.Duration = value;
}
2021-11-29 08:40:47 +00:00
value = this.AnimationProperties.asc_getDelay();
2021-10-19 15:00:09 +00:00
if (Math.abs(this._state.Delay - value) > 0.001 ||
(this._state.Delay === null || value === null) && (this._state.Delay !== value) ||
(this._state.Delay === undefined || value === undefined) && (this._state.Delay !== value)) {
this._state.Delay = value;
}
2021-12-03 03:46:24 +00:00
value = this.AnimationProperties.asc_getRepeatCount();
if (Math.abs(this._state.Repeat - value) > 0.001 ||
(this._state.Repeat === null || value === null) && (this._state.Repeat !== value) ||
(this._state.Repeat === undefined || value === undefined) && (this._state.Repeat !== value)) {
this._state.Repeat = value;
}
2021-11-29 08:40:47 +00:00
this._state.StartSelect = this.AnimationProperties.asc_getStartType();
this._state.RepeatCount = this.AnimationProperties.asc_getRepeatCount();
this._state.Rewind = this.AnimationProperties.asc_getRewind();
2021-10-15 01:15:43 +00:00
},
onActiveTab: function(tab) {
if (tab == 'animate') {
this._state.onactivetab = true;
2021-12-03 03:46:24 +00:00
2021-10-15 01:15:43 +00:00
this.setLocked();
this.setSettings();
}
else this._state.onactivetab = false;
},
lockToolbar: function (causes, lock, opts) {
Common.Utils.lockControls(causes, lock, opts, this.view.lockedControls);
},
setLocked: function() {
2021-12-03 03:46:24 +00:00
/* if (this._state.lockedanimation != undefined)
this.lockToolbar(PE.enumLock.animationLock, this._state.lockedanimation);*/
2021-10-15 01:15:43 +00:00
},
setSettings: function () {
var me = this.view;
2021-10-21 17:49:25 +00:00
var item;
2021-10-19 15:00:09 +00:00
if (this._state.Effect !== undefined) {
2021-10-21 17:49:25 +00:00
item = me.listEffects.store.findWhere({value: this._state.Effect});
2021-10-19 15:00:09 +00:00
me.listEffects.menuPicker.selectRecord(item ? item : me.listEffects.menuPicker.items[0]);
this.view.btnParameters.setIconCls('toolbar__icon icon ' + item.get('imageUrl'));
}
2021-12-03 03:46:24 +00:00
if (this._state.EffectOption !== undefined)
me.setMenuParameters(this._state.Effect, this._state.EffectOption);
2021-10-19 15:00:09 +00:00
me.numDuration.setValue((this._state.Duration !== null && this._state.Duration !== undefined) ? this._state.Duration / 1000. : '', true);
me.numDelay.setValue((this._state.Delay !== null && this._state.Delay !== undefined) ? this._state.Delay / 1000. : '', true);
2021-12-03 03:46:24 +00:00
me.numRepeat.setValue((this._state.Repeat !== null && this._state.Repeat !== undefined) ? this._state.Repeat / 1000. : '', true);
2021-10-29 01:15:38 +00:00
2021-11-29 08:40:47 +00:00
(this._state.StartSelect==undefined)&&(this._state.StartSelect = AscFormat.NODE_TYPE_CLICKEFFECT);
item = me.cmbStart.store.findWhere({value: this._state.StartSelect});
me.cmbStart.selectRecord(item);
2021-12-02 21:41:39 +00:00
me.chRewind.setValue(this._state.Rewind, true);
2021-10-15 01:15:43 +00:00
}
}, PE.Controllers.Animation || {}));
});