600 lines
24 KiB
JavaScript
600 lines
24 KiB
JavaScript
/*
|
|
*
|
|
* (c) Copyright Ascensio System Limited 2010-2016
|
|
*
|
|
* 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 Lubanas st. 125a-25, Riga, Latvia,
|
|
* EU, LV-1021.
|
|
*
|
|
* 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
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* EditChart.js
|
|
* Document Editor
|
|
*
|
|
* Created by Alexander Yuzhin on 11/7/16
|
|
* Copyright (c) 2016 Ascensio System SIA. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
define([
|
|
'core',
|
|
'documenteditor/mobile/app/view/edit/EditChart',
|
|
'jquery',
|
|
'underscore',
|
|
'backbone'
|
|
], function (core, view, $, _, Backbone) {
|
|
'use strict';
|
|
|
|
DE.Controllers.EditChart = Backbone.Controller.extend(_.extend((function() {
|
|
// Private
|
|
var _stack = [],
|
|
_chartObject = undefined,
|
|
_shapeObject = undefined,
|
|
_metricText = Common.Utils.Metric.getCurrentMetricName();
|
|
|
|
var wrapTypesTransform = (function() {
|
|
var map = [
|
|
{ ui:'inline', sdk: Asc.c_oAscWrapStyle2.Inline },
|
|
{ ui:'square', sdk: Asc.c_oAscWrapStyle2.Square },
|
|
{ ui:'tight', sdk: Asc.c_oAscWrapStyle2.Tight },
|
|
{ ui:'through', sdk: Asc.c_oAscWrapStyle2.Through },
|
|
{ ui:'top-bottom', sdk: Asc.c_oAscWrapStyle2.TopAndBottom },
|
|
{ ui:'behind', sdk: Asc.c_oAscWrapStyle2.Behind },
|
|
{ ui:'infront', sdk: Asc.c_oAscWrapStyle2.InFront }
|
|
];
|
|
|
|
return {
|
|
sdkToUi: function(type) {
|
|
var record = map.filter(function(obj) {
|
|
return obj.sdk === type;
|
|
})[0];
|
|
return record ? record.ui : '';
|
|
},
|
|
|
|
uiToSdk: function(type) {
|
|
var record = map.filter(function(obj) {
|
|
return obj.ui === type;
|
|
})[0];
|
|
return record ? record.sdk : 0;
|
|
},
|
|
}
|
|
})();
|
|
|
|
var borderSizeTransform = (function() {
|
|
var _sizes = [0, 0.5, 1, 1.5, 2.25, 3, 4.5, 6];
|
|
|
|
return {
|
|
sizeByIndex: function (index) {
|
|
if (index < 1) return _sizes[0];
|
|
if (index > _sizes.length - 1) return _sizes[_sizes.length - 1];
|
|
return _sizes[index];
|
|
},
|
|
|
|
sizeByValue: function (value) {
|
|
var index = 0;
|
|
_.each(_sizes, function (size, idx) {
|
|
if (Math.abs(size - value) < 0.25) {
|
|
index = idx;
|
|
}
|
|
});
|
|
return _sizes[index];
|
|
}
|
|
}
|
|
})();
|
|
|
|
return {
|
|
models: [],
|
|
collections: [],
|
|
views: [
|
|
'EditChart'
|
|
],
|
|
|
|
initialize: function () {
|
|
Common.NotificationCenter.on('editcontainer:show', _.bind(this.initEvents, this));
|
|
|
|
this.addListeners({
|
|
'EditChart': {
|
|
'page:show': this.onPageShow
|
|
}
|
|
});
|
|
},
|
|
|
|
setApi: function (api) {
|
|
var me = this;
|
|
me.api = api;
|
|
|
|
me.api.asc_registerCallback('asc_onFocusObject', _.bind(me.onApiFocusObject, me));
|
|
me.api.asc_registerCallback('asc_onUpdateChartStyles', _.bind(me.onApiUpdateChartStyles, me));
|
|
},
|
|
|
|
onLaunch: function () {
|
|
this.createView('EditChart').render();
|
|
},
|
|
|
|
initEvents: function () {
|
|
var me = this;
|
|
|
|
$('#chart-remove').single('click', _.bind(me.onRemoveChart, me));
|
|
|
|
me.initSettings();
|
|
},
|
|
|
|
onPageShow: function (view, pageId) {
|
|
var me = this;
|
|
|
|
$('.chart-reorder a').single('click', _.bind(me.onReorder, me));
|
|
$('.chart-replace li').single('click', _.buffered(me.onReplace, 100, me));
|
|
$('.chart-wrap .chart-wrap-types li').single('click', _.buffered(me.onWrapType, 100, me));
|
|
$('.chart-wrap .align a').single('click', _.bind(me.onAlign, me));
|
|
$('#edit-chart-movetext input').single('change', _.bind(me.onMoveText, me));
|
|
$('#edit-chart-overlap input').single('change', _.bind(me.onOverlap, me));
|
|
$('.chart-wrap .distance input').single('change touchend', _.buffered(me.onWrapDistance, 100, me));
|
|
$('.chart-wrap .distance input').single('input', _.bind(me.onWrapDistanceChanging, me));
|
|
|
|
$('#edit-chart-bordersize input').single('change touchend', _.buffered(me.onBorderSize, 100, me));
|
|
$('#edit-chart-bordersize input').single('input', _.bind(me.onBorderSizeChanging, me));
|
|
|
|
$('#tab-chart-type li').single('click', _.buffered(me.onType, 100, me));
|
|
|
|
me.initSettings(pageId);
|
|
},
|
|
|
|
initSettings: function (pageId) {
|
|
var me = this;
|
|
|
|
if (_chartObject) {
|
|
if (pageId == '#edit-chart-wrap') {
|
|
me._initWrapView();
|
|
} else if (pageId == '#edit-chart-style') {
|
|
me._updateChartStyles(me.api.asc_getChartPreviews(_chartObject.get_ChartProperties().getType()));
|
|
me._initStyleView();
|
|
} else if (pageId == '#edit-chart-border-color-view') {
|
|
me._initStyleView();
|
|
}
|
|
}
|
|
},
|
|
|
|
_initWrapView: function() {
|
|
// Wrap type
|
|
var me = this,
|
|
wrapping = _chartObject.get_WrappingStyle(),
|
|
$chartWrapInput = $('.chart-wrap input'),
|
|
chartWrapType = wrapTypesTransform.sdkToUi(wrapping);
|
|
|
|
$chartWrapInput.val([chartWrapType]);
|
|
me._uiTransformByWrap(chartWrapType);
|
|
|
|
// Wrap align
|
|
var chartHAlign = _chartObject.get_PositionH().get_Align();
|
|
|
|
$('.chart-wrap .align a[data-type=left]').toggleClass('active', chartHAlign == Asc.c_oAscAlignH.Left);
|
|
$('.chart-wrap .align a[data-type=center]').toggleClass('active', chartHAlign == Asc.c_oAscAlignH.Center);
|
|
$('.chart-wrap .align a[data-type=right]').toggleClass('active', chartHAlign == Asc.c_oAscAlignH.Right);
|
|
|
|
|
|
// Wrap flags
|
|
$('#edit-chart-movetext input').prop('checked', _chartObject.get_PositionV().get_RelativeFrom() == Asc.c_oAscRelativeFromV.Paragraph);
|
|
$('#edit-chart-overlap input').prop('checked', _chartObject.get_AllowOverlap());
|
|
|
|
// Wrap distance
|
|
var paddings = _chartObject.get_Paddings();
|
|
if (paddings) {
|
|
var distance = Common.Utils.Metric.fnRecalcFromMM(paddings.get_Top());
|
|
$('.chart-wrap .distance input').val(distance);
|
|
$('.chart-wrap .distance .item-after').text(distance + ' ' + _metricText);
|
|
}
|
|
},
|
|
|
|
_initStyleView: function (updateStyles) {
|
|
var me = this,
|
|
chartProperties = _chartObject.get_ChartProperties(),
|
|
shapeProperties = _shapeObject.get_ShapeProperties(),
|
|
paletteFillColor = me.getView('EditChart').paletteFillColor,
|
|
paletteBorderColor = me.getView('EditChart').paletteBorderColor;
|
|
|
|
// Style
|
|
|
|
var type = chartProperties.getType();
|
|
$('.chart-types li').removeClass('active');
|
|
$('.chart-types li[data-type=' + type + ']').addClass('active');
|
|
|
|
// Init style border size
|
|
var borderSize = shapeProperties.get_stroke().get_width() * 72.0 / 25.4;
|
|
$('#edit-chart-bordersize input').val([borderSizeTransform.sizeByIndex(borderSize)]);
|
|
$('#edit-chart-bordersize .item-after').text(borderSizeTransform.sizeByValue(borderSize) + ' ' + _metricText);
|
|
|
|
paletteFillColor && paletteFillColor.on('select', _.bind(me.onFillColor, me));
|
|
paletteBorderColor && paletteBorderColor.on('select', _.bind(me.onBorderColor, me));
|
|
|
|
var sdkColor, color;
|
|
|
|
// Init fill color
|
|
var fill = shapeProperties.get_fill(),
|
|
fillType = fill.get_type();
|
|
|
|
color = 'transparent';
|
|
|
|
if (fillType == Asc.c_oAscFill.FILL_TYPE_SOLID) {
|
|
fill = fill.get_fill();
|
|
sdkColor = fill.get_color();
|
|
|
|
if (sdkColor) {
|
|
if (sdkColor.get_type() == Asc.c_oAscColor.COLOR_TYPE_SCHEME) {
|
|
color = {color: Common.Utils.ThemeColor.getHexColor(sdkColor.get_r(), sdkColor.get_g(), sdkColor.get_b()), effectValue: sdkColor.get_value()};
|
|
} else {
|
|
color = Common.Utils.ThemeColor.getHexColor(sdkColor.get_r(), sdkColor.get_g(), sdkColor.get_b());
|
|
}
|
|
}
|
|
}
|
|
|
|
paletteFillColor && paletteFillColor.select(color);
|
|
|
|
// Init border color
|
|
var stroke = shapeProperties.get_stroke(),
|
|
strokeType = stroke.get_type();
|
|
|
|
color = 'transparent';
|
|
|
|
if (stroke && strokeType == Asc.c_oAscStrokeType.STROKE_COLOR) {
|
|
sdkColor = stroke.get_color();
|
|
|
|
if (sdkColor) {
|
|
if (sdkColor.get_type() == Asc.c_oAscColor.COLOR_TYPE_SCHEME) {
|
|
color = {color: Common.Utils.ThemeColor.getHexColor(sdkColor.get_r(), sdkColor.get_g(), sdkColor.get_b()), effectValue: sdkColor.get_value()};
|
|
}
|
|
else {
|
|
color = Common.Utils.ThemeColor.getHexColor(sdkColor.get_r(), sdkColor.get_g(), sdkColor.get_b());
|
|
}
|
|
}
|
|
}
|
|
|
|
paletteBorderColor && paletteBorderColor.select(color);
|
|
$('#edit-chart-bordercolor .color-preview').css('background-color', ('transparent' == color) ? color : ('#' + (_.isObject(color) ? color.color : color)))
|
|
},
|
|
|
|
// Public
|
|
|
|
getChart: function () {
|
|
return _chartObject;
|
|
},
|
|
|
|
// Handlers
|
|
|
|
onType: function (e) {
|
|
var me = this,
|
|
$target = $(e.currentTarget),
|
|
type = $target.data('type');
|
|
|
|
var image = new Asc.asc_CImgProperty(),
|
|
chart = _chartObject.get_ChartProperties();
|
|
|
|
chart.changeType(type);
|
|
image.put_ChartProperties(chart);
|
|
|
|
me.api.ImgApply(image);
|
|
|
|
$('.chart-types li').removeClass('active');
|
|
$target.addClass('active');
|
|
|
|
// Force update styles
|
|
me._updateChartStyles(me.api.asc_getChartPreviews(chart.getType()));
|
|
},
|
|
|
|
onStyle: function (e) {
|
|
var me = this,
|
|
$target = $(e.currentTarget),
|
|
type = $target.data('type');
|
|
|
|
var image = new Asc.asc_CImgProperty(),
|
|
chart = _chartObject.get_ChartProperties();
|
|
|
|
chart.putStyle(type);
|
|
image.put_ChartProperties(chart);
|
|
|
|
me.api.ImgApply(image);
|
|
},
|
|
|
|
onRemoveChart: function () {
|
|
this.api.asc_Remove();
|
|
DE.getController('EditContainer').hideModal();
|
|
},
|
|
|
|
onReorder: function (e) {
|
|
var $target = $(e.currentTarget),
|
|
type = $target.data('type');
|
|
|
|
var properties = new Asc.asc_CImgProperty();
|
|
|
|
if ('all-up' == type) {
|
|
properties.put_ChangeLevel(Asc.c_oAscChangeLevel.BringToFront);
|
|
} else if ('all-down' == type) {
|
|
properties.put_ChangeLevel(Asc.c_oAscChangeLevel.SendToBack);
|
|
} else if ('move-up' == type) {
|
|
properties.put_ChangeLevel(Asc.c_oAscChangeLevel.BringForward);
|
|
} else if ('move-down' == type) {
|
|
properties.put_ChangeLevel(Asc.c_oAscChangeLevel.BringBackward);
|
|
}
|
|
|
|
this.api.ImgApply(properties);
|
|
},
|
|
|
|
onWrapType: function (e) {
|
|
var me = this,
|
|
$target = $(e.currentTarget).find('input'),
|
|
value = $target.val(),
|
|
properties = new Asc.asc_CImgProperty();
|
|
|
|
me._uiTransformByWrap(value);
|
|
|
|
var sdkType = wrapTypesTransform.uiToSdk(value);
|
|
|
|
properties.put_WrappingStyle(sdkType);
|
|
|
|
me.api.ImgApply(properties);
|
|
},
|
|
|
|
onAlign: function (e) {
|
|
var me = this,
|
|
$target = $(e.currentTarget),
|
|
type = $target.data('type');
|
|
|
|
$('.chart-wrap .align a').removeClass('active');
|
|
$target.addClass('active');
|
|
|
|
var hAlign = Asc.c_oAscAlignH.Left;
|
|
|
|
if ('center' == type) {
|
|
hAlign = Asc.c_oAscAlignH.Center;
|
|
} else if ('right' == type) {
|
|
hAlign = Asc.c_oAscAlignH.Right;
|
|
}
|
|
|
|
var properties = new Asc.asc_CImgProperty();
|
|
properties.put_PositionH(new Asc.CImagePositionH());
|
|
properties.get_PositionH().put_UseAlign(true);
|
|
properties.get_PositionH().put_Align(hAlign);
|
|
properties.get_PositionH().put_RelativeFrom(Asc.c_oAscRelativeFromH.Page);
|
|
|
|
me.api.ImgApply(properties);
|
|
},
|
|
|
|
onMoveText: function (e) {
|
|
var me = this,
|
|
$target = $(e.currentTarget),
|
|
properties = new Asc.asc_CImgProperty();
|
|
|
|
properties.put_PositionV(new Asc.CImagePositionV());
|
|
properties.get_PositionV().put_UseAlign(true);
|
|
properties.get_PositionV().put_RelativeFrom($target.is(':checked') ? Asc.c_oAscRelativeFromV.Paragraph : Asc.c_oAscRelativeFromV.Page);
|
|
|
|
me.api.ImgApply(properties);
|
|
},
|
|
|
|
onOverlap: function (e) {
|
|
var me = this,
|
|
$target = $(e.currentTarget),
|
|
properties = new Asc.asc_CImgProperty();
|
|
|
|
properties.put_AllowOverlap($target.is(':checked'));
|
|
|
|
me.api.ImgApply(properties);
|
|
},
|
|
|
|
onWrapDistance: function (e) {
|
|
var me = this,
|
|
$target = $(e.currentTarget),
|
|
value = $target.val(),
|
|
properties = new Asc.asc_CImgProperty(),
|
|
paddings = new Asc.asc_CPaddings();
|
|
|
|
$('.chart-wrap .distance .item-after').text(value + ' ' + _metricText);
|
|
|
|
value = Common.Utils.Metric.fnRecalcToMM(parseInt(value));
|
|
|
|
paddings.put_Top(value);
|
|
paddings.put_Right(value);
|
|
paddings.put_Bottom(value);
|
|
paddings.put_Left(value);
|
|
|
|
properties.put_Paddings(paddings);
|
|
|
|
me.api.ImgApply(properties);
|
|
},
|
|
|
|
onWrapDistanceChanging: function (e) {
|
|
var $target = $(e.currentTarget);
|
|
$('.chart-wrap .distance .item-after').text($target.val() + ' ' + _metricText);
|
|
},
|
|
|
|
onBorderSize: function (e) {
|
|
var me = this,
|
|
$target = $(e.currentTarget),
|
|
value = $target.val(),
|
|
currentShape = _shapeObject.get_ShapeProperties(),
|
|
image = new Asc.asc_CImgProperty(),
|
|
shape = new Asc.asc_CShapeProperty(),
|
|
stroke = new Asc.asc_CStroke(),
|
|
currentColor = Common.Utils.ThemeColor.getRgbColor('000000');
|
|
|
|
value = borderSizeTransform.sizeByIndex(parseInt(value));
|
|
|
|
var currentStroke = currentShape.get_stroke();
|
|
|
|
if (currentStroke) {
|
|
var currentStrokeType = currentStroke.get_type();
|
|
|
|
if (currentStrokeType == Asc.c_oAscStrokeType.STROKE_COLOR) {
|
|
currentColor = currentStroke.get_color();
|
|
}
|
|
}
|
|
|
|
if (value < 0.01) {
|
|
stroke.put_type(Asc.c_oAscStrokeType.STROKE_NONE);
|
|
} else {
|
|
stroke.put_type(Asc.c_oAscStrokeType.STROKE_COLOR);
|
|
stroke.put_color(currentColor);
|
|
stroke.put_width(value * 25.4 / 72.0);
|
|
}
|
|
|
|
shape.put_stroke(stroke);
|
|
image.put_ShapeProperties(shape);
|
|
|
|
me.api.ImgApply(image);
|
|
},
|
|
|
|
onBorderSizeChanging: function (e) {
|
|
var $target = $(e.currentTarget);
|
|
$('#edit-chart-bordersize .item-after').text(borderSizeTransform.sizeByIndex($target.val()) + ' ' + _metricText);
|
|
},
|
|
|
|
onFillColor: function(palette, color) {
|
|
var me = this;
|
|
|
|
if (me.api) {
|
|
var image = new Asc.asc_CImgProperty(),
|
|
shape = new Asc.asc_CShapeProperty(),
|
|
fill = new Asc.asc_CShapeFill();
|
|
|
|
if (color == 'transparent') {
|
|
fill.put_type(Asc.c_oAscFill.FILL_TYPE_NOFILL);
|
|
fill.put_fill(null);
|
|
} else {
|
|
fill.put_type(Asc.c_oAscFill.FILL_TYPE_SOLID);
|
|
fill.put_fill(new Asc.asc_CFillSolid());
|
|
fill.get_fill().put_color(Common.Utils.ThemeColor.getRgbColor(color));
|
|
}
|
|
|
|
shape.put_fill(fill);
|
|
image.put_ShapeProperties(shape);
|
|
|
|
me.api.ImgApply(image);
|
|
}
|
|
},
|
|
|
|
onBorderColor: function (palette, color) {
|
|
var me = this,
|
|
currentShape = _shapeObject.get_ShapeProperties();
|
|
|
|
$('#edit-chart-bordercolor .color-preview').css('background-color', ('transparent' == color) ? color : ('#' + (_.isObject(color) ? color.color : color)));
|
|
|
|
if (me.api && currentShape) {
|
|
var image = new Asc.asc_CImgProperty(),
|
|
shape = new Asc.asc_CShapeProperty(),
|
|
stroke = new Asc.asc_CStroke();
|
|
|
|
if (currentShape.get_stroke().get_width() < 0.01) {
|
|
stroke.put_type(Asc.c_oAscStrokeType.STROKE_NONE);
|
|
} else {
|
|
stroke.put_type(Asc.c_oAscStrokeType.STROKE_COLOR);
|
|
stroke.put_color(Common.Utils.ThemeColor.getRgbColor(color));
|
|
stroke.put_width(currentShape.get_stroke().get_width());
|
|
stroke.asc_putPrstDash(currentShape.get_stroke().asc_getPrstDash());
|
|
}
|
|
|
|
shape.put_stroke(stroke);
|
|
image.put_ShapeProperties(shape);
|
|
|
|
me.api.ImgApply(image);
|
|
}
|
|
},
|
|
|
|
// API handlers
|
|
|
|
onApiFocusObject: function (objects) {
|
|
_stack = objects;
|
|
|
|
var charts = [],
|
|
shapes = [];
|
|
|
|
_.each(_stack, function (object) {
|
|
if (object.get_ObjectType() == Asc.c_oAscTypeSelectElement.Image) {
|
|
if (object.get_ObjectValue() && object.get_ObjectValue().get_ChartProperties()) {
|
|
charts.push(object);
|
|
}
|
|
if (object.get_ObjectValue() && object.get_ObjectValue().get_ShapeProperties()) {
|
|
shapes.push(object);
|
|
}
|
|
}
|
|
});
|
|
|
|
var getTopObject = function(array) {
|
|
if (array.length > 0) {
|
|
var object = array[array.length - 1]; // get top
|
|
return object.get_ObjectValue();
|
|
} else {
|
|
return undefined;
|
|
}
|
|
};
|
|
|
|
_chartObject = getTopObject(charts);
|
|
_shapeObject = getTopObject(shapes);
|
|
},
|
|
|
|
onApiUpdateChartStyles: function () {
|
|
if (this.api && _chartObject && _chartObject.get_ChartProperties()) {
|
|
this._updateChartStyles(this.api.asc_getChartPreviews(_chartObject.get_ChartProperties().getType()));
|
|
}
|
|
},
|
|
|
|
// Helpers
|
|
|
|
_updateChartStyles: function(styles) {
|
|
Common.SharedSettings.set('chartstyles', styles);
|
|
Common.NotificationCenter.trigger('chartstyles:load', styles);
|
|
|
|
$('#tab-chart-style li').single('click', _.bind(this.onStyle, this));
|
|
},
|
|
|
|
_uiTransformByWrap: function(type) {
|
|
$('.chart-wrap .align')[('inline' == type) ? 'hide' : 'show']();
|
|
$('.chart-wrap .distance')[('behind' == type || 'infront' == type) ? 'hide' : 'show']();
|
|
$('#edit-chart-movetext').toggleClass('disabled', ('inline' == type));
|
|
},
|
|
|
|
_closeIfNeed: function () {
|
|
if (!this._isChartInStack()) {
|
|
DE.getController('EditContainer').hideModal();
|
|
}
|
|
},
|
|
|
|
_isChartInStack: function () {
|
|
var chartExist = false;
|
|
|
|
_.some(_stack, function(object) {
|
|
if (object.get_ObjectType() == Asc.c_oAscTypeSelectElement.Image) {
|
|
if (object.get_ObjectValue() && object.get_ObjectValue().get_ChartProperties()) {
|
|
chartExist = true;
|
|
return true;
|
|
}
|
|
}
|
|
});
|
|
|
|
return chartExist;
|
|
}
|
|
};
|
|
})(), DE.Controllers.EditChart || {}))
|
|
}); |