-
)
}
diff --git a/src/components/range/Range.jsx b/src/components/range/Range.jsx
index 58edc4dd..750f130a 100644
--- a/src/components/range/Range.jsx
+++ b/src/components/range/Range.jsx
@@ -105,6 +105,7 @@ class Range extends React.Component {
componentDidMount() {
window.addEventListener('resize', this.resizeHandler)
+ this.timeoutId = setTimeout(this.resizeHandler, 100)
this.resizeHandler()
}
@@ -112,6 +113,7 @@ class Range extends React.Component {
window.removeEventListener('resize', this.resizeHandler)
document.removeEventListener('mouseup', this.mouseUpHandler)
document.removeEventListener('mousemove', this.mouseMoveHandler)
+ clearTimeout(this.timeoutId)
}
render() {
diff --git a/src/helpers/AnnotationsBridge.js b/src/helpers/AnnotationsBridge.js
new file mode 100644
index 00000000..d8bc143f
--- /dev/null
+++ b/src/helpers/AnnotationsBridge.js
@@ -0,0 +1,52 @@
+import csInterface from './CSInterfaceHelper'
+import extensionLoader from './ExtensionLoader'
+import {dispatcher} from './storeDispatcher'
+import {
+ layersListFetched,
+} from '../redux/actions/annotationActions'
+
+csInterface.addEventListener('bm:annotations:list', function (ev) {
+ if(ev.data) {
+ let layers = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ dispatcher(layersListFetched(layers))
+ } else {
+ }
+})
+
+async function getCurrentLayers() {
+ await extensionLoader
+ extensionLoader.then(function(){
+ var eScript = '$.__bodymovin.bm_annotationsManager.getLayers()';
+ csInterface.evalScript(eScript);
+ })
+}
+
+async function activateAnnotations(layerId, annotationId) {
+ await extensionLoader
+ var eScript = '$.__bodymovin.bm_annotationsManager.activateAnnotations("' + layerId + '","' + annotationId + '")';
+ csInterface.evalScript(eScript);
+}
+
+async function getAvailableAnnotation() {
+ return new Promise(async function(resolve, reject) {
+ function handleAnnotations(ev) {
+ if (ev.data) {
+ const annotations = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ resolve(annotations)
+ }
+ csInterface.removeEventListener('bm:annotations:annotationsList', handleAnnotations)
+ }
+ csInterface.addEventListener('bm:annotations:annotationsList', handleAnnotations)
+
+ await extensionLoader;
+ var eScript = '$.__bodymovin.bm_annotationsManager.getAvailableAnnotation()';
+ csInterface.evalScript(eScript);
+ })
+
+}
+
+export {
+ getCurrentLayers,
+ activateAnnotations,
+ getAvailableAnnotation,
+}
\ No newline at end of file
diff --git a/src/helpers/CSInterfaceHelper.js b/src/helpers/CSInterfaceHelper.js
index 8b1b3a58..1e82c76c 100644
--- a/src/helpers/CSInterfaceHelper.js
+++ b/src/helpers/CSInterfaceHelper.js
@@ -1,4 +1,74 @@
import {CSInterface} from './CSInterface'
+import extensionLoader from './ExtensionLoader'
var csInterface = new CSInterface();
-export default csInterface
\ No newline at end of file
+function sendCommand(prefix, commandName, commandArguments = []) {
+ let command = prefix + commandName
+ command += '('
+ commandArguments.forEach((commandArgument, index) => {
+ if (typeof commandArgument === 'string') {
+ command += '"'
+ command += commandArgument
+ command += '"'
+ } else if (typeof commandArgument === 'object') {
+ command += JSON.stringify(commandArgument)
+ } else {
+ command += commandArgument
+ }
+ if (index !== commandArguments.length - 1) {
+ command += ','
+ }
+ })
+ command += ')'
+ csInterface.evalScript(command);
+ // console.log(command)
+}
+
+function sendCommandWithListeners(command, commandArguments, successEvent, failedEvent) {
+ return new Promise(async function(resolve, reject) {
+ function onData(ev) {
+ if (ev.data) {
+ const data = (typeof ev.data === "string")
+ ? JSON.parse(ev.data)
+ : ev.data
+ resolve(data)
+ }
+ csInterface.removeEventListener(successEvent, onData)
+ if (failedEvent) {
+ csInterface.removeEventListener(failedEvent, onFail)
+ }
+ }
+ function onFail() {
+ reject()
+ }
+ csInterface.addEventListener(successEvent, onData)
+ if (failedEvent) {
+ csInterface.addEventListener(failedEvent, onFail)
+ }
+ await extensionLoader;
+ sendCommand('', command, commandArguments)
+ })
+}
+async function getXMPValue(property, isJSON) {
+ const result = await sendCommandWithListeners(
+ '$.__bodymovin.bm_XMPHelper.getMetadataFromCep',
+ [property, isJSON],
+ `bm:xmpData:success:${property}`,
+ `bm:xmpData:failed:${property}`,
+ )
+ return result.value;
+}
+
+async function sendAsyncCommand(command, commandArguments = []) {
+ await extensionLoader;
+ sendCommand('', command, commandArguments);
+}
+
+export default csInterface
+
+export {
+ sendCommand,
+ sendAsyncCommand,
+ sendCommandWithListeners,
+ getXMPValue,
+}
\ No newline at end of file
diff --git a/src/helpers/CompositionsProvider.js b/src/helpers/CompositionsProvider.js
index d0d89b50..2c44cc1d 100644
--- a/src/helpers/CompositionsProvider.js
+++ b/src/helpers/CompositionsProvider.js
@@ -1,9 +1,20 @@
-import csInterface from './CSInterfaceHelper'
+import csInterface, {
+ sendAsyncCommand,
+ sendCommandWithListeners,
+ getXMPValue,
+} from './CSInterfaceHelper'
import extensionLoader from './ExtensionLoader'
import {dispatcher} from './storeDispatcher'
import actions from '../redux/actions/actionTypes'
import {versionFetched, appVersionFetched} from '../redux/actions/generalActions'
-import bodymovin2Avd from 'bodymovin-to-avd'
+import {reportsSaved} from '../redux/actions/reportsActions'
+import {processExpression} from '../redux/actions/renderActions'
+import {saveFile as bannerSaveFile} from './bannerHelper'
+import {saveFile as avdSaveFile} from './avdHelper'
+import {saveFile as smilSaveFile} from './smilHelper'
+import {splitAnimation} from './splitAnimationHelper'
+import {createSlots} from './lottieSlots'
+import { getSimpleSeparator } from './osHelper'
csInterface.addEventListener('bm:compositions:list', function (ev) {
if(ev.data) {
@@ -89,6 +100,9 @@ csInterface.addEventListener('bm:image:process', function (ev) {
if(data && typeof data.compression_rate === 'string') {
data.compression_rate = Number(data.compression_rate)
}
+ if(data && typeof data.compression_rate === 'string') {
+ data.compression_rate = Number(data.compression_rate)
+ }
//End fix for AE 2014
dispatcher({
@@ -103,15 +117,41 @@ csInterface.addEventListener('bm:image:process', function (ev) {
csInterface.addEventListener('bm:project:id', function (ev) {
if(ev.data) {
let data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
- let id = data.id
+ const id = data.id
+ const name = data.name
dispatcher({
type: actions.PROJECT_SET_ID,
+ id: id,
+ name: name,
+ })
+ } else {
+ }
+})
+
+csInterface.addEventListener('bm:temp:id', function (ev) {
+ if(ev.data) {
+ let data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ let id = data.id
+ dispatcher({
+ type: actions.PROJECT_SET_TEMP_ID,
id: id
})
} else {
}
})
+csInterface.addEventListener('bm:project:path', function (ev) {
+
+ if (ev.data) {
+ let data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ let path = data.path
+ dispatcher({
+ type: actions.PROJECT_SET_PATH,
+ path: path
+ })
+ }
+})
+
csInterface.addEventListener('bm:composition:destination_set', function (ev) {
if(ev.data) {
let compositionData = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
@@ -123,13 +163,47 @@ csInterface.addEventListener('bm:composition:destination_set', function (ev) {
}
})
-csInterface.addEventListener('bm:create:avd', function (ev) {
+csInterface.addEventListener('bm:create:avd', async function (ev) {
+ if(ev.data) {
+ try {
+ let data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data;
+ await avdSaveFile(data.origin, data.destination)
+ // let animationData = JSON.parse(data.animation);
+ // saveAVD(animationData, data.destination);
+ const eScript = "$.__bodymovin.bm_avdExporter.saveAVDDataSuccess()";
+ csInterface.evalScript(eScript);
+ } catch(err) {
+ const eScript = '$.__bodymovin.bm_avdExporter.saveAVDFailed()';
+ csInterface.evalScript(eScript);
+ }
+ } else {
+ }
+})
+
+csInterface.addEventListener('bm:create:smil', async function (ev) {
+ if(ev.data) {
+ try {
+ let data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data;
+ await smilSaveFile(data.origin, data.destination)
+ const eScript = "$.__bodymovin.bm_smilExporter.saveSMILDataSuccess()";
+ csInterface.evalScript(eScript);
+ } catch(err) {
+ const eScript = '$.__bodymovin.bm_smilExporter.saveSMILFailed()';
+ csInterface.evalScript(eScript);
+ }
+ } else {
+ }
+})
+
+csInterface.addEventListener('bm:create:rive', function (ev) {
if(ev.data) {
- let animationData = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data;
- animationData.layers = (typeof animationData.layers === "string") ? JSON.parse(animationData.layers) : animationData.layers;
- animationData.assets = (typeof animationData.assets === "string") ? JSON.parse(animationData.assets) : animationData.assets;
- //let animationData = (typeof data.animationData === "string") ? JSON.parse(data.animationData) : data.animationData;
- saveAVD(animationData);
+ let data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data;
+ dispatcher({
+ type: actions.RIVE_SAVE_DATA,
+ origin: data.origin,
+ destination: data.destination,
+ fileName: decodeURIComponent(data.fileName),
+ })
} else {
}
})
@@ -161,31 +235,147 @@ csInterface.addEventListener('app:version', function (ev) {
}
})
+csInterface.addEventListener('bm:zip:banner', async function (ev) {
+ try {
+ if(ev.data) {
+ const data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ ////
+ await bannerSaveFile(data.folderPath, data.destinationPath);
+ csInterface.evalScript('$.__bodymovin.bm_bannerExporter.bannerFinished()');
+ } else {
+ throw new Error('Missing data')
+ }
+ } catch(err) {
+ csInterface.evalScript('$.__bodymovin.bm_bannerExporter.bannerFailed()');
+ }
+})
+
+csInterface.addEventListener('bm:split:animation', async function (ev) {
+ try {
+ if(ev.data) {
+ const data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ ////
+ const splitResponse = await splitAnimation(data.origin, data.destination, decodeURIComponent(data.fileName), data.time);
+ csInterface.evalScript('$.__bodymovin.bm_standardExporter.splitSuccess(' + splitResponse + ')');
+ } else {
+ throw new Error('Missing data')
+ }
+ } catch(err) {
+ csInterface.evalScript('$.__bodymovin.bm_bannerExporter.splitFailed()');
+ }
+})
+
+csInterface.addEventListener('bm:create:slots', async function (ev) {
+ try {
+ if(ev.data) {
+ const data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ ////
+ await createSlots(data.origin, data.destination, decodeURIComponent(data.fileName), data.prettyPrint);
+ csInterface.evalScript('$.__bodymovin.bm_standardExporter.slotsSuccess()');
+ } else {
+ throw new Error('Missing data')
+ }
+ } catch(err) {
+ csInterface.evalScript('$.__bodymovin.bm_bannerExporter.splitFailed()');
+ }
+})
+
+csInterface.addEventListener('bm:report:saved', async function (ev) {
+ try {
+ if(ev.data) {
+ const data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ ////
+ dispatcher(reportsSaved(data.compId, data.reportPath));
+ } else {
+ throw new Error('Missing data')
+ }
+ } catch(err) {
+ csInterface.evalScript('$.__bodymovin.bm_bannerExporter.splitFailed()');
+ }
+})
+
+csInterface.addEventListener('bm:expression:process', async function (ev) {
+ try {
+ if(ev.data) {
+ const data = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ ////
+ dispatcher(processExpression(data));
+ } else {
+ throw new Error('Missing data')
+ }
+ } catch(err) {
+ csInterface.evalScript('$.__bodymovin.bm_bannerExporter.splitFailed()');
+ }
+})
+
function getCompositions() {
- let prom = new Promise(function(resolve, reject){
+ return new Promise(function(resolve, reject){
extensionLoader.then(function(){
csInterface.evalScript('$.__bodymovin.bm_compsManager.updateData()');
resolve();
})
})
+}
+
+function createTempIdHeader() {
+ return new Promise(function(resolve, reject){
+ extensionLoader.then(function(){
+ csInterface.evalScript('$.__bodymovin.bm_projectManager.createTempId()');
+ resolve();
+ })
+ })
+}
+
+function getProjectPath() {
+ let prom = new Promise(function(resolve, reject){
+ extensionLoader.then(function(){
+ csInterface.evalScript('$.__bodymovin.bm_projectManager.getProjectPath()');
+ resolve();
+ })
+ })
return prom
}
-function getDestinationPath(comp, alternatePath) {
+function setLottiePaths(paths) {
+ return new Promise(function(resolve, reject){
+ extensionLoader.then(function(){
+
+ var eScript = '$.__bodymovin.bm_bannerExporter.setLottiePaths(' + JSON.stringify(paths) + ')';
+ csInterface.evalScript(eScript);
+ resolve();
+ })
+ })
+}
+
+function getDestinationPath(comp, alternatePath, shouldUseCompNameAsDefault) {
let destinationPath = ''
- if(comp.absoluteURI) {
+ const fileName = shouldUseCompNameAsDefault ? comp.name : 'data'
+ if(comp.absoluteURI) {
destinationPath = comp.absoluteURI
} else if(alternatePath) {
alternatePath = alternatePath.split('\\').join('\\\\')
- if(comp.settings.standalone) {
- alternatePath += 'data.js'
+ const delimiter = getSimpleSeparator()
+ if (alternatePath.charAt(alternatePath.length - 1) !== delimiter) {
+ alternatePath += delimiter;
+ }
+ alternatePath += fileName
+ if(comp.settings.export_modes.standalone) {
+ alternatePath += '.js'
+ } else if (comp.settings.export_modes.banner && comp.settings.banner.zip_files) {
+ alternatePath += '.zip'
} else {
- alternatePath += 'data.json'
+ alternatePath += '.json'
}
destinationPath = alternatePath
}
+ var extension = 'json'
+ if (comp.settings.export_modes.standalone) {
+ extension = 'js'
+ } else if (comp.settings.export_modes.banner && comp.settings.banner.zip_files) {
+ extension = 'zip'
+ }
extensionLoader.then(function(){
- var eScript = '$.__bodymovin.bm_compsManager.searchCompositionDestination(' + comp.id + ',"' + destinationPath+ '",' + comp.settings.standalone + ')'
+ var eScript = '$.__bodymovin.bm_compsManager.searchCompositionDestination(' + comp.id + ',"' + destinationPath+ '","' + (fileName + '.' + extension) + '")'
csInterface.evalScript(eScript)
})
let prom = new Promise(function(resolve, reject){
@@ -249,18 +439,17 @@ function goToFolder(path) {
})
}
-function saveAVD(data) {
- bodymovin2Avd(data).then(function(avdData){
- var eScript = "$.__bodymovin.bm_dataManager.saveAVDData('" + avdData + "')";
+function riveFileSaveSuccess() {
+ extensionLoader.then(function(){
+ var eScript = '$.__bodymovin.bm_riveExporter.saveSuccess()';
+ csInterface.evalScript(eScript);
+ })
+}
+
+function riveFileSaveFailed() {
+ extensionLoader.then(function(){
+ var eScript = '$.__bodymovin.bm_riveExporter.saveFailed()';
csInterface.evalScript(eScript);
- }).catch(function(){
- extensionLoader.then(function(){
- var eScript = '$.__bodymovin.bm_dataManager.saveAVDFailed()';
- csInterface.evalScript(eScript);
- })
- dispatcher({
- type: actions.RENDER_AVD_FAILED
- })
})
}
@@ -275,10 +464,16 @@ function getVersionFromExtension() {
return prom
}
-function imageProcessed(result) {
+function imageProcessed(result, data) {
extensionLoader.then(function(){
- var eScript = '$.__bodymovin.bm_sourceHelper.imageProcessed(';
- eScript += result.compressed;
+ var eScript = ''
+ if(data.assetType === 'audio') {
+ eScript += '$.__bodymovin.bm_audioSourceHelper.assetProcessed(';
+
+ } else {
+ eScript += '$.__bodymovin.bm_sourceHelper.imageProcessed(';
+ }
+ eScript += result.extension === 'jpg';
eScript += ',';
if(result.encoded) {
eScript += '"' + result.encoded_data + '"'
@@ -290,6 +485,112 @@ function imageProcessed(result) {
})
}
+function initializeServer() {
+ csInterface.requestOpenExtension("com.bodymovin.bodymovin_server", "");
+}
+
+function navigateToLayer(compositionId, layerIndex) {
+ extensionLoader.then(function(){
+ var eScript = `
+ $.__bodymovin.bm_compsManager.navigateToLayer(${compositionId},${layerIndex})
+ `
+ csInterface.evalScript(eScript);
+ })
+}
+
+async function getCompositionTimelinePosition() {
+ return sendCommandWithListeners(
+ '$.__bodymovin.bm_compsManager.getTimelinePosition',
+ [],
+ 'bm:composition:timelinePosition',
+ ''
+ );
+}
+
+async function setCompositionTimelinePosition(progress) {
+ return sendAsyncCommand(
+ '$.__bodymovin.bm_compsManager.setTimelinePosition',
+ [progress],
+ )
+
+}
+
+function expressionProcessed(id, data) {
+ sendAsyncCommand(
+ '$.__bodymovin.bm_expressionHelper.saveExpression',
+ [data, id],
+ )
+}
+
+async function getUserFolders() {
+ return sendCommandWithListeners(
+ '$.__bodymovin.bm_projectManager.getUserFolders',
+ [],
+ 'bm:user:folders',
+ ''
+ )
+}
+
+async function getSavingPath(path) {
+ return sendCommandWithListeners(
+ '$.__bodymovin.bm_projectManager.setDestinationPath',
+ [
+ path,
+ ],
+ 'bm:destination:selected',
+ 'bm:destination:cancelled'
+ )
+}
+
+async function saveProjectDataToXMP(data) {
+ return new Promise(async function(resolve, reject) {
+ var eScript = '$.__bodymovin.bm_XMPHelper.setMetadata("config", \'' + JSON.stringify(data) + '\')';
+ csInterface.evalScript(eScript);
+ setStorageLocation('xmp');
+ resolve();
+ })
+}
+
+async function getProjectDataFromXMP() {
+ return getXMPValue(
+ "config",
+ true,
+ )
+}
+
+async function setStorageLocation(location) {
+ return sendAsyncCommand(
+ '$.__bodymovin.bm_XMPHelper.setMetadata',
+ ["storageLocation", location],
+ )
+}
+
+async function getStorageLocation() {
+ return getXMPValue(
+ "storageLocation",
+ false,
+ )
+}
+
+async function getCompressedState() {
+ try {
+ const isCompressed = await getXMPValue(
+ "isCompressed",
+ false,
+ )
+ return isCompressed;
+ } catch (error) {
+ return false;
+ }
+}
+
+async function setCompressedState(value) {
+ return sendAsyncCommand(
+ '$.__bodymovin.bm_XMPHelper.setMetadata',
+ ["isCompressed", value],
+ )
+}
+
export {
getCompositions,
getDestinationPath,
@@ -301,5 +602,22 @@ export {
goToFolder,
getVersionFromExtension,
imageProcessed,
- saveAVD
+ setLottiePaths,
+ initializeServer,
+ riveFileSaveSuccess,
+ riveFileSaveFailed,
+ getProjectPath,
+ navigateToLayer,
+ getCompositionTimelinePosition,
+ setCompositionTimelinePosition,
+ getUserFolders,
+ expressionProcessed,
+ getSavingPath,
+ saveProjectDataToXMP,
+ getProjectDataFromXMP,
+ setStorageLocation,
+ getStorageLocation,
+ getCompressedState,
+ setCompressedState,
+ createTempIdHeader,
}
\ No newline at end of file
diff --git a/src/helpers/ExportModes.js b/src/helpers/ExportModes.js
new file mode 100644
index 00000000..1e7acd02
--- /dev/null
+++ b/src/helpers/ExportModes.js
@@ -0,0 +1,5 @@
+export default {
+ STANDARD: 'standard',
+ STANDALONE: 'standalone',
+ BANNER: 'banner',
+}
\ No newline at end of file
diff --git a/src/helpers/ExtensionLoader.js b/src/helpers/ExtensionLoader.js
index 39ecaf66..c568aba3 100644
--- a/src/helpers/ExtensionLoader.js
+++ b/src/helpers/ExtensionLoader.js
@@ -23,12 +23,23 @@ function loadJSX(resolve, reject) {
resolve();
});
}
+
window.addEventListener('focus', init);
window.addEventListener('click', init);
window.addEventListener('mousedown', init);
window.addEventListener('mouseenter', init);
window.addEventListener('mouseover', init);
window.addEventListener('mousemove', init);
+
+ try {
+ if (document.hasFocus()) {
+ init()
+ } else {
+ window.focus()
+ }
+ } catch(err) {
+
+ }
}
export default promise;
\ No newline at end of file
diff --git a/src/helpers/FileBrowser.js b/src/helpers/FileBrowser.js
index beaed2f2..993638ad 100644
--- a/src/helpers/FileBrowser.js
+++ b/src/helpers/FileBrowser.js
@@ -1,5 +1,6 @@
import csInterface from './CSInterfaceHelper'
import extensionLoader from './ExtensionLoader'
+import errorCodes from './enums/errorCodes'
var resolve, reject
@@ -8,7 +9,7 @@ csInterface.addEventListener('bm:file:uri', function (ev) {
})
csInterface.addEventListener('bm:file:cancel', function (ev) {
- reject()
+ reject({errorCode: errorCodes.FILE_CANCELLED})
})
function browseFile(path) {
diff --git a/src/helpers/FileLoader.js b/src/helpers/FileLoader.js
index fc301501..ac03eac5 100644
--- a/src/helpers/FileLoader.js
+++ b/src/helpers/FileLoader.js
@@ -1,24 +1,158 @@
+import csInterface from './CSInterfaceHelper'
+import {getSeparator} from './osHelper'
+import fs from './fs_proxy'
+import { getPort } from './enums/networkData'
+let tempId = ''
+
function loadBodymovinFileData(path) {
- var reject, resolve
+ var reject, resolve
var promise = new Promise(function(_resolve, _reject) {
- resolve = _resolve
- reject = _reject
+ resolve = _resolve
+ reject = _reject
})
- var result = window.cep.fs.readFile(path)
try {
- if(result.err === 0) {
- var jsonData = JSON.parse(result.data)
- if(jsonData.v) {
- resolve(jsonData)
- }
+ var result = window.cep.fs.readFile(path);
+ if(result.err === 0) {
+ var jsonData = JSON.parse(result.data);
+ if (jsonData.v || jsonData.version) {
+ resolve(jsonData);
+ } else {
+ reject()
+ }
} else {
+ console.log(result)
reject()
}
} catch(err) {
+ console.log(err)
reject()
}
return promise
}
-export default loadBodymovinFileData
\ No newline at end of file
+function loadArrayBuffer(path) {
+ return new Promise(function(resolve, reject) {
+ try {
+ var result = window.__fs.readFileSync(path)
+ resolve(result.buffer)
+ } catch(err) {
+ reject()
+ }
+ })
+}
+
+export default loadBodymovinFileData
+
+async function loadFileData(path) {
+ var extensionPath = csInterface.getSystemPath('extension');
+ var fileStats = fs.statSync(extensionPath + getSeparator() + path)
+ return Promise.resolve(fileStats)
+
+}
+
+const _localPaths = {}
+
+function getLocalPath(key) {
+ return _localPaths[key] || '';
+}
+
+function setLocalPath(key, value) {
+ _localPaths[key] = value;
+}
+
+async function downloadFile(url, path) {
+ const res = await fetch(url);
+
+ const arrayBuf = await res.arrayBuffer()
+ return new Promise((resolve, reject) => {
+ fs.writeFile(path, Buffer.from(arrayBuf), (error, data) => {
+ if(error) {
+ reject(error);
+ } else {
+ resolve();
+ }
+ })
+ })
+}
+
+async function saveFileFromBase64(data, path) {
+ return new Promise((resolve, reject) => {
+ fs.writeFile(path, data, 'base64', (error, data) => {
+ if(error) {
+ reject(error);
+ } else {
+ resolve();
+ }
+ })
+ })
+}
+
+async function getFileType(path) {
+ const encodedImageResponse = await fetchWithId(`http://localhost:${getPort()}/getType/`,
+ {
+ method: 'post',
+ headers: {
+ 'Accept': 'application/json',
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ path: encodeURIComponent(path),
+ })
+ })
+ const jsonResponse = await encodedImageResponse.json()
+ return jsonResponse.fileType || { mime: 'font/unn' }
+
+}
+
+async function getEncodedFile(path) {
+ const encodedImageResponse = await fetchWithId(`http://localhost:${getPort()}/encode/`,
+ {
+ method: 'post',
+ headers: {
+ 'Accept': 'application/json',
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ path: encodeURIComponent(path),
+ })
+ })
+ const jsonResponse = await encodedImageResponse.json()
+ const fileType = await getFileType(path)
+ return `data:${fileType.mime};base64,${jsonResponse.data}`
+
+}
+
+async function createFolder(path, folderName) {
+ if (!fs.existsSync(path + folderName)){
+ fs.mkdirSync(path + folderName);
+ }
+}
+
+function setTempId(value) {
+ tempId = value;
+}
+
+async function fetchWithId(resource , init = {}) {
+ const request = {
+ ...init,
+ headers: {
+ ...init.headers,
+ 'bodymovin-id': tempId,
+ }
+ }
+ return fetch(resource , request)
+}
+
+export {
+ loadFileData,
+ getLocalPath,
+ setLocalPath,
+ downloadFile,
+ saveFileFromBase64,
+ createFolder,
+ loadArrayBuffer,
+ getEncodedFile,
+ setTempId,
+ fetchWithId,
+}
\ No newline at end of file
diff --git a/src/helpers/FolderBrowser.js b/src/helpers/FolderBrowser.js
new file mode 100644
index 00000000..fd787771
--- /dev/null
+++ b/src/helpers/FolderBrowser.js
@@ -0,0 +1,35 @@
+import csInterface from './CSInterfaceHelper'
+import extensionLoader from './ExtensionLoader'
+import errorCodes from './enums/errorCodes'
+
+function browseFolder(path) {
+
+ return new Promise(function(resolve, reject) {
+ function onSuccess(ev) {
+ resolve(ev.data);
+ removeListeners();
+
+ }
+
+ function onCancel() {
+ reject({errorCode: errorCodes.FILE_CANCELLED});
+ removeListeners();
+ }
+
+ function removeListeners() {
+ csInterface.removeEventListener('bm:folder:uri', onSuccess)
+ csInterface.removeEventListener('bm:folder:cancel', onCancel)
+ }
+
+ csInterface.addEventListener('bm:folder:uri', onSuccess)
+ csInterface.addEventListener('bm:folder:cancel', onCancel)
+
+ extensionLoader.then(function(){
+ path = path ? path.replace(/\\/g,"\\\\") : ''
+ var eScript = '$.__bodymovin.bm_compsManager.browseFolderFromPath("' + path + '")';
+ csInterface.evalScript(eScript);
+ })
+ })
+}
+
+export default browseFolder
\ No newline at end of file
diff --git a/src/helpers/ImageProcessorHelper.js b/src/helpers/ImageProcessorHelper.js
index af701230..56dcb555 100644
--- a/src/helpers/ImageProcessorHelper.js
+++ b/src/helpers/ImageProcessorHelper.js
@@ -1,5 +1,5 @@
-import fs from 'fs'
-//import pngToJpeg from 'png-to-jpeg'
+import { getPort } from './enums/networkData';
+import { fetchWithId } from '../helpers/FileLoader';
var path = require('path');
path.parse = function(_path){
return {
@@ -7,215 +7,118 @@ path.parse = function(_path){
}
}
-function ImageObject(_canvas, _img) {
- this.canvas = _canvas;
- this._img = _img;
- this.updateBitmap();
-}
-
-ImageObject.prototype.updateBitmap = function() {
- var context = this.canvas.getContext('2d');
- var imageData = context.getImageData(0, 0, this.canvas.width, this.canvas.height);
- this.bitmap = imageData;
-}
-
-ImageObject.prototype.clone = function() {
- return new ImageObject(this.copyCanvas(), this._img);
-}
-
-
-ImageObject.prototype.opaque = function() {
- var canvasCtx = this.canvas.getContext('2d');
- canvasCtx.fillStyle = 'white';
- canvasCtx.fillRect(0, 0, this.canvas.width, this.canvas.height);
- canvasCtx.drawImage(this._img, 0, 0);
- this.updateBitmap();
- return this;
-}
-
-ImageObject.prototype.copyCanvas = function() {
- var clonedCanvas = document.createElement('canvas');
- clonedCanvas.width = this.canvas.width;
- clonedCanvas.height = this.canvas.height;
- var clonedCanvasCtx = clonedCanvas.getContext('2d');
- clonedCanvasCtx.drawImage(this._img, 0, 0);
- return clonedCanvas;
-}
-
-function loadImage(path) {
- return new Promise(function(res, rej){
-
- var img = document.createElement('img');
- img.onload = function(){
- var canvas = document.createElement('canvas');
- canvas.width = img.width;
- canvas.height = img.height;
- var ctx = canvas.getContext('2d');
- ctx.drawImage(img, 0, 0);
-
- res(new ImageObject(canvas, img));
- }
- img.src = path;
- });
-}
-
-function saveNewImage(path, todata) {
- return new Promise(function(res, rej){
- var img = todata.replace(/^data:image\/\w+;base64,/, "");
- //Use window.Buffer instead of Buffer because they differ and Bufer doesn't work with older AE versions
- var buf = new window.Buffer(img, 'base64');
- var finalPath = path.replace(new RegExp('png$'), 'jpg');
- fs.writeFile(finalPath, buf, function(err) {
- if(err) {
- res('')
+function compressImage(path, compression_rate) {
+ path = path.replace(/\\/g, '/')
+ return new Promise((resolve, reject) => {
+ fetchWithId(`http://localhost:${getPort()}/processImage/`,
+ {
+ method: 'post',
+ headers: {
+ 'Accept': 'application/json',
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ path: encodeURIComponent(path),
+ compression: compression_rate
+ })
+ })
+ .then(async (response) => {
+ const jsonResponse = await response.json()
+ if (jsonResponse.status === 'error') {
+ resolve({
+ path,
+ extension: 'png',
+ })
} else {
- res(finalPath)
+ setTimeout(() => {
+ resolve({
+ path: jsonResponse.path,
+ extension: jsonResponse.extension,
+ })
+ }, 1)
}
- });
+ })
+ .catch((err) => {
+ console.log('ERROR', err)
+ })
})
}
-function compressCanvas(canvas, compression_rate) {
- return new Promise(function(res, rej){
- var todata = canvas.toDataURL('image/jpeg', compression_rate);
- res(todata)
- })
+function handleImageCompression(path, settings) {
+ if(settings.should_compress) {
+ return compressImage(path, settings.compression_rate)
+ } else {
+ return Promise.resolve({
+ path,
+ extension: 'png',
+ })
+ }
}
-function convertCanvasToData(canvas) {
- return new Promise(function(res, rej){
- var todata = canvas.toDataURL('image/png');
- res(todata)
+async function getEncodedFile(path) {
+ const encodedImageResponse = await fetchWithId(`http://localhost:${getPort()}/encode/`,
+ {
+ method: 'post',
+ headers: {
+ 'Accept': 'application/json',
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ path: encodeURIComponent(path),
+ })
})
-}
+ const jsonResponse = await encodedImageResponse.json()
+ return jsonResponse.data
-function getDrawnCanvas(image) {
- return new Promise(function(res, rej){
- var canvas = document.createElement('canvas');
- var imageData = image.bitmap;
- canvas.width = image.bitmap.width;
- canvas.height = image.bitmap.height;
-
- var ctx = canvas.getContext('2d')
- var palette = ctx.getImageData(0,0,image.bitmap.width,image.bitmap.height);
- var clamped = new Uint8ClampedArray(imageData.data);
- palette.data.set(clamped);
- ctx.putImageData(palette, 0, 0);
- res(canvas);
- })
}
-function difference(image1, image2) {
- var percent = 0
- var data1 = image1.bitmap.data
- var data2 = image2.bitmap.data
- var i = 0, len = data1.length;
- while(i < len) {
- if(data1[i] !== data2[i]){
- percent = 1;
- break;
- }
- i += 1;
- }
+async function processImage(actionData) {
+ let path = actionData.path
- return {
- percent: percent
- }
-}
+ try {
-function compressAndSave(image, data) {
- return new Promise(function(res, rej){
- var opaque_image = image.clone().opaque()
- var diff = difference(image, opaque_image, 0);
- if(diff.percent === 0) {
- getDrawnCanvas(image)
- .then(function(canvas){
- return compressCanvas(canvas, data.compression_rate)
- })
- .then(function(image_data){
- return saveNewImage(data.path, image_data)
- })
- .then(function(new_path){
- res({
- new_path: new_path,
- encoded: false,
- compressed: true
- })
- })
- .catch(function(err){
- rej()
- })
- } else {
- rej()
+ if (!actionData.should_encode_images && !actionData.should_compress) {
+ return {
+ encoded: false,
+ }
}
- })
-}
+ const imageCompressedData = await handleImageCompression(path, actionData)
-function compressAndEncode(image, data) {
- var opaque_image = image.clone().opaque()
- var diff = difference(image, opaque_image, 0);
- if(diff.percent === 0) {
- return new Promise(function(res, rej){
- getDrawnCanvas(image)
- .then(function(canvas){
- return compressCanvas(canvas, data.compression_rate)
- })
- .then(function(encoded_data){
- res({
- new_path: '',
- encoded_data: encoded_data,
- encoded: true,
- compressed: true
- })
- })
- })
- } else {
- return encode(image, data)
- }
-}
+ if (actionData.should_encode_images) {
-function encode(image, data) {
- return new Promise(function(res, rej){
- getDrawnCanvas(image)
- .then(convertCanvasToData)
- .then(function(encoded_data){
- res({
- new_path: '',
- encoded_data: encoded_data,
- encoded: true,
- compressed: false
- })
- })
- })
-}
+ const imagePath = imageCompressedData.extension === 'png' ?
+ imageCompressedData.path
+ :
+ imageCompressedData.path.substr(0, imageCompressedData.path.lastIndexOf('.png')) + '.jpg'
-function processImage(actionData) {
+ var fileExtension = imagePath.substr(imagePath.lastIndexOf('.') + 1)
- let path = actionData.path
+ let encodedImage = await getEncodedFile(imagePath)
- return new Promise(function(res, rej){
- loadImage(path)
- .then(function (image) {
- if(actionData.should_encode_images && actionData.should_compress) {
- return compressAndEncode(image, actionData)
- } else if(actionData.should_compress) {
- return compressAndSave(image, actionData)
- } else if(actionData.should_encode_images) {
- return encode(image, actionData)
+ if (actionData.assetType === 'audio') {
+ encodedImage = `data:audio/mp3;base64,${encodedImage}`
} else {
- return Promise.reject()
+ encodedImage = `data:image/${fileExtension === 'png' ? 'png' : 'jpeg'};base64,${encodedImage}`
}
- })
- .then(function(response){
- res(response)
- })
- .catch(function(err){
- res({
+ return {
+ encoded_data: encodedImage,
+ encoded: true,
+ extension: imageCompressedData.extension
+ }
+ // const image = await loadImage(imagePath)
+ // return await encode(image, actionData)
+ } else {
+ return {
+ new_path: imageCompressedData.path,
encoded: false,
- compressed: false
- })
- })
- })
+ extension: imageCompressedData.extension
+ }
+ }
+ } catch(err) {
+ return {
+ encoded: false,
+ }
+ }
}
export default processImage
\ No newline at end of file
diff --git a/src/helpers/ImportFilesHelper.js b/src/helpers/ImportFilesHelper.js
new file mode 100644
index 00000000..2394cb48
--- /dev/null
+++ b/src/helpers/ImportFilesHelper.js
@@ -0,0 +1,214 @@
+import csInterface from './CSInterfaceHelper'
+import loadLottieData from './FileLoader'
+import random from './randomGenerator'
+import {hexToRgbAsNormalizedArray} from './colorConverter'
+
+var _frameRate = 0;
+
+function sendCommand(commandName, commandArguments = []) {
+ const prefix = '$.__bodymovin.bm_lottieImporter.'
+ let command = prefix + commandName
+ command += '('
+ commandArguments.forEach((commandArgument, index) => {
+ if (typeof commandArgument === 'string') {
+ command += '"'
+ command += commandArgument
+ command += '"'
+ } else if (typeof commandArgument === 'object') {
+ command += JSON.stringify(commandArgument)
+ } else {
+ command += commandArgument
+ }
+ if (index !== commandArguments.length - 1) {
+ command += ','
+ }
+ })
+ command += ')'
+ csInterface.evalScript(command);
+ console.log(command)
+}
+
+function createFolder(name = '') {
+ sendCommand('createFolder', [name]);
+}
+
+function createComp(name, width, height, duration, compId) {
+ sendCommand('createComp', [name, width, height, duration, compId]);
+}
+
+function setCompWorkArea(inPoint, outPoint, compId) {
+ sendCommand('setCompWorkArea', [inPoint, outPoint, compId]);
+}
+
+function createSolid(layerData, compId) {
+ const layerId = random(10);
+ layerData.__importId = layerId;
+ const color = hexToRgbAsNormalizedArray(layerData.sc);
+ sendCommand('createSolid', [
+ color,
+ layerData.nm,
+ layerData.sw,
+ layerData.sw, layerData.op - layerData.ip,
+ layerId,
+ compId
+ ]);
+ processTransform(layerData.ks, layerId)
+}
+
+function processTransform(transformData, layerId) {
+ if (transformData.p) {
+ if (transformData.p.k) {
+ if (typeof transformData.p.k[0] === 'number') {
+ sendCommand('setElementTransformValue', ['position', transformData.p.k.filter((val, i) => i < 2), layerId]);
+ } else {
+ const keyframes = transformData.p.k;
+ keyframes.forEach(keyframe => {
+ sendCommand('setElementTransformKey',
+ [
+ 'position',
+ keyframe.t,
+ keyframe.s.filter((val, i) => i < 2),
+ layerId
+ ]
+ );
+ })
+ keyframes.forEach(keyframe => {
+ /*sendCommand('setElementTransformTemporalKey',
+ [
+ 'position',
+ keyframe.t,
+ keyframe.s.filter((val, i) => i < 2),
+ layerId
+ ]
+ );*/
+ console.log(keyframe)
+ })
+ }
+ }
+
+ if (transformData.r.k) {
+ if (typeof transformData.r.k === 'number') {
+ sendCommand('setElementTransformValue', ['rotation', transformData.r.k, layerId]);
+ } else {
+ const keyframes = transformData.r.k;
+ keyframes.forEach(keyframe => {
+ sendCommand('setElementTransformKey',
+ [
+ 'rotation',
+ keyframe.t,
+ keyframe.s,
+ layerId
+ ]
+ );
+ })
+ const easings = []
+ keyframes.forEach((keyframe, index) => {
+ var nextKeyIndex = index === keyframes.length - 1 ? 0 : index + 1
+ if (!easings[index]) {
+ easings[index] = []
+ }
+ if (!easings[index + 1]) {
+ easings[index + 1] = []
+ }
+ if (keyframe.i && keyframe.o) {
+ var nextKeyframe = {
+ i: {x:[0.833], y:[0.833]},
+ o: {x:[0.167], y:[0.167]},
+ ...keyframes[nextKeyIndex]
+ };
+ // bezierIn.x[k] = 1 - key.easeIn[k].influence / 100;
+ // bezierOut.x[k] = lastKey.easeOut[k].influence / 100;
+ var keyInInfluence = (keyframe.i.x[0] - 1) * -100;
+ var lastKeyOutInfluence = (keyframe.o.x[0]) * 100;
+ var duration = (nextKeyframe.t - keyframe.t) / _frameRate;
+ // console.log('duration', duration)
+ // console.log('duration by FR', duration / _frameRate)
+ // yNormal = (key.value[k] - lastKey.value[k]);
+ var yNormal = keyframes[index + 1].s[0] - keyframe.s[0];
+
+ var bezierInY = -(keyframe.i.y[0] - 1) * yNormal / duration;
+ var bezierY = keyframe.o.y[0] * yNormal / duration;
+ // console.log('bezierInY', bezierInY)
+ // console.log('bezierY', bezierY)
+
+ var lastKeyOutSpeed = bezierY / lastKeyOutInfluence * 100;
+ var keyInSpeed = bezierInY / keyInInfluence * 100;
+
+
+ // var bezierY = (lastKey.easeOut[k].speed*lastKey.easeOut[k].influence/100);
+ // var bezierInY = (key.easeIn[k].speed*key.easeIn[k].influence/100);
+ // bezierIn.y[k] = 1 - (bezierInY*duration)/yNormal;
+ // bezierOut.y[k] = (bezierY*duration)/yNormal;
+
+
+ easings[index][0] = [lastKeyOutSpeed, lastKeyOutInfluence]
+ easings[index + 1][1] = [keyInSpeed, keyInInfluence]
+
+ // var inKey = [keyInSpeed, keyInInfluence];
+ // var outKey = [lastKeyOutSpeed, lastKeyOutInfluence];
+ // sendCommand('setElementTemporalKeyAtIndex',
+ // [
+ // 'rotation',
+ // index + 1,
+ // inKey,
+ // outKey,
+ // layerId
+ // ]
+ // );
+ }
+ })
+ easings.pop()
+ easings[0][1] = [62, 16]
+ easings[easings.length - 1][0] = [14, 16]
+ easings.forEach((easing, index) => {
+ sendCommand('setElementTemporalKeyAtIndex',
+ [
+ 'rotation',
+ index + 1,
+ easing[1],
+ easing[0],
+ layerId
+ ]
+ );
+ })
+ }
+ }
+ }
+}
+
+function createLayer(layerData, compId) {
+ switch (layerData.ty) {
+ case 1:
+ createSolid(layerData, compId)
+ }
+}
+
+function iterateLayers(layers, compId) {
+ layers.forEach(layer => {
+ createLayer(layer, compId)
+ })
+}
+
+
+async function convertLottieFileFromPath(path) {
+ try {
+ sendCommand('reset');
+ const lottieData = await loadLottieData(path)
+ // console.log('lottieData', lottieData)
+ _frameRate = lottieData.fr;
+ sendCommand('setFrameRate', [lottieData.fr]);
+ createFolder(lottieData.nm)
+ const mainCompId = random(10);
+ createComp(lottieData.nm, lottieData.w, lottieData.h, lottieData.op, mainCompId);
+ setCompWorkArea(lottieData.ip / _frameRate, lottieData.op / _frameRate, mainCompId);
+ iterateLayers(lottieData.layers, mainCompId, lottieData.fr);
+ // csInterface.evalScript('$.__bodymovin.bm_lottieImporter.importFromPath("' + encodeURIComponent(path) + '")');
+ } catch(err) {
+ console.log('ERRR')
+ console.log(err)
+ }
+}
+
+export {
+ convertLottieFileFromPath
+}
\ No newline at end of file
diff --git a/src/helpers/LottieLibraryOrigins.js b/src/helpers/LottieLibraryOrigins.js
new file mode 100644
index 00000000..07d439bc
--- /dev/null
+++ b/src/helpers/LottieLibraryOrigins.js
@@ -0,0 +1,6 @@
+export default {
+ CDNJS: 'cdnjs',
+ CUSTOM: 'custom',
+ FILE_SYSTEM: 'file system',
+ LOCAL: 'local',
+}
\ No newline at end of file
diff --git a/src/helpers/LottieVersions.js b/src/helpers/LottieVersions.js
new file mode 100644
index 00000000..3f582277
--- /dev/null
+++ b/src/helpers/LottieVersions.js
@@ -0,0 +1,52 @@
+const versions = [
+ {
+ name: 'Full',
+ value: 'full',
+ fileSize: '60Kb',
+ cdnjs: 'https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.6/lottie.min.js',
+ local: 'lottie.min.js',
+ renderers: ['svg', 'canvas', 'html'],
+ },
+ {
+ name: 'Svg Full (Full svg renderer)',
+ value: 'svg_full',
+ fileSize: '60Kb',
+ cdnjs: 'https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.6/lottie_svg.min.js',
+ local: 'lottie_svg.min.js',
+ renderers: ['svg'],
+ },
+ {
+ name: 'Svg Light (Svg renderer, no expressions or effects)',
+ value: 'svg_light',
+ fileSize: '60Kb',
+ cdnjs: 'https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.6/lottie_light.min.js',
+ local: 'lottie_light.min.js',
+ renderers: ['svg'],
+ },
+ {
+ name: 'Canvas Full (Full canvas renderer)',
+ value: 'canvas_full',
+ fileSize: '60Kb',
+ cdnjs: 'https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.6/lottie_canvas.min.js',
+ local: 'lottie_canvas.min.js',
+ renderers: ['canvas'],
+ },
+ {
+ name: 'Canvas Light (Canvas renderer, no expressions or effects)',
+ value: 'canvas_light',
+ fileSize: '60Kb',
+ cdnjs: 'https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.6/lottie_light_canvas.min.js',
+ local: 'lottie_light_canvas.min.js',
+ renderers: ['canvas'],
+ }
+]
+
+function findLottieVersion(value) {
+ return versions.find(version => version.value === value)
+}
+
+export default versions
+
+export {
+ findLottieVersion
+}
\ No newline at end of file
diff --git a/src/helpers/SkottieLoader.js b/src/helpers/SkottieLoader.js
new file mode 100644
index 00000000..6f15d4f2
--- /dev/null
+++ b/src/helpers/SkottieLoader.js
@@ -0,0 +1,63 @@
+import {
+ getSavedVersion,
+ lockedMinorVersion,
+} from './skottie/skottie'
+
+let _canvasKit
+
+const delay = async delay => {
+ return new Promise(function(resolve, reject) {
+ setTimeout(resolve, delay)
+ })
+}
+
+async function loadCanvasJs() {
+ if (!window.CanvasKitInit) {
+ var scriptTag = document.createElement('script')
+ let jsPath = ''
+ const savedVersions = await getSavedVersion()
+ if (savedVersions.length) {
+ var lastVersion = savedVersions[savedVersions.length - 1]
+ // jsPath = `http://localhost:${getPort()}/fileFromPath?path=${encodeURIComponent(jsFilePath)}&type=${encodeURIComponent('text/javascript; charset=UTF-8')}`
+ jsPath = `https://unpkg.com/canvaskit-wasm@${lastVersion.version}/bin/full/canvaskit.js`
+ } else {
+ // jsPath = `http://localhost:${getPort()}/canvaskit.js`
+ jsPath = `https://unpkg.com/canvaskit-wasm@${lockedMinorVersion.join('.')}/bin/full/canvaskit.js`
+ }
+ // jsPath = 'https://unpkg.com/canvaskit-wasm@latest/bin/full/canvaskit.js'
+ scriptTag.src = jsPath
+ scriptTag.id = 'canvasKitElement'
+ document.body.appendChild(scriptTag)
+ let isCanvasKitReady = false
+ while(!isCanvasKitReady) {
+ if (window.CanvasKitInit) {
+ isCanvasKitReady = true
+ } else {
+ await delay(250)
+ }
+ }
+ }
+}
+
+async function getCanvasKit() {
+ if (!_canvasKit) {
+ await loadCanvasJs()
+ let wasmPath = ''
+ const savedVersions = await getSavedVersion()
+ if (savedVersions.length) {
+ var lastVersion = savedVersions[savedVersions.length - 1]
+ // var wasmFilePath = lastVersion.wasm
+ // wasmPath = `http://localhost:${getPort()}/fileFromPath?path=${encodeURIComponent(wasmFilePath)}&type=${encodeURIComponent('application/wasm')}`
+ wasmPath = `https://unpkg.com/canvaskit-wasm@${lastVersion.version}/bin/full/canvaskit.wasm`
+ } else {
+ // wasmPath = `http://localhost:${getPort()}/canvaskit.wasm`
+ wasmPath = `https://unpkg.com/canvaskit-wasm@${lockedMinorVersion.join('.')}/bin/full/canvaskit.wasm`
+ }
+ _canvasKit = await window.CanvasKitInit({
+ locateFile: (file) => wasmPath,
+ })
+ }
+ return _canvasKit
+}
+
+export default getCanvasKit
\ No newline at end of file
diff --git a/src/helpers/SupportedFeaturesBridge.js b/src/helpers/SupportedFeaturesBridge.js
new file mode 100644
index 00000000..2b02c867
--- /dev/null
+++ b/src/helpers/SupportedFeaturesBridge.js
@@ -0,0 +1,36 @@
+import csInterface from './CSInterfaceHelper'
+import extensionLoader from './ExtensionLoader'
+import {dispatcher} from './storeDispatcher'
+import {
+ layersListFetched,
+} from '../redux/actions/annotationActions'
+
+csInterface.addEventListener('bm:annotations:list', function (ev) {
+ if(ev.data) {
+ let layers = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ dispatcher(layersListFetched(layers))
+ } else {
+ }
+})
+
+async function getSelectedProperties() {
+ return new Promise(async function(resolve, reject) {
+ function handleProperties(ev) {
+ if (ev.data) {
+ const annotations = (typeof ev.data === "string") ? JSON.parse(ev.data) : ev.data
+ resolve(annotations)
+ }
+ csInterface.removeEventListener('bm:properties:list', handleProperties)
+ }
+ csInterface.addEventListener('bm:properties:list', handleProperties)
+
+ await extensionLoader;
+ var eScript = '$.__bodymovin.bm_projectManager.getSelectedProperties()';
+ csInterface.evalScript(eScript);
+ })
+
+}
+
+export {
+ getSelectedProperties,
+}
\ No newline at end of file
diff --git a/src/helpers/avdHelper.js b/src/helpers/avdHelper.js
new file mode 100644
index 00000000..8058f5c9
--- /dev/null
+++ b/src/helpers/avdHelper.js
@@ -0,0 +1,29 @@
+import bodymovin2Avd from 'bodymovin-to-avd'
+
+function writeFile(path, data) {
+ return new Promise((resolve, reject) => {
+ var result = window.cep.fs.writeFile(path, data);
+ if (0 !== result.err) {
+ reject(result.err)
+ } else {
+ resolve(true)
+ }
+ })
+}
+
+async function saveFile(origin, destination) {
+ console.log(origin, destination)
+ var jsonDataResult = window.cep.fs.readFile(origin)
+ if (0 !== jsonDataResult.err) {
+ throw new Error(jsonDataResult.err)
+ } else {
+ var jsonData = jsonDataResult.data;
+ var jsonObject = JSON.parse(jsonData);
+ var avdData = await bodymovin2Avd(jsonObject);
+ await writeFile(destination, avdData);
+ }
+}
+
+export {
+ saveFile
+}
\ No newline at end of file
diff --git a/src/helpers/bannerHelper.js b/src/helpers/bannerHelper.js
new file mode 100644
index 00000000..aaf0f1ec
--- /dev/null
+++ b/src/helpers/bannerHelper.js
@@ -0,0 +1,27 @@
+import { getPort } from './enums/networkData'
+import { fetchWithId } from '../helpers/FileLoader'
+
+const saveFile = async (origin, destination) => {
+ const encodedImageResponse = await fetchWithId(`http://localhost:${getPort()}/createBanner/`,
+ {
+ method: 'post',
+ headers: {
+ 'Accept': 'application/json',
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ origin: encodeURIComponent(origin),
+ destination: encodeURIComponent(destination),
+ })
+ })
+ const jsonResponse = await encodedImageResponse.json()
+ if(jsonResponse.status === 'success') {
+ return true;
+ } else {
+ throw new Error(jsonResponse.message);
+ }
+}
+
+export {
+ saveFile
+}
\ No newline at end of file
diff --git a/src/helpers/catFactHelper.js b/src/helpers/catFactHelper.js
new file mode 100644
index 00000000..8e58b1ba
--- /dev/null
+++ b/src/helpers/catFactHelper.js
@@ -0,0 +1,25 @@
+//
+
+async function loadCatFact() {
+ const curiosityUrl = `https://cat-fact.herokuapp.com/facts/random`
+ const requestResult = await fetch(curiosityUrl,
+ {
+ method: 'get',
+ headers: {
+ 'Accept': 'application/json',
+ 'Content-Type': 'application/json'
+ }
+ })
+ return requestResult.json()
+}
+
+async function loadFact() {
+ const options = [
+ loadCatFact
+ ]
+
+ const factLoader = options[Math.floor(Math.random() * options.length)];
+ return factLoader()
+}
+
+export default loadFact
\ No newline at end of file
diff --git a/src/helpers/colorConverter.js b/src/helpers/colorConverter.js
new file mode 100644
index 00000000..a63167bf
--- /dev/null
+++ b/src/helpers/colorConverter.js
@@ -0,0 +1,23 @@
+function hexToRgb(hex) {
+ var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
+ return result ? {
+ r: parseInt(result[1], 16),
+ g: parseInt(result[2], 16),
+ b: parseInt(result[3], 16)
+ } : null;
+}
+
+function hexToRgbAsNormalizedArray(hex) {
+ const color = hexToRgb(hex)
+ return [color.r / 255, color.g / 255, color.b / 255]
+}
+
+function rgbToHex(r, g, b) {
+ return "#" + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1);
+}
+
+export {
+ hexToRgb,
+ hexToRgbAsNormalizedArray,
+ rgbToHex,
+}
\ No newline at end of file
diff --git a/src/helpers/delimiter.js b/src/helpers/delimiter.js
new file mode 100644
index 00000000..fccaa6c8
--- /dev/null
+++ b/src/helpers/delimiter.js
@@ -0,0 +1,8 @@
+const getDelimiter = () => {
+ const delimiter = window.cep_node.process.platform.indexOf('win') !== -1
+ ? '\\'
+ : '/'
+ return delimiter
+}
+
+export default getDelimiter
\ No newline at end of file
diff --git a/src/helpers/enums/audioBitOptions.js b/src/helpers/enums/audioBitOptions.js
new file mode 100644
index 00000000..2adc8e0e
--- /dev/null
+++ b/src/helpers/enums/audioBitOptions.js
@@ -0,0 +1,20 @@
+export default [
+ {value:'__bodymovin_sound_template_16', text: '16kbps'},
+ {value:'__bodymovin_sound_template_18', text: '18kbps'},
+ {value:'__bodymovin_sound_template_20', text: '20kbps'},
+ {value:'__bodymovin_sound_template_24', text: '24kbps'},
+ {value:'__bodymovin_sound_template_32', text: '32kbps'},
+ {value:'__bodymovin_sound_template_40', text: '40kbps'},
+ {value:'__bodymovin_sound_template_48', text: '48kbps'},
+ {value:'__bodymovin_sound_template_56', text: '56kbps'},
+ {value:'__bodymovin_sound_template_64', text: '64kbps'},
+ {value:'__bodymovin_sound_template_80', text: '80kbps'},
+ {value:'__bodymovin_sound_template_96', text: '96kbps'},
+ {value:'__bodymovin_sound_template_112', text: '112kbps'},
+ {value:'__bodymovin_sound_template_128', text: '128kbps'},
+ {value:'__bodymovin_sound_template_160', text: '160kbps'},
+ {value:'__bodymovin_sound_template_192', text: '192kbps'},
+ {value:'__bodymovin_sound_template_224', text: '224kbps'},
+ {value:'__bodymovin_sound_template_256', text: '256kbps'},
+ {value:'__bodymovin_sound_template_320', text: '320kbps'},
+]
\ No newline at end of file
diff --git a/src/helpers/enums/errorCodes.js b/src/helpers/enums/errorCodes.js
new file mode 100644
index 00000000..10728d5b
--- /dev/null
+++ b/src/helpers/enums/errorCodes.js
@@ -0,0 +1,3 @@
+export default {
+ FILE_CANCELLED: 10,
+}
\ No newline at end of file
diff --git a/src/helpers/enums/messageTypes.js b/src/helpers/enums/messageTypes.js
new file mode 100644
index 00000000..a5bbee23
--- /dev/null
+++ b/src/helpers/enums/messageTypes.js
@@ -0,0 +1,4 @@
+export default {
+ NONE: 'none',
+ ALERT: 'alert',
+}
\ No newline at end of file
diff --git a/src/helpers/enums/networkData.js b/src/helpers/enums/networkData.js
new file mode 100644
index 00000000..4b7af61e
--- /dev/null
+++ b/src/helpers/enums/networkData.js
@@ -0,0 +1,9 @@
+let port = 24801
+
+const getPort = () => port
+const setPort = _port => port = _port
+
+export {
+ getPort,
+ setPort,
+}
\ No newline at end of file
diff --git a/src/helpers/expressions/demo.js b/src/helpers/expressions/demo.js
new file mode 100644
index 00000000..65cd974f
--- /dev/null
+++ b/src/helpers/expressions/demo.js
@@ -0,0 +1,80 @@
+let text = `'use javascript';
+
+const bezierUtlity = new class {
+ constructor(t, e, i, s) {
+ if (this.mX1 = t, this.mY1 = e, this.mX2 = i, this.mY2 = s, this.NEWTON_ITERATIONS = 4, this.NEWTON_MIN_SLOPE = .001, this.SUBDIVISION_PRECISION = 1e-7, this.SUBDIVISION_MAX_ITERATIONS = 10, this.kSplineTableSize = 11, this.kSampleStepSize = 1 / (this.kSplineTableSize - 1), this.sampleValues = "function" == typeof Float32Array ? new Float32Array(this.kSplineTableSize) : new Array(this.kSplineTableSize), !(t >= 0 && t <= 1 && i >= 0 && i <= 1)) throw new Error("bezier x values must be in [0, 1] range");
+ if (t === e && i === s) return this;
+ for (let e = 0; e < this.kSplineTableSize; ++e) this.sampleValues[e] = this.calcBezier(e * this.kSampleStepSize, t, i)
+ }
+ getValue(t) {
+ return this.mX1 === this.mY1 && this.mX2 === this.mY2 || 0 === t || 1 === t || this.mX1 === this.mY1 && this.mX2 === this.mY2 ? t : this.calcBezier(this.getTForX(t, this.mX1, this.mX2), this.mY1, this.mY2)
+ }
+ getTForX(t, e, i) {
+ let s = 0,
+ h = 1;
+ const r = this.kSplineTableSize - 1;
+ for (; h !== r && this.sampleValues[h] <= t; ++h) s += this.kSampleStepSize;
+ --h;
+ const l = s + (t - this.sampleValues[h]) / (this.sampleValues[h + 1] - this.sampleValues[h]) * this.kSampleStepSize,
+ S = this.getSlope(l, e, i);
+ return S >= this.NEWTON_MIN_SLOPE ? this.newtonRaphsonIterate(t, l, e, i) : 0 === S ? l : this.binarySubdivide(t, s, s + this.kSampleStepSize, e, i)
+ }
+ A(t, e) {
+ return 1 - 3 * e + 3 * t
+ }
+ B(t, e) {
+ return 3 * e - 6 * t
+ }
+ C(t) {
+ return 3 * t
+ }
+ calcBezier(t, e, i) {
+ return ((this.A(e, i) * t + this.B(e, i)) * t + this.C(e)) * t
+ }
+ getSlope(t, e, i) {
+ return 3 * this.A(e, i) * t * t + 2 * this.B(e, i) * t + this.C(e)
+ }
+ binarySubdivide(t, e, i, s, h) {
+ let r, l, S = 0;
+ do {
+ l = e + (i - e) / 2, r = this.calcBezier(l, s, h) - t, r > 0 ? i = l : e = l
+ } while (Math.abs(r) > this.SUBDIVISION_PRECISION && ++S < this.SUBDIVISION_MAX_ITERATIONS);
+ return l
+ }
+ newtonRaphsonIterate(t, e, i, s) {
+ for (let h = 0; h < this.NEWTON_ITERATIONS; ++h) {
+ const h = this.getSlope(e, i, s);
+ if (0 === h) return e;
+ e -= (this.calcBezier(e, i, s) - t) / h
+ }
+ return e
+ }
+}(.02, .81, .01, 1);
+const b = (currentValue, maxValue = 1) => bezierUtlity.getValue(currentValue / maxValue) * maxValue;
+const getRandom = ((from, to, seedOffset = 110) => (seedRandom(index + seedOffset, true), Math.floor(random(0, to - from)) + from));
+
+const ANIMATION_DURATION = thisComp.layer("Controller").effect("ANIMATION_DURATION")("Slider");
+const X_OVERSCAN = thisComp.layer("Controller").effect("X_OVERSCAN")("Slider");
+const Y_OVERSCAN = thisComp.layer("Controller").effect("Y_OVERSCAN")("Slider");
+const Z_RANGE = thisComp.layer("Controller").effect("Z_RANGE")("Slider");
+const SIZE = thisComp.layer("Controller").effect("SIZE")("Slider");
+const isAnimationOnX = effect("isAnimationOnX")("Checkbox") > 0;
+const baseX = getRandom(-X_OVERSCAN, SIZE + X_OVERSCAN, 69);
+const baseY = getRandom(-Y_OVERSCAN, SIZE + Y_OVERSCAN, 420);
+const baseZ = getRandom(-Z_RANGE / 2, Z_RANGE / 2);
+const animationTime = effect("animationTime")("Slider");
+const direction = getRandom(0, 1) >= 0.5 ? -1 : 1;
+let result = [baseX, baseY, baseZ];
+
+if (animationTime >= 0) {
+ if (isAnimationOnX) {
+ result[0] = b(animationTime / ANIMATION_DURATION) * result[0] * direction;
+ } else {
+ result[1] = b(animationTime / ANIMATION_DURATION) * result[1] * direction;
+
+ }
+}
+
+result;`
+
+export default text
\ No newline at end of file
diff --git a/src/helpers/expressions/expressions.js b/src/helpers/expressions/expressions.js
new file mode 100644
index 00000000..aabc1f51
--- /dev/null
+++ b/src/helpers/expressions/expressions.js
@@ -0,0 +1,581 @@
+import escodegen from 'escodegen'
+import * as esprima from 'esprima'
+import reservedPropertiesHelper from './reservedPropertiesHelper'
+import valueAssignmentHelper from './valueAssignmentHelper'
+import variableDeclarationHelper from './variableDeclarationHelper'
+
+var options = {
+ tokens: true,
+ range: true
+};
+
+function correctElseToken(str){
+ var regElse = /(\/\/)?(.*) else /g;
+ return str.replace(regElse,'$1$2\n$1 else ');
+}
+
+function correctKhanyu(str){
+ var easeRegex = /Khanyu\s[0-9. ]+/;
+ if (easeRegex.test(str)) {
+ str = str.replace('key(1)[1];', 'key(1)[1].length;');
+ str = str.replace('key(1)[2];', 'key(1)[2].length;');
+ }
+ return str;
+}
+
+function correctEaseAndWizz(str){
+ var easeRegex = /Ease and Wizz\s[0-9. ]+:/;
+ if (easeRegex.test(str)) {
+ str = str.replace('key(1)[1];', 'key(1)[1].length;');
+ str = str.replace('key(1)[2];', 'key(1)[2].length;');
+ }
+ return str;
+}
+
+function fixThrowExpression(str){
+ var throwRegex = /(throw (["'])(?:(?=(\\?))\3[\S\s])*?\2)\s*([^;])/g;
+ return str.replace(throwRegex, '$1;\n$4');
+}
+
+function renameNameProperty(str){
+ var regName = /([.'"])name([\s'";.\)\]])/g;
+ return str.replace(regName,'$1_name$2');
+}
+
+function searchOperations(body) {
+ var i, len = body.length;
+ for (i = 0; i < len; i += 1) {
+ if (body[i].type === 'ExpressionStatement') {
+ handleExpressionStatement(body[i]);
+ } else if (body[i].type === 'IfStatement') {
+ handleIfStatement(body[i]);
+ } else if (body[i].type === 'FunctionDeclaration') {
+ handleFunctionDeclaration(body[i]);
+ } else if (body[i].type === 'WhileStatement') {
+ handleWhileStatement(body[i]);
+ } else if (body[i].type === 'ForStatement') {
+ handleForStatement(body[i]);
+ } else if (body[i].type === 'VariableDeclaration') {
+ handleVariableDeclaration(body[i]);
+ } else if (body[i].type === 'ReturnStatement') {
+ handleReturnStatement(body[i]);
+ } else if (body[i].type === 'TryStatement') {
+ handleTryStatement(body[i]);
+ } else if (body[i].type === 'SwitchStatement') {
+ handleSwitchStatement(body[i]);
+ } else {
+ }
+ }
+}
+
+function getBinaryElement(element) {
+ switch (element.type) {
+ case "Literal":
+ case "Identifier":
+ return element;
+ case "CallExpression":
+ handleCallExpression(element);
+ return element;
+ case "BinaryExpression":
+ return convertBinaryExpression(element);
+ case "UnaryExpression":
+ return convertUnaryExpression(element);
+ case "MemberExpression":
+ handleMemberExpression(element);
+ return element;
+ case "UpdateExpression":
+ return element;
+ default:
+ return element;
+ }
+}
+
+function getOperatorName(operator) {
+ switch (operator) {
+ case '+':
+ return '$bm_sum';
+ case '-':
+ return '$bm_sub';
+ case '*':
+ return '$bm_mul';
+ case '/':
+ return '$bm_div';
+ case '%':
+ return '$bm_mod';
+ default:
+ return '$bm_sum';
+
+ }
+}
+
+function isOperatorTransformable(operator){
+ switch(operator){
+ case '+':
+ case '-':
+ case '*':
+ case '/':
+ case '%':
+ return true;
+ default:
+ return false;
+ }
+}
+
+function convertBinaryExpression(expression) {
+ if (expression.left.type === 'Literal' && expression.right.type === 'Literal') {
+ return expression;
+ }
+ var callStatementOb;
+ if(expression.operator === 'instanceof' && expression.right.type === 'Identifier' && expression.right.name === 'Array') {
+ callStatementOb = {
+ 'arguments': [
+ getBinaryElement(expression.left)
+ ],
+ type: "CallExpression",
+ callee: {
+ name: '$bm_isInstanceOfArray',
+ type: 'Identifier'
+ }
+ };
+ } else if(!isOperatorTransformable(expression.operator)){
+ if(expression.left.type === 'BinaryExpression') {
+ expression.left = getBinaryElement(expression.left);
+ }
+ if(expression.right.type === 'BinaryExpression') {
+ expression.right = getBinaryElement(expression.right);
+ }
+ callStatementOb = expression;
+ } else {
+ callStatementOb = {
+ 'arguments': [
+ getBinaryElement(expression.left),
+ getBinaryElement(expression.right)
+ ],
+ type: "CallExpression",
+ callee: {
+ name: getOperatorName(expression.operator),
+ type: 'Identifier'
+ }
+ };
+ }
+ return callStatementOb;
+}
+
+function convertUnaryExpression(expression){
+ if(expression.operator === '-' && expression.argument.type !== 'Literal'){
+ var callStatementOb = {
+ 'arguments': [
+ getBinaryElement(expression.argument)
+ ],
+ type: "CallExpression",
+ callee: {
+ name: '$bm_neg',
+ type: 'Identifier'
+ }
+ };
+ return callStatementOb;
+ }
+ return expression;
+}
+
+function handleMemberExpression(expression) {
+ if (expression.property.type === 'BinaryExpression') {
+ expression.property = convertBinaryExpression(expression.property);
+ } else if (expression.property.type === 'UnaryExpression') {
+ expression.property = convertUnaryExpression(expression.property);
+ } else if (expression.property.type === 'CallExpression') {
+ handleCallExpression(expression.property);
+ }
+ if (expression.object){
+ if (expression.object.type === 'BinaryExpression') {
+ expression.object = convertBinaryExpression(expression.property);
+ } else if (expression.object.type === 'UnaryExpression') {
+ expression.object = convertUnaryExpression(expression.property);
+ } else if (expression.object.type === 'CallExpression') {
+ handleCallExpression(expression.object);
+ }
+ }
+}
+
+function handleCallExpression(expression) {
+ var args = expression['arguments'];
+ handleSequenceExpressions(args);
+ if(expression.callee.name === 'eval'){
+ var wrappingNode = {
+ type: 'MemberExpression',
+ computed: true,
+ object: {
+ type: 'ArrayExpression',
+ elements: [
+ args[0]
+ ]
+
+ },
+ property: {
+ value: 0,
+ type: 'Literal',
+ raw: '0'
+ }
+ }
+ args[0] = wrappingNode
+ } else if (expression.callee.type === 'FunctionExpression') {
+ handleFunctionDeclaration(expression.callee);
+ }
+}
+
+function handleIfStatement(ifStatement) {
+ if(ifStatement.test.type === 'BinaryExpression') {
+ ifStatement.test = convertBinaryExpression(ifStatement.test);
+ }
+ if (ifStatement.consequent) {
+ if (ifStatement.consequent.type === 'BlockStatement') {
+ searchOperations(ifStatement.consequent.body);
+ } else if (ifStatement.consequent.type === 'ExpressionStatement') {
+ handleExpressionStatement(ifStatement.consequent);
+ } else if (ifStatement.consequent.type === 'ReturnStatement') {
+ handleReturnStatement(ifStatement.consequent);
+ }
+ }
+ if (ifStatement.alternate) {
+ if (ifStatement.alternate.type === 'IfStatement') {
+ handleIfStatement(ifStatement.alternate);
+ } else if (ifStatement.alternate.type === 'BlockStatement') {
+ searchOperations(ifStatement.alternate.body);
+ } else if (ifStatement.alternate.type === 'ExpressionStatement') {
+ handleExpressionStatement(ifStatement.alternate);
+ }
+ }
+}
+
+function handleTryStatement(tryStatement) {
+ if (tryStatement.block) {
+ if (tryStatement.block.type === 'BlockStatement') {
+ searchOperations(tryStatement.block.body);
+ }
+ }
+ if (tryStatement.handler) {
+ if (tryStatement.handler.body.type === 'BlockStatement') {
+ searchOperations(tryStatement.handler.body.body);
+ }
+ }
+}
+
+function handleSwitchStatement(switchStatement) {
+ var cases = switchStatement.cases;
+ var i, len = cases.length;
+ for(i = 0; i < len; i += 1) {
+ searchOperations(cases[i].consequent);
+ }
+}
+
+function handleWhileStatement(whileStatement) {
+ if (whileStatement.body) {
+ if (whileStatement.body.type === 'BlockStatement') {
+ searchOperations(whileStatement.body.body);
+ } else if (whileStatement.body.type === 'ExpressionStatement') {
+ handleExpressionStatement(whileStatement.body);
+ }
+ }
+ if (whileStatement.test) {
+ if (whileStatement.test.type === 'MemberExpression') {
+ handleMemberExpression(whileStatement.test);
+ }
+ }
+}
+
+function handleForStatement(forStatement) {
+ if (forStatement.body) {
+ if (forStatement.body.type === 'BlockStatement') {
+ searchOperations(forStatement.body.body);
+ } else if (forStatement.body.type === 'ExpressionStatement') {
+ handleExpressionStatement(forStatement.body);
+ }
+ }
+}
+
+function handleReturnStatement(returnStatement) {
+ if (returnStatement.argument) {
+ returnStatement.argument = getBinaryElement(returnStatement.argument);
+ }
+}
+
+function handleVariableDeclaration(variableDeclaration) {
+ var declarations = variableDeclaration.declarations;
+ var i, len = declarations.length;
+ for (i = 0; i < len; i += 1) {
+ if (declarations[i].init) {
+ if (declarations[i].init.type === 'BinaryExpression') {
+ declarations[i].init = convertBinaryExpression(declarations[i].init);
+ } else if (declarations[i].init.type === 'UnaryExpression') {
+ declarations[i].init = convertUnaryExpression(declarations[i].init);
+ } else if (declarations[i].init.type === 'CallExpression') {
+ handleCallExpression(declarations[i].init);
+ } else if (declarations[i].init.type === 'ConditionalExpression') {
+ handleConditionalExpression(declarations[i].init);
+ } else if (declarations[i].init.type === 'LogicalExpression') {
+ handleLogicalExpression(declarations[i].init);
+ } else if (declarations[i].init.type === 'NewExpression') {
+ handleNewExpression(declarations[i].init);
+ } else if (declarations[i].init.type === 'ArrowFunctionExpression') {
+ handleArrowFunctionExpression(declarations[i].init);
+ } else {
+ // console.log('UNHANDLED: ', declarations[i].init);
+ }
+ }
+ }
+}
+
+function convertAssignmentToBinaryExpression(assignmentExpression) {
+ var function_arguments = [];
+ function_arguments.push(assignmentExpression.left);
+ function_arguments.push(assignmentExpression.right)
+ assignmentExpression.right = {
+ type: 'CallExpression',
+ arguments: function_arguments,
+ callee: {name:getOperatorName(assignmentExpression.operator.substr(0,1)), type:'Identifier'}
+ }
+ assignmentExpression.operator = '=';
+}
+
+function handleAssignmentExpression(assignmentExpression) {
+ if(assignmentExpression.operator === '+=' || assignmentExpression.operator === '-=') {
+ convertAssignmentToBinaryExpression(assignmentExpression)
+ }
+ if(assignmentExpression.right){
+ assignmentExpression.right = handleStatement(assignmentExpression.right);
+ }
+}
+
+function handleLogicalExpression(logicalExpression) {
+ if (logicalExpression.right){
+ logicalExpression.right = handleStatement(logicalExpression.right);
+ }
+
+ if (logicalExpression.left){
+ logicalExpression.left = handleStatement(logicalExpression.left);
+ }
+}
+
+function handleStatement(statement) {
+ if (statement.type === 'BinaryExpression') {
+ statement = convertBinaryExpression(statement);
+ } else if (statement.type === 'UnaryExpression') {
+ statement = convertUnaryExpression(statement);
+ } else if (statement.type === 'CallExpression') {
+ handleCallExpression(statement);
+ } else if (statement.type === 'MemberExpression') {
+ handleMemberExpression(statement);
+ } else if (statement.type === 'ConditionalExpression') {
+ handleConditionalExpression(statement);
+ } else if (statement.type === 'ArrayExpression') {
+ handleSequenceExpressions(statement.elements);
+ } else if (statement.type === 'FunctionExpression') {
+ handleFunctionDeclaration(statement);
+ } else if (statement.type === 'LogicalExpression') {
+ handleLogicalExpression(statement);
+ }
+ return statement;
+}
+
+function handleNewExpression(newExpression) {
+ if (newExpression.callee.type === 'ClassExpression') {
+ handleClassExpression(newExpression.callee);
+ }
+}
+
+function handleArrowFunctionExpression(arrowFunctionExpression) {
+ arrowFunctionExpression.body = handleStatement(arrowFunctionExpression.body);
+}
+
+function handleClassExpression(classExpression) {
+ if (classExpression.body.type === 'ClassBody') {
+ var body = classExpression.body.body;
+ var i, len = body.length;
+ for (i = 0; i < len; i += 1) {
+ if (body[i].type === 'MethodDefinition'
+ && body[i].value.type === 'FunctionExpression'
+ ) {
+ handleFunctionDeclaration(body[i].value);
+ }
+ }
+ }
+}
+
+function handleConditionalExpression(conditionalExpression) {
+ if(conditionalExpression.test.type === 'BinaryExpression') {
+ conditionalExpression.test = convertBinaryExpression(conditionalExpression.test);
+ }
+ if(conditionalExpression.consequent){
+ if (conditionalExpression.consequent.type === 'AssignmentExpression') {
+ handleAssignmentExpression(conditionalExpression.consequent);
+ } else if (conditionalExpression.consequent.type === 'BinaryExpression') {
+ conditionalExpression.consequent = convertBinaryExpression(conditionalExpression.consequent);
+ } else if (conditionalExpression.consequent.type === 'SequenceExpression') {
+ handleSequenceExpressions(conditionalExpression.consequent.expressions);
+ } else if (conditionalExpression.consequent.type === 'CallExpression') {
+ handleCallExpression(conditionalExpression.consequent);
+ } else if (conditionalExpression.consequent.type === 'LogicalExpression') {
+ handleLogicalExpression(conditionalExpression.consequent);
+ }
+ }
+ if (conditionalExpression.alternate){
+ if (conditionalExpression.alternate.type === 'AssignmentExpression') {
+ handleAssignmentExpression(conditionalExpression.alternate);
+ } else if (conditionalExpression.alternate.type === 'BinaryExpression') {
+ conditionalExpression.alternate = convertBinaryExpression(conditionalExpression.alternate);
+ } else if (conditionalExpression.alternate.type === 'SequenceExpression') {
+ handleSequenceExpressions(conditionalExpression.alternate.expressions);
+ } else if (conditionalExpression.alternate.type === 'CallExpression') {
+ handleCallExpression(conditionalExpression.alternate);
+ } else if (conditionalExpression.alternate.type === 'LogicalExpression') {
+ handleLogicalExpression(conditionalExpression.alternate);
+ }
+ }
+}
+
+function handleSequenceExpressions(expressions) {
+ var i, len = expressions.length;
+ for (i = 0; i < len; i += 1) {
+ if (expressions[i].type === 'CallExpression') {
+ handleCallExpression(expressions[i]);
+ } else if (expressions[i].type === 'BinaryExpression') {
+ expressions[i] = convertBinaryExpression(expressions[i]);
+ } else if (expressions[i].type === 'UnaryExpression') {
+ expressions[i] = convertUnaryExpression(expressions[i]);
+ } else if (expressions[i].type === 'AssignmentExpression') {
+ handleAssignmentExpression(expressions[i]);
+ } else if (expressions[i].type === 'ConditionalExpression') {
+ handleConditionalExpression(expressions[i]);
+ } else if (expressions[i].type === 'MemberExpression') {
+ handleMemberExpression(expressions[i]);
+ } else if (expressions[i].type === 'ArrayExpression') {
+ handleSequenceExpressions(expressions[i].elements);
+ } else if (expressions[i].type === 'LogicalExpression') {
+ handleLogicalExpression(expressions[i]);
+ }
+ }
+}
+
+function handleExpressionStatement(expressionStatement) {
+ if (expressionStatement.expression.type === 'CallExpression') {
+ handleCallExpression(expressionStatement.expression);
+ } else if (expressionStatement.expression.type === 'BinaryExpression') {
+ expressionStatement.expression = convertBinaryExpression(expressionStatement.expression);
+ } else if (expressionStatement.expression.type === 'UnaryExpression') {
+ expressionStatement.expression = convertUnaryExpression(expressionStatement.expression);
+ } else if (expressionStatement.expression.type === 'AssignmentExpression') {
+ handleAssignmentExpression(expressionStatement.expression);
+ } else if (expressionStatement.expression.type === 'ConditionalExpression') {
+ handleConditionalExpression(expressionStatement.expression);
+ } else if (expressionStatement.expression.type === 'SequenceExpression') {
+ handleSequenceExpressions(expressionStatement.expression.expressions);
+ } else if (expressionStatement.expression.type === 'LogicalExpression') {
+ handleLogicalExpression(expressionStatement.expression);
+ }
+}
+
+function handleFunctionDeclaration(functionDeclaration) {
+ if (functionDeclaration.body && functionDeclaration.body.type === 'BlockStatement') {
+ searchOperations(functionDeclaration.body.body);
+ }
+}
+
+function replaceOperations(body) {
+ searchOperations(body);
+}
+
+function findExpressionStatementsWithAssignmentExpressions(body) {
+
+ var i, len = body.length;
+ var j, jLen;
+ for(i = 0; i < len; i += 1) {
+ if (body[i].type === 'ExpressionStatement') {
+ if (body[i].expression.type === 'CallExpression') {
+ jLen = body[i].expression.arguments.length;
+ for (j = 0; j < jLen; j += 1) {
+ if(body[i].expression.arguments[j].type === 'AssignmentExpression') {
+ body[i].expression.arguments[j] = body[i].expression.arguments[j].right;
+ }
+ }
+ } else if (body[i].expression.type === 'AssignmentExpression') {
+ handleAssignmentExpression(body[i].expression);
+ } else if (body[i].expression.type === 'LogicalExpression') {
+ handleLogicalExpression(body[i].expression);
+ }
+ } else if (body[i].type === 'FunctionDeclaration') {
+ if (body[i].body && body[i].body.type === 'BlockStatement') {
+ findExpressionStatementsWithAssignmentExpressions(body[i].body.body);
+ }
+ }
+ }
+}
+
+function expressionIsConstant(expressionTree) {
+ if(expressionTree.body.length === 1 && expressionTree.body[0].type === "ExpressionStatement") {
+ if (expressionTree.body[0].expression) {
+ if(expressionTree.body[0].expression.type === "ArrayExpression") {
+ var i = 0, len = expressionTree.body[0].expression.elements.length;
+ while(i < len) {
+ if(expressionTree.body[0].expression.elements[i].type !== 'Literal') {
+ return false;
+ }
+ i += 1;
+ }
+ return true;
+ } else if(expressionTree.body[0].expression.type === "Literal") {
+ return true;
+ }
+ }
+ }
+ return false;
+}
+
+function process(expressionStr) {
+ expressionStr = correctEaseAndWizz(expressionStr);
+ expressionStr = correctKhanyu(expressionStr);
+ expressionStr = correctElseToken(expressionStr);
+ expressionStr = fixThrowExpression(expressionStr);
+ expressionStr = renameNameProperty(expressionStr);
+
+ expressionStr = variableDeclarationHelper.searchUndeclaredVariables(expressionStr);
+ var parsed = esprima.parse(expressionStr, options);
+ if(expressionIsConstant(parsed)) {
+ return {
+ isStatic: true,
+ text: eval(expressionStr), // eslint-disable-line
+ }
+ }
+ var body = parsed.body;
+
+ findExpressionStatementsWithAssignmentExpressions(body);
+ if(expressionStr.indexOf("use javascript") === -1){
+ replaceOperations(body);
+ }
+
+ //Replacing reserved properties like position, anchorPoint with __transform.position, __transform.anchorPoint
+ reservedPropertiesHelper.replaceProperties(body);
+
+ valueAssignmentHelper.assignVariable(body);
+
+ try {
+
+ expressionStr = escodegen.generate(parsed);
+ expressionStr = 'var $bm_rt;\n' + expressionStr;
+
+ return {
+ isStatic: false,
+ text: expressionStr,
+ };
+
+ // returnOb.x = expressionStr;
+
+ } catch(err) {
+ return {
+ isStatic: false,
+ hasFailed: true,
+ text: '',
+ }
+ }
+}
+
+export default process
\ No newline at end of file
diff --git a/src/helpers/expressions/reservedPropertiesHelper.js b/src/helpers/expressions/reservedPropertiesHelper.js
new file mode 100644
index 00000000..66f36365
--- /dev/null
+++ b/src/helpers/expressions/reservedPropertiesHelper.js
@@ -0,0 +1,374 @@
+/*jslint vars: true , plusplus: true, devel: true, nomen: true, regexp: true, indent: 4, maxerr: 50 */
+/*global $, esprima, escodegen*/
+
+const reserverPropertiesHelper = (function () {
+ var ob = {
+ replaceProperties: replaceProperties
+ };
+
+ var reserved_properties = ['position', 'scale', 'anchorPoint', 'rotation']
+
+ function Closure(body, declared_variables) {
+ this.body = body;
+ this.declared_variables = [].concat(declared_variables);
+ }
+ Closure.prototype.addDeclarations = function(declarations) {
+ var i, len = declarations.length;
+ var declaration;
+ for (i = 0; i < len; i += 1) {
+ declaration = declarations[i];
+ this.declared_variables.push(declaration.id.name)
+ }
+ }
+
+ function createClosure(body, declared_variables) {
+ return new Closure(body, declared_variables);
+ }
+
+ function createFunctionClosure(element, declared_variables) {
+ var i, len;
+ var function_arguments = [];
+ if (element.params) {
+ len = element.params.length;
+ for (i = 0; i < len; i += 1) {
+ function_arguments.push(element.params[i].name);
+ }
+ }
+ return new Closure(element.body.body, function_arguments.concat(declared_variables));
+ }
+
+ function arrayIndexOf(arr, value) {
+ var i = 0, len = arr.length;
+ while (i < len) {
+ if(arr[i] === value) {
+ return i;
+ }
+ i += 1;
+ }
+ return -1;
+ }
+
+ function processIdentifier(property, declared_variables) {
+ var name = property.name;
+ if (arrayIndexOf(reserved_properties, name) !== -1 && arrayIndexOf(declared_variables, name) === -1) {
+ return createMemberExpression(property.name);
+ }
+ return property;
+ }
+
+ function createMemberExpression(name) {
+ return {
+ type: 'MemberExpression',
+ object: {
+ name: '$bm_transform',
+ type: 'Identifier'
+ },
+ property: {
+ name: name,
+ type: 'Identifier'
+ }
+ }
+ }
+
+ function processArrayExpression(element, inner_closures, declared_variables) {
+ processSequenceExpression(element.elements, inner_closures, declared_variables)
+ }
+
+ function processVariableDeclaration(element, inner_closures, declared_variables) {
+ var declarations = element.declarations;
+ var i, len = declarations.length;
+ for(i = 0; i < len; i += 1) {
+ if(declarations[i].init) {
+ declarations[i].init = processGeneralExpression(declarations[i].init, inner_closures, declared_variables);
+ }
+ }
+ }
+
+ function processConditionalExpression(expression, inner_closures, declared_variables) {
+ if(expression.test) {
+ expression.test = processGeneralExpression(expression.test, inner_closures, declared_variables);
+ }
+ if(expression.consequent){
+ expression.consequent = processGeneralExpression(expression.consequent, inner_closures, declared_variables);
+ }
+ if(expression.alternate){
+ expression.alternate = processGeneralExpression(expression.alternate, inner_closures, declared_variables);
+ }
+ }
+
+ function processFunctionExpression(expression, inner_closures, declared_variables) {
+ if(expression.body && expression.body.type === 'BlockStatement') {
+ inner_closures.push(createFunctionClosure(expression, declared_variables));
+ // inner_closures.push(new Closure(expression.body.body, declared_variables));
+ }
+ }
+
+ function processCallExpression(expression, inner_closures, declared_variables) {
+ if (expression.arguments) {
+ iterateArguments(expression.arguments, inner_closures, declared_variables);
+ }
+ if(expression.callee && expression.callee.type === 'FunctionExpression') {
+ processFunctionExpression(expression.callee, inner_closures, declared_variables);
+ }
+ }
+
+ function processAssignmentExpression(expression, inner_closures, declared_variables) {
+ if (expression.left) {
+ if (expression.left.type === 'MemberExpression') {
+ processMemberExpression(expression.left, inner_closures, declared_variables);
+ }
+ }
+ if (expression.right) {
+ expression.right = processGeneralExpression(expression.right, inner_closures, declared_variables);
+ }
+ }
+
+ function processSequenceExpression(expressions, inner_closures, declared_variables) {
+ var i, len = expressions.length;
+ for (i = 0; i < len; i += 1) {
+ expressions[i] = processGeneralExpression(expressions[i], inner_closures, declared_variables);
+ }
+ }
+
+ function processMemberExpression(expression, inner_closures, declared_variables) {
+ if (expression.object.type === 'Identifier') {
+ expression.object = processIdentifier(expression.object, declared_variables);
+ }
+
+ if (expression.property && expression.computed) {
+ expression.property = processGeneralExpression(expression.property, inner_closures, declared_variables)
+ }
+ }
+
+ function processBinaryExpression(expression, inner_closures, declared_variables) {
+ if(expression.test) {
+ expression.test = processGeneralExpression(expression.test, inner_closures, declared_variables);
+ }
+ if(expression.left) {
+ expression.left = processGeneralExpression(expression.left, inner_closures, declared_variables);
+ }
+ if(expression.right) {
+ expression.right = processGeneralExpression(expression.right, inner_closures, declared_variables);
+ }
+ }
+
+ function processUnaryExpression(element, inner_closures, declared_variables) {
+ if(element.argument) {
+ element.argument = processGeneralExpression(element.argument, inner_closures, declared_variables);
+ }
+ }
+
+ function processLogicalExpression(test, inner_closures, declared_variables) {
+ if (test.left) {
+ test.left = processGeneralExpression(test.left, inner_closures, declared_variables);
+ }
+
+ if (test.right) {
+ test.right = processGeneralExpression(test.right, inner_closures, declared_variables);
+ }
+ }
+
+ function processIfStatement(element, inner_closures, declared_variables) {
+ if(element.test) {
+ if(element.test.type === 'LogicalExpression') {
+ processLogicalExpression(element.test, inner_closures, declared_variables)
+ } else if(element.test.type === 'BinaryExpression') {
+ processBinaryExpression(element.test, inner_closures, declared_variables)
+ }
+ }
+ if (element.consequent) {
+ if (element.consequent.type === 'BlockStatement') {
+ inner_closures.push(new Closure(element.consequent.body, declared_variables));
+ } else if (element.consequent.type === 'IfStatement') {
+ processIfStatement(element.consequent, inner_closures, declared_variables)
+ } else if (element.consequent.type === 'ReturnStatement') {
+ processReturnStatement(element.consequent, inner_closures, declared_variables)
+ } else if (element.consequent.type === 'ExpressionStatement') {
+ element.consequent = processGeneralExpression(element.consequent, inner_closures, declared_variables);
+ } else {
+ //console.log(element.consequent.type)
+ }
+ }
+ if (element.alternate) {
+ if (element.alternate.type === 'BlockStatement') {
+ inner_closures.push(new Closure(element.alternate.body, declared_variables));
+ } else if (element.alternate.type === 'IfStatement') {
+ processIfStatement(element.alternate, inner_closures, declared_variables);
+ } else if (element.alternate.type === 'ReturnStatement') {
+ processReturnStatement(element.alternate, inner_closures, declared_variables);
+ } else if (element.alternate.type === 'ExpressionStatement') {
+ element.alternate = processGeneralExpression(element.alternate, inner_closures, declared_variables);
+ } else {
+ // console.log(element.consequent.type)
+ }
+ }
+ }
+
+ function processTryStatement(element, inner_closures, declared_variables) {
+ if(element.block) {
+ if(element.block.type === 'BlockStatement') {
+ inner_closures.push(new Closure(element.block.body, declared_variables));
+ }
+ }
+ if(element.handler) {
+ if(element.handler && element.handler.body && element.handler.body.type === 'BlockStatement') {
+ inner_closures.push(new Closure(element.handler.body.body, declared_variables));
+ }
+ }
+ }
+
+ function processSwitchConsequents(consequents, inner_closures, declared_variables) {
+ var i, len = consequents.length;
+ for(i = 0; i < len; i += 1) {
+ if (consequents[i].type === 'BlockStatement') {
+ inner_closures.push(new Closure(consequents[i].body, declared_variables));
+ } else {
+ consequents[i] = processGeneralExpression(consequents[i], inner_closures, declared_variables);
+ }
+ }
+ }
+
+ function processSwitchStatement(element, inner_closures, declared_variables) {
+ if(element.discriminant) {
+ element.discriminant = processGeneralExpression(element.discriminant, inner_closures, declared_variables);
+ }
+ if(element.cases) {
+ var i, len = element.cases.length;
+ for (i = 0; i < len; i += 1) {
+ if(element.cases[i].test) {
+ element.cases[i].test = processGeneralExpression(element.cases[i].test, inner_closures, declared_variables);
+ }
+ if(element.cases[i].consequent) {
+ processSwitchConsequents(element.cases[i].consequent, inner_closures, declared_variables);
+ }
+ }
+ }
+ }
+
+ function processWhileStatement(element, inner_closures, declared_variables) {
+ if(element.test) {
+ element.test = processGeneralExpression(element.test, inner_closures, declared_variables);
+ }
+ if(element.body) {
+ if(element.body.type === 'BlockStatement') {
+ inner_closures.push(new Closure(element.body.body, declared_variables));
+ }
+ }
+ }
+
+ function iterateArguments(expression_arguments, inner_closures, declared_variables) {
+ var i, len = expression_arguments.length;
+ for (i = 0; i < len; i += 1) {
+ expression_arguments[i] = processGeneralExpression(expression_arguments[i], inner_closures, declared_variables);
+ }
+ }
+
+ function processReturnStatement(element, inner_closures, declared_variables) {
+ if (element.argument) {
+ if(element.argument.type === 'CallExpression') {
+ if(element.argument.callee.body) {
+ inner_closures.push(new Closure(element.argument.callee.body, declared_variables));
+ } else {
+ processCallExpression(element.argument, inner_closures, declared_variables);
+ }
+ } else if(element.argument.type === 'FunctionExpression' && element.argument.body) {
+ if(element.argument.body.type === 'BlockStatement') {
+ inner_closures.push(new Closure(element.argument.body.body, declared_variables));
+ }
+ } else {
+ element.argument = processGeneralExpression(element.argument, inner_closures, declared_variables);
+ }
+ }
+ }
+
+ function processGeneralExpression(expression, inner_closures, declared_variables) {
+ if (expression.type === 'CallExpression') {
+ processCallExpression(expression, inner_closures, declared_variables);
+ } else if (expression.type === 'AssignmentExpression') {
+ processAssignmentExpression(expression, inner_closures, declared_variables)
+ } else if (expression.type === 'ConditionalExpression') {
+ processConditionalExpression(expression, inner_closures, declared_variables);
+ } else if (expression.type === 'MemberExpression') {
+ processMemberExpression(expression, inner_closures, declared_variables);
+ } else if (expression.type === 'ArrayExpression') {
+ processArrayExpression(expression, inner_closures, declared_variables);
+ } else if (expression.type === 'LogicalExpression') {
+ processLogicalExpression(expression, inner_closures, declared_variables);
+ } else if (expression.type === 'BinaryExpression') {
+ processBinaryExpression(expression, inner_closures, declared_variables);
+ } else if (expression.type === 'UnaryExpression') {
+ processUnaryExpression(expression, inner_closures, declared_variables);
+ } else if (expression.type === 'FunctionExpression') {
+ processFunctionExpression(expression, inner_closures, declared_variables);
+ } else if (expression.type === 'SequenceExpression') {
+ processSequenceExpression(expression.expressions, inner_closures, declared_variables);
+ } else if (expression.type === 'Identifier') {
+ expression = processIdentifier(expression, declared_variables);
+ } else if (expression.type === 'Literal') {
+ expression = processIdentifier(expression, declared_variables);
+ } else if (expression.type === 'ExpressionStatement') {
+ expression.expression = processGeneralExpression(expression.expression, inner_closures, declared_variables)
+ } else {
+ // console.log(expression.type)
+ }
+ return expression;
+ }
+
+ function iterateBody(closure) {
+ var body = closure.body
+ var declared_variables = closure.declared_variables;
+ var i, len = body.length
+ var inner_closures = [];
+ var element;
+ // First loop finds declarations and closures
+ for (i = 0; i < len; i += 1) {
+ element = body[i];
+ if (element.type === 'VariableDeclaration') {
+ closure.addDeclarations(element.declarations);
+ }
+ }
+ // Second loop process expressions
+ for (i = 0; i < len; i += 1) {
+ element = body[i];
+ if (element.type === 'VariableDeclaration') {
+ processVariableDeclaration(element, inner_closures, declared_variables);
+ } else if (element.type === 'FunctionDeclaration') {
+ if (element.body && element.body.type === 'BlockStatement') {
+ inner_closures.push(createFunctionClosure(element, declared_variables));
+ }
+ } else if (element.type === 'ReturnStatement') {
+ processReturnStatement(element, inner_closures, declared_variables);
+ } else if (element.type === 'ExpressionStatement') {
+ element.expression = processGeneralExpression(element.expression, inner_closures, declared_variables);
+ } else if (element.type === 'IfStatement') {
+ processIfStatement(element, inner_closures, declared_variables);
+ } else if (element.type === 'TryStatement') {
+ processTryStatement(element, inner_closures, declared_variables);
+ } else if (element.type === 'SwitchStatement') {
+ processSwitchStatement(element, inner_closures, declared_variables);
+ } else if (element.type === 'WhileStatement') {
+ processWhileStatement(element, inner_closures, declared_variables);
+ } else {
+ // console.log(element.type)
+ }
+ }
+
+ iterateInnerClosures(inner_closures, closure.declared_variables);
+ }
+
+ function iterateInnerClosures(closures) {
+ var i, len = closures.length;
+ for(i = 0; i < len; i += 1) {
+ iterateBody(closures[i]);
+ }
+ }
+
+ function replaceProperties(body) {
+ var closure = createClosure(body, []);
+ iterateBody(closure)
+ }
+
+ return ob;
+}())
+
+export default reserverPropertiesHelper
\ No newline at end of file
diff --git a/src/helpers/expressions/valueAssignmentHelper.js b/src/helpers/expressions/valueAssignmentHelper.js
new file mode 100644
index 00000000..968df135
--- /dev/null
+++ b/src/helpers/expressions/valueAssignmentHelper.js
@@ -0,0 +1,152 @@
+/*jslint vars: true , plusplus: true, devel: true, nomen: true, regexp: true, indent: 4, maxerr: 50 */
+/*global $, esprima, escodegen*/
+
+const valueAssignmentHelper = (function () {
+ var ob = {
+ assignVariable: assignVariable
+ };
+
+ function assignVariable(body){
+ var len = body.length - 1;
+ var flag = len >= 0 ? true : false;
+ var lastElem;
+ while (flag) {
+ lastElem = body[len];
+ if(lastElem.type === 'IfStatement'){
+ assignVariableToIfStatement(lastElem);
+ body[len] = lastElem;
+ len -= 1;
+ } else if (lastElem.type === 'SwitchStatement') {
+ assignVariableToSwitchStatement(lastElem);
+ body[len] = lastElem;
+ flag = false;
+ } else if (lastElem.type === 'ExpressionStatement') {
+ lastElem = convertExpressionStatementToVariableDeclaration(lastElem);
+ body[len] = lastElem;
+ flag = false;
+ } else if (lastElem.type === 'TryStatement') {
+ if (lastElem.block) {
+ if (lastElem.block.type === 'BlockStatement') {
+ assignVariable(lastElem.block.body);
+ }
+ }
+ if (lastElem.handler) {
+ if (lastElem.handler.body.type === 'BlockStatement') {
+ assignVariable(lastElem.handler.body.body);
+ }
+ }
+ body[len] = lastElem;
+ flag = false;
+ } else if ((lastElem.type !== 'EmptyStatement' && lastElem.type !== 'FunctionDeclaration' && lastElem.type !== 'BreakStatement') || len === 0) {
+ flag = false;
+ } else {
+ len -= 1;
+ }
+ if(len < 0){
+ flag = false;
+ }
+ }
+ }
+
+ function convertExpressionStatementToVariableDeclaration(expressionStatement) {
+ var assignmentObject;
+ if(expressionStatement.expression.type === 'Literal'){
+ assignmentObject = createAssignmentObject();
+ assignmentObject.expression.right = expressionStatement.expression;
+ return assignmentObject;
+ } else if(expressionStatement.expression.type === 'Identifier'){
+ assignmentObject = createAssignmentObject();
+ assignmentObject.expression.right = expressionStatement.expression;
+ return assignmentObject;
+ } else if(expressionStatement.expression.type === 'CallExpression'){
+ assignmentObject = createAssignmentObject();
+ assignmentObject.expression.right = expressionStatement.expression;
+ return assignmentObject;
+ } else if(expressionStatement.expression.type === 'ArrayExpression'){
+ assignmentObject = createAssignmentObject();
+ assignmentObject.expression.right = expressionStatement.expression;
+ return assignmentObject;
+ } else if(expressionStatement.expression.type === 'BinaryExpression'){
+ assignmentObject = createAssignmentObject();
+ assignmentObject.expression.right = expressionStatement.expression;
+ return assignmentObject;
+ } else if(expressionStatement.expression.type === 'MemberExpression'){
+ assignmentObject = createAssignmentObject();
+ assignmentObject.expression.right = expressionStatement.expression;
+ return assignmentObject;
+ } else if(expressionStatement.expression.type === 'LogicalExpression'){
+ assignmentObject = createAssignmentObject();
+ assignmentObject.expression.right = expressionStatement.expression;
+ return assignmentObject;
+ } else if(expressionStatement.expression.type === 'UnaryExpression'){
+ assignmentObject = createAssignmentObject();
+ assignmentObject.expression.right = expressionStatement.expression;
+ return assignmentObject;
+ } else if(expressionStatement.expression.type === 'ConditionalExpression'){
+ assignmentObject = createAssignmentObject();
+ assignmentObject.expression.right = expressionStatement.expression;
+ return assignmentObject;
+ } else if(expressionStatement.expression.type === 'AssignmentExpression'){
+ assignmentObject = createAssignmentObject();
+ assignmentObject.expression.right = expressionStatement.expression;
+ return assignmentObject;
+ } else if(expressionStatement.expression.type === 'SequenceExpression'){
+ assignmentObject = createAssignmentExpressionObject();
+ assignmentObject.right = expressionStatement.expression.expressions[expressionStatement.expression.expressions.length - 1];
+ expressionStatement.expression.expressions[expressionStatement.expression.expressions.length - 1] = assignmentObject;
+ }
+ return expressionStatement;
+ }
+
+ function assignVariableToIfStatement(ifStatement){
+ if (ifStatement.consequent) {
+ if (ifStatement.consequent.type === 'BlockStatement') {
+ assignVariable(ifStatement.consequent.body);
+ } else if (ifStatement.consequent.type === 'ExpressionStatement') {
+ ifStatement.consequent = convertExpressionStatementToVariableDeclaration(ifStatement.consequent);
+ }
+ }
+ if (ifStatement.alternate) {
+ if (ifStatement.alternate.type === 'IfStatement') {
+ assignVariableToIfStatement(ifStatement.alternate);
+ } else if (ifStatement.alternate.type === 'BlockStatement') {
+ assignVariable(ifStatement.alternate.body);
+ } else if (ifStatement.alternate.type === 'ExpressionStatement') {
+ ifStatement.alternate = convertExpressionStatementToVariableDeclaration(ifStatement.alternate);
+ }
+ }
+ }
+
+ function assignVariableToSwitchStatement(switchStatement) {
+ var cases = switchStatement.cases;
+ var i, len = cases.length;
+ for (i = 0; i < len; i += 1) {
+ if (cases[i].consequent.length) {
+ assignVariable(cases[i].consequent)
+ }
+ }
+ }
+
+ function createAssignmentObject(){
+ return {
+ type: 'ExpressionStatement',
+ expression: createAssignmentExpressionObject()
+ }
+ }
+
+ function createAssignmentExpressionObject(){
+ return {
+ left: {
+ name: '$bm_rt',
+ type: 'Identifier'
+ },
+ type: "AssignmentExpression",
+ operator: '='
+ }
+ }
+
+ return ob;
+
+}())
+
+export default valueAssignmentHelper
\ No newline at end of file
diff --git a/src/helpers/expressions/variableDeclarationHelper.js b/src/helpers/expressions/variableDeclarationHelper.js
new file mode 100644
index 00000000..c0eb3312
--- /dev/null
+++ b/src/helpers/expressions/variableDeclarationHelper.js
@@ -0,0 +1,294 @@
+/*jslint vars: true , plusplus: true, devel: true, nomen: true, regexp: true, indent: 4, maxerr: 50 */
+/*global $, esprima, escodegen*/
+import * as esprima from 'esprima'
+
+const variableDeclarationHelper = (function () {
+ var ob = {
+ searchUndeclaredVariables: searchUndeclaredVariables
+ };
+ var options = {
+ tokens: true,
+ range: true
+ };
+ var pendingBodies = [], doneBodies = [], expressionStr;
+
+ function searchUndeclaredVariables(originalExpressionString) {
+ expressionStr = originalExpressionString;
+ pendingBodies.length = 0;
+ doneBodies.length = 0;
+ var parsed = esprima.parse(expressionStr, options);
+ var body = parsed.body;
+ pendingBodies.push({body: body, d: [], u: [], pre: [], pos: 0});
+ exportNextBody();
+ return expressionStr;
+ }
+
+ function spliceSlice(str, index, count, add) {
+ return str.slice(0, index) + (add || "") + str.slice(index + count);
+ }
+
+ function exportNextBody() {
+ if (pendingBodies.length === 0) {
+ includeUndeclaredVariables();
+ } else {
+ var next = pendingBodies.shift();
+ var preDeclared = [];
+ preDeclared = preDeclared.concat(next.pre);
+ preDeclared = preDeclared.concat(next.d);
+ preDeclared = preDeclared.concat(next.u);
+ return findUndeclaredVariables(next.body, next.pos, preDeclared);
+ }
+ }
+
+ function findUndeclaredVariables(body, pos, predeclared, declared, undeclared, isContinuation) {
+
+ function addAssignment(expression) {
+ var variableName;
+ if (expression.left && expression.left.name) {
+ variableName = expression.left.name;
+ if(variableName === 'value'){
+ return;
+ }
+ var i = 0, len = declared.length;
+ while (i < len) {
+ if (declared[i] === variableName) {
+ return;
+ }
+ i += 1;
+ }
+ i = 0;
+ len = declared.length;
+ while (i < len) {
+ if (undeclared[i] === variableName) {
+ return;
+ }
+ i += 1;
+ }
+ undeclared.push(variableName);
+ }
+ }
+
+ function addDeclaredVariable(variableName) {
+ var i = 0, len = declared.length;
+ while (i < len) {
+ if (declared[i] === variableName) {
+ return;
+ }
+ i += 1;
+ }
+ declared.push(variableName);
+ }
+
+ function addIfStatement(statement){
+ if(statement.consequent){
+ if (statement.consequent.type === 'BlockStatement') {
+ findUndeclaredVariables(statement.consequent.body, 0, null, declared, undeclared, true);
+ } else if (statement.consequent.type === 'ExpressionStatement') {
+ var expression = statement.consequent.expression;
+ if (expression.type === 'AssignmentExpression') {
+ addAssignment(expression);
+ } else if (expression.type === 'SequenceExpression') {
+ iterateElements(expression.expressions);
+ }
+ } else if (statement.consequent.type === 'ReturnStatement') {
+ //
+ } else if (statement.consequent.type === 'IfStatement') {
+ addIfStatement(statement.consequent)
+ } else {
+ // console.log(statement.consequent.type)
+ }
+ }
+ if (statement.alternate) {
+ if (statement.alternate.type === 'IfStatement') {
+ addIfStatement(statement.alternate)
+ } else if (statement.alternate.type === 'BlockStatement') {
+ findUndeclaredVariables(statement.alternate.body, 0, null, declared, undeclared, true);
+ } else if (statement.alternate.type === 'ExpressionStatement') {
+ expression = statement.alternate.expression;
+ if (expression.type === 'AssignmentExpression') {
+ addAssignment(expression);
+ } else if (expression.type === 'SequenceExpression') {
+ iterateElements(expression.expressions);
+ }
+ }
+ }
+ }
+
+ function addTryStatement(statement){
+ if (statement.block) {
+ if (statement.block.type === 'BlockStatement') {
+ findUndeclaredVariables(statement.block.body, 0, null, declared, undeclared, true);
+ }
+ }
+ if (statement.handler) {
+ if (statement.handler.body.type === 'BlockStatement') {
+ findUndeclaredVariables(statement.handler.body.body, 0, null, declared, undeclared, true);
+ }
+ }
+ }
+
+ function addSwitchStatement(statement) {
+ var i, len = statement.cases.length;
+ for (i = 0; i < len; i += 1) {
+ findUndeclaredVariables(statement.cases[i].consequent, 0, null, declared, undeclared, true);
+ }
+ }
+
+ if (!declared) {
+ declared = [];
+ }
+ if (!undeclared) {
+ undeclared = [];
+ }
+ var i, len;
+ if (predeclared) {
+ len = predeclared.length;
+ for (i = 0; i < len; i += 1) {
+ declared.push(predeclared[i]);
+ }
+ }
+
+ function iterateElements(_body) {
+ var i, len = _body.length;
+ var j, jLen, expression, declarations, element;
+ for (i = 0; i < len; i += 1) {
+ element = _body[i];
+ if (element.type === 'AssignmentExpression') {
+ addAssignment(element);
+ } else if (element.type === 'SequenceExpression') {
+ iterateElements(element.expressions);
+ } else if (element.type === 'ConditionalExpression') {
+ if(element.consequent) {
+ if(element.consequent.type === 'AssignmentExpression') {
+ addAssignment(element.consequent);
+ } else if(element.consequent.type === 'SequenceExpression') {
+ iterateElements(element.consequent.expressions);
+ }
+ }
+ if(element.alternate) {
+ if(element.alternate.type === 'AssignmentExpression') {
+ addAssignment(element.alternate);
+ } else if(element.alternate.type === 'SequenceExpression') {
+ iterateElements(element.alternate.expressions);
+ }
+ addAssignment(element.alternate);
+ }
+ } else if (element.type === 'VariableDeclaration') {
+ declarations = element.declarations;
+ jLen = declarations.length;
+ for (j = 0; j < jLen; j += 1) {
+ if (declarations[j].type === 'VariableDeclarator') {
+ if (declarations[j].id && declarations[j].id.name) {
+ addDeclaredVariable(declarations[j].id.name);
+ }
+ }
+ }
+ } else if (element.type === 'ExpressionStatement') {
+ expression = element.expression;
+ if (expression.type === 'AssignmentExpression') {
+ addAssignment(expression);
+ } else if (expression.type === 'SequenceExpression') {
+ iterateElements(expression.expressions);
+ } else if (expression.type === 'ConditionalExpression') {
+ if(expression.consequent) {
+ if(expression.consequent.type === 'AssignmentExpression') {
+ addAssignment(expression.consequent);
+ } else if(expression.consequent.type === 'SequenceExpression') {
+ iterateElements(expression.consequent.expressions);
+ }
+ }
+ if(expression.alternate) {
+ if(expression.alternate.type === 'AssignmentExpression') {
+ addAssignment(expression.alternate);
+ } else if(expression.alternate.type === 'SequenceExpression') {
+ iterateElements(expression.alternate.expressions);
+ }
+ addAssignment(expression.alternate);
+ }
+ }
+ //
+ } else if (element.type === 'ForStatement') {
+ if (element.init) {
+ if (element.init.type === 'SequenceExpression') {
+ iterateElements(element.init.expressions);
+ } else if (element.init.type === 'AssignmentExpression') {
+ addAssignment(element.init);
+ }
+ }
+ if (element.body) {
+ if (element.body.type === 'BlockStatement') {
+ findUndeclaredVariables(element.body.body, 0, null, declared, undeclared, true);
+ } else if (element.body.type === 'ExpressionStatement') {
+ expression = element.body.expression;
+ if (expression.type === 'AssignmentExpression') {
+ addAssignment(expression);
+ } else if (expression.type === 'SequenceExpression') {
+ iterateElements(expression.expressions);
+ }
+ //addAssignment(element.body);
+ }
+ }
+ } else if (element.type === 'IfStatement') {
+ addIfStatement(element);
+ } else if (element.type === 'TryStatement') {
+ addTryStatement(element);
+ } else if (element.type === 'SwitchStatement') {
+ addSwitchStatement(element);
+ } else if (element.type === 'FunctionDeclaration') {
+ if (element.body && element.body.type === 'BlockStatement') {
+ var p = [];
+ if (element.params) {
+ jLen = element.params.length;
+ for (j = 0; j < jLen; j += 1) {
+ p.push(element.params[j].name);
+ }
+ }
+ pendingBodies.push({body: element.body.body, d: declared, u: undeclared, pre: p, pos: element.body.range[0] + 1});
+ }
+ } else if (element.type === 'ReturnStatement') {
+ if (element.argument && element.argument.type === 'CallExpression' && element.argument.callee.body) {
+ pendingBodies.push({body: element.argument.callee.body.body, d: declared, u: undeclared, pre: p, pos: element.argument.callee.body.range[0] + 1});
+ }
+ } else if (element.type === 'BlockStatement') {
+ findUndeclaredVariables(element.body, 0, null, declared, undeclared, true);
+ } else if (element.type === 'LogicalExpression') {
+ if(element.right) {
+ if(element.right.type === 'AssignmentExpression') {
+ addAssignment(element.right)
+ }
+ }
+ if(element.left) {
+ if(element.left.type === 'AssignmentExpression') {
+ addAssignment(element.left)
+ }
+ }
+ }
+ }
+ }
+ iterateElements(body);
+
+ if (!isContinuation) {
+ doneBodies.push({u: undeclared, p: pos});
+ exportNextBody();
+ }
+ }
+
+ function includeUndeclaredVariables() {
+ doneBodies.sort(function (a, b) {
+ return parseInt(b.p, 10) - parseInt(a.p, 10);
+ });
+ var i, len = doneBodies.length;
+ var declarationStr = '';
+ for (i = 0; i < len; i += 1) {
+ if (doneBodies[i].u.length) {
+ declarationStr = 'var ' + doneBodies[i].u.join(',') + ';';
+ expressionStr = spliceSlice(expressionStr, doneBodies[i].p, 0, declarationStr);
+ }
+ }
+ }
+
+ return ob
+
+}())
+
+export default variableDeclarationHelper
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/alerts/gradientAlert.js b/src/helpers/importers/lottie/alerts/gradientAlert.js
new file mode 100644
index 00000000..95eead07
--- /dev/null
+++ b/src/helpers/importers/lottie/alerts/gradientAlert.js
@@ -0,0 +1,62 @@
+function getKeyframes(gradientKeys) {
+ if (typeof gradientKeys[0] === 'number') {
+ return [{
+ s: gradientKeys
+ }]
+ } else {
+ return gradientKeys
+ }
+}
+
+function buildGradientKeyframes(gradientData) {
+ const totalPositions = gradientData.p;
+ const colors = [];
+ const alphas = [];
+ const keyframes = getKeyframes(gradientData.k.k);
+ keyframes.forEach(gradient => {
+ const gradientValue = gradient.s;
+ const hasAlpha = gradientValue.length / 4 !== totalPositions;
+ const colorList = [];
+ const alphaList = [];
+ let count = 0, index = 0;
+ while (count < totalPositions) {
+ index = count * 4;
+ colorList.push({
+ p: Math.round(100 * gradientValue[index + 0] * 100) / 100,
+ r: Math.round(gradientValue[index + 1] * 255 * 100) / 100,
+ g: Math.round(gradientValue[index + 2] * 255 * 100) / 100,
+ b: Math.round(gradientValue[index + 3] * 255 * 100) / 100,
+ })
+ count += 1;
+ }
+ colors.push(colorList)
+ if (hasAlpha) {
+ count = 0;
+ const totalAlphaPositions = ((gradientValue.length - (totalPositions * 4)) / 2);
+ index = 0;
+ while (count < totalAlphaPositions) {
+ index = totalPositions * 4 + count * 2;
+ alphaList.push({
+ p: Math.round(100 * gradientValue[index + 0] * 100) / 100,
+ a: Math.round(gradientValue[index + 1] * 100 * 100) / 100,
+ })
+ count += 1;
+ }
+ alphas.push(alphaList)
+ }
+ });
+ return {
+ colors,
+ alphas,
+ }
+}
+
+function buildAlert(layerData) {
+ return {
+ type: 'gradient',
+ message: `Gradient data can't be imported. You will need to fill it manually.`,
+ colorData: buildGradientKeyframes(layerData.g),
+ }
+}
+
+export default buildAlert
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/alertsHelper.js b/src/helpers/importers/lottie/alertsHelper.js
new file mode 100644
index 00000000..6ba0e435
--- /dev/null
+++ b/src/helpers/importers/lottie/alertsHelper.js
@@ -0,0 +1,39 @@
+const _alerts = [];
+const _compsStack = [];
+let _currentLayer = '';
+
+const add = (message) => {
+ _alerts.push({
+ ...message,
+ layer: _currentLayer,
+ comp: _compsStack.length ? _compsStack[_compsStack.length - 1] : '',
+ })
+}
+
+const get = () => [..._alerts];
+
+const reset = () => {
+ _alerts.length = 0;
+ _compsStack.length = 0;
+}
+
+const setLayer = (name) => {
+ _currentLayer = name;
+}
+
+const pushComp = (name) => {
+ _compsStack.push(name);
+}
+
+const popComp = () => {
+ _compsStack.pop();
+}
+
+export {
+ add,
+ get,
+ reset,
+ setLayer,
+ pushComp,
+ popComp,
+}
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/assets.js b/src/helpers/importers/lottie/assets.js
new file mode 100644
index 00000000..be479a36
--- /dev/null
+++ b/src/helpers/importers/lottie/assets.js
@@ -0,0 +1,93 @@
+import {
+ getLocalPath,
+ downloadFile,
+ saveFileFromBase64,
+ createFolder,
+} from '../../FileLoader'
+import {
+ getSeparator
+} from '../../osHelper'
+import sendCommand from './commandHelper'
+import random from '../../randomGenerator'
+import nodePath from '../../path_proxy'
+
+const LOTTIE_IMAGES_IMPORT = 'lottie_images_import';
+
+async function importLottieAssetsFromPath(assets, path) {
+ if (assets) {
+ const imageAssets = assets
+ .filter(asset => asset.id && asset.w)
+ let i = 0, asset;
+ for (i = 0; i < imageAssets.length; i += 1) {
+ asset = imageAssets[i];
+ const assetId = random(10);
+ let animationPath, assetName;
+ if (!asset.e) {
+ animationPath = path.substr(0, path.lastIndexOf(nodePath.sep) + 1);
+ assetName = asset.u + asset.p;
+ } else {
+ animationPath = getLocalPath('Project') + getSeparator() + LOTTIE_IMAGES_IMPORT + getSeparator();
+ const data = asset.p;
+ const prefix = data.substr(0, data.indexOf(','));
+ const extension = prefix.substr(prefix.indexOf('/') + 1,prefix.indexOf(';') - prefix.indexOf('/') - 1);
+ const base64Data = data.substr(data.indexOf(',') + 1);
+ assetName = assetId + '.' + extension;
+ saveImageFromData(base64Data, assetName);
+ }
+ sendCommand('importFile', [encodeURIComponent(animationPath),encodeURIComponent(assetName), assetId]);
+ asset.__sourceId = assetId;
+ }
+ }
+}
+
+async function saveImageFromData(base64Data, assetName) {
+ const localPath = getLocalPath('Project');
+ await createFolder(localPath + getSeparator(), LOTTIE_IMAGES_IMPORT);
+ await saveFileFromBase64(base64Data, localPath + getSeparator() + LOTTIE_IMAGES_IMPORT + getSeparator() + assetName);
+}
+
+async function loadImage(asset, animationPath) {
+ const localPath = getLocalPath('Project');
+ await createFolder(localPath + getSeparator(), LOTTIE_IMAGES_IMPORT);
+ await downloadFile(animationPath + asset.u + asset.p, localPath + getSeparator() + LOTTIE_IMAGES_IMPORT + getSeparator() + asset.p)
+}
+
+async function importLottieAssetsFromUrl(assets, jsonUrl) {
+ if (assets) {
+ const imageAssets = assets
+ .filter(asset => asset.id && asset.w)
+ let i = 0, asset;
+ for (i = 0; i < imageAssets.length; i += 1) {
+ const assetId = random(10);
+ asset = imageAssets[i];
+ const animationPath = jsonUrl.substr(0, jsonUrl.lastIndexOf('/') + 1);
+ let assetName;
+ if (asset.e) {
+ const data = asset.p;
+ const prefix = data.substr(0, data.indexOf(','));
+ const extension = prefix.substr(prefix.indexOf('/') + 1,prefix.indexOf(';') - prefix.indexOf('/') - 1);
+ const base64Data = data.substr(data.indexOf(',') + 1);
+ assetName = assetId + '.' + extension;
+ saveImageFromData(base64Data, assetName);
+ } else {
+ assetName = asset.p;
+ await loadImage(asset, animationPath);
+ }
+ const localPath = getLocalPath('Project');
+ sendCommand('importFile', [
+ encodeURIComponent(localPath),
+ encodeURIComponent(LOTTIE_IMAGES_IMPORT + getSeparator() + assetName),
+ assetId
+ ]);
+ asset.__sourceId = assetId;
+ // var assetPath =
+ // sendCommand('importFile', [encodeURIComponent(path),encodeURIComponent(asset.u + asset.p), assetId]);
+ }
+
+ }
+}
+
+export {
+ importLottieAssetsFromUrl,
+ importLottieAssetsFromPath,
+}
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/commandHelper.js b/src/helpers/importers/lottie/commandHelper.js
new file mode 100644
index 00000000..fb659ee1
--- /dev/null
+++ b/src/helpers/importers/lottie/commandHelper.js
@@ -0,0 +1,100 @@
+import {sendCommand} from '../../CSInterfaceHelper'
+
+const _commands = [];
+let _onUpdate = () =>{};
+let _onEnd = () =>{};
+let _commandTimeout = null;
+const prefix = '$.__bodymovin.bm_lottieImporter.';
+
+const commandsTimeout = {
+ createFolder: 50,
+ createComp: 50,
+ createSolid: 50,
+ createNull: 50,
+ createShapeLayer: 50,
+ addComposition: 50,
+ setLayerStartTime: 50,
+ setLayerStretch: 50,
+ setLayerInPoint: 50,
+ setLayerOutPoint: 50,
+ setLayerParent: 50,
+ reset: 1,
+ setFrameRate: 1,
+ createMask: 50,
+ setElementKey: 50,
+ setElementTemporalKeyAtIndex: 50,
+ setElementPropertyValue: 50,
+ setElementPropertyExpression: 50,
+ createShapeGroup: 50,
+ createRectangle: 50,
+ createFill: 50,
+ createStroke: 50,
+ createEllipse: 50,
+ createStar: 50,
+ createShape: 50,
+ createRepeater: 50,
+ createRoundedCorners: 50,
+ createTrimPath: 50,
+ createGradientFill: 50,
+ createGradientStroke: 50,
+ assignIdToProp: 50,
+ setInterpolationTypeAtKey: 50,
+ setSpatialTangentsAtKey: 50,
+}
+
+const getTimeout = (command) => {
+ // return 1;
+ return commandsTimeout[command] || 50;
+}
+
+const sendNextCommand = () => {
+ _commandTimeout = null;
+ if (_commands.length) {
+ const nextCommand = _commands.shift();
+ sendCommand(prefix, nextCommand.name, nextCommand.arguments);
+ // This is to prevent an onUpdate state when animation has not been loaded yet
+ if (nextCommand.name !== 'reset') {
+ _onUpdate(_commands.length);
+ }
+ _commandTimeout = setTimeout(sendNextCommand, getTimeout(nextCommand.name));
+ } else {
+ _onEnd();
+ }
+ // console.log(_commands.length)
+
+}
+
+const lottieCommandHandler = (commandName, commandArguments = []) => {
+ _commands.push({
+ name: commandName,
+ arguments: commandArguments,
+ });
+ if (_commandTimeout === null) {
+ sendNextCommand();
+ }
+}
+
+const registerUpdate = (handler) => {
+ _onUpdate = handler;
+}
+
+const registerEnd = (handler) => {
+ _onEnd = handler;
+}
+
+const clear = () => {
+ _commands.length = 0;
+ _onUpdate = () => {}
+ _onEnd = () => {}
+ clearTimeout(_commandTimeout);
+ _commandTimeout = null;
+
+}
+
+export default lottieCommandHandler
+
+export {
+ registerUpdate,
+ registerEnd,
+ clear,
+}
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/frameRateHelper.js b/src/helpers/importers/lottie/frameRateHelper.js
new file mode 100644
index 00000000..72215c75
--- /dev/null
+++ b/src/helpers/importers/lottie/frameRateHelper.js
@@ -0,0 +1,12 @@
+let _frameRate = 0
+
+const setFrameRate = (value) => {
+ _frameRate = value
+}
+
+const getFrameRate = () => _frameRate
+
+export {
+ setFrameRate,
+ getFrameRate,
+}
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/importer.js b/src/helpers/importers/lottie/importer.js
new file mode 100644
index 00000000..8f1c4cb5
--- /dev/null
+++ b/src/helpers/importers/lottie/importer.js
@@ -0,0 +1,352 @@
+import loadLottieData from '../../FileLoader'
+import random from '../../randomGenerator'
+import {hexToRgbAsNormalizedArray} from '../../colorConverter'
+import sendCommand, {registerUpdate, registerEnd, clear as clearCommands} from './commandHelper'
+import {reset as resetAlerts} from './alertsHelper'
+import processTransform from './transform'
+import processShape from './shape'
+import processText from './text'
+import processMasks from './mask'
+import {setFrameRate} from './frameRateHelper'
+import {
+ add as addAlert,
+ get as getAlerts,
+ setLayer,
+ pushComp,
+ popComp,
+} from './alertsHelper'
+import {
+ importLottieAssetsFromPath,
+ importLottieAssetsFromUrl,
+} from './assets'
+
+const _updateListeners = [];
+const _endListeners = [];
+const _failedListeners = [];
+let _hasEnded = false;
+let currentConversionId;
+
+function _onUpdate(pendingCommands) {
+ _updateListeners.forEach(listener => listener({
+ state: 'processing',
+ pendingCommands: pendingCommands,
+ }))
+}
+
+function _onEnd() {
+ if (_hasEnded) {
+ const alerts = getAlerts()
+ _endListeners.forEach(listener => listener({
+ state: 'ended',
+ alerts
+ }))
+ }
+}
+
+function _onFailed(error) {
+ _failedListeners.forEach(listener => listener({
+ state: 'failed',
+ message: (error && error.message) ? error.message : 'There has been an error' ,
+ }))
+}
+
+function createFolder(name = '') {
+ sendCommand('createFolder', [name]);
+}
+
+function createComp(name, width, height, duration, compId) {
+ sendCommand('createComp', [name, width, height, duration, compId]);
+}
+
+function setCompWorkArea(inPoint, outPoint, compId) {
+ sendCommand('setCompWorkArea', [inPoint, outPoint, compId]);
+}
+
+function createSolid(layerData, compId) {
+ const layerId = random(10);
+ layerData.__importId = layerId;
+ const color = hexToRgbAsNormalizedArray(layerData.sc);
+ sendCommand('createSolid', [
+ color,
+ layerData.nm,
+ layerData.sw,
+ layerData.sh,
+ layerData.op - layerData.ip,
+ layerId,
+ compId
+ ]);
+ processLayerExtraProps(layerData, layerId);
+ processTransform(layerData.ks, layerId);
+ processMasks(layerData.masksProperties, layerId);
+}
+
+function createImageLayer(layerData, compId, assets) {
+ const imageSourceData = assets.find(asset => asset.id === layerData.refId)
+ const layerId = random(10);
+ layerData.__importId = layerId;
+ sendCommand('addImageLayer', [
+ imageSourceData.__sourceId,
+ compId,
+ layerId
+ ]);
+ processLayerExtraProps(layerData, layerId);
+ processTransform(layerData.ks, layerId);
+ processMasks(layerData.masksProperties, layerId);
+}
+
+function createNull(layerData, compId) {
+ const layerId = random(10);
+ layerData.__importId = layerId;
+ sendCommand('createNull', [
+ layerData.op - layerData.ip,
+ layerId,
+ compId
+ ]);
+ processLayerExtraProps(layerData, layerId);
+ processTransform(layerData.ks, layerId);
+}
+
+function createShapeLayer(layerData, compId) {
+ const layerId = random(10);
+ layerData.__importId = layerId;
+ sendCommand('createShapeLayer', [
+ layerId,
+ compId
+ ]);
+ processLayerExtraProps(layerData, layerId);
+ processShape(layerData, layerId);
+ processTransform(layerData.ks, layerId);
+ processMasks(layerData.masksProperties, layerId);
+}
+
+function createTextLayer(layerData, compId) {
+ const layerId = random(10);
+ layerData.__importId = layerId;
+ sendCommand('createTextLayer', [
+ layerId,
+ compId,
+ ]);
+ processLayerExtraProps(layerData, layerId);
+ processText(layerData.t, layerId)
+ processTransform(layerData.ks, layerId);
+ processMasks(layerData.masksProperties, layerId);
+ addAlert({type: 'message', message: 'Text layers are not fully supported'});
+}
+
+function createCompositionLayer(layerData, parentCompId, assets) {
+ const compositionSourceData = assets.find(asset => asset.id === layerData.refId)
+ if (!compositionSourceData.__created) {
+ compositionSourceData.__created = true;
+ const sourceCompId = random(10);
+ compositionSourceData.__sourceId = sourceCompId;
+ createComp(layerData.nm, layerData.w, layerData.h, 9999, sourceCompId);
+ pushComp(layerData.nm);
+ iterateLayers(compositionSourceData.layers, sourceCompId, assets);
+ popComp(layerData.nm);
+ }
+ const layerId = random(10);
+ layerData.__importId = layerId;
+ sendCommand('addComposition', [
+ compositionSourceData.__sourceId,
+ parentCompId,
+ layerId,
+ ]);
+ processLayerExtraProps(layerData, layerId);
+ processTransform(layerData.ks, layerId);
+ processMasks(layerData.masksProperties, layerId);
+}
+
+function processLayerExtraProps(layerData, layerId) {
+
+ if (layerData.ip - layerData.st !== 0) {
+ sendCommand('setLayerInPoint', [
+ layerId,
+ layerData.ip - layerData.st,
+ ]);
+ }
+ if (layerData.st !== 0) {
+ sendCommand('setLayerStartTime', [
+ layerId,
+ layerData.st,
+ ]);
+ }
+ if (layerData.sr !== 1) {
+ sendCommand('setLayerStretch', [
+ layerId,
+ layerData.sr * 100,
+ ]);
+ }
+ if (layerData.nm) {
+ sendCommand('setLayerName', [
+ layerId,
+ encodeURIComponent(layerData.nm),
+ ]);
+ }
+ if (layerData.hd === true) {
+ sendCommand('setElementAsDisabled', [
+ layerId,
+ ]);
+ }
+ sendCommand('setLayerOutPoint', [
+ layerId,
+ layerData.op,
+ ]);
+}
+
+function skipLayer(layerData) {
+ console.log('SKIPPING LAYER: ', layerData)
+}
+
+function createLayer(layerData, compId, assets) {
+ setLayer(layerData.nm);
+ switch (layerData.ty) {
+ case 0:
+ createCompositionLayer(layerData, compId, assets);
+ break;
+ case 1:
+ createSolid(layerData, compId);
+ break;
+ case 2:
+ createImageLayer(layerData, compId, assets);
+ break;
+ case 3:
+ createNull(layerData, compId);
+ break;
+ case 4:
+ createShapeLayer(layerData, compId);
+ break;
+ case 5:
+ createTextLayer(layerData, compId);
+ break;
+ default:
+ skipLayer(layerData, compId);
+ }
+}
+
+function findLayerByIndexProperty(layers, index) {
+ return layers.find(layer => layer.ind === index)
+}
+
+function iterateLayers(layers, compId, assets) {
+ layers
+ .reverse()
+ .forEach(layer => {
+ createLayer(layer, compId, assets)
+ })
+
+ // Iterating twice so all layers have been created
+ layers
+ .forEach(layer => {
+ if ('parent' in layer) {
+ const parentLayer = findLayerByIndexProperty(layers, layer.parent);
+ sendCommand('setLayerParent', [layer.__importId, parentLayer.__importId]);
+ }
+
+ if ('tt' in layer) {
+ sendCommand('setTrackMatte', [layer.__importId, layer.tt]);
+ }
+ })
+}
+
+function registerHandlers(onUpdate, onEnd, onFailed) {
+
+ registerUpdate(_onUpdate);
+ registerEnd(_onEnd);
+ _updateListeners.push(onUpdate);
+ _endListeners.push(onEnd);
+ _failedListeners.push(onFailed);
+}
+
+function addFootageToMainFolder(assets) {
+ var footageIds = (assets || [])
+ .filter(asset => asset.id && asset.w && asset.__sourceId)
+ .map(asset => asset.__sourceId)
+
+ if (footageIds.length) {
+ sendCommand('addFootageToMainFolder', [footageIds]);
+ }
+}
+
+function reset() {
+ _hasEnded = false;
+ _updateListeners.length = 0;
+ _endListeners.length = 0;
+ _failedListeners.length = 0;
+ currentConversionId = '';
+ resetAlerts();
+ clearCommands();
+}
+
+async function convert(lottieData, onUpdate, onEnd, onFailed) {
+ setFrameRate(lottieData.fr);
+ sendCommand('setFrameRate', [lottieData.fr]);
+ pushComp(lottieData.nm || 'Main Comp');
+ createFolder(lottieData.nm);
+ const mainCompId = random(10);
+ addFootageToMainFolder(lottieData.assets);
+
+ createComp(lottieData.nm, lottieData.w, lottieData.h, lottieData.op, mainCompId);
+ setCompWorkArea(lottieData.ip / lottieData.fr, lottieData.op / lottieData.fr, mainCompId);
+ iterateLayers(lottieData.layers, mainCompId, lottieData.assets);
+}
+
+async function loadLottieDataFromUrl(path) {
+ const jsonDataResonse = await fetch(path,
+ {
+ method: 'get',
+ headers: {
+ 'Accept': 'application/json',
+ 'Content-Type': 'application/json'
+ }
+ })
+ const jsonData = await jsonDataResonse.json()
+ return jsonData;
+}
+
+async function convertFromUrl(path, onUpdate, onEnd, onFailed) {
+ let _localConversionId = random(10);
+ try {
+ reset();
+ currentConversionId = _localConversionId;
+ registerHandlers(onUpdate, onEnd, onFailed);
+ sendCommand('reset');
+ const lottieData = await loadLottieDataFromUrl(path);
+ await importLottieAssetsFromUrl(lottieData.assets, path);
+ await convert(lottieData, onUpdate, onEnd, onFailed);
+ _hasEnded = true;
+ } catch(err) {
+ if (currentConversionId === _localConversionId) {
+ _onFailed(err);
+ reset();
+ }
+ }
+}
+
+async function convertFromPath(path, onUpdate, onEnd, onFailed) {
+ let _localConversionId = random(10);
+ try {
+ reset();
+ currentConversionId = _localConversionId;
+ registerHandlers(onUpdate, onEnd, onFailed);
+ sendCommand('reset');
+ const lottieData = await loadLottieData(path);
+ await importLottieAssetsFromPath(lottieData.assets, path);
+ await convert(lottieData, onUpdate, onEnd, onFailed);
+ _hasEnded = true;
+ } catch(err) {
+ if (currentConversionId === _localConversionId) {
+ _onFailed(err);
+ reset();
+ }
+ }
+}
+
+function cancelImport() {
+ reset();
+}
+
+export {
+ convertFromPath,
+ convertFromUrl,
+ cancelImport,
+}
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/mask.js b/src/helpers/importers/lottie/mask.js
new file mode 100644
index 00000000..94035251
--- /dev/null
+++ b/src/helpers/importers/lottie/mask.js
@@ -0,0 +1,22 @@
+import sendCommand from './commandHelper'
+import processProperty from './property'
+import random from '../../randomGenerator'
+
+function createMask(maskData, elementId) {
+ var maskId = random(10);
+ sendCommand('createMask', [maskId, elementId, maskData.mode, maskData.inv]);
+ processProperty('Mask Opacity', maskData.o, maskId, 100);
+ processProperty('Mask Expansion', maskData.x, maskId, 0);
+ if (maskData.f) {
+ processProperty('Mask Feather', maskData.f, maskId, 0);
+ }
+ processProperty('maskShape', maskData.pt, maskId, null);
+}
+
+function processMasks(masks, elementId) {
+ if (masks && masks.length) {
+ masks.forEach((mask) => createMask(mask, elementId))
+ }
+}
+
+export default processMasks;
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/property.js b/src/helpers/importers/lottie/property.js
new file mode 100644
index 00000000..978fd3cb
--- /dev/null
+++ b/src/helpers/importers/lottie/property.js
@@ -0,0 +1,163 @@
+import sendCommand from './commandHelper'
+import {getFrameRate} from './frameRateHelper'
+
+function formatProperty(property) {
+ // This solves keyframed paths that are defined as an array of a single shape
+ if (Array.isArray(property) && typeof property[0] === 'object' && 'i' in property[0]) {
+ return property[0];
+ }
+ return property;
+}
+
+function addKeyframes(keyframes, propertyName, elementId) {
+ keyframes.forEach((keyframe, index) => {
+ const value = 's' in keyframe ? keyframe.s : keyframes[index - 1].e
+ sendCommand('setElementKey',
+ [
+ propertyName,
+ keyframe.t,
+ formatProperty(value),
+ elementId
+ ]
+ );
+ })
+ const inSpeeds = []
+ const inInfluences = []
+ const outSpeeds = []
+ const outInfluences = []
+
+ const totalDimensions = keyframes[0].i
+ ?
+ Array.isArray(keyframes[0].i.x)
+ ?
+ keyframes[0].i.x.length
+ :
+ 1
+ :
+ keyframes[0].s.length;
+ keyframes.forEach((keyframe, index) => {
+ if (keyframe.i && keyframe.o && index < keyframes.length - 1) {
+ outSpeeds[index] = []
+ outInfluences[index] = []
+ inSpeeds[index + 1] = []
+ inInfluences[index + 1] = []
+ const inX = Array.isArray(keyframe.i.x) ? keyframe.i.x : [keyframe.i.x]
+ inX.forEach((arrayElement, dimension) => {
+ const nextValue = 'e' in keyframe ? keyframe.e : keyframes[index + 1].s
+ const inXDimension = Array.isArray(keyframe.i.x) ? keyframe.i.x[dimension] : keyframe.i.x;
+ const inYDimension = Array.isArray(keyframe.i.y) ? keyframe.i.y[dimension] : keyframe.i.y;
+ const outXDimension = Array.isArray(keyframe.o.x) ? keyframe.o.x[dimension] : keyframe.o.x;
+ const outYDimension = Array.isArray(keyframe.o.y) ? keyframe.o.y[dimension] : keyframe.o.y;
+ var nextKeyframe = keyframes[index + 1];
+ var keyInInfluence = (inXDimension - 1) * -100;
+ var lastKeyOutInfluence = (outXDimension) * 100;
+ var duration = (nextKeyframe.t - keyframe.t) / getFrameRate();
+ var yNormal = nextValue[dimension] - keyframe.s[dimension];
+
+ var bezierInY = -(inYDimension - 1) * yNormal / duration;
+ var bezierY = outYDimension * yNormal / duration;
+
+ var lastKeyOutSpeed = bezierY / lastKeyOutInfluence * 100;
+ var keyInSpeed = bezierInY / keyInInfluence * 100;
+ outSpeeds[index].push(lastKeyOutSpeed);
+ outInfluences[index].push(lastKeyOutInfluence);
+ inSpeeds[index + 1].push(keyInSpeed);
+ inInfluences[index + 1].push(keyInInfluence);
+ })
+
+ }
+ })
+
+ var fillingArray = [];
+ for(let i = 0; i < totalDimensions; i += 1) {
+ fillingArray.push(1);
+
+ }
+ inSpeeds[0] = fillingArray;
+ inInfluences[0] = fillingArray;
+ outSpeeds.push(fillingArray);
+ outInfluences.push(fillingArray);
+
+ inSpeeds.forEach((easing, index) => {
+ sendCommand('setElementTemporalKeyAtIndex',
+ [
+ propertyName,
+ index + 1,
+ inInfluences[index],
+ inSpeeds[index],
+ outInfluences[index],
+ outSpeeds[index],
+ elementId
+ ]
+ );
+ })
+
+ keyframes.forEach((keyframe, index) => {
+ if (keyframe.h) {
+ sendCommand('setInterpolationTypeAtKey',
+ [
+ propertyName,
+ index + 1,
+ elementId,
+ 3,
+ ]
+ );
+ }
+
+ if (keyframe.to || (index > 0 && keyframes[index - 1].to)){
+ const outTangents = (index === keyframes.length - 1) ? keyframes[index - 1].to.map(value => 0) : keyframe.to;
+ const inTangents = (index === 0) ? keyframe.ti.map(value => 0) : keyframes[index - 1].ti;
+ sendCommand('setSpatialTangentsAtKey',
+ [
+ propertyName,
+ index + 1,
+ // keyframe.ti.filter((value, index) => index <= totalDimensions),
+ // keyframe.to.filter((value, index) => index <= totalDimensions),
+ inTangents,
+ outTangents,
+ elementId,
+ ]
+ );
+ }
+
+ })
+}
+
+const formatExpression = (expression) => {
+ expression = expression
+ .replace(/\$bm_sum/g, 'add')
+ .replace(/\$bm_sub/g, 'sub')
+ .replace(/\$bm_mul/g, 'mul')
+ .replace(/\$bm_div/g, 'div')
+ .replace(/\$bm_mod/g, 'mod')
+ .replace(/ sum\(/g, ' add(')
+ return encodeURIComponent(expression)
+}
+
+const processProperty = (propertyName, propertyData, elementId, defaultValue) => {
+ if (typeof propertyData === 'number' || typeof propertyData === 'string') {
+ sendCommand('setElementPropertyValue', [propertyName, propertyData, elementId]);
+ } else if (propertyData) {
+ if ('k' in propertyData) {
+ if (typeof propertyData.k === 'number' || !Array.isArray(propertyData.k)) {
+ if (defaultValue !== propertyData.k) {
+ sendCommand('setElementPropertyValue', [propertyName, formatProperty(propertyData.k), elementId]);
+ }
+ } else if (Array.isArray(propertyData.k) && typeof propertyData.k[0] === 'number') {
+ let differentIndex = propertyData.k.findIndex((value, index) => defaultValue === undefined || defaultValue[index] !== value);
+ if (differentIndex !== -1) {
+ sendCommand('setElementPropertyValue', [propertyName, propertyData.k, elementId]);
+ } else {
+ window.skipCounter = window.skipCounter ? window.skipCounter + 1 : 1;
+ }
+ } else {
+ addKeyframes(propertyData.k, propertyName, elementId)
+ }
+ }
+ if ('x' in propertyData) {
+ sendCommand('setElementPropertyExpression', [propertyName, formatExpression(propertyData.x), elementId]);
+ }
+ }
+}
+
+export default processProperty
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/shape.js b/src/helpers/importers/lottie/shape.js
new file mode 100644
index 00000000..5867e94d
--- /dev/null
+++ b/src/helpers/importers/lottie/shape.js
@@ -0,0 +1,212 @@
+import sendCommand from './commandHelper'
+import {add as addAlert} from './alertsHelper'
+import processTransform from './transform'
+import random from '../../randomGenerator'
+import processProperty from './property'
+import gradientAlert from './alerts/gradientAlert'
+
+const processCommonProperties = (data, id) => {
+ if (data.hd === true) {
+ sendCommand('setElementAsDisabled', [
+ id,
+ ]);
+ }
+}
+
+const groupHandler = (data, parentId) => {
+ const groupId = random(10);
+ sendCommand('createShapeGroup', [groupId, parentId]);
+
+ processProperty('name', encodeURIComponent(data.nm), groupId);
+ iterateShapes(data.it, groupId); // eslint-disable-line no-use-before-define
+ processCommonProperties(data, groupId);
+}
+
+const transformHandler = (data, parentId) => {
+ processTransform(data, parentId);
+}
+
+const rectangleHandler = (data, parentId) => {
+ const rectId = random(10);
+ sendCommand('createRectangle', [rectId, parentId]);
+ processProperty('Size', data.s, rectId, [100, 100]);
+ processProperty('Position', data.p, rectId, [0, 0]);
+ processProperty('Roundness', data.r, rectId, 0);
+ processProperty('name', encodeURIComponent(data.nm), rectId);
+ processCommonProperties(data, rectId);
+}
+
+const fillHandler = (data, parentId) => {
+ const id = random(10);
+ sendCommand('createFill', [id, parentId]);
+ processProperty('Color', data.c, id);
+ processProperty('Opacity', data.o, id, 100);
+ processProperty('Fill Rule', data.r, id);
+ processProperty('name', encodeURIComponent(data.nm), id);
+ processCommonProperties(data, id);
+ // TODO: Blend mode
+}
+
+const strokeHandler = (data, parentId) => {
+ const id = random(10);
+ sendCommand('createStroke', [id, parentId]);
+ processProperty('Color', data.c, id);
+ processProperty('Opacity', data.o, id, 100);
+ processProperty('Stroke Width', data.w, id, 1);
+ processProperty('Line Cap', data.lc, id, 1);
+ processProperty('Line Join', data.lj, id, 1);
+ if (data.lj === 1) {
+ processProperty('Miter Limit', data.ml, id, 4);
+ }
+ processProperty('name', encodeURIComponent(data.nm), id);
+ processCommonProperties(data, id);
+ //TODO: dashes
+}
+
+const ellipseHandler = (data, parentId) => {
+ const id = random(10);
+ sendCommand('createEllipse', [id, parentId]);
+ processProperty('Shape Direction', data.d, id);
+ processProperty('Size', data.s, id, [100, 100]);
+ processProperty('Position', data.p, id, [0, 0]);
+ processProperty('name', encodeURIComponent(data.nm), id);
+ processCommonProperties(data, id);
+}
+
+const starHandler = (data, parentId) => {
+ const id = random(10);
+ sendCommand('createStar', [id, parentId]);
+ processProperty('Type', data.sy, id, 1);
+ processProperty('Shape Direction', data.d, id, 1);
+ processProperty('Points', data.pt, id, 5);
+ processProperty('Position', data.p, id, [0, 0]);
+ processProperty('Rotation', data.r, id, 0);
+ if (data.sy === 1) {
+ processProperty('Inner Radius', data.ir, id, 50);
+ processProperty('Inner Roundness', data.is, id, 0);
+ }
+ processProperty('Outer Radius', data.or, id, 100);
+ processProperty('Outer Roundness', data.os, id, 0);
+ processProperty('name', encodeURIComponent(data.nm), id);
+ processCommonProperties(data, id);
+
+}
+
+const shapeHandler = (data, parentId) => {
+ const id = random(10);
+ sendCommand('createShape', [id, parentId]);
+ processProperty('ADBE Vector Shape', data.ks, id, null);
+ processCommonProperties(data, id);
+ // TODO: Blend mode
+}
+
+const repeaterHandler = (data, parentId) => {
+ const id = random(10);
+ sendCommand('createRepeater', [id, parentId]);
+ processProperty('Copies', data.c, id);
+ processProperty('Offset', data.o, id, 0);
+ processProperty('Composite', data.m, id);
+ processProperty('name', encodeURIComponent(data.nm), id);
+ processTransform(data.tr, id);
+ processCommonProperties(data, id);
+}
+
+const roundedCornersHandler = (data, parentId) => {
+ const id = random(10);
+ sendCommand('createRoundedCorners', [id, parentId]);
+ processProperty('Radius', data.r, id);
+ processProperty('name', encodeURIComponent(data.nm), id);
+ processCommonProperties(data, id);
+}
+
+const trimPathHandler = (data, parentId) => {
+ const id = random(10);
+ sendCommand('createTrimPath', [id, parentId]);
+ processProperty('Start', data.s, id, 0);
+ processProperty('End', data.e, id, 100);
+ processProperty('Offset', data.o, id, 0);
+ processProperty('Trim Multiple Shapes', data.m, id);
+ processProperty('name', encodeURIComponent(data.nm), id);
+ processCommonProperties(data, id);
+
+}
+
+const gradientFillHandler = (data, parentId) => {
+ const id = random(10);
+ sendCommand('createGradientFill', [id, parentId]);
+ processProperty('Colors', data.g.k, id, 100);
+ processProperty('Opacity', data.o, id, 100);
+ processProperty('Fill Rule', data.r, id, 1);
+ processProperty('Blend Mode', data.bm, id, 0);
+ processProperty('Start Point', data.s, id, [0,0]);
+ processProperty('End Point', data.e, id, [100,0]);
+ processProperty('Type', data.t, id, 1);
+ if(data.t === 2){
+ processProperty('Highlight Length', data.h, id, 0);
+ processProperty('Highlight Angle', data.a, id, 0);
+ }
+ addAlert(gradientAlert(data));
+ //
+ processProperty('name', data.nm, id);
+ processCommonProperties(data, id);
+
+}
+
+const gradientStrokeHandler = (data, parentId) => {
+ const id = random(10);
+ sendCommand('createGradientStroke', [id, parentId]);
+ processProperty('Colors', data.g.k, id, 100);
+ processProperty('Opacity', data.o, id, 100);
+ processProperty('Stroke Width', data.w, id, 2);
+ processProperty('Fill Rule', data.r, id, 1);
+ processProperty('Blend Mode', data.bm, id, 0);
+ processProperty('Start Point', data.s, id, [0,0]);
+ processProperty('End Point', data.e, id, [100,0]);
+ processProperty('Type', data.t, id, 1);
+ if (data.t === 2){
+ processProperty('Highlight Length', data.h, id, 0);
+ processProperty('Highlight Angle', data.a, id, 0);
+ }
+ processProperty('Line Cap', data.lc, id, 1);
+ processProperty('Line Join', data.lj, id, 1);
+ if (data.lj === 1) {
+ processProperty('Miter Limit', data.ml2, id, 4);
+ }
+ processProperty('name', encodeURIComponent(data.nm), id);
+ processCommonProperties(data, id);
+
+ addAlert(gradientAlert(data));
+ //TODO: dashes
+
+}
+
+const shapeHandlers = {
+ gr: groupHandler,
+ rc: rectangleHandler,
+ fl: fillHandler,
+ tr: transformHandler,
+ sh: shapeHandler,
+ st: strokeHandler,
+ el: ellipseHandler,
+ sr: starHandler,
+ rp: repeaterHandler,
+ rd: roundedCornersHandler,
+ tm: trimPathHandler,
+ gf: gradientFillHandler,
+ gs: gradientStrokeHandler,
+}
+const iterateShapes = (shapes, parentId) => {
+ shapes.forEach(shape => {
+ if (shapeHandlers[shape.ty]) {
+ shapeHandlers[shape.ty](shape, parentId)
+ } else {
+ console.log('TYPE NOT HANDLED: ', shape.ty);
+ }
+ })
+}
+
+const processShape = (layerData, layerId) => {
+ iterateShapes(layerData.shapes, layerId)
+}
+
+export default processShape
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/text.js b/src/helpers/importers/lottie/text.js
new file mode 100644
index 00000000..c266f9c8
--- /dev/null
+++ b/src/helpers/importers/lottie/text.js
@@ -0,0 +1,54 @@
+import random from '../../randomGenerator'
+import sendCommand from './commandHelper'
+
+const getTextDocumentData = (textDocumentData) => {
+ if ('k' in textDocumentData) {
+ return textDocumentData.k
+ } else {
+ return [
+ {
+ s: textDocumentData
+ }
+ ]
+ }
+}
+
+const processText = (textData, layerId) => {
+ const textDocumentData = getTextDocumentData(textData.d)
+ const sourceTextIdId = random(10);
+ sendCommand('assignIdToProp', ['Source Text', sourceTextIdId, layerId]);
+ if (textDocumentData.length === 1) {
+ const textDocumentValue = textDocumentData[0].s
+ sendCommand('setTextDocumentValue',
+ [
+ layerId,
+ encodeURIComponent(textDocumentValue.t),
+ textDocumentValue.s,
+ encodeURIComponent(textDocumentValue.f),
+ textDocumentValue.fc,
+ textDocumentValue.tr,
+ textDocumentValue.j,
+ textDocumentValue.ls || 0,
+ ]
+ );
+ } else {
+ textDocumentData.forEach(textDocument => {
+ const textDocumentValue = textDocument.s
+ sendCommand('setTextDocumentValueAtTime',
+ [
+ layerId,
+ textDocument.t,
+ encodeURIComponent(textDocumentValue.t),
+ textDocumentValue.s,
+ encodeURIComponent(textDocumentValue.f),
+ textDocumentValue.fc,
+ textDocumentValue.tr,
+ textDocumentValue.j,
+ textDocumentValue.ls || 0,
+ ]
+ );
+ })
+ }
+}
+
+export default processText
\ No newline at end of file
diff --git a/src/helpers/importers/lottie/transform.js b/src/helpers/importers/lottie/transform.js
new file mode 100644
index 00000000..81fdf607
--- /dev/null
+++ b/src/helpers/importers/lottie/transform.js
@@ -0,0 +1,69 @@
+import sendCommand from './commandHelper'
+import processProperty from './property'
+import random from '../../randomGenerator'
+
+function processTransform(transformData, elementId) {
+
+ const transformId = random(10);
+ sendCommand('assignIdToProp', ['transform', transformId, elementId])
+
+ if (transformData.p) {
+ if (transformData.p.s) {
+ sendCommand('separateDimensions', [elementId]);
+ processProperty('ADBE Position_0', transformData.p.x, transformId);
+ processProperty('ADBE Position_1', transformData.p.y, transformId);
+ if (transformData.p.z) {
+ processProperty('ADBE Position_2', transformData.p.z, transformId);
+ }
+ } else {
+ processProperty('Position', transformData.p, transformId);
+ }
+ }
+
+ if (transformData.r) {
+ processProperty('Rotation', transformData.r, transformId, 0);
+ }
+
+ if (transformData.rx) {
+ processProperty('ADBE Rotate X', transformData.rx, transformId, 0);
+ }
+
+ if (transformData.ry) {
+ processProperty('ADBE Rotate Y', transformData.ry, transformId, 0);
+ }
+
+ if (transformData.rz) {
+ processProperty('ADBE Rotate Z', transformData.rz, transformId, 0);
+ }
+
+ if (transformData.s) {
+ processProperty('Scale', transformData.s, transformId, [100, 100]);
+ }
+
+ if (transformData.a) {
+ processProperty('Anchor Point', transformData.a, transformId);
+ }
+
+ if (transformData.o) {
+ processProperty('Opacity', transformData.o, transformId);
+ }
+
+ if (transformData.so) {
+ processProperty('Start Opacity', transformData.so, transformId);
+ }
+
+ if (transformData.eo) {
+ processProperty('End Opacity', transformData.eo, transformId);
+ }
+
+ if (transformData.sk) {
+ processProperty('Skew', transformData.sk, transformId, 0);
+ }
+
+ if (transformData.sa) {
+ processProperty('Skew Axis', transformData.sa, transformId, 0);
+ }
+
+}
+
+export default processTransform;
\ No newline at end of file
diff --git a/src/helpers/localStorageHelper.js b/src/helpers/localStorageHelper.js
index 4c61ef91..b3e0bedf 100644
--- a/src/helpers/localStorageHelper.js
+++ b/src/helpers/localStorageHelper.js
@@ -1,22 +1,38 @@
-function getProjectFromLocalStorage(id) {
- let resolve, reject
- let prom = new Promise(function(_resolve, _reject){
- resolve = _resolve
- reject = _reject
- })
- try {
- var project = localStorage.getItem('project_' + id);
- if(project) {
- resolve(JSON.parse(project))
- } else {
- reject()
+import LZString from 'lz-string';
+
+const PROJECT_PREFIX = 'project_';
+
+function getProjectFromLocalStorageById(id) {
+ return new Promise(function(resolve, reject){
+ try {
+ var project = localStorage.getItem(id);
+ if(project) {
+ try {
+ var decompressed = LZString.decompress(project);
+ if (decompressed) {
+ project = decompressed;
+ }
+ } catch (error) {
+ }
+ resolve(JSON.parse(project));
+ } else {
+ reject();
+ }
+ } catch(err) {
+ reject();
}
- } catch(err) {
- reject()
- }
- return prom
+ })
+}
+
+async function getProjectFromLocalStorage(id) {
+ return getProjectFromLocalStorageById(PROJECT_PREFIX + id);
}
+// var overflow = 'a';
+// for(var i = 0; i < 1000000; i += 1) {
+// overflow += 'a';
+// }
+
function saveProjectToLocalStorage(data, id) {
let resolve, reject
let prom = new Promise(function(_resolve, _reject){
@@ -25,10 +41,12 @@ function saveProjectToLocalStorage(data, id) {
})
try {
let serialized = JSON.stringify(data)
- localStorage.setItem('project_' + id, serialized)
+ var compressed = LZString.compress(serialized);
+ localStorage.setItem(PROJECT_PREFIX + id, compressed)
+ // localStorage.setItem('overflow_', overflow)
resolve()
} catch(err) {
- reject()
+ reject(err)
}
return prom
}
@@ -143,6 +161,74 @@ function getSettingsFromLocalStorage(paths) {
})
}
+async function getAllProjectsNamedFromLocalStorage() {
+ const namedProjects = [];
+ for (let key in localStorage) {
+ if (!localStorage.hasOwnProperty(key)) {
+ continue;
+ }
+ if (key.substring(0, PROJECT_PREFIX.length) === PROJECT_PREFIX) {
+ try {
+
+ const project = await getProjectFromLocalStorageById(key);
+ if (project.name) {
+ const jsonString = JSON.stringify(project);
+ const size = (jsonString.length * 2);
+ namedProjects.push({
+ id: key,
+ size: (size / 1024).toFixed(2) + " KB",
+ name: decodeURIComponent(project.name),
+ })
+ }
+ } catch (error) {
+ // continue
+ }
+ }
+ }
+ return namedProjects;
+}
+
+function clearLocalStorage() {
+ while (localStorage.length) {
+ var key = localStorage.key(0);
+ localStorage.removeItem(key);
+ }
+}
+
+function clearProjectsInLocalStorage(ids) {
+ for (let key in localStorage) {
+ if (!localStorage.hasOwnProperty(key)) {
+ continue;
+ }
+ if (ids.includes(key) || (ids.length === 0 && key.substring(0, PROJECT_PREFIX.length) === PROJECT_PREFIX))
+ localStorage.removeItem(key);
+ }
+}
+
+async function compressAllProjects() {
+ for (let key in localStorage) {
+ if (!localStorage.hasOwnProperty(key)) {
+ continue;
+ }
+ if (key.substring(0, PROJECT_PREFIX.length) === PROJECT_PREFIX) {
+ try {
+
+ var project = localStorage.getItem(key);
+ if (project) {
+ var decompressed = LZString.decompress(project);
+ if (!decompressed) {
+ var compressed = LZString.compress(project);
+ localStorage.setItem(key, compressed)
+ } else {
+ }
+ }
+ } catch (error) {
+ // continue
+ }
+ }
+ }
+}
+
export {
getProjectFromLocalStorage,
saveProjectToLocalStorage,
@@ -152,4 +238,8 @@ export {
savePathsToLocalStorage,
getSettingsFromLocalStorage,
saveSettingsToLocalStorage,
+ clearLocalStorage,
+ getAllProjectsNamedFromLocalStorage,
+ clearProjectsInLocalStorage,
+ compressAllProjects,
}
\ No newline at end of file
diff --git a/src/helpers/lottieSlots.js b/src/helpers/lottieSlots.js
new file mode 100644
index 00000000..db8dc3e0
--- /dev/null
+++ b/src/helpers/lottieSlots.js
@@ -0,0 +1,19 @@
+import loadBodymovinFileData from './FileLoader'
+import { getSimpleSeparator } from './osHelper'
+import convertAnimation from './slots/converter';
+
+const createSlots = async (origin, destination, fileName, prettyPrint) => {
+ var path = origin + getSimpleSeparator() + fileName + '.json';
+ var destination = destination + getSimpleSeparator() + fileName + '.json';
+ try {
+ const jsonData = await loadBodymovinFileData(path);
+ convertAnimation(jsonData);
+ window.cep.fs.writeFile(destination, JSON.stringify(jsonData, null, prettyPrint ? '\t' : ''));
+ } catch (error) {
+ console.log('ERROR', error)
+ }
+}
+
+export {
+ createSlots
+}
\ No newline at end of file
diff --git a/src/helpers/lottieSlotsConverter.js b/src/helpers/lottieSlotsConverter.js
new file mode 100644
index 00000000..a1e398cf
--- /dev/null
+++ b/src/helpers/lottieSlotsConverter.js
@@ -0,0 +1,77 @@
+let properties = [];
+let props;
+
+const layerTypes = {
+ COMP: 0,
+ SHAPE: 4,
+}
+
+const convertProperty = (property) => {
+ if (property && 'k' in property) {
+ const stringifiedValue = JSON.stringify(property.k)
+ let slot = properties.find((_slot) => {
+ return _slot.stringified === stringifiedValue;
+ })
+ if (!slot) {
+ slot = {
+ stringified: stringifiedValue,
+ id: `slot_${properties.length}`
+ }
+ properties.push(slot);
+ props[slot.id] = {
+ k: property.k,
+ a: property.a,
+ }
+ }
+ delete property.k;
+ delete property.a;
+ property.pid = slot.id;
+ }
+}
+
+const convertShape = (shape) => {
+ console.log(shape);
+}
+
+const convertTransform = (transform) => {
+ convertProperty(transform.o);
+ convertProperty(transform.r);
+ convertProperty(transform.p);
+ convertProperty(transform.s);
+ convertProperty(transform.a);
+}
+
+const convertLayer = (layer) => {
+ if (layer.ks) {
+ convertTransform(layer.ks);
+ }
+ if (layer.ty === layerTypes.SHAPE) {
+ convertShape(layer);
+ }
+}
+
+const convertLayers = (layers) => {
+ layers.forEach(convertLayer)
+}
+
+const convertAnimation = (animationData) => {
+ if (!animationData.props) {
+ animationData.props = {};
+ }
+ props = animationData.props;
+ properties.length = 0;
+
+ if (animationData.layers) {
+ convertLayers(animationData.layers);
+ }
+ if (animationData.assets) {
+ animationData.assets.forEach(asset => {
+ console.log(asset)
+ if (asset.layers) {
+ convertLayers(asset.layers)
+ }
+ })
+ }
+}
+
+export default convertAnimation;
\ No newline at end of file
diff --git a/src/helpers/mockReport.js b/src/helpers/mockReport.js
new file mode 100644
index 00000000..1abb05c8
--- /dev/null
+++ b/src/helpers/mockReport.js
@@ -0,0 +1,3 @@
+const mockReport = {"layers":[{"name":"N","index":1,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"triangulo5","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"triangulo4","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"triangulo3","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"triangulo2","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"barraCyan 4","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"barraCyan 2","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"barraCyan 3","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"barraCyan","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"triangulo1","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"barraRosa","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"barraRosa 2","index":11,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"barraVioleta 2","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"000","index":13,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Noriginal 4","index":14,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Noriginal 2","index":15,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Noriginal 3","index":16,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Noriginal","index":17,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":290},{"name":"I","index":2,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"I 6","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 3","type":"gr","shapes":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"I 7","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"I 4","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"I 3","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"I 9","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 3","type":"gr","shapes":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"I 2","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"I ","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Ioriginal 2","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Ioriginal","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"reverseCubes","index":10,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"I 11","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 3","type":"gr","shapes":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"I 10","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"I 9","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"I 8","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"I 7","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":778}],"id":260},{"name":"V","index":3,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"linea1b","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Trim Paths 1","type":"tm","properties":{"Start":[],"End":[],"Offset":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"linea1","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Trim Paths 1","type":"tm","properties":{"Start":[],"End":[],"Offset":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea9","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea8","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea7","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea6","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea5","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea4","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea3","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea2","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 10","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea1","index":11,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 11","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Voriginal 3","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Voriginal 2","index":13,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Voriginal","index":14,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":230},{"name":"O2","index":4,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"MiscelaneasO2","index":1,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Null 1","index":1,"type":3,"messages":[{"type":"warning","renderers":["browser","skottie","ios","android"],"builder":"unhandled layer"}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}}},{"name":"V_miscelanea5","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea1","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 11","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea4","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea3","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea6","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"V_miscelanea2","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 10","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1292},{"name":"Shape Layer 3","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 4","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 2","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O_mask","index":5,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"lineas","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 2","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 9","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 7","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 12","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 11","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 8","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 10","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 6","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 5","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 4","index":11,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2 3","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa2","index":13,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 10","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa1","index":14,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 10","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"boca","index":15,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2original 2","index":16,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"O2original","index":17,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":4025}],"id":200},{"name":"M","index":5,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"corteM4","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"corteM3","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"corteM2","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"corteM5","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"corteM1","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Moriginal 3","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Moriginal 2","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Moriginal 4","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Moriginal 6","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Moriginal 5","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Moriginal","index":11,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 34","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 30","index":13,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 26","index":14,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 22","index":15,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 17","index":16,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 33","index":17,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 29","index":18,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 25","index":19,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 21","index":20,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 16","index":21,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 10","index":22,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 36","index":23,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 15","index":24,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 32","index":25,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 28","index":26,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 24","index":27,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 20","index":28,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 14","index":29,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 31","index":30,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 35","index":31,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 23","index":32,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 19","index":33,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 13","index":34,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 8","index":35,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 12","index":36,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 9","index":37,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 18","index":38,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 11","index":39,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 7","index":40,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 6","index":41,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 5","index":42,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 4","index":43,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 3","index":44,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines 2","index":45,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"M_bm Outlines","index":46,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":170},{"name":"Y","index":6,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"MisceLinea9","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"MisceLinea8","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"MisceLinea7","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"MisceLinea5","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"MisceLinea4","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"MisceLinea3","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"MisceLinea6","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"MisceLinea2","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"MisceLinea1","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Y ","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 10","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 11","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 12","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 13","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 14","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 15","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 16","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"flip","index":11,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Yoriginal 13","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 12","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 11","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 10","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 9","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1633},{"name":"Yoriginal 8","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 7","index":13,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 6","index":14,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 5","index":15,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 9","index":16,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 13","index":17,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 11","index":18,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 12","index":19,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 10","index":20,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 14","index":21,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 3","index":22,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 15","index":23,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal 2","index":24,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Yoriginal","index":25,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":140},{"name":"D","index":7,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 2","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 1","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"HumoAdelante","index":3,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 10","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 9","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 8","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 7","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 6","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 4","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 5","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 3","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 2","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 1","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":2109},{"name":"Humo1","index":4,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Humo","index":1,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":2,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":3,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":4,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":5,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":6,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":7,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":8,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706}],"id":1750},{"name":"Humo1","index":5,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Humo","index":1,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":2,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":3,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":4,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":5,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":6,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":7,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":8,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706}],"id":1750},{"name":"Humo1","index":6,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Humo","index":1,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":2,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":3,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":4,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":5,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":6,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":7,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":8,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706}],"id":1750},{"name":"Doriginal 5","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Humo1","index":8,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Humo","index":1,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":2,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":3,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":4,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":5,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":6,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":7,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706},{"name":"Humo","index":8,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1706}],"id":1750},{"name":"HumoEstela2","index":9,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 31","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 30","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 29","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 28","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 27","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 26","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 25","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 24","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 22","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 32","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 18","index":11,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 23","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 21","index":13,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 20","index":14,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 19","index":15,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 17","index":16,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 16","index":17,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 15","index":18,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 13","index":19,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 12","index":20,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 10","index":21,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 11","index":22,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 9","index":23,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 8","index":24,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 4","index":25,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 6","index":26,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 5","index":27,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 3","index":28,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 2","index":29,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 1","index":30,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":2049},{"name":"HumoEstela","index":10,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 31","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 30","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 29","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 28","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 27","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 26","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 25","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 24","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 22","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 32","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 18","index":11,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 23","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 21","index":13,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 20","index":14,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 19","index":15,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 17","index":16,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 16","index":17,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 15","index":18,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 13","index":19,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 12","index":20,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 10","index":21,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 11","index":22,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 9","index":23,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 8","index":24,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 4","index":25,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 6","index":26,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 5","index":27,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 3","index":28,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 2","index":29,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Shape Layer 1","index":30,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Ellipse 1","type":"gr","shapes":[{"name":"Ellipse Path 1","type":"el","properties":{"Size":[],"Position":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1864},{"name":"Doriginal 4","index":11,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Doriginal","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":110},{"name":"0","index":8,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"gotaVioleta4","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 13","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaVioleta3","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 20","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaVioleta2","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaVioleta1","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaVioleta 3","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 23","type":"gr","shapes":[{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 24","type":"gr","shapes":[{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 42","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaVioleta 2","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 23","type":"gr","shapes":[{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 24","type":"gr","shapes":[{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 42","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaVioleta","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 23","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 24","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 42","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaAzul3","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaAzul2","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 15","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaAzul1","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 17","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaGris6","index":11,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 14","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaGris5","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 19","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaGris3","index":13,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 14","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaGris2","index":14,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 19","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaGris4","index":15,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaGris","index":16,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 32","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaAzul 5","index":17,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 21","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 22","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 34","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaAzul 3","index":18,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 21","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 22","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 34","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaAzul 2","index":19,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 21","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 22","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 34","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaAzul","index":20,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 21","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 22","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 34","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRoja3","index":21,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 11","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRoja2","index":22,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 12","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRoja1","index":23,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaRoja","index":24,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 29","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 30","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 36","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaCyan3","index":25,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 16","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaCyan2","index":26,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaCyan1","index":27,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaCyan","index":28,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 27","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 28","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 38","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa5","index":29,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa4","index":30,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 18","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa3","index":31,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa2","index":32,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa1","index":33,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 10","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaRosa","index":34,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 25","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 26","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 39","type":"gr","shapes":[{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 40","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"amarillo","index":35,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"gotaVioleta8","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 13","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaVioleta7","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 20","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaVioleta6","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaVioleta5","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaVioleta 5","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 23","type":"gr","shapes":[{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 24","type":"gr","shapes":[{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 42","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaVioleta 4","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 23","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 24","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 42","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaAzul6","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaAzul5","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 15","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaAzul4","index":9,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 17","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaGris11","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 14","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaGris10","index":11,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 19","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaGris9","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 14","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaGris8","index":13,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 19","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaGris7","index":14,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaGris 2","index":15,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 32","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaAzul 9","index":16,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 21","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 22","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 34","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaAzul 8","index":17,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 21","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 22","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 34","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaAzul 7","index":18,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 21","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 22","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 34","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRoja6","index":19,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 11","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRoja5","index":20,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 12","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRoja4","index":21,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaRoja 2","index":22,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 29","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 30","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 36","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaCyan6","index":23,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 16","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaCyan5","index":24,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 2","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaCyan4","index":25,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa10","index":26,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 3","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa9","index":27,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 18","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa8","index":28,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa7","index":29,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"gotaRosa6","index":30,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 10","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"manchaRosa 2","index":31,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 25","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 26","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 39","type":"gr","shapes":[{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 40","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1413},{"name":"Ooriginal 6","index":36,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Ooriginal 7","index":37,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Ooriginal 4","index":38,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"Ooriginal 3","index":39,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":81},{"name":"00","index":9,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"miscelanea12","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"miscelanea11","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"miscelanea8","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"miscelanea7","index":4,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 4","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"miscelanea6","index":5,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 5","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"miscelanea4","index":6,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 7","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"miscelanea3","index":7,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 8","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 9","type":"gr","shapes":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"miscelanea2","index":8,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 9","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"BPliegue1","index":9,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"Shape Layer 1","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Shape 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Stroke 1","type":"st","properties":{"Color":[],"Opacity":[],"Stroke Width":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"B_yellowComienzo","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 3","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1219},{"name":"miscelanea1","index":10,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"miscelanea11","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 10","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1191},{"name":"B3_yellow","index":11,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"sombraRed 2","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 12","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 13","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"B_yellow3","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 3","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"B_yellow2","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 14","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 3","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1152},{"name":"miscelanea5","index":12,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 6","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"B2_red","index":13,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"sombraRed","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 12","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 13","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"00","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 3","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"B_red 3","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 14","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 3","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1110},{"name":"B1_yellow","index":14,"type":0,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"layers":[{"name":"sombraRed 3","index":1,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 12","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}},{"name":"Group 13","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"B_yellow3","index":2,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 3","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]},{"name":"B_yellow2","index":3,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 14","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 3","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":1075},{"name":"Boriginal","index":15,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 2","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Path 3","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Merge Paths 1","type":"mm","messages":[{"type":"error","renderers":["browser","ios","android","skottie"],"builder":"merge paths"}],"properties":{}},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"id":49},{"name":"bg Outlines","index":10,"type":4,"messages":[],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]}},"shapes":[{"name":"Group 1","type":"gr","shapes":[{"name":"Path 1","type":"sh","properties":{"Path":[]},"messages":[]},{"name":"Fill 1","type":"fl","properties":{"Color":[],"Opacity":[]},"messages":[]}],"transform":{"anchorPoint":[],"scale":[],"opacity":[],"rotation":{"isThreeD":false,"rotation":[]},"position":{"dimensionsSeparated":false,"position":[]},"skew":[],"skewAxis":[]}}]}],"messages":[],"id":2}
+
+export default mockReport
\ No newline at end of file
diff --git a/src/helpers/nasaHelper.js b/src/helpers/nasaHelper.js
new file mode 100644
index 00000000..6ae58c80
--- /dev/null
+++ b/src/helpers/nasaHelper.js
@@ -0,0 +1,26 @@
+const NasaApiKey = 'SrFGbqEtBKuKJgvnJqsg59I3Ezk2UOCrCcNvh59l'
+
+async function loadMarsImage() {
+ const curiosityUrl = `https://api.nasa.gov/mars-photos/api/v1/rovers/curiosity/photos?sol=1000&api_key=${NasaApiKey}`
+ const requestResult = await fetch(curiosityUrl,
+ {
+ method: 'get',
+ headers: {
+ 'Accept': 'application/json',
+ 'Content-Type': 'application/json'
+ }
+ })
+ const requestJson = await requestResult.json()
+ return requestJson.photos[Math.floor(Math.random() * requestJson.photos.length)];
+}
+
+async function loadImage() {
+ const options = [
+ loadMarsImage
+ ]
+
+ const imageLoader = options[Math.floor(Math.random() * options.length)];
+ return imageLoader()
+}
+
+export default loadImage
\ No newline at end of file
diff --git a/src/helpers/osHelper.js b/src/helpers/osHelper.js
new file mode 100644
index 00000000..c2ce4f25
--- /dev/null
+++ b/src/helpers/osHelper.js
@@ -0,0 +1,28 @@
+import csInterface from './CSInterfaceHelper'
+
+const getSeparator = () => {
+ var sep;
+ var OSVersion = csInterface.getOSInformation();
+ if (OSVersion.indexOf("Windows") >= 0) {
+ sep = '\\\\';
+ } else {
+ sep = '/';
+ }
+ return sep;
+}
+
+const getSimpleSeparator = () => {
+ var sep;
+ var OSVersion = csInterface.getOSInformation();
+ if (OSVersion.indexOf("Windows") >= 0) {
+ sep = '\\';
+ } else {
+ sep = '/';
+ }
+ return sep;
+}
+
+export {
+ getSeparator,
+ getSimpleSeparator,
+}
\ No newline at end of file
diff --git a/src/helpers/path_proxy.js b/src/helpers/path_proxy.js
new file mode 100644
index 00000000..f174b6ce
--- /dev/null
+++ b/src/helpers/path_proxy.js
@@ -0,0 +1,5 @@
+function proxy_path() {
+ return window.cep_node.require('path')
+}
+
+module.exports = proxy_path()
\ No newline at end of file
diff --git a/src/helpers/randomGenerator.js b/src/helpers/randomGenerator.js
new file mode 100644
index 00000000..984dd8fd
--- /dev/null
+++ b/src/helpers/randomGenerator.js
@@ -0,0 +1,9 @@
+function random(len = 10) {
+ var sequence = 'abcdefghijklmnoqrstuvwxyz1234567890', returnString = '', i;
+ for (i = 0; i < len; i += 1) {
+ returnString += sequence.charAt(Math.floor(Math.random() * sequence.length));
+ }
+ return returnString;
+}
+
+export default random
\ No newline at end of file
diff --git a/src/helpers/reports/counter.js b/src/helpers/reports/counter.js
new file mode 100644
index 00000000..bb3a4edc
--- /dev/null
+++ b/src/helpers/reports/counter.js
@@ -0,0 +1,417 @@
+const memoizeHelper = function(_fnct) {
+ const dictionary = []
+ return function(key, renderers, messageTypes, builders) {
+ let keyData = dictionary.find(data => data.key === key)
+ if (!keyData) {
+ keyData = {
+ key: key,
+ value: _fnct(key, renderers, messageTypes, builders),
+ renderers,
+ messageTypes,
+ builders,
+
+ }
+ dictionary.push(keyData)
+ } else if (keyData.renderers !== renderers || keyData.messageTypes !== messageTypes || keyData.builders !== builders) {
+ keyData.value = _fnct(key, renderers, messageTypes, builders)
+ keyData.renderers = renderers
+ keyData.messageTypes = messageTypes
+ keyData.builders = builders
+ }
+ return keyData.value
+ }
+}
+
+
+const buildMessageCounterObject = (error = 0, warning = 0) => ({
+ error,
+ warning,
+})
+
+const addMessageCount = (destination, origin) => {
+ const message = buildMessageCounterObject(destination.error, destination.warning);
+ Object.keys(origin).map(key => message[key] += origin[key]);
+ return message;
+}
+
+const addMessagesCount = (...messageCounters) => {
+ return messageCounters.reduce(addMessageCount, buildMessageCounterObject())
+}
+
+const countMessageByTypeAndRenderer = memoizeHelper((message, renderers, messageTypes, builders) => {
+ let matchesRenderers = false
+ let matchesType = false
+ let matchesBuilders = false
+ if (!message.renderers || message.renderers.length === 0) {
+ matchesRenderers = true
+ } else if (renderers.find(availableRendererId => availableRendererId === 'all')) {
+ matchesRenderers = true
+ } else {
+ matchesRenderers = message.renderers.find(rendererId => {
+ return renderers.find(availableRendererId => availableRendererId === rendererId)
+ })
+ ? true
+ : false
+ }
+ if (messageTypes.find(availableRendererId => availableRendererId === 'all')) {
+ matchesType = true
+ } else {
+ matchesType = messageTypes.includes(message.type)
+ }
+ if (builders.find(availableBuilderId => availableBuilderId === 'all')) {
+ matchesBuilders = true
+ } else {
+ matchesBuilders = builders.includes(message.builder)
+ }
+ return (matchesRenderers && matchesType && matchesBuilders) ? 1 : 0
+})
+
+const countMessages = memoizeHelper((messages = [], renderers, messageTypes, builders) => {
+ return messages.reduce((accumulator, message) => {
+ accumulator[message.type] += countMessageByTypeAndRenderer(message, renderers, messageTypes, builders)
+ return accumulator
+ }, buildMessageCounterObject())
+})
+
+const getPropertyMessageCount = memoizeHelper((messages, renderers, messageTypes, builders) => {
+ if (messages) {
+ return countMessages(messages, renderers, messageTypes, builders)
+ } else {
+ return buildMessageCounterObject()
+ }
+})
+
+const getPositionMessageCount = memoizeHelper((positionData, renderers, messageTypes, builders) => {
+ if (positionData) {
+ if (!positionData.dimensionsSeparated) {
+ return countMessages(positionData.position, renderers, messageTypes, builders)
+ } else {
+ return addMessagesCount(
+ getPropertyMessageCount(positionData.positionX, renderers, messageTypes, builders),
+ getPropertyMessageCount(positionData.positionY, renderers, messageTypes, builders),
+ getPropertyMessageCount(positionData.positionZ, renderers, messageTypes, builders),
+ )
+ }
+ } else {
+ return buildMessageCounterObject()
+ }
+})
+
+const getRotationMessageCount = memoizeHelper((rotationData, renderers, messageTypes, builders) => {
+ if (rotationData) {
+ if (!rotationData.isThreeD) {
+ return countMessages(rotationData.rotation, renderers, messageTypes, builders)
+ } else {
+ return addMessagesCount(
+ getPropertyMessageCount(rotationData.rotationX, renderers, messageTypes, builders),
+ getPropertyMessageCount(rotationData.rotationY, renderers, messageTypes, builders),
+ getPropertyMessageCount(rotationData.rotationZ, renderers, messageTypes, builders),
+ getPropertyMessageCount(rotationData.orientation, renderers, messageTypes, builders),
+ )
+ }
+ } else {
+ return buildMessageCounterObject()
+ }
+})
+
+const getTransformMessageCount = memoizeHelper((transform, renderers, messageTypes, builders) => {
+ if (!transform) {
+ return buildMessageCounterObject();
+ }
+ return addMessagesCount(
+ getPropertyMessageCount(transform.anchorPoint, renderers, messageTypes, builders),
+ getPositionMessageCount(transform.position, renderers, messageTypes, builders),
+ getRotationMessageCount(transform.rotation, renderers, messageTypes, builders),
+ getPropertyMessageCount(transform.scale, renderers, messageTypes, builders),
+ getPropertyMessageCount(transform.opacity, renderers, messageTypes, builders),
+ getPropertyMessageCount(transform.skew, renderers, messageTypes, builders),
+ getPropertyMessageCount(transform.skewAxis, renderers, messageTypes, builders),
+ getPropertyMessageCount(transform.startOpacity, renderers, messageTypes, builders),
+ getPropertyMessageCount(transform.endOpacity, renderers, messageTypes, builders),
+ )
+})
+
+const getMaskMessageCount = memoizeHelper((mask, renderers, messageTypes, builders) => {
+ return addMessagesCount(
+ getPropertyMessageCount(mask.expansion, renderers, messageTypes, builders),
+ getPropertyMessageCount(mask.feather, renderers, messageTypes, builders),
+ getPropertyMessageCount(mask.opacity, renderers, messageTypes, builders),
+ getPropertyMessageCount(mask.path, renderers, messageTypes, builders),
+ getPropertyMessageCount(mask.messages, renderers, messageTypes, builders),
+ )
+})
+
+const getMasksMessageCount = memoizeHelper((masks, renderers, messageTypes, builders) => {
+ if (!masks) {
+ return buildMessageCounterObject();
+ }
+
+ const masksMessages = masks.masks
+ .map(mask => getMaskMessageCount(mask, renderers, messageTypes, builders))
+ .reduce((acc, count) => addMessageCount(acc, count), buildMessageCounterObject())
+ return addMessagesCount(
+ masksMessages,
+ getPropertyMessageCount(masks.messages, renderers, messageTypes, builders),
+ )
+})
+
+const getGenericStyleMessagCount = (style, renderers, messageTypes, builders, properties) => {
+ const propertyMessages = properties.reduce((accumulator, propertyName) => (
+ addMessageCount(getPropertyMessageCount(style[propertyName], renderers, messageTypes, builders), accumulator)
+ ), buildMessageCounterObject)
+ return addMessageCount(
+ getPropertyMessageCount(style.messages, renderers, messageTypes, builders),
+ propertyMessages
+ )
+}
+
+const getDropShadowStyleMessageCount = memoizeHelper((style, renderers, messageTypes, builders) => {
+ const properties = [
+ 'color', 'opacity', 'angle', 'size', 'distance',
+ 'spread', 'blendMode', 'noise', 'knocksOut'
+ ]
+ return getGenericStyleMessagCount(style, renderers, messageTypes, builders, properties)
+})
+
+const getStrokeStyleMessageCount = memoizeHelper((style, renderers, messageTypes, builders) => {
+ const properties = [
+ 'color','size','blendMode','opacity','position'
+ ]
+ return getGenericStyleMessagCount(style, renderers, messageTypes, builders, properties)
+})
+
+const getInnerShadowStyleMessageCount = memoizeHelper((style, renderers, messageTypes, builders) => {
+ const properties = [
+ 'blendMode','color','opacity','globalLight','angle'
+ ,'distance','choke','size','noise'
+ ]
+ return getGenericStyleMessagCount(style, renderers, messageTypes, builders, properties)
+})
+
+const getOuterGlowStyleMessageCount = memoizeHelper((style, renderers, messageTypes, builders) => {
+ const properties = [
+ 'blendMode','opacity','noise','colorChoice',
+ 'color','gradient','gradientSmoothness','glowTechnique',
+ 'chokeMatte','blur','inputRange','shadingNoise'
+ ]
+ return getGenericStyleMessagCount(style, renderers, messageTypes, builders, properties)
+})
+
+const getInnerGlowStyleMessageCount = memoizeHelper((style, renderers, messageTypes, builders) => {
+ const properties = [
+ 'blendMode','opacity','noise','colorChoice',
+ 'color','gradient','gradientSmoothness','glowTechnique','source',
+ 'chokeMatte','blur','inputRange','shadingNoise'
+ ]
+ return getGenericStyleMessagCount(style, renderers, messageTypes, builders, properties)
+})
+
+const getBevelEmbossStyleMessageCount = memoizeHelper((style, renderers, messageTypes, builders) => {
+ const properties = []
+ return getGenericStyleMessagCount(style, renderers, messageTypes, builders, properties)
+})
+
+const getSatinStyleMessageCount = memoizeHelper((style, renderers, messageTypes, builders) => {
+ const properties = []
+ return getGenericStyleMessagCount(style, renderers, messageTypes, builders, properties)
+})
+
+const getColorOverlayStyleMessageCount = memoizeHelper((style, renderers, messageTypes, builders) => {
+ const properties = []
+ return getGenericStyleMessagCount(style, renderers, messageTypes, builders, properties)
+})
+
+const getGradientOverlayStyleMessageCount = memoizeHelper((style, renderers, messageTypes, builders) => {
+ const properties = []
+ return getGenericStyleMessagCount(style, renderers, messageTypes, builders, properties)
+})
+
+const getStyleMessageCount = memoizeHelper((style, renderers, messageTypes, builders) => {
+ const counterStyles = {
+ 0: getStrokeStyleMessageCount,
+ 1: getDropShadowStyleMessageCount,
+ 2: getInnerShadowStyleMessageCount,
+ 3: getOuterGlowStyleMessageCount,
+ 4: getInnerGlowStyleMessageCount,
+ 5: getBevelEmbossStyleMessageCount,
+ 6: getSatinStyleMessageCount,
+ 7: getColorOverlayStyleMessageCount,
+ 8: getGradientOverlayStyleMessageCount,
+ }
+
+ if (counterStyles[style.type]) {
+ return counterStyles[style.type](style, renderers, messageTypes, builders)
+ } else {
+ return getPropertyMessageCount(style.messages, renderers, messageTypes, builders)
+ }
+})
+
+const getStylesCollectionMessageCount = memoizeHelper((stylesCollection, renderers, messageTypes, builders) => {
+ let messageCount = buildMessageCounterObject();
+ for (var i = 0; i < stylesCollection.length; i += 1) {
+ messageCount = addMessageCount(
+ messageCount,
+ getStyleMessageCount(stylesCollection[i], renderers, messageTypes, builders)
+ )
+ }
+ return messageCount;
+})
+
+const getStylesMessageCount = memoizeHelper((styles, renderers, messageTypes, builders) => {
+ if (!styles) {
+ return buildMessageCounterObject();
+ }
+ return addMessagesCount(
+ countMessages(styles.messages, renderers, messageTypes, builders),
+ getStylesCollectionMessageCount(styles.styles, renderers, messageTypes, builders),
+ )
+})
+
+const getEffectsMessageCount = memoizeHelper((effects, renderers, messageTypes, builders) =>
+ countMessages(effects, renderers, messageTypes, builders)
+)
+
+const getLayerMessageCount = memoizeHelper((layer, renderers, messageTypes, builders) => {
+ return addMessagesCount(
+ getTransformMessageCount(layer.transform, renderers, messageTypes, builders),
+ getMasksMessageCount(layer.masks, renderers, messageTypes, builders),
+ getStylesMessageCount(layer.styles, renderers, messageTypes, builders),
+ countMessages(layer.messages, renderers, messageTypes, builders),
+ getEffectsMessageCount(layer.effects, renderers, messageTypes, builders),
+ countLayerMessagesByType(layer, renderers, messageTypes, builders), // eslint-disable-line no-use-before-define
+ )
+})
+
+const getLayerCollectionMessagesCount = memoizeHelper((layers, renderers, messageTypes, builders) => {
+ return layers
+ .map(layer => getLayerMessageCount(layer, renderers, messageTypes, builders))
+ .reduce(addMessageCount, buildMessageCounterObject())
+})
+
+const getDictionaryMessageCount = memoizeHelper((dictionary, renderers, messageTypes, builders) => {
+ return Object.keys(dictionary)
+ .map(key => countMessages(dictionary[key], renderers, messageTypes, builders))
+ .reduce(addMessageCount, buildMessageCounterObject())
+})
+
+const getShapeGroupMessagesCount = memoizeHelper((group, renderers, messageTypes, builders) => {
+ return addMessagesCount(
+ getTransformMessageCount(group.transform, renderers, messageTypes, builders),
+ getShapeCollectionMessagesCount(group.shapes, renderers, messageTypes, builders), // eslint-disable-line no-use-before-define
+ )
+})
+
+const getShapeRepeaterMessagesCount = memoizeHelper((repeater, renderers, messageTypes, builders) => {
+ return addMessagesCount(
+ getTransformMessageCount(repeater.transform, renderers, messageTypes, builders),
+ getPropertyMessageCount(repeater.copies, renderers, messageTypes, builders),
+ getPropertyMessageCount(repeater.offset, renderers, messageTypes, builders),
+ )
+})
+
+const getGenericShapeMessagesCount = memoizeHelper((shape, renderers, messageTypes, builders) => {
+ return addMessagesCount(
+ getDictionaryMessageCount(shape.properties, renderers, messageTypes, builders),
+ countMessages(shape.messages, renderers, messageTypes, builders),
+ )
+})
+
+const getShapeMessageCount = memoizeHelper((shape, renderers, messageTypes, builders) => {
+ if(shape.type === 'gr') {
+ return getShapeGroupMessagesCount(shape, renderers, messageTypes, builders)
+ } else if (['rc', 'el', 'st', 'sh', 'fl', 'sr', 'gf', 'gs', 'rd', 'tm', 'mm', 'pb'].includes(shape.type)) {
+ return getGenericShapeMessagesCount(shape, renderers, messageTypes, builders)
+ } else if(shape.type === 'un') {
+ return countMessages(shape.messages, renderers, messageTypes, builders)
+ } else if(shape.type === 'rp') {
+ return getShapeRepeaterMessagesCount(shape, renderers, messageTypes, builders)
+ } else {
+ return buildMessageCounterObject()
+ }
+})
+
+const getShapeCollectionMessagesCount = memoizeHelper((shapes, renderers, messageTypes, builders) => {
+ return shapes
+ .map(shape => getShapeMessageCount(shape, renderers, messageTypes, builders))
+ .reduce(addMessageCount, buildMessageCounterObject())
+})
+
+const getSelectorMessageCount = memoizeHelper((animator, renderers, messageTypes, builders) => {
+ if (animator.messages) {
+ return countMessages(animator.messages, renderers, messageTypes, builders)
+ } else {
+ return buildMessageCounterObject()
+ }
+})
+
+const getSelectorsMessageCount = memoizeHelper((selectors, renderers, messageTypes, builders) => {
+ return selectors
+ .map(selector => getSelectorMessageCount(selector, renderers, messageTypes, builders))
+ .reduce(addMessageCount, buildMessageCounterObject())
+})
+
+const getAnimatorMessageCount = memoizeHelper((animator, renderers, messageTypes, builders) => {
+ if (animator.messages) {
+ return addMessagesCount(
+ countMessages(animator.messages, renderers, messageTypes, builders),
+ getSelectorsMessageCount(animator.selectors || [], renderers, messageTypes, builders),
+ )
+ } else {
+ return buildMessageCounterObject()
+ }
+})
+
+const getAnimatorsMessageCount = memoizeHelper((animators, renderers, messageTypes, builders) => {
+ return animators
+ .map(animator => getAnimatorMessageCount(animator, renderers, messageTypes, builders))
+ .reduce(addMessageCount, buildMessageCounterObject())
+})
+
+const getTextMessagesCount = memoizeHelper((text, renderers, messageTypes, builders) => {
+ return addMessagesCount(
+ getAnimatorsMessageCount(text.animators, renderers, messageTypes, builders),
+ )
+})
+
+const countLayerMessagesByType = memoizeHelper((layer, renderers, messageTypes, builders) => {
+ if (layer.type === 0) {
+ return getLayerCollectionMessagesCount(layer.layers, renderers, messageTypes, builders)
+ } else if (layer.type === 4) {
+ return getShapeCollectionMessagesCount(layer.shapes, renderers, messageTypes, builders)
+ } else if (layer.type === 5) {
+ return getTextMessagesCount(layer.text, renderers, messageTypes, builders)
+ } else {
+ return buildMessageCounterObject()
+ }
+})
+
+const getAnimationMessageCount = memoizeHelper((report, renderers, messageTypes, builders) => {
+ const messages = report.layers.reduce((accumulator, layer) => {
+ return addMessagesCount(accumulator, getLayerMessageCount(layer, renderers, messageTypes, builders))
+ }, buildMessageCounterObject())
+ return messages
+})
+
+const getTotalMessagesCount = messages => messages.error + messages.warning
+
+export {
+ getAnimationMessageCount,
+ getLayerMessageCount,
+ getTransformMessageCount,
+ getPropertyMessageCount,
+ getPositionMessageCount,
+ getTotalMessagesCount,
+ getLayerCollectionMessagesCount,
+ getEffectsMessageCount,
+ getShapeCollectionMessagesCount,
+ getShapeGroupMessagesCount,
+ getShapeRepeaterMessagesCount,
+ getGenericShapeMessagesCount,
+ getTextMessagesCount,
+ getAnimatorMessageCount,
+ countMessageByTypeAndRenderer,
+ getStylesMessageCount,
+ getDropShadowStyleMessageCount,
+ getMasksMessageCount,
+ getMaskMessageCount,
+}
\ No newline at end of file
diff --git a/src/helpers/riveHelper.js b/src/helpers/riveHelper.js
new file mode 100644
index 00000000..a9e3c1af
--- /dev/null
+++ b/src/helpers/riveHelper.js
@@ -0,0 +1,27 @@
+import { fetchWithId } from './FileLoader'
+
+const saveFile = async (origin, destination, fileName) => {
+ const encodedImageResponse = await fetchWithId('http://localhost:3119/convertToFlare/',
+ {
+ method: 'post',
+ headers: {
+ 'Accept': 'application/json',
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ origin: encodeURIComponent(origin),
+ destination: encodeURIComponent(destination),
+ fileName: encodeURIComponent(fileName),
+ })
+ })
+ const jsonResponse = await encodedImageResponse.json()
+ if(jsonResponse.status === 'success') {
+ return true;
+ } else {
+ throw new Error(jsonResponse.message);
+ }
+}
+
+export {
+ saveFile
+}
\ No newline at end of file
diff --git a/src/helpers/serverHelper.js b/src/helpers/serverHelper.js
new file mode 100644
index 00000000..55093923
--- /dev/null
+++ b/src/helpers/serverHelper.js
@@ -0,0 +1,12 @@
+import { getPort } from './enums/networkData'
+import { fetchWithId } from './FileLoader'
+
+const ping = async() => {
+ const response = await fetchWithId(`http://localhost:${getPort()}/ping/`);
+ const textResponse = await response.text();
+ return textResponse
+}
+
+export {
+ ping
+}
\ No newline at end of file
diff --git a/src/helpers/skottie/skottie.js b/src/helpers/skottie/skottie.js
new file mode 100644
index 00000000..55ecb9e6
--- /dev/null
+++ b/src/helpers/skottie/skottie.js
@@ -0,0 +1,108 @@
+import fs from '../fs_proxy'
+import nodePath from '../path_proxy'
+import {getUserFolders} from '../CompositionsProvider'
+
+let storingFolder = ''
+let storingDataFileName = 'data2.json'
+const lockedMinorVersion = [0,33,0];
+
+const createDataFile = async () => {
+ return {
+ versions: [],
+ }
+}
+
+const getFolder = async () => {
+ if (!storingFolder) {
+ const userFolders = await getUserFolders()
+ const path = [
+ userFolders.userData,
+ nodePath.sep + 'bodymovin',
+ nodePath.sep + 'skottie',
+ nodePath.sep + 'builds',
+ ]
+ let currentPath = ''
+
+ for (let i = 0; i < path.length; i += 1) {
+ currentPath += path[i];
+ // console.log(currentPath)
+ if (!fs.existsSync(currentPath)) {
+ fs.mkdirSync(currentPath);
+ }
+ }
+ storingFolder = path.join('')
+ }
+ return storingFolder
+}
+
+const getLatestVersion = async () => {
+ const packageResponse = await fetch('https://unpkg.com/canvaskit-wasm@latest/package.json');
+ const packageData = await packageResponse.json();
+ const versionParts = packageData.version.split('.');
+ if (Number(versionParts[1]) === Number(lockedMinorVersion[1])) {
+ return packageData.version;
+ // return packageData.version.replace(/\W/g, '');
+ }
+ return '';
+}
+
+const saveDataFile = async data => {
+
+ const folder = await getFolder()
+ const storingDataFilePath = folder + nodePath.sep + storingDataFileName
+ fs.writeFileSync(storingDataFilePath, JSON.stringify(data))
+}
+
+const getDataFile = async () => {
+ const folder = await getFolder()
+ const storingDataFilePath = folder + nodePath.sep + storingDataFileName
+ if (!fs.existsSync(storingDataFilePath)) {
+ const dataFile = await createDataFile()
+ await saveDataFile(dataFile)
+ }
+ const fileData = fs.readFileSync(storingDataFilePath, 'utf8')
+ return JSON.parse(fileData)
+}
+
+const initialize = async () => {
+ await getFolder()
+ await getDataFile()
+
+ return true
+}
+
+const getSavedVersion = async () => {
+ const dataFile = await getDataFile()
+ return dataFile.versions
+}
+
+const saveLatestVersion = async version => {
+ // const files = await Promise.all([
+ // fetch('https://unpkg.com/canvaskit-wasm@latest/bin/full/canvaskit.js'),
+ // fetch('https://unpkg.com/canvaskit-wasm@latest/bin/full/canvaskit.wasm'),
+ // ])
+ // const savingFolder = await getFolder()
+ // const fileName = version.split('.').join('_').replace(/\W/g, '')
+ // const jsBuffer = await files[0].arrayBuffer()
+ // const jsFilePath = savingFolder + nodePath.sep + fileName + '.js'
+ // fs.writeFileSync(jsFilePath, Buffer.from(jsBuffer))
+ // const wasmBuffer = await files[1].arrayBuffer()
+ // const wasmFilePath = savingFolder + nodePath.sep + fileName + '.wasm'
+ // fs.writeFileSync(wasmFilePath, Buffer.from(wasmBuffer))
+ const dataFile = await getDataFile()
+ dataFile.versions.push({
+ version,
+ // wasm: wasmFilePath,
+ // js: jsFilePath,
+ })
+ await saveDataFile(dataFile)
+}
+
+export {
+ initialize,
+ getLatestVersion,
+ getDataFile,
+ getSavedVersion,
+ saveLatestVersion,
+ lockedMinorVersion,
+}
\ No newline at end of file
diff --git a/src/helpers/slots/converter.js b/src/helpers/slots/converter.js
new file mode 100644
index 00000000..1ce05c33
--- /dev/null
+++ b/src/helpers/slots/converter.js
@@ -0,0 +1,42 @@
+import convertShape from "./shape";
+import convertTransform from "./transform";
+
+const layerTypes = {
+ COMP: 0,
+ SHAPE: 4,
+}
+
+
+const convertLayer = (layer, props, properties) => {
+ if (layer.ks) {
+ convertTransform(layer.ks, props, properties);
+ }
+ if (layer.ty === layerTypes.SHAPE) {
+ convertShape(layer, props, properties);
+ }
+}
+
+const convertLayers = (layers, props, properties) => {
+ layers.forEach(layer => convertLayer(layer, props, properties))
+}
+
+const convertAnimation = (animationData) => {
+ if (!animationData.props) {
+ animationData.props = {};
+ }
+ const props = animationData.props;
+ const properties = [];
+
+ if (animationData.layers) {
+ convertLayers(animationData.layers, props, properties);
+ }
+ if (animationData.assets) {
+ animationData.assets.forEach(asset => {
+ if (asset.layers) {
+ convertLayers(asset.layers, props, properties)
+ }
+ })
+ }
+}
+
+export default convertAnimation;
\ No newline at end of file
diff --git a/src/helpers/slots/property.js b/src/helpers/slots/property.js
new file mode 100644
index 00000000..8267979e
--- /dev/null
+++ b/src/helpers/slots/property.js
@@ -0,0 +1,24 @@
+const convertProperty = (property, props, properties) => {
+ if (property && 'k' in property) {
+ const stringifiedValue = JSON.stringify(property.k)
+ let prop = properties.find((_slot) => {
+ return _slot.stringified === stringifiedValue;
+ })
+ if (!prop) {
+ prop = {
+ stringified: stringifiedValue,
+ id: `p_${properties.length}`
+ }
+ properties.push(prop);
+ props[prop.id] = {
+ k: property.k,
+ a: property.a,
+ }
+ }
+ delete property.k;
+ delete property.a;
+ property.pid = prop.id;
+ }
+}
+
+export default convertProperty;
\ No newline at end of file
diff --git a/src/helpers/slots/shape.js b/src/helpers/slots/shape.js
new file mode 100644
index 00000000..87e79591
--- /dev/null
+++ b/src/helpers/slots/shape.js
@@ -0,0 +1,160 @@
+import convertProperty from "./property";
+import convertTransform from "./transform";
+
+const shapeTypes = {
+ GROUP: 'gr',
+ RECTANGLE: 'rc',
+ ELLIPSE: 'el',
+ STAR: 'sr',
+ OFFSET: 'op',
+ PUCKER_AND_BLOAT: 'pb',
+ ROUNDED_CORNERS: 'rd',
+ TRIM_PATHS: 'tm',
+ TWIST: 'tw',
+ GRADIENT_STROKE: 'gs',
+ GRADIENT_FILL: 'gf',
+ FILL: 'fl',
+ STROKE: 'st',
+ REPEATER: 'rp',
+ SHAPE: 'sh',
+ ZIGZAG: 'zz',
+ TRANSFORM: 'tr',
+ MERGE_PATH: 'mm',
+}
+
+
+const convertRectangle = (shape, props, properties) => {
+ convertProperty(shape.p, props, properties);
+ convertProperty(shape.r, props, properties);
+ convertProperty(shape.s, props, properties);
+}
+
+const convertEllipse = (shape, props, properties) => {
+ convertProperty(shape.p, props, properties);
+ convertProperty(shape.s, props, properties);
+}
+
+const convertStar = (shape, props, properties) => {
+ convertProperty(shape.ir, props, properties);
+ convertProperty(shape.is, props, properties);
+ convertProperty(shape.or, props, properties);
+ convertProperty(shape.os, props, properties);
+ convertProperty(shape.p, props, properties);
+ convertProperty(shape.r, props, properties);
+ convertProperty(shape.pt, props, properties);
+}
+
+const convertGroup = (shape, props, properties) => {
+ // eslint-disable-next-line no-use-before-define
+ iterateShapes(shape.it, props, properties);
+}
+
+const convertOffset = (shape, props, properties) => {
+ convertProperty(shape.a, props, properties);
+ convertProperty(shape.ml, props, properties);
+}
+
+const convertPuckerAndBloat = (shape, props, properties) => {
+ convertProperty(shape.a, props, properties);
+}
+
+const convertRoundedCorners = (shape, props, properties) => {
+ convertProperty(shape.r, props, properties);
+}
+
+const convertTrimPaths = (shape, props, properties) => {
+ convertProperty(shape.s, props, properties);
+ convertProperty(shape.e, props, properties);
+ convertProperty(shape.o, props, properties);
+}
+
+const convertTwist = (shape, props, properties) => {
+ convertProperty(shape.a, props, properties);
+ convertProperty(shape.c, props, properties);
+}
+
+const convertGradientStroke = (shape, props, properties) => {
+ convertProperty(shape.e, props, properties);
+ convertProperty(shape.g, props, properties);
+ convertProperty(shape.ml2, props, properties);
+ convertProperty(shape.o, props, properties);
+ convertProperty(shape.s, props, properties);
+}
+
+const convertGradientFill = (shape, props, properties) => {
+ convertProperty(shape.e, props, properties);
+ convertProperty(shape.g, props, properties);
+ convertProperty(shape.o, props, properties);
+ convertProperty(shape.s, props, properties);
+}
+
+const convertFill = (shape, props, properties) => {
+ convertProperty(shape.c, props, properties);
+ convertProperty(shape.o, props, properties);
+}
+
+const convertStroke = (shape, props, properties) => {
+ convertProperty(shape.c, props, properties);
+ convertProperty(shape.o, props, properties);
+ convertProperty(shape.w, props, properties);
+}
+
+const convertRepeater = (shape, props, properties) => {
+ convertProperty(shape.o, props, properties);
+ convertTransform(shape.tr, props, properties);
+}
+
+const convertPath = (shape, props, properties) => {
+ convertProperty(shape.ks, props, properties);
+}
+
+const convertZigZag = (shape, props, properties) => {
+ convertProperty(shape.s, props, properties);
+ convertProperty(shape.r, props, properties);
+ convertProperty(shape.pt, props, properties);
+}
+
+const convertMergePath = () => {
+ // Nothing to convert on merge paths
+}
+
+const convertGeneric = (shape, props, properties) => {
+ console.log('GENERIC', shape)
+}
+
+const shapePropConverters = {
+ [shapeTypes.RECTANGLE]: convertRectangle,
+ [shapeTypes.ELLIPSE]: convertEllipse,
+ [shapeTypes.STAR]: convertStar,
+ [shapeTypes.GROUP]: convertGroup,
+ [shapeTypes.OFFSET]: convertOffset,
+ [shapeTypes.PUCKER_AND_BLOAT]: convertPuckerAndBloat,
+ [shapeTypes.ROUNDED_CORNERS]: convertRoundedCorners,
+ [shapeTypes.TRIM_PATHS]: convertTrimPaths,
+ [shapeTypes.TWIST]: convertTwist,
+ [shapeTypes.GRADIENT_STROKE]: convertGradientStroke,
+ [shapeTypes.GRADIENT_FILL]: convertGradientFill,
+ [shapeTypes.FILL]: convertFill,
+ [shapeTypes.STROKE]: convertStroke,
+ [shapeTypes.REPEATER]: convertRepeater,
+ [shapeTypes.SHAPE]: convertPath,
+ [shapeTypes.ZIGZAG]: convertZigZag,
+ [shapeTypes.TRANSFORM]: convertTransform,
+ [shapeTypes.MERGE_PATH]: convertMergePath,
+}
+
+const iterateShapes = (shapes, props, properties) => {
+ shapes.forEach((shapeProperty) => {
+ if (shapePropConverters[shapeProperty.ty]) {
+ shapePropConverters[shapeProperty.ty](shapeProperty, props, properties)
+ } else {
+ console.log('TYPE MISSING', shapeProperty.ty);
+ }
+ })
+}
+
+const convertShape = (shape, props, properties) => {
+ iterateShapes(shape.shapes, props, properties);
+}
+
+export default convertShape;
\ No newline at end of file
diff --git a/src/helpers/slots/transform.js b/src/helpers/slots/transform.js
new file mode 100644
index 00000000..c5e6dad6
--- /dev/null
+++ b/src/helpers/slots/transform.js
@@ -0,0 +1,16 @@
+import convertProperty from './property';
+
+
+const convertTransform = (transform, props, properties) => {
+ convertProperty(transform.o, props, properties);
+ convertProperty(transform.r, props, properties);
+ convertProperty(transform.p, props, properties);
+ convertProperty(transform.s, props, properties);
+ convertProperty(transform.a, props, properties);
+ convertProperty(transform.so, props, properties);
+ convertProperty(transform.eo, props, properties);
+ convertProperty(transform.sk, props, properties);
+ convertProperty(transform.sa, props, properties);
+}
+
+export default convertTransform
\ No newline at end of file
diff --git a/src/helpers/smilHelper.js b/src/helpers/smilHelper.js
new file mode 100644
index 00000000..ccb00292
--- /dev/null
+++ b/src/helpers/smilHelper.js
@@ -0,0 +1,31 @@
+import bodymovin2SMIL from 'bodymovin-to-smil'
+
+function writeFile(path, data) {
+ return new Promise((resolve, reject) => {
+ var result = window.cep.fs.writeFile(path, data);
+ if (0 !== result.err) {
+ reject(result.err);
+ } else {
+ resolve(true);
+ }
+ })
+}
+
+async function saveFile(origin, destination) {
+ console.log(origin, destination)
+ var jsonDataResult = window.cep.fs.readFile(origin)
+ if (0 !== jsonDataResult.err) {
+ throw new Error(jsonDataResult.err)
+ } else {
+ window._bodymovin2SMIL = bodymovin2SMIL;
+ var jsonData = jsonDataResult.data;
+ var jsonObject = JSON.parse(jsonData);
+ console.log(jsonObject);
+ var smilData = await bodymovin2SMIL(jsonObject);
+ await writeFile(destination, smilData);
+ }
+}
+
+export {
+ saveFile
+}
\ No newline at end of file
diff --git a/src/helpers/splitAnimationHelper.js b/src/helpers/splitAnimationHelper.js
new file mode 100644
index 00000000..ce40594f
--- /dev/null
+++ b/src/helpers/splitAnimationHelper.js
@@ -0,0 +1,29 @@
+import { getPort } from './enums/networkData'
+import { fetchWithId } from './FileLoader'
+
+const splitAnimation = async (origin, destination, fileName, time) => {
+ const encodedImageResponse = await fetchWithId(`http://localhost:${getPort()}/splitAnimation/`,
+ {
+ method: 'post',
+ headers: {
+ 'Accept': 'application/json',
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify({
+ origin: encodeURIComponent(origin),
+ destination: encodeURIComponent(destination),
+ fileName: encodeURIComponent(fileName),
+ time: time,
+ })
+ })
+ const jsonResponse = await encodedImageResponse.json()
+ if(jsonResponse.status === 'success') {
+ return jsonResponse.totalSegments;
+ } else {
+ throw new Error(jsonResponse.message);
+ }
+}
+
+export {
+ splitAnimation
+}
\ No newline at end of file
diff --git a/src/helpers/styles/variables.js b/src/helpers/styles/variables.js
index 5a3bfcac..7c5f57c2 100644
--- a/src/helpers/styles/variables.js
+++ b/src/helpers/styles/variables.js
@@ -10,7 +10,10 @@ export default {
gray2: '#595959',
gray_darkest: '#303030',
gray_lighter: '#444444',
- button_gray_text: '#bfbfbf'
+ button_gray_text: '#bfbfbf',
+ gray_more_darkest: '#111111',
+ gray_lightest: '#EEEEEE',
+ black: '#000000',
},
gradients: {
blueGreen: 'linear-gradient(left, rgba(0,142,211,0.25) 15%,rgba(0,182,72,0.25) 85%)',
diff --git a/src/helpers/sync/canilottie.js b/src/helpers/sync/canilottie.js
new file mode 100644
index 00000000..af206792
--- /dev/null
+++ b/src/helpers/sync/canilottie.js
@@ -0,0 +1,13 @@
+async function callApi() {
+ const response = await fetch(
+ // 'http://192.168.1.8:8080/api/index.json',
+ 'https://lottie-animation-community.web.app/api/index.json',
+ {
+ mode: 'no-cors',
+ }
+ );
+ const jsonResponse = await response.json();
+ return jsonResponse;
+}
+
+export default callApi;
\ No newline at end of file
diff --git a/src/helpers/templates/enums/layerTypes.js b/src/helpers/templates/enums/layerTypes.js
new file mode 100644
index 00000000..47697d1a
--- /dev/null
+++ b/src/helpers/templates/enums/layerTypes.js
@@ -0,0 +1,20 @@
+const layerTypes = {
+ PRECOMP : 0,
+ SOLID : 1,
+ STILL : 2,
+ NULLLAYER : 3,
+ SHAPE : 4,
+ TEXT : 5,
+ AUDIO : 6,
+ PHOLDERVIDEO : 7,
+ IMAGESEQ : 8,
+ VIDEO : 9,
+ PHOLDERSTILL : 10,
+ GUIDE : 11,
+ ADJUSTMENT : 12,
+ CAMERA : 13,
+ LIGHT : 14,
+ DATA : 15,
+}
+
+export default layerTypes;
diff --git a/src/helpers/templates/enums/propTypes.js b/src/helpers/templates/enums/propTypes.js
new file mode 100644
index 00000000..17c576a4
--- /dev/null
+++ b/src/helpers/templates/enums/propTypes.js
@@ -0,0 +1,61 @@
+export default {
+ POSITION: 'position',
+ SCALE: 'scale',
+ ROTATION: 'rotation',
+ ANCHOR_POINT: 'anchor point',
+ OPACITY: 'opacity',
+ POSITION_X: 'position x',
+ POSITION_Y: 'position y',
+ POSITION_Z: 'position z',
+ ELLIPSE_POSITION: 'ellipse position',
+ ELLIPSE_SIZE: 'ellipse size',
+ RECTANGLE_POSITION: 'rectangle position',
+ RECTANGLE_SIZE: 'rectangle size',
+ RECTANGLE_RADIUS: 'rectangle radius',
+ STAR_INNER_RADIUS: 'star inner radius',
+ STAR_INNER_SIZE: 'star inner size',
+ STAR_OUTER_RADIUS: 'star outer radius',
+ STAR_OUTER_SIZE: 'star outer size',
+ STAR_POSITION: 'star position',
+ STAR_RADIUS: 'star radius',
+ STAR_POINTS: 'star points',
+ OFFSET_PATHS_AMOUNT: 'offset paths amount',
+ OFFSET_PATHS_MITER_LIMIT: 'offset paths miter limit',
+ ROUNDED_CORNERS_RADIUS: 'rounded corners radius',
+ TRIM_PATH_START: 'trim path start',
+ TRIM_PATH_END: 'trim path end',
+ TRIM_PATH_OFFSET: 'trim path offset',
+ PUCKER_AND_BLOAT_AMOUNT: 'pucker and bloat amount',
+ TWIST_ANGLE: 'twist angle',
+ TWIST_CENTER: 'twist center',
+ GRADIENT_STROKE_START: 'gradient stroke start',
+ GRADIENT_STROKE_END: 'gradient stroke end',
+ GRADIENT_STROKE_OPACITY: 'gradient stroke opacity',
+ GRADIENT_STROKE_MITER_LIMIT: 'gradient stroke miter limit',
+ GRADIENT_STROKE_WIDTH: 'gradient stroke width',
+ GRADIENT_FILL_START: 'gradient fill start',
+ GRADIENT_FILL_END: 'gradient fill end',
+ GRADIENT_FILL_OPACITY: 'gradient fill opacity',
+ FILL_COLOR: 'fill color',
+ FILL_OPACITY: 'fill opacity',
+ ZIG_ZAG_POINTS: 'zig zag points',
+ ZIG_ZAG_RIDGES: 'zig zag ridges',
+ ZIG_ZAG_SIZE: 'zig zag size',
+ STROKE_COLOR: 'stroke color',
+ STROKE_OPACITY: 'stroke opacity',
+ STROKE_WIDTH: 'stroke width',
+ SHAPE_TRANSFORM_ANCHOR_POINT: 'shape transform anchor point',
+ SHAPE_TRANSFORM_OPACITY: 'shape transform opacity',
+ SHAPE_TRANSFORM_POSITION: 'shape transform position',
+ SHAPE_TRANSFORM_ROTATION: 'shape transform rotation',
+ SHAPE_TRANSFORM_SKEW_AXIS: 'shape transform skew axis',
+ SHAPE_TRANSFORM_SKEW: 'shape transform skew',
+ REPEATER_COPIES: 'repeater copies',
+ REPEATER_OFFSET: 'repeater offset',
+ REPEATER_TRANSFORM_ANCHOR_POINT: 'repeater transform anchor point',
+ REPEATER_TRANSFORM_POSITION: 'repeater transform position',
+ REPEATER_TRANSFORM_ROTATION: 'repeater transform rotation',
+ REPEATER_TRANSFORM_SCALE: 'repeater transform scale',
+ REPEATER_TRANSFORM_START_OPACITY: 'repeater transform start opacity',
+ REPEATER_TRANSFORM_END_OPACITY: 'repeater transform end opacity',
+}
diff --git a/src/helpers/templates/enums/shapeTypes.js b/src/helpers/templates/enums/shapeTypes.js
new file mode 100644
index 00000000..bdd0dd7d
--- /dev/null
+++ b/src/helpers/templates/enums/shapeTypes.js
@@ -0,0 +1,20 @@
+export default {
+ SHAPE: 'sh',
+ RECT: 'rc',
+ ELLIPSE: 'el',
+ STAR: 'sr',
+ FILL: 'fl',
+ GFILL: 'gf',
+ GSTROKE: 'gs',
+ STROKE: 'st',
+ MERGE: 'mm',
+ TRIM: 'tm',
+ TWIST: 'tw',
+ GROUP: 'gr',
+ REPEATER: 'rp',
+ ROUNDEDCORNERS: 'rd',
+ OFFSETPATH: 'op',
+ PUCKERANDBLOAT: 'pb',
+ ZIGZAG: 'zz',
+ TRANSFORM: 'tr',
+}
\ No newline at end of file
diff --git a/src/helpers/templates/enums/slotRuleTypes.js b/src/helpers/templates/enums/slotRuleTypes.js
new file mode 100644
index 00000000..c2dfb6ca
--- /dev/null
+++ b/src/helpers/templates/enums/slotRuleTypes.js
@@ -0,0 +1,3 @@
+export default {
+ ASSIGNED: 'assigned',
+}
diff --git a/src/helpers/templates/enums/validationTypes.js b/src/helpers/templates/enums/validationTypes.js
new file mode 100644
index 00000000..3d2528ed
--- /dev/null
+++ b/src/helpers/templates/enums/validationTypes.js
@@ -0,0 +1,5 @@
+
+export default {
+ SLOTS: 'slots',
+ ASSETS: 'assets',
+}
\ No newline at end of file
diff --git a/src/helpers/templates/helpers/compareOperation.js b/src/helpers/templates/helpers/compareOperation.js
new file mode 100644
index 00000000..b615d4d9
--- /dev/null
+++ b/src/helpers/templates/helpers/compareOperation.js
@@ -0,0 +1,20 @@
+const compare = (operation, left, right) => {
+ switch (operation) {
+ case '>=':
+ return left >= right;
+ case '>':
+ return left > right;
+ case '===':
+ return left === right;
+ case '==':
+ return left == right; // eslint-disable-line eqeqeq
+ case '<':
+ return left < right;
+ case '<=':
+ return left <= right;
+ default:
+ return true;
+ }
+}
+
+export default compare;
\ No newline at end of file
diff --git a/src/helpers/templates/helpers/errorFactory.js b/src/helpers/templates/helpers/errorFactory.js
new file mode 100644
index 00000000..a2b24e9c
--- /dev/null
+++ b/src/helpers/templates/helpers/errorFactory.js
@@ -0,0 +1,35 @@
+class TemplateError {
+ constructor(errors) {
+ this.errors = errors || [];
+ }
+ add(type, message) {
+ this.errors.push({
+ type,
+ message,
+ })
+ return this;
+ }
+ getErrors() {
+ return this.errors;
+ }
+ merge = (mergingError) => {
+ const mergedTemplateError = new TemplateError(this.getErrors());
+ const mergingTemplateErrors = mergingError.getErrors();
+ mergingTemplateErrors.forEach(error => mergedTemplateError.add(error.type, error.message));
+ return mergedTemplateError;
+ }
+ concat = (concatenatingTemplatError) => {
+ const mergingTemplateErrors = concatenatingTemplatError.getErrors();
+ mergingTemplateErrors.forEach(error => this.add(error.type, error.message));
+ return this;
+ }
+ get length() {
+ return this.errors.length;
+ }
+}
+
+const errorFactory = () => {
+ return new TemplateError();
+}
+
+export default errorFactory;
\ No newline at end of file
diff --git a/src/helpers/templates/helpers/propFactory.js b/src/helpers/templates/helpers/propFactory.js
new file mode 100644
index 00000000..b5301670
--- /dev/null
+++ b/src/helpers/templates/helpers/propFactory.js
@@ -0,0 +1,9 @@
+const createProp = (prop, type, path) => {
+ return {
+ prop,
+ type,
+ path: [...path, type].join(' > '),
+ }
+}
+
+export default createProp
\ No newline at end of file
diff --git a/src/helpers/templates/slots/layers/layer.js b/src/helpers/templates/slots/layers/layer.js
new file mode 100644
index 00000000..26112bee
--- /dev/null
+++ b/src/helpers/templates/slots/layers/layer.js
@@ -0,0 +1,68 @@
+import layerTypes from "../../enums/layerTypes";
+import propTypes from "../../enums/propTypes";
+import createProp from "../../helpers/propFactory";
+import { buildShapeProps } from "./shapes";
+
+const buildLayerProps = (layer, parentPath) => {
+ const path = [...parentPath, layer.nm]
+ let props = [];
+ if (layer.ks) {
+ if(layer.ks.s) {
+ props.push(createProp(layer.ks.s, propTypes.SCALE, path))
+ }
+ if(layer.ks.p) {
+ if (!layer.ks.p.s) {
+ props.push(createProp(layer.ks.p, propTypes.POSITION, path))
+ } else {
+ if (layer.ks.p.x) {
+ props.push(createProp(layer.ks.p.x, propTypes.POSITION_X, path))
+ }
+ if (layer.ks.p.y) {
+ props.push(createProp(layer.ks.p.y, propTypes.POSITION_Y, path))
+ }
+ }
+ }
+ if(layer.ks.r) {
+ props.push(createProp(layer.ks.r, propTypes.ROTATION, path))
+ }
+ if(layer.ks.o) {
+ props.push(createProp(layer.ks.o, propTypes.OPACITY, path))
+ }
+ if(layer.ks.a) {
+ props.push(createProp(layer.ks.a, propTypes.ANCHOR_POINT, path))
+ }
+ }
+ if (layer.ty === layerTypes.SHAPE) {
+ props = props.concat(buildShapeProps(layer, path))
+ }
+ return props;
+}
+
+const buildLayersProps = (layers, path) => {
+ let props = [];
+ layers.forEach(layer => {
+ props = [
+ ...props,
+ ...buildLayerProps(layer, path),
+ ]
+ })
+ return props;
+}
+
+const buildProps = (data, path = []) => {
+ let props = [];
+ if (data.layers) {
+ props = props.concat(buildLayersProps(data.layers, path))
+ }
+ if (data.assets) {
+ data.assets.forEach(asset => {
+ if (asset.layers) {
+ props = props.concat(buildLayersProps(asset.layers, [...path, asset.nm || 'Comp']))
+ }
+ })
+ }
+ return props;
+}
+
+export default buildProps;
+
diff --git a/src/helpers/templates/slots/layers/shapes.js b/src/helpers/templates/slots/layers/shapes.js
new file mode 100644
index 00000000..375d2edd
--- /dev/null
+++ b/src/helpers/templates/slots/layers/shapes.js
@@ -0,0 +1,192 @@
+import propTypes from "../../enums/propTypes";
+import shapeTypes from "../../enums/shapeTypes";
+import createProp from "../../helpers/propFactory";
+
+const searchPropertyInEllipse = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.ELLIPSE];
+ return [
+ createProp(data.p, propTypes.ELLIPSE_POSITION, path),
+ createProp(data.s, propTypes.ELLIPSE_SIZE, path),
+ ]
+}
+
+const searchPropertyInRectangle = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.RECT];
+ return [
+ createProp(data.p, propTypes.RECTANGLE_POSITION, path),
+ createProp(data.s, propTypes.RECTANGLE_SIZE, path),
+ createProp(data.r, propTypes.RECTANGLE_RADIUS, path),
+ ]
+}
+
+const searchPropertyInStar = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.STAR];
+ return [
+ createProp(data.ir, propTypes.STAR_INNER_RADIUS, path),
+ createProp(data.is, propTypes.STAR_INNER_SIZE, path),
+ createProp(data.or, propTypes.STAR_OUTER_RADIUS, path),
+ createProp(data.os, propTypes.STAR_OUTER_SIZE, path),
+ createProp(data.p, propTypes.STAR_POSITION, path),
+ createProp(data.r, propTypes.STAR_RADIUS, path),
+ createProp(data.pt, propTypes.STAR_POINTS, path),
+ ]
+}
+
+const searchPropertyInOffsetPaths = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.OFFSETPATH];
+ return [
+ createProp(data.a, propTypes.OFFSET_PATHS_AMOUNT, path),
+ createProp(data.ml, propTypes.OFFSET_PATHS_MITER_LIMIT, path),
+ ]
+}
+
+const searchPropertyInRoundedCorners = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.ROUNDEDCORNERS];
+ return [
+ createProp(data.r, propTypes.ROUNDED_CORNERS_RADIUS, path),
+ ]
+}
+
+const searchPropertyInTrimPaths = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.TRIM];
+ return [
+ createProp(data.s, propTypes.TRIM_PATH_START, path),
+ createProp(data.e, propTypes.TRIM_PATH_END, path),
+ createProp(data.o, propTypes.TRIM_PATH_OFFSET, path),
+ ]
+}
+
+const searchPropertyInPuckerAndBloat = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.PUCKERANDBLOAT];
+ return [
+ createProp(data.a, propTypes.PUCKER_AND_BLOAT_AMOUNT, path),
+ ]
+}
+
+const searchPropertyInTwist = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.TWIST];
+ return [
+ createProp(data.a, propTypes.TWIST_ANGLE, path),
+ createProp(data.c, propTypes.TWIST_CENTER, path),
+ ]
+}
+
+const searchPropertyInGradientStroke = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.GSTROKE];
+ return [
+ createProp(data.s, propTypes.GRADIENT_STROKE_START, path),
+ createProp(data.e, propTypes.GRADIENT_STROKE_END, path),
+ createProp(data.o, propTypes.GRADIENT_STROKE_OPACITY, path),
+ createProp(data.ml2, propTypes.GRADIENT_STROKE_MITER_LIMIT, path),
+ createProp(data.w, propTypes.GRADIENT_STROKE_WIDTH, path),
+ ]
+}
+
+const searchPropertyInGradientFill = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.GFILL];
+ return [
+ createProp(data.s, propTypes.GRADIENT_FILL_START, path),
+ createProp(data.e, propTypes.GRADIENT_FILL_END, path),
+ createProp(data.o, propTypes.GRADIENT_FILL_OPACITY, path),
+ ]
+}
+
+const searchPropertyInFill = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.FILL];
+ return [
+ createProp(data.c, propTypes.FILL_COLOR, path),
+ createProp(data.o, propTypes.FILL_OPACITY, path),
+ ]
+}
+
+const searchPropertyInZigZag = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.ZIGZAG];
+ return [
+ createProp(data.pt, propTypes.ZIG_ZAG_POINTS, path),
+ createProp(data.r, propTypes.ZIG_ZAG_RIDGES, path),
+ createProp(data.s, propTypes.ZIG_ZAG_SIZE, path),
+ ]
+}
+
+const searchPropertyInStroke = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.STROKE];
+ return [
+ createProp(data.c, propTypes.STROKE_COLOR, path),
+ createProp(data.o, propTypes.STROKE_OPACITY, path),
+ createProp(data.w, propTypes.STROKE_WIDTH, path),
+ ]
+}
+
+const searchPropertyInTransform = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.TRANSFORM];
+ return [
+ createProp(data.a, propTypes.SHAPE_TRANSFORM_ANCHOR_POINT, path),
+ createProp(data.o, propTypes.SHAPE_TRANSFORM_OPACITY, path),
+ createProp(data.p, propTypes.SHAPE_TRANSFORM_POSITION, path),
+ createProp(data.r, propTypes.SHAPE_TRANSFORM_ROTATION, path),
+ createProp(data.sa, propTypes.SHAPE_TRANSFORM_SKEW_AXIS, path),
+ createProp(data.sk, propTypes.SHAPE_TRANSFORM_SKEW, path),
+ ]
+}
+
+const searchPropertyInRepeater = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.REPEATER];
+ return [
+ createProp(data.c, propTypes.REPEATER_COPIES, path),
+ createProp(data.o, propTypes.REPEATER_OFFSET, path),
+ createProp(data.tr.a, propTypes.REPEATER_TRANSFORM_ANCHOR_POINT, path),
+ createProp(data.tr.p, propTypes.REPEATER_TRANSFORM_POSITION, path),
+ createProp(data.tr.r, propTypes.REPEATER_TRANSFORM_ROTATION, path),
+ createProp(data.tr.s, propTypes.REPEATER_TRANSFORM_SCALE, path),
+ createProp(data.tr.so, propTypes.REPEATER_TRANSFORM_START_OPACITY, path),
+ createProp(data.tr.eo, propTypes.REPEATER_TRANSFORM_END_OPACITY, path),
+ ]
+}
+
+const searchPropertyInGroup2 = (data, parentPath) => {
+ const path = [...parentPath, data.nm || shapeTypes.GROUP];
+ return iterateShapes(data.it, path); // eslint-disable-line no-use-before-define
+}
+
+const iterateShapes = (shapes, path) => {
+ let props = [];
+ const actions ={
+ [shapeTypes.ELLIPSE]: searchPropertyInEllipse,
+ [shapeTypes.RECT]: searchPropertyInRectangle,
+ [shapeTypes.STAR]: searchPropertyInStar,
+ [shapeTypes.OFFSETPATH]: searchPropertyInOffsetPaths,
+ [shapeTypes.ROUNDEDCORNERS]: searchPropertyInRoundedCorners,
+ [shapeTypes.TRIM]: searchPropertyInTrimPaths,
+ [shapeTypes.PUCKERANDBLOAT]: searchPropertyInPuckerAndBloat,
+ [shapeTypes.TWIST]: searchPropertyInTwist,
+ [shapeTypes.GSTROKE]: searchPropertyInGradientStroke,
+ [shapeTypes.GFILL]: searchPropertyInGradientFill,
+ [shapeTypes.FILL]: searchPropertyInFill,
+ [shapeTypes.ZIGZAG]: searchPropertyInZigZag,
+ [shapeTypes.STROKE]: searchPropertyInStroke,
+ [shapeTypes.TRANSFORM]: searchPropertyInTransform,
+ [shapeTypes.REPEATER]: searchPropertyInRepeater,
+ [shapeTypes.GROUP]: searchPropertyInGroup2,
+ }
+ let action;
+ shapes.forEach(shape => {
+ action = actions[shape.ty];
+ if (action) {
+ props = props.concat(action(shape, path));
+ } else {
+ // console.log('shapeshapeshapeshape', shape);
+ }
+ })
+ return props;
+}
+
+const buildShapeProps = (layer, path) => {
+ if (layer.shapes) {
+ return iterateShapes(layer.shapes, path);
+ }
+ return [];
+}
+
+export {
+ buildShapeProps,
+}
\ No newline at end of file
diff --git a/src/helpers/templates/slots/layers/transform.js b/src/helpers/templates/slots/layers/transform.js
new file mode 100644
index 00000000..e69de29b
diff --git a/src/helpers/templates/slots/props.js b/src/helpers/templates/slots/props.js
new file mode 100644
index 00000000..7b56153d
--- /dev/null
+++ b/src/helpers/templates/slots/props.js
@@ -0,0 +1,22 @@
+const addPropToSlot = (slotId, propertyType, slots) => {
+ if (!slots[slotId]) {
+ slots[slotId] = [];
+ }
+ if (slots[slotId].indexOf(propertyType) === -1) {
+ slots[slotId].push(propertyType);
+ }
+}
+
+const searchSlotInProps = (data, props, slots) => {
+ props = props || [];
+ props.forEach(propData => {
+ if (data[propData.attr] && data[propData.attr].sid) {
+ addPropToSlot(data[propData.attr].sid, propData.name, slots);
+ }
+ })
+}
+
+export {
+ addPropToSlot,
+ searchSlotInProps,
+}
\ No newline at end of file
diff --git a/src/helpers/templates/slots/slots.js b/src/helpers/templates/slots/slots.js
new file mode 100644
index 00000000..0aea4b7d
--- /dev/null
+++ b/src/helpers/templates/slots/slots.js
@@ -0,0 +1,121 @@
+import slotRuleTypes from "../enums/slotRuleTypes";
+import validationTypes from "../enums/validationTypes";
+import compare from "../helpers/compareOperation";
+import errorFactory from "../helpers/errorFactory";
+import buildProps from "./layers/layer";
+import { addPropToSlot } from "./props";
+
+const mapSlotsWithProperties = (animationProps) => {
+ const slotProps = {}
+ animationProps.forEach(propData => {
+ if (propData.prop.sid) {
+ addPropToSlot(propData.prop.sid, propData.type, slotProps);
+ }
+ })
+ return slotProps;
+}
+
+const validateSlot = async (slots, slotValidation) => {
+ const templateError = errorFactory();
+ if (slotValidation.name) {
+ const matchingSlots = slots.filter(slot => {
+ if (slotValidation.type === 'regex') {
+ const slotRegex = new RegExp(slotValidation.name);
+ if (slotRegex.exec(slot.key)) {
+ return true;
+ }
+ } else if (slotValidation.name === slot.key) {
+ return true;
+ }
+ return false;
+ })
+ if (!matchingSlots.length) {
+ templateError.add(
+ validationTypes.SLOTS,
+ `Missing slot with name '${slotValidation.name}'`,
+ );
+ } else {
+ if (slotValidation.count) {
+ if (!compare(slotValidation.count.operation, matchingSlots.length, slotValidation.count.value)) {
+ templateError.add(
+ validationTypes.SLOTS,
+ `Slot '${slotValidation.name}' doesn't satisfy count ${slotValidation.count.operation} ${slotValidation.count.value}`,
+ );
+ }
+ }
+ if (slotValidation.property) {
+ matchingSlots.forEach(match => {
+ console.log('match', match);
+ if (match.mappedProperties.indexOf(slotValidation.property) === -1) {
+ templateError.add(
+ validationTypes.SLOTS,
+ `Slot '${slotValidation.name}' is not applied to the correct property '${slotValidation.property}'; it is applied to '${match.mappedProperties.join()}' instead`,
+ );
+ }
+ })
+ }
+ }
+ }
+ return templateError;
+}
+
+const validateEntries = async (entries, slots, animationProps) => {
+ const templateError = errorFactory();
+ if (entries) {
+ (await Promise.all(
+ entries.map(entryData => {
+ return validateSlot(slots, entryData, animationProps)
+ })
+ ))
+ .forEach(templateError.concat)
+ }
+ return templateError;
+
+}
+
+const validateRules = async(rules, animationProps) => {
+ const templateError = errorFactory();
+ if (rules) {
+ rules.forEach(rule => {
+ if (rule.type === slotRuleTypes.ASSIGNED) {
+ if (rule.properties && rule.properties.length) {
+ animationProps.forEach(animationProp => {
+ if (rule.properties.includes(animationProp.type) && !animationProp.prop.sid) {
+ templateError.add(validationTypes.SLOTS, `Property in path '${animationProp.path}' is not assigned to a slot`);
+ }
+ })
+ }
+ }
+ })
+ }
+ return templateError;
+}
+
+const validateSlots = async (data, slotsValidation) => {
+ const templateError = errorFactory();
+ if (slotsValidation) {
+ const animationProps = buildProps(data);
+ if (!data.slots) {
+ templateError.add(validationTypes.SLOTS, 'No slots on the json file');
+ } else {
+ const slotPropertyMap = mapSlotsWithProperties(animationProps);
+ const slots = Object.keys(data.slots).map(slotKey => {
+ return {
+ ...data.slots[slotKey],
+ key: slotKey,
+ mappedProperties: slotPropertyMap[slotKey],
+ }
+ });
+ (await Promise.all(
+ [
+ validateEntries(slotsValidation.entries, slots, animationProps),
+ validateRules(slotsValidation.rules, animationProps),
+ ]
+ ))
+ .forEach(templateError.concat)
+ }
+ }
+ return templateError;
+}
+
+export default validateSlots;
diff --git a/src/helpers/templates/template.js b/src/helpers/templates/template.js
new file mode 100644
index 00000000..80d5d428
--- /dev/null
+++ b/src/helpers/templates/template.js
@@ -0,0 +1,1991 @@
+
+import validationTypes from "./enums/validationTypes";
+import compare from "./helpers/compareOperation";
+import errorFactory from "./helpers/errorFactory";
+import validateSlots from "./slots/slots";
+
+const validateAssets = (animationData, assetsValidation) => {
+ const templateError = errorFactory();
+ if (assetsValidation) {
+ const assets = animationData.assets
+ ? animationData.assets.filter(asset => !asset.layers)
+ : []
+ if (assetsValidation.count) {
+ if (!compare(assetsValidation.count.operation, assets.length, assetsValidation.count.value)) {
+ templateError.add(
+ validationTypes.ASSETS,
+ `Total assets (${assets.length}) don't satisfy count ${assetsValidation.count.operation} ${assetsValidation.count.value}`,
+ );
+ }
+ }
+ }
+ return templateError;
+}
+
+const validate = async (data, parser) => {
+ try {
+ // console.log(JSON.stringify(data));
+ const templateError = errorFactory();
+ const validations = await Promise.all([
+ validateSlots(data, parser.slots),
+ validateAssets(data, parser.assets),
+ ])
+ validations.forEach(error => templateError.concat(error));
+ console.log(templateError.getErrors());
+ return templateError.getErrors();
+ } catch (error) {
+ console.log(error);
+ throw new Error('Unhandle Error');
+ }
+}
+export default validate;
+
+
+// const data = {
+// "v": "4.8.0",
+// "fr": 90,
+// "ip": 0,
+// "op": 720,
+// "w": 1024,
+// "h": 768,
+// "nm": "a_precomp_container_MASTER",
+// "ddd": 0,
+// "assets": [
+// {
+// "id": "image_0",
+// "w": 278,
+// "h": 278,
+// "u": "images/",
+// "p": "img_0.jpg",
+// "e": 0,
+// "sid": "_image_slot"
+// },
+// {
+// "id": "comp_0",
+// "nm": "a_precomp_container",
+// "fr": 90,
+// "pfr": 1,
+// "layers": [
+// {
+// "ddd": 0,
+// "ind": 1,
+// "ty": 0,
+// "nm": "a_shape",
+// "refId": "comp_1",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "s": true,
+// "x": {
+// "a": 0,
+// "k": 512,
+// "ix": 3
+// },
+// "y": {
+// "a": 0,
+// "k": 384,
+// "ix": 4
+// }
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 150,
+// 150,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "w": 300,
+// "h": 300,
+// "ip": 0,
+// "op": 1811.25,
+// "st": 0,
+// "bm": 0
+// },
+// {
+// "ddd": 0,
+// "ind": 2,
+// "ty": 0,
+// "nm": "a_image",
+// "refId": "comp_2",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 512,
+// 384,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 400,
+// 300,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "w": 800,
+// "h": 600,
+// "ip": 0,
+// "op": 1811.25,
+// "st": 0,
+// "bm": 0
+// }
+// ]
+// },
+// {
+// "id": "comp_1",
+// "nm": "a_shape",
+// "fr": 24,
+// "layers": [
+// {
+// "ddd": 0,
+// "ind": 1,
+// "ty": 1,
+// "nm": "Blue Solid 1",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 211.625,
+// 88,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 25,
+// 25,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "sw": 50,
+// "sh": 50,
+// "sc": "#0000ff",
+// "ip": 0,
+// "op": 1811.25,
+// "st": 0,
+// "bm": 0
+// },
+// {
+// "ddd": 0,
+// "ind": 2,
+// "ty": 1,
+// "nm": "Blue Solid 1",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 245.5,
+// 159,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 25,
+// 25,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "sw": 50,
+// "sh": 50,
+// "sc": "#0000ff",
+// "ip": 0,
+// "op": 1811.25,
+// "st": 0,
+// "bm": 0
+// },
+// {
+// "ddd": 0,
+// "ind": 3,
+// "ty": 1,
+// "nm": "Blue Solid 1",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "s": true,
+// "x": {
+// "sid": "Blue Solid 1 X Position",
+// "a": 0,
+// "k": 153.938,
+// "ix": 3
+// },
+// "y": {
+// "sid": "Blue Solid 1 Y Position",
+// "a": 0,
+// "k": 191.75,
+// "ix": 4
+// }
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 25,
+// 25,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "sw": 50,
+// "sh": 50,
+// "sc": "#0000ff",
+// "ip": 0,
+// "op": 1811.25,
+// "st": 0,
+// "bm": 0
+// },
+// {
+// "ddd": 0,
+// "ind": 4,
+// "ty": 4,
+// "nm": "Shape Layer 3",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "sid": "Opacity",
+// "a": 1,
+// "k": [
+// {
+// "i": {
+// "x": [
+// 0.833
+// ],
+// "y": [
+// 0.833
+// ]
+// },
+// "o": {
+// "x": [
+// 0.167
+// ],
+// "y": [
+// 0.167
+// ]
+// },
+// "t": 0,
+// "s": [
+// -76
+// ]
+// },
+// {
+// "t": 67.5,
+// "s": [
+// 0
+// ]
+// }
+// ],
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 150,
+// 150,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 0,
+// 0,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "sid": "Scale1",
+// "a": 1,
+// "k": [
+// {
+// "i": {
+// "x": [
+// 0.833,
+// 0.833,
+// 0.833
+// ],
+// "y": [
+// 0.833,
+// 0.833,
+// 0.833
+// ]
+// },
+// "o": {
+// "x": [
+// 0.167,
+// 0.167,
+// 0.167
+// ],
+// "y": [
+// 0.167,
+// 0.167,
+// 0.167
+// ]
+// },
+// "t": 0,
+// "s": [
+// 100,
+// 100,
+// 100
+// ]
+// },
+// {
+// "t": 48.75,
+// "s": [
+// 100,
+// 100,
+// 100
+// ]
+// }
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "shapes": [
+// {
+// "ind": 0,
+// "ty": "sh",
+// "ix": 1,
+// "ks": {
+// "a": 0,
+// "k": {
+// "i": [
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ]
+// ],
+// "o": [
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ]
+// ],
+// "v": [
+// [
+// 50,
+// -50
+// ],
+// [
+// 50,
+// 50
+// ],
+// [
+// -50,
+// 50
+// ],
+// [
+// -50,
+// -50
+// ]
+// ],
+// "c": true
+// },
+// "ix": 2
+// },
+// "nm": "Path 1",
+// "mn": "ADBE Vector Shape - Group",
+// "hd": false
+// },
+// {
+// "ty": "rc",
+// "d": 1,
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100
+// ],
+// "ix": 2
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 0,
+// 0
+// ],
+// "ix": 3
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 4
+// },
+// "nm": "Rectangle Path 1",
+// "mn": "ADBE Vector Shape - Rect",
+// "hd": false
+// },
+// {
+// "d": 1,
+// "ty": "el",
+// "s": {
+// "a": 1,
+// "k": [
+// {
+// "i": {
+// "x": [
+// 0.833,
+// 0.833
+// ],
+// "y": [
+// 0.833,
+// 0.833
+// ]
+// },
+// "o": {
+// "x": [
+// 0.167,
+// 0.167
+// ],
+// "y": [
+// 0.167,
+// 0.167
+// ]
+// },
+// "t": 0,
+// "s": [
+// 100,
+// 100
+// ]
+// },
+// {
+// "t": 33.75,
+// "s": [
+// 148,
+// 148
+// ]
+// }
+// ],
+// "ix": 2
+// },
+// "p": {
+// "a": 1,
+// "k": [
+// {
+// "i": {
+// "x": 0.833,
+// "y": 0.833
+// },
+// "o": {
+// "x": 0.167,
+// "y": 0.167
+// },
+// "t": 0,
+// "s": [
+// 0,
+// 0
+// ],
+// "to": [
+// 6.167,
+// 0
+// ],
+// "ti": [
+// -6.167,
+// 0
+// ]
+// },
+// {
+// "t": 33.75,
+// "s": [
+// 37,
+// 0
+// ]
+// }
+// ],
+// "ix": 3
+// },
+// "nm": "Ellipse Path 1",
+// "mn": "ADBE Vector Shape - Ellipse",
+// "hd": false
+// },
+// {
+// "ty": "sr",
+// "sy": 1,
+// "d": 1,
+// "pt": {
+// "a": 1,
+// "k": [
+// {
+// "i": {
+// "x": [
+// 0.833
+// ],
+// "y": [
+// 0.833
+// ]
+// },
+// "o": {
+// "x": [
+// 0.167
+// ],
+// "y": [
+// 0.167
+// ]
+// },
+// "t": 0,
+// "s": [
+// 14
+// ]
+// },
+// {
+// "t": 33.75,
+// "s": [
+// 5
+// ]
+// }
+// ],
+// "ix": 3
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 0,
+// 0
+// ],
+// "ix": 4
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 5
+// },
+// "ir": {
+// "a": 0,
+// "k": 50,
+// "ix": 6
+// },
+// "is": {
+// "a": 0,
+// "k": 0,
+// "ix": 8
+// },
+// "or": {
+// "a": 0,
+// "k": 100,
+// "ix": 7
+// },
+// "os": {
+// "a": 0,
+// "k": 0,
+// "ix": 9
+// },
+// "ix": 5,
+// "nm": "Polystar Path 1",
+// "mn": "ADBE Vector Shape - Star",
+// "hd": false
+// },
+// {
+// "ty": "gr",
+// "it": [
+// {
+// "ty": "tr",
+// "p": {
+// "a": 0,
+// "k": [
+// 0,
+// 0
+// ],
+// "ix": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 0,
+// 0
+// ],
+// "ix": 1
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100
+// ],
+// "ix": 3
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 6
+// },
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 7
+// },
+// "sk": {
+// "a": 0,
+// "k": 0,
+// "ix": 4
+// },
+// "sa": {
+// "a": 0,
+// "k": 0,
+// "ix": 5
+// },
+// "nm": "Transform"
+// }
+// ],
+// "nm": "Group 1",
+// "np": 0,
+// "cix": 2,
+// "bm": 0,
+// "ix": 6,
+// "mn": "ADBE Vector Group",
+// "hd": false
+// },
+// {
+// "ty": "op",
+// "nm": "Offset Paths 1",
+// "a": {
+// "a": 0,
+// "k": 10,
+// "ix": 1
+// },
+// "lj": 1,
+// "ml": {
+// "a": 0,
+// "k": 4,
+// "ix": 3
+// },
+// "ix": 7,
+// "mn": "ADBE Vector Filter - Offset",
+// "hd": false
+// },
+// {
+// "ty": "pb",
+// "nm": "Pucker & Bloat 1",
+// "a": {
+// "a": 0,
+// "k": 10,
+// "ix": 1
+// },
+// "ix": 8,
+// "mn": "ADBE Vector Filter - PB",
+// "hd": false
+// },
+// {
+// "ty": "rd",
+// "nm": "Round Corners 1",
+// "r": {
+// "a": 0,
+// "k": 10,
+// "ix": 1
+// },
+// "ix": 9,
+// "mn": "ADBE Vector Filter - RC",
+// "hd": false
+// },
+// {
+// "ty": "tm",
+// "s": {
+// "a": 0,
+// "k": 0,
+// "ix": 1
+// },
+// "e": {
+// "a": 0,
+// "k": 100,
+// "ix": 2
+// },
+// "o": {
+// "a": 0,
+// "k": 0,
+// "ix": 3
+// },
+// "m": 1,
+// "ix": 10,
+// "nm": "Trim Paths 1",
+// "mn": "ADBE Vector Filter - Trim",
+// "hd": false
+// },
+// {
+// "ty": "tw",
+// "a": {
+// "a": 0,
+// "k": 10,
+// "ix": 1
+// },
+// "c": {
+// "a": 0,
+// "k": [
+// 0,
+// 0
+// ],
+// "ix": 2
+// },
+// "ix": 11,
+// "nm": "Twist 1",
+// "mn": "ADBE Vector Filter - Twist",
+// "hd": false
+// },
+// {
+// "ty": "gs",
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 9
+// },
+// "w": {
+// "a": 0,
+// "k": 2,
+// "ix": 10
+// },
+// "g": {
+// "p": 3,
+// "k": {
+// "a": 0,
+// "k": [
+// 0,
+// 1,
+// 0,
+// 0,
+// 0.5,
+// 0.5,
+// 0.5,
+// 0,
+// 1,
+// 0,
+// 1,
+// 0,
+// 0,
+// 1,
+// 0.5,
+// 0.5,
+// 1,
+// 0
+// ],
+// "ix": 8
+// }
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 0,
+// 0
+// ],
+// "ix": 4
+// },
+// "e": {
+// "a": 0,
+// "k": [
+// 100,
+// 0
+// ],
+// "ix": 5
+// },
+// "t": 1,
+// "lc": 1,
+// "lj": 1,
+// "ml": 4,
+// "ml2": {
+// "a": 0,
+// "k": 4,
+// "ix": 13
+// },
+// "bm": 0,
+// "nm": "Gradient Stroke 1",
+// "mn": "ADBE Vector Graphic - G-Stroke",
+// "hd": false
+// },
+// {
+// "ty": "gf",
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 10
+// },
+// "r": 1,
+// "bm": 0,
+// "g": {
+// "p": 3,
+// "k": {
+// "a": 0,
+// "k": [
+// 0,
+// 1,
+// 0,
+// 0,
+// 0.5,
+// 0.5,
+// 0.5,
+// 0,
+// 1,
+// 0,
+// 1,
+// 0,
+// 0,
+// 1,
+// 0.5,
+// 0.5,
+// 1,
+// 0
+// ],
+// "ix": 9
+// }
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 0,
+// 0
+// ],
+// "ix": 5
+// },
+// "e": {
+// "a": 0,
+// "k": [
+// 100,
+// 0
+// ],
+// "ix": 6
+// },
+// "t": 1,
+// "nm": "Gradient Fill 2",
+// "mn": "ADBE Vector Graphic - G-Fill",
+// "hd": false
+// },
+// {
+// "ty": "st",
+// "c": {
+// "a": 0,
+// "k": [
+// 1,
+// 1,
+// 1,
+// 1
+// ],
+// "ix": 3
+// },
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 4
+// },
+// "w": {
+// "a": 0,
+// "k": 2,
+// "ix": 5
+// },
+// "lc": 1,
+// "lj": 1,
+// "ml": 4,
+// "bm": 0,
+// "nm": "Stroke 1",
+// "mn": "ADBE Vector Graphic - Stroke",
+// "hd": false
+// },
+// {
+// "ty": "gf",
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 10
+// },
+// "r": 1,
+// "bm": 0,
+// "g": {
+// "p": 3,
+// "k": {
+// "a": 0,
+// "k": [
+// 0,
+// 1,
+// 0,
+// 0,
+// 0.5,
+// 0.5,
+// 0.5,
+// 0,
+// 1,
+// 0,
+// 1,
+// 0,
+// 0,
+// 1,
+// 0.5,
+// 0.5,
+// 1,
+// 0
+// ],
+// "ix": 9
+// }
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 0,
+// 0
+// ],
+// "ix": 5
+// },
+// "e": {
+// "a": 0,
+// "k": [
+// 100,
+// 0
+// ],
+// "ix": 6
+// },
+// "t": 1,
+// "nm": "Gradient Fill 1",
+// "mn": "ADBE Vector Graphic - G-Fill",
+// "hd": false
+// },
+// {
+// "ty": "fl",
+// "c": {
+// "a": 0,
+// "k": [
+// 0.484705865383,
+// 1,
+// 1,
+// 1
+// ],
+// "ix": 4
+// },
+// "o": {
+// "a": 0,
+// "k": 75,
+// "ix": 5
+// },
+// "r": 1,
+// "bm": 0,
+// "nm": "Fill 1",
+// "mn": "ADBE Vector Graphic - Fill",
+// "hd": false
+// },
+// {
+// "ty": "rp",
+// "c": {
+// "a": 0,
+// "k": 3,
+// "ix": 1
+// },
+// "o": {
+// "a": 0,
+// "k": 0,
+// "ix": 2
+// },
+// "m": 1,
+// "ix": 17,
+// "tr": {
+// "ty": "tr",
+// "p": {
+// "a": 0,
+// "k": [
+// 100,
+// 0
+// ],
+// "ix": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 0,
+// 0
+// ],
+// "ix": 1
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100
+// ],
+// "ix": 3
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 4
+// },
+// "so": {
+// "a": 0,
+// "k": 100,
+// "ix": 5
+// },
+// "eo": {
+// "a": 0,
+// "k": 100,
+// "ix": 6
+// },
+// "nm": "Transform"
+// },
+// "nm": "Repeater 1",
+// "mn": "ADBE Vector Filter - Repeater",
+// "hd": false
+// }
+// ],
+// "ip": 0,
+// "op": 1811.25,
+// "st": 0,
+// "ct": 1,
+// "bm": 0
+// },
+// {
+// "ddd": 0,
+// "ind": 5,
+// "ty": 4,
+// "nm": "Shape Layer 2",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 150,
+// 150,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 0,
+// 0,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "shapes": [
+// {
+// "ind": 1,
+// "ty": "sh",
+// "ix": 2,
+// "ks": {
+// "a": 0,
+// "k": {
+// "i": [
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ]
+// ],
+// "o": [
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ],
+// [
+// 0,
+// 0
+// ]
+// ],
+// "v": [
+// [
+// -35.25,
+// 35.25
+// ],
+// [
+// 50,
+// 50
+// ],
+// [
+// -50,
+// 50
+// ],
+// [
+// -50,
+// -50
+// ]
+// ],
+// "c": true
+// },
+// "ix": 2
+// },
+// "nm": "Path 2",
+// "mn": "ADBE Vector Shape - Group",
+// "hd": false
+// },
+// {
+// "ty": "zz",
+// "nm": "Zig Zag 1",
+// "s": {
+// "a": 0,
+// "k": 19,
+// "ix": 1
+// },
+// "r": {
+// "a": 0,
+// "k": 1,
+// "ix": 2
+// },
+// "pt": {
+// "a": 0,
+// "k": 1,
+// "ix": 3
+// },
+// "ix": 3,
+// "mn": "ADBE Vector Filter - Zigzag",
+// "hd": false
+// },
+// {
+// "ty": "fl",
+// "c": {
+// "a": 0,
+// "k": [
+// 0.92549020052,
+// 0.838431358337,
+// 0.29411765933,
+// 1
+// ],
+// "ix": 4
+// },
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 5
+// },
+// "r": 1,
+// "bm": 0,
+// "nm": "Fill 1",
+// "mn": "ADBE Vector Graphic - Fill",
+// "hd": false
+// }
+// ],
+// "ip": 0,
+// "op": 1811.25,
+// "st": 0,
+// "ct": 1,
+// "bm": 0
+// },
+// {
+// "ddd": 0,
+// "ind": 6,
+// "ty": 4,
+// "nm": "Shape Layer 1",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 150,
+// 150,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 0,
+// 0,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "shapes": [
+// {
+// "ty": "rc",
+// "d": 1,
+// "s": {
+// "a": 0,
+// "k": [
+// 200,
+// 200
+// ],
+// "ix": 2
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 0,
+// 0
+// ],
+// "ix": 3
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 4
+// },
+// "nm": "Rectangle Path 1",
+// "mn": "ADBE Vector Shape - Rect",
+// "hd": false
+// },
+// {
+// "ty": "fl",
+// "c": {
+// "a": 0,
+// "k": [
+// 1,
+// 0,
+// 1,
+// 1
+// ],
+// "ix": 4
+// },
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 5
+// },
+// "r": 1,
+// "bm": 0,
+// "nm": "Fill 1",
+// "mn": "ADBE Vector Graphic - Fill",
+// "hd": false
+// }
+// ],
+// "ip": 0,
+// "op": 1811.25,
+// "st": 0,
+// "ct": 1,
+// "bm": 0
+// }
+// ]
+// },
+// {
+// "id": "comp_2",
+// "nm": "a_image",
+// "fr": 24,
+// "layers": [
+// {
+// "ddd": 0,
+// "ind": 1,
+// "ty": 2,
+// "nm": "profile.jpg",
+// "cl": "jpg",
+// "refId": "image_0",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 400,
+// 300,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 139,
+// 139,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "ip": 0,
+// "op": 1811.25,
+// "st": 0,
+// "bm": 0
+// },
+// {
+// "ddd": 0,
+// "ind": 2,
+// "ty": 1,
+// "nm": "Deep Red Solid 1",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 400,
+// 300,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 50,
+// 25,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "sw": 100,
+// "sh": 50,
+// "sc": "#990000",
+// "ip": 0,
+// "op": 1811.25,
+// "st": 0,
+// "bm": 0
+// },
+// {
+// "ddd": 0,
+// "ind": 3,
+// "ty": 0,
+// "nm": "precomp",
+// "refId": "comp_3",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 400,
+// 300,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 512,
+// 384,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "w": 1024,
+// "h": 768,
+// "ip": 0,
+// "op": 720,
+// "st": 0,
+// "bm": 0
+// }
+// ]
+// },
+// {
+// "id": "comp_3",
+// "nm": "precomp",
+// "fr": 30,
+// "layers": [
+// {
+// "ddd": 0,
+// "ind": 1,
+// "ty": 1,
+// "nm": "Deep Green Solid 1",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 512,
+// 384,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 32.5,
+// 50,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "sw": 65,
+// "sh": 100,
+// "sc": "#049900",
+// "ip": 0,
+// "op": 720,
+// "st": 0,
+// "bm": 0
+// }
+// ]
+// }
+// ],
+// "layers": [
+// {
+// "ddd": 0,
+// "ind": 1,
+// "ty": 0,
+// "nm": "a_precomp_container",
+// "refId": "comp_0",
+// "sr": 1,
+// "ks": {
+// "o": {
+// "a": 0,
+// "k": 100,
+// "ix": 11
+// },
+// "r": {
+// "a": 0,
+// "k": 0,
+// "ix": 10
+// },
+// "p": {
+// "a": 0,
+// "k": [
+// 512,
+// 384,
+// 0
+// ],
+// "ix": 2,
+// "l": 2
+// },
+// "a": {
+// "a": 0,
+// "k": [
+// 512,
+// 384,
+// 0
+// ],
+// "ix": 1,
+// "l": 2
+// },
+// "s": {
+// "a": 0,
+// "k": [
+// 100,
+// 100,
+// 100
+// ],
+// "ix": 6,
+// "l": 2
+// }
+// },
+// "ao": 0,
+// "w": 1024,
+// "h": 768,
+// "ip": 0,
+// "op": 720,
+// "st": 0,
+// "bm": 0
+// }
+// ],
+// "markers": [
+
+// ],
+// "slots": {
+// "Scale1": {
+// "p": {
+// "a": 1,
+// "k": [
+// {
+// "i": {
+// "x": [
+// 0.833,
+// 0.833,
+// 0.833
+// ],
+// "y": [
+// 0.833,
+// 0.833,
+// 0.833
+// ]
+// },
+// "o": {
+// "x": [
+// 0.167,
+// 0.167,
+// 0.167
+// ],
+// "y": [
+// 0.167,
+// 0.167,
+// 0.167
+// ]
+// },
+// "t": 0,
+// "s": [
+// 100,
+// 100,
+// 100
+// ]
+// },
+// {
+// "i": {
+// "x": [
+// 0.833,
+// 0.833,
+// 0.833
+// ],
+// "y": [
+// 0.833,
+// 0.833,
+// 0.833
+// ]
+// },
+// "o": {
+// "x": [
+// 0.167,
+// 0.167,
+// 0.167
+// ],
+// "y": [
+// 0.167,
+// 0.167,
+// 0.167
+// ]
+// },
+// "t": 48.75,
+// "s": [
+// 100,
+// 100,
+// 100
+// ]
+// },
+// {
+// "t": 118,
+// "s": [
+// 100,
+// 100,
+// 100
+// ]
+// }
+// ],
+// "ix": 1
+// },
+// "t": 3
+// },
+// "Opacity": {
+// "p": {
+// "a": 1,
+// "k": [
+// {
+// "i": {
+// "x": [
+// 0.833
+// ],
+// "y": [
+// 0.833
+// ]
+// },
+// "o": {
+// "x": [
+// 0.167
+// ],
+// "y": [
+// 0.167
+// ]
+// },
+// "t": 0,
+// "s": [
+// -76
+// ]
+// },
+// {
+// "t": 67.5,
+// "s": [
+// 0
+// ]
+// }
+// ],
+// "ix": 2
+// },
+// "t": 4
+// },
+// "Blue Solid 1 X Position": {
+// "p": {
+// "a": 0,
+// "k": 153.938,
+// "ix": 3
+// },
+// "t": 4
+// },
+// "Blue Solid 1 Y Position": {
+// "p": {
+// "a": 0,
+// "k": 191.75,
+// "ix": 4
+// },
+// "t": 4
+// },
+// "_image_slot": {
+// "t": 50,
+// "p": {
+// "id": "image_0",
+// "w": 278,
+// "h": 278,
+// "u": "images/",
+// "p": "img_0.jpg",
+// "e": 0,
+// "fileId": "x1brnkfshx"
+// }
+// }
+// },
+// "props": {
+
+// }
+// }
+
+// const parser = {
+// "slots": {
+// "rules": [
+// {
+// "properties": ["fill color", "stroke color"],
+// "type": "assigned"
+// }
+// ],
+// "entries": [
+// {
+// "name": "Blue Solid 1 X Position",
+// "type": "regex",
+// "count": {
+// "operation": ">=",
+// "value": 2
+// },
+// "property": "position-x"
+// },
+// {
+// "name": "Scale",
+// "type": "regex",
+// "count": {
+// "operation": ">",
+// "value": 1
+// },
+// "property": "scale"
+// },
+// {
+// "name": "Opacity",
+// "type": "regex",
+// "count": {
+// "operation": ">=",
+// "value": 1
+// },
+// "property": "opacity"
+// }
+// ]
+// },
+ // "layers": {
+ // "count": {
+ // "operation": "===",
+ // "value": 1
+ // },
+ // "entries": [
+ // {
+ // "type": 0,
+ // "count": {
+ // "operation": "===",
+ // "value": 3
+ // }
+ // }
+ // ]
+ // },
+ // "assets": {
+ // "count": {
+ // "operation": ">",
+ // "value": 3
+ // }
+ // }
+// }
+
+// validate(data, parser);
\ No newline at end of file
diff --git a/src/index.js b/src/index.js
index b79978e5..f9b78e74 100644
--- a/src/index.js
+++ b/src/index.js
@@ -2,7 +2,6 @@ import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import './index.css';
-
ReactDOM.render(
,
document.getElementById('root')
diff --git a/src/lottie.js b/src/lottie.js
index b242f0d9..e17af3fb 100644
--- a/src/lottie.js
+++ b/src/lottie.js
@@ -1,14373 +1,19924 @@
-/* eslint-disable */var define = define || null;(typeof navigator !== "undefined") && (function(root, factory) {
- if (typeof define === "function" && define.amd) {
- define(function() {
- return factory(root);
- });
- } else if (typeof module === "object" && module.exports) {
- module.exports = factory(root);
- } else {
- root.lottie = factory(root);
- root.bodymovin = root.lottie;
- }
-}((window || {}), function(window) {
- "use strict";
- var svgNS = "http://www.w3.org/2000/svg";
-
-var locationHref = '';
-
-var initialDefaultFrame = -999999;
-
-var subframeEnabled = true;
-var expressionsPlugin;
-var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
-var cachedColors = {};
-var bm_rounder = Math.round;
-var bm_rnd;
-var bm_pow = Math.pow;
-var bm_sqrt = Math.sqrt;
-var bm_abs = Math.abs;
-var bm_floor = Math.floor;
-var bm_max = Math.max;
-var bm_min = Math.min;
-var blitter = 10;
-
-var BMMath = {};
-(function(){
- var propertyNames = ["abs", "acos", "acosh", "asin", "asinh", "atan", "atanh", "atan2", "ceil", "cbrt", "expm1", "clz32", "cos", "cosh", "exp", "floor", "fround", "hypot", "imul", "log", "log1p", "log2", "log10", "max", "min", "pow", "random", "round", "sign", "sin", "sinh", "sqrt", "tan", "tanh", "trunc", "E", "LN10", "LN2", "LOG10E", "LOG2E", "PI", "SQRT1_2", "SQRT2"];
- var i, len = propertyNames.length;
- for(i=0;i
1) {
- hsv[1] = 1;
- }
- else if (hsv[1] <= 0) {
- hsv[1] = 0;
- }
- return HSVtoRGB(hsv[0],hsv[1],hsv[2]);
-}
+ function extendPrototype(sources, destination) {
+ var i;
+ var len = sources.length;
+ var sourcePrototype;
-function addBrightnessToRGB(color,offset){
- var hsv = RGBtoHSV(color[0]*255,color[1]*255,color[2]*255);
- hsv[2] += offset;
- if (hsv[2] > 1) {
- hsv[2] = 1;
- }
- else if (hsv[2] < 0) {
- hsv[2] = 0;
- }
- return HSVtoRGB(hsv[0],hsv[1],hsv[2]);
-}
+ for (i = 0; i < len; i += 1) {
+ sourcePrototype = sources[i].prototype;
-function addHueToRGB(color,offset) {
- var hsv = RGBtoHSV(color[0]*255,color[1]*255,color[2]*255);
- hsv[0] += offset/360;
- if (hsv[0] > 1) {
- hsv[0] -= 1;
- }
- else if (hsv[0] < 0) {
- hsv[0] += 1;
+ for (var attr in sourcePrototype) {
+ if (Object.prototype.hasOwnProperty.call(sourcePrototype, attr)) destination.prototype[attr] = sourcePrototype[attr];
+ }
}
- return HSVtoRGB(hsv[0],hsv[1],hsv[2]);
-}
+ }
-var rgbToHex = (function(){
- var colorMap = [];
- var i;
- var hex;
- for(i=0;i<256;i+=1){
- hex = i.toString(16);
- colorMap[i] = hex.length == 1 ? '0' + hex : hex;
- }
+ function getDescriptor(object, prop) {
+ return Object.getOwnPropertyDescriptor(object, prop);
+ }
- return function(r, g, b) {
- if(r<0){
- r = 0;
- }
- if(g<0){
- g = 0;
- }
- if(b<0){
- b = 0;
- }
- return '#' + colorMap[r] + colorMap[g] + colorMap[b];
- };
-}());
-function BaseEvent(){}
-BaseEvent.prototype = {
- triggerEvent: function (eventName, args) {
- if (this._cbs[eventName]) {
- var len = this._cbs[eventName].length;
- for (var i = 0; i < len; i++){
- this._cbs[eventName][i](args);
- }
- }
- },
- addEventListener: function (eventName, callback) {
- if (!this._cbs[eventName]){
- this._cbs[eventName] = [];
- }
- this._cbs[eventName].push(callback);
-
- return function() {
- this.removeEventListener(eventName, callback);
- }.bind(this);
- },
- removeEventListener: function (eventName,callback){
- if (!callback){
- this._cbs[eventName] = null;
- }else if(this._cbs[eventName]){
- var i = 0, len = this._cbs[eventName].length;
- while(i 0) || (val > -0.000001 && val < 0)) {
- return _rnd(val * v) / v;
- }
- return val;
+ return Math.abs(val);
+ };
+
+ var defaultCurveSegments = 150;
+ var degToRads = Math.PI / 180;
+ var roundCorner = 0.5519;
+
+ function roundValues(flag) {
+ _shouldRoundValues = !!flag;
+ }
+
+ function bmRnd(value) {
+ if (_shouldRoundValues) {
+ return Math.round(value);
}
- function to2dCSS() {
- //Doesn't make much sense to add this optimization. If it is an identity matrix, it's very likely this will get called only once since it won't be keyframed.
- /*if(this.isIdentity()) {
- return '';
- }*/
- var props = this.props;
- var _a = roundMatrixProperty(props[0]);
- var _b = roundMatrixProperty(props[1]);
- var _c = roundMatrixProperty(props[4]);
- var _d = roundMatrixProperty(props[5]);
- var _e = roundMatrixProperty(props[12]);
- var _f = roundMatrixProperty(props[13]);
- return "matrix(" + _a + ',' + _b + ',' + _c + ',' + _d + ',' + _e + ',' + _f + ")";
- }
-
- return function(){
- this.reset = reset;
- this.rotate = rotate;
- this.rotateX = rotateX;
- this.rotateY = rotateY;
- this.rotateZ = rotateZ;
- this.skew = skew;
- this.skewFromAxis = skewFromAxis;
- this.shear = shear;
- this.scale = scale;
- this.setTransform = setTransform;
- this.translate = translate;
- this.transform = transform;
- this.applyToPoint = applyToPoint;
- this.applyToX = applyToX;
- this.applyToY = applyToY;
- this.applyToZ = applyToZ;
- this.applyToPointArray = applyToPointArray;
- this.applyToTriplePoints = applyToTriplePoints;
- this.applyToPointStringified = applyToPointStringified;
- this.toCSS = toCSS;
- this.to2dCSS = to2dCSS;
- this.clone = clone;
- this.cloneFromProps = cloneFromProps;
- this.equals = equals;
- this.inversePoints = inversePoints;
- this.inversePoint = inversePoint;
- this._t = this.transform;
- this.isIdentity = isIdentity;
- this._identity = true;
- this._identityCalculated = false;
+ return value;
+ }
- this.props = createTypedArray('float32', 16);
- this.reset();
- };
-}());
-
-/*
- Copyright 2014 David Bau.
-
- Permission is hereby granted, free of charge, to any person obtaining
- a copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
- */
-
-(function (pool, math) {
-//
-// The following constants are related to IEEE 754 limits.
-//
- var global = this,
- width = 256, // each RC4 output is 0 <= x < 256
- chunks = 6, // at least six RC4 outputs for each double
- digits = 52, // there are 52 significant digits in a double
- rngname = 'random', // rngname: name for Math.random and Math.seedrandom
- startdenom = math.pow(width, chunks),
- significance = math.pow(2, digits),
- overflow = significance * 2,
- mask = width - 1,
- nodecrypto; // node.js crypto module, initialized at the bottom.
+ function styleDiv(element) {
+ element.style.position = 'absolute';
+ element.style.top = 0;
+ element.style.left = 0;
+ element.style.display = 'block';
+ element.style.transformOrigin = '0 0';
+ element.style.webkitTransformOrigin = '0 0';
+ element.style.backfaceVisibility = 'visible';
+ element.style.webkitBackfaceVisibility = 'visible';
+ element.style.transformStyle = 'preserve-3d';
+ element.style.webkitTransformStyle = 'preserve-3d';
+ element.style.mozTransformStyle = 'preserve-3d';
+ }
-//
-// seedrandom()
-// This is the seedrandom function described above.
-//
- function seedrandom(seed, options, callback) {
- var key = [];
- options = (options === true) ? { entropy: true } : (options || {});
-
- // Flatten the seed string or build one from local entropy if needed.
- var shortseed = mixkey(flatten(
- options.entropy ? [seed, tostring(pool)] :
- (seed === null) ? autoseed() : seed, 3), key);
-
- // Use the seed to initialize an ARC4 generator.
- var arc4 = new ARC4(key);
-
- // This function returns a random double in [0, 1) that contains
- // randomness in every bit of the mantissa of the IEEE 754 value.
- var prng = function() {
- var n = arc4.g(chunks), // Start with a numerator n < 2 ^ 48
- d = startdenom, // and denominator d = 2 ^ 48.
- x = 0; // and no 'extra last byte'.
- while (n < significance) { // Fill up all significant digits by
- n = (n + x) * width; // shifting numerator and
- d *= width; // denominator and generating a
- x = arc4.g(1); // new least-significant-byte.
- }
- while (n >= overflow) { // To avoid rounding up, before adding
- n /= 2; // last byte, shift everything
- d /= 2; // right using integer math until
- x >>>= 1; // we have exactly the desired bits.
- }
- return (n + x) / d; // Form the number within [0, 1).
- };
+ function BMEnterFrameEvent(type, currentTime, totalTime, frameMultiplier) {
+ this.type = type;
+ this.currentTime = currentTime;
+ this.totalTime = totalTime;
+ this.direction = frameMultiplier < 0 ? -1 : 1;
+ }
- prng.int32 = function() { return arc4.g(4) | 0; };
- prng.quick = function() { return arc4.g(4) / 0x100000000; };
- prng.double = prng;
-
- // Mix the randomness into accumulated entropy.
- mixkey(tostring(arc4.S), pool);
-
- // Calling convention: what to return as a function of prng, seed, is_math.
- return (options.pass || callback ||
- function(prng, seed, is_math_call, state) {
- if (state) {
- // Load the arc4 state from the given state if it has an S array.
- if (state.S) { copy(state, arc4); }
- // Only provide the .state method if requested via options.state.
- prng.state = function() { return copy(arc4, {}); };
- }
+ function BMCompleteEvent(type, frameMultiplier) {
+ this.type = type;
+ this.direction = frameMultiplier < 0 ? -1 : 1;
+ }
- // If called as a method of Math (Math.seedrandom()), mutate
- // Math.random because that is how seedrandom.js has worked since v1.0.
- if (is_math_call) { math[rngname] = prng; return seed; }
-
- // Otherwise, it is a newer calling convention, so return the
- // prng directly.
- else return prng;
- })(
- prng,
- shortseed,
- 'global' in options ? options.global : (this == math),
- options.state);
- }
- math['seed' + rngname] = seedrandom;
-
-//
-// ARC4
-//
-// An ARC4 implementation. The constructor takes a key in the form of
-// an array of at most (width) integers that should be 0 <= x < (width).
-//
-// The g(count) method returns a pseudorandom integer that concatenates
-// the next (count) outputs from ARC4. Its return value is a number x
-// that is in the range 0 <= x < (width ^ count).
-//
- function ARC4(key) {
- var t, keylen = key.length,
- me = this, i = 0, j = me.i = me.j = 0, s = me.S = [];
+ function BMCompleteLoopEvent(type, totalLoops, currentLoop, frameMultiplier) {
+ this.type = type;
+ this.currentLoop = currentLoop;
+ this.totalLoops = totalLoops;
+ this.direction = frameMultiplier < 0 ? -1 : 1;
+ }
- // The empty key [] is treated as [0].
- if (!keylen) { key = [keylen++]; }
+ function BMSegmentStartEvent(type, firstFrame, totalFrames) {
+ this.type = type;
+ this.firstFrame = firstFrame;
+ this.totalFrames = totalFrames;
+ }
- // Set up S using the standard key scheduling algorithm.
- while (i < width) {
- s[i] = i++;
- }
- for (i = 0; i < width; i++) {
- s[i] = s[j = mask & (j + key[i % keylen] + (t = s[i]))];
- s[j] = t;
- }
+ function BMDestroyEvent(type, target) {
+ this.type = type;
+ this.target = target;
+ }
- // The "g" method returns the next (count) outputs as one number.
- me.g = function(count) {
- // Using instance members instead of closure state nearly doubles speed.
- var t, r = 0,
- i = me.i, j = me.j, s = me.S;
- while (count--) {
- t = s[i = mask & (i + 1)];
- r = r * width + s[mask & ((s[i] = s[j = mask & (j + t)]) + (s[j] = t))];
- }
- me.i = i; me.j = j;
- return r;
- // For robust unpredictability, the function call below automatically
- // discards an initial batch of values. This is called RC4-drop[256].
- // See http://google.com/search?q=rsa+fluhrer+response&btnI
- };
- }
+ function BMRenderFrameErrorEvent(nativeError, currentTime) {
+ this.type = 'renderFrameError';
+ this.nativeError = nativeError;
+ this.currentTime = currentTime;
+ }
-//
-// copy()
-// Copies internal state of ARC4 to or from a plain object.
-//
- function copy(f, t) {
- t.i = f.i;
- t.j = f.j;
- t.S = f.S.slice();
- return t;
- }
+ function BMConfigErrorEvent(nativeError) {
+ this.type = 'configError';
+ this.nativeError = nativeError;
+ }
-//
-// flatten()
-// Converts an object tree to nested arrays of strings.
-//
- function flatten(obj, depth) {
- var result = [], typ = (typeof obj), prop;
- if (depth && typ == 'object') {
- for (prop in obj) {
- try { result.push(flatten(obj[prop], depth - 1)); } catch (e) {}
- }
- }
- return (result.length ? result : typ == 'string' ? obj : obj + '\0');
- }
+ function BMAnimationConfigErrorEvent(type, nativeError) {
+ this.type = type;
+ this.nativeError = nativeError;
+ }
-//
-// mixkey()
-// Mixes a string seed into a key that is an array of integers, and
-// returns a shortened string seed that is equivalent to the result key.
-//
- function mixkey(seed, key) {
- var stringseed = seed + '', smear, j = 0;
- while (j < stringseed.length) {
- key[mask & j] =
- mask & ((smear ^= key[mask & j] * 19) + stringseed.charCodeAt(j++));
- }
- return tostring(key);
- }
+ var createElementID = function () {
+ var _count = 0;
+ return function createID() {
+ _count += 1;
+ return idPrefix$1 + '__lottie_element_' + _count;
+ };
+ }();
-//
-// autoseed()
-// Returns an object for autoseeding, using window.crypto and Node crypto
-// module if available.
-//
- function autoseed() {
- try {
- if (nodecrypto) { return tostring(nodecrypto.randomBytes(width)); }
- var out = new Uint8Array(width);
- (global.crypto || global.msCrypto).getRandomValues(out);
- return tostring(out);
- } catch (e) {
- var browser = global.navigator,
- plugins = browser && browser.plugins;
- return [+new Date(), global, plugins, global.screen, tostring(pool)];
- }
- }
+ function HSVtoRGB(h, s, v) {
+ var r;
+ var g;
+ var b;
+ var i;
+ var f;
+ var p;
+ var q;
+ var t;
+ i = Math.floor(h * 6);
+ f = h * 6 - i;
+ p = v * (1 - s);
+ q = v * (1 - f * s);
+ t = v * (1 - (1 - f) * s);
-//
-// tostring()
-// Converts an array of charcodes to a string
-//
- function tostring(a) {
- return String.fromCharCode.apply(0, a);
- }
-
-//
-// When seedrandom.js is loaded, we immediately mix a few bits
-// from the built-in RNG into the entropy pool. Because we do
-// not want to interfere with deterministic PRNG state later,
-// seedrandom will not call math.random on its own again after
-// initialization.
-//
- mixkey(math.random(), pool);
-
-//
-// Nodejs and AMD support: export the implementation as a module using
-// either convention.
-//
-
-// End anonymous scope, and pass initial values.
-})(
- [], // pool: entropy pool starts empty
- BMMath // math: package containing random, pow, and seedrandom
-);
-var BezierFactory = (function(){
- /**
- * BezierEasing - use bezier curve for transition easing function
- * by Gaëtan Renaudeau 2014 - 2015 – MIT License
- *
- * Credits: is based on Firefox's nsSMILKeySpline.cpp
- * Usage:
- * var spline = BezierEasing([ 0.25, 0.1, 0.25, 1.0 ])
- * spline.get(x) => returns the easing value | x must be in [0, 1] range
- *
- */
-
- var ob = {};
- ob.getBezierEasing = getBezierEasing;
- var beziers = {};
+ switch (i % 6) {
+ case 0:
+ r = v;
+ g = t;
+ b = p;
+ break;
+
+ case 1:
+ r = q;
+ g = v;
+ b = p;
+ break;
+
+ case 2:
+ r = p;
+ g = v;
+ b = t;
+ break;
+
+ case 3:
+ r = p;
+ g = q;
+ b = v;
+ break;
+
+ case 4:
+ r = t;
+ g = p;
+ b = v;
+ break;
+
+ case 5:
+ r = v;
+ g = p;
+ b = q;
+ break;
+
+ default:
+ break;
+ }
+
+ return [r, g, b];
+ }
- function getBezierEasing(a,b,c,d,nm){
- var str = nm || ('bez_' + a+'_'+b+'_'+c+'_'+d).replace(/\./g, 'p');
- if(beziers[str]){
- return beziers[str];
- }
- var bezEasing = new BezierEasing([a,b,c,d]);
- beziers[str] = bezEasing;
- return bezEasing;
- }
+ function RGBtoHSV(r, g, b) {
+ var max = Math.max(r, g, b);
+ var min = Math.min(r, g, b);
+ var d = max - min;
+ var h;
+ var s = max === 0 ? 0 : d / max;
+ var v = max / 255;
-// These values are established by empiricism with tests (tradeoff: performance VS precision)
- var NEWTON_ITERATIONS = 4;
- var NEWTON_MIN_SLOPE = 0.001;
- var SUBDIVISION_PRECISION = 0.0000001;
- var SUBDIVISION_MAX_ITERATIONS = 10;
+ switch (max) {
+ case min:
+ h = 0;
+ break;
- var kSplineTableSize = 11;
- var kSampleStepSize = 1.0 / (kSplineTableSize - 1.0);
+ case r:
+ h = g - b + d * (g < b ? 6 : 0);
+ h /= 6 * d;
+ break;
- var float32ArraySupported = typeof Float32Array === "function";
+ case g:
+ h = b - r + d * 2;
+ h /= 6 * d;
+ break;
- function A (aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; }
- function B (aA1, aA2) { return 3.0 * aA2 - 6.0 * aA1; }
- function C (aA1) { return 3.0 * aA1; }
+ case b:
+ h = r - g + d * 4;
+ h /= 6 * d;
+ break;
-// Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2.
- function calcBezier (aT, aA1, aA2) {
- return ((A(aA1, aA2)*aT + B(aA1, aA2))*aT + C(aA1))*aT;
+ default:
+ break;
}
-// Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2.
- function getSlope (aT, aA1, aA2) {
- return 3.0 * A(aA1, aA2)*aT*aT + 2.0 * B(aA1, aA2) * aT + C(aA1);
- }
+ return [h, s, v];
+ }
- function binarySubdivide (aX, aA, aB, mX1, mX2) {
- var currentX, currentT, i = 0;
- do {
- currentT = aA + (aB - aA) / 2.0;
- currentX = calcBezier(currentT, mX1, mX2) - aX;
- if (currentX > 0.0) {
- aB = currentT;
- } else {
- aA = currentT;
- }
- } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS);
- return currentT;
- }
+ function addSaturationToRGB(color, offset) {
+ var hsv = RGBtoHSV(color[0] * 255, color[1] * 255, color[2] * 255);
+ hsv[1] += offset;
- function newtonRaphsonIterate (aX, aGuessT, mX1, mX2) {
- for (var i = 0; i < NEWTON_ITERATIONS; ++i) {
- var currentSlope = getSlope(aGuessT, mX1, mX2);
- if (currentSlope === 0.0) return aGuessT;
- var currentX = calcBezier(aGuessT, mX1, mX2) - aX;
- aGuessT -= currentX / currentSlope;
- }
- return aGuessT;
+ if (hsv[1] > 1) {
+ hsv[1] = 1;
+ } else if (hsv[1] <= 0) {
+ hsv[1] = 0;
}
- /**
- * points is an array of [ mX1, mY1, mX2, mY2 ]
- */
- function BezierEasing (points) {
- this._p = points;
- this._mSampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize);
- this._precomputed = false;
+ return HSVtoRGB(hsv[0], hsv[1], hsv[2]);
+ }
+
+ function addBrightnessToRGB(color, offset) {
+ var hsv = RGBtoHSV(color[0] * 255, color[1] * 255, color[2] * 255);
+ hsv[2] += offset;
- this.get = this.get.bind(this);
+ if (hsv[2] > 1) {
+ hsv[2] = 1;
+ } else if (hsv[2] < 0) {
+ hsv[2] = 0;
}
- BezierEasing.prototype = {
+ return HSVtoRGB(hsv[0], hsv[1], hsv[2]);
+ }
- get: function (x) {
- var mX1 = this._p[0],
- mY1 = this._p[1],
- mX2 = this._p[2],
- mY2 = this._p[3];
- if (!this._precomputed) this._precompute();
- if (mX1 === mY1 && mX2 === mY2) return x; // linear
- // Because JavaScript number are imprecise, we should guarantee the extremes are right.
- if (x === 0) return 0;
- if (x === 1) return 1;
- return calcBezier(this._getTForX(x), mY1, mY2);
- },
+ function addHueToRGB(color, offset) {
+ var hsv = RGBtoHSV(color[0] * 255, color[1] * 255, color[2] * 255);
+ hsv[0] += offset / 360;
- // Private part
+ if (hsv[0] > 1) {
+ hsv[0] -= 1;
+ } else if (hsv[0] < 0) {
+ hsv[0] += 1;
+ }
- _precompute: function () {
- var mX1 = this._p[0],
- mY1 = this._p[1],
- mX2 = this._p[2],
- mY2 = this._p[3];
- this._precomputed = true;
- if (mX1 !== mY1 || mX2 !== mY2)
- this._calcSampleValues();
- },
+ return HSVtoRGB(hsv[0], hsv[1], hsv[2]);
+ }
- _calcSampleValues: function () {
- var mX1 = this._p[0],
- mX2 = this._p[2];
- for (var i = 0; i < kSplineTableSize; ++i) {
- this._mSampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2);
- }
- },
+ var rgbToHex = function () {
+ var colorMap = [];
+ var i;
+ var hex;
- /**
- * getTForX chose the fastest heuristic to determine the percentage value precisely from a given X projection.
- */
- _getTForX: function (aX) {
- var mX1 = this._p[0],
- mX2 = this._p[2],
- mSampleValues = this._mSampleValues;
+ for (i = 0; i < 256; i += 1) {
+ hex = i.toString(16);
+ colorMap[i] = hex.length === 1 ? '0' + hex : hex;
+ }
- var intervalStart = 0.0;
- var currentSample = 1;
- var lastSample = kSplineTableSize - 1;
+ return function (r, g, b) {
+ if (r < 0) {
+ r = 0;
+ }
- for (; currentSample !== lastSample && mSampleValues[currentSample] <= aX; ++currentSample) {
- intervalStart += kSampleStepSize;
- }
- --currentSample;
+ if (g < 0) {
+ g = 0;
+ }
- // Interpolate to provide an initial guess for t
- var dist = (aX - mSampleValues[currentSample]) / (mSampleValues[currentSample+1] - mSampleValues[currentSample]);
- var guessForT = intervalStart + dist * kSampleStepSize;
+ if (b < 0) {
+ b = 0;
+ }
- var initialSlope = getSlope(guessForT, mX1, mX2);
- if (initialSlope >= NEWTON_MIN_SLOPE) {
- return newtonRaphsonIterate(aX, guessForT, mX1, mX2);
- } else if (initialSlope === 0.0) {
- return guessForT;
- } else {
- return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize, mX1, mX2);
- }
- }
+ return '#' + colorMap[r] + colorMap[g] + colorMap[b];
};
+ }();
- return ob;
+ var setSubframeEnabled = function setSubframeEnabled(flag) {
+ subframeEnabled = !!flag;
+ };
-}());
-(function () {
- var lastTime = 0;
- var vendors = ['ms', 'moz', 'webkit', 'o'];
- for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
- window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];
- window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'CancelRequestAnimationFrame'];
- }
- if(!window.requestAnimationFrame)
- window.requestAnimationFrame = function (callback, element) {
- var currTime = new Date().getTime();
- var timeToCall = Math.max(0, 16 - (currTime - lastTime));
- var id = setTimeout(function () {
- callback(currTime + timeToCall);
- },
- timeToCall);
- lastTime = currTime + timeToCall;
- return id;
- };
- if(!window.cancelAnimationFrame)
- window.cancelAnimationFrame = function (id) {
- clearTimeout(id);
- };
-}());
+ var getSubframeEnabled = function getSubframeEnabled() {
+ return subframeEnabled;
+ };
-function extendPrototype(sources,destination){
- var i, len = sources.length, sourcePrototype;
- for (i = 0;i < len;i += 1) {
- sourcePrototype = sources[i].prototype;
- for (var attr in sourcePrototype) {
- if (sourcePrototype.hasOwnProperty(attr)) destination.prototype[attr] = sourcePrototype[attr];
- }
- }
-}
+ var setExpressionsPlugin = function setExpressionsPlugin(value) {
+ expressionsPlugin = value;
+ };
-function getDescriptor(object, prop) {
- return Object.getOwnPropertyDescriptor(object, prop);
-}
+ var getExpressionsPlugin = function getExpressionsPlugin() {
+ return expressionsPlugin;
+ };
-function createProxyFunction(prototype) {
- function ProxyFunction(){}
- ProxyFunction.prototype = prototype;
- return ProxyFunction;
-}
-function bezFunction(){
+ var setExpressionInterfaces = function setExpressionInterfaces(value) {
+ expressionsInterfaces = value;
+ };
- var easingFunctions = [];
- var math = Math;
+ var getExpressionInterfaces = function getExpressionInterfaces() {
+ return expressionsInterfaces;
+ };
- function pointOnLine2D(x1,y1, x2,y2, x3,y3){
- var det1 = (x1*y2) + (y1*x3) + (x2*y3) - (x3*y2) - (y3*x1) - (x2*y1);
- return det1 > -0.001 && det1 < 0.001;
- }
+ var setDefaultCurveSegments = function setDefaultCurveSegments(value) {
+ defaultCurveSegments = value;
+ };
- function pointOnLine3D(x1,y1,z1, x2,y2,z2, x3,y3,z3){
- if(z1 === 0 && z2 === 0 && z3 === 0) {
- return pointOnLine2D(x1,y1, x2,y2, x3,y3);
- }
- var dist1 = Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2) + Math.pow(z2 - z1, 2));
- var dist2 = Math.sqrt(Math.pow(x3 - x1, 2) + Math.pow(y3 - y1, 2) + Math.pow(z3 - z1, 2));
- var dist3 = Math.sqrt(Math.pow(x3 - x2, 2) + Math.pow(y3 - y2, 2) + Math.pow(z3 - z2, 2));
- var diffDist;
- if(dist1 > dist2){
- if(dist1 > dist3){
- diffDist = dist1 - dist2 - dist3;
- } else {
- diffDist = dist3 - dist2 - dist1;
- }
- } else if(dist3 > dist2){
- diffDist = dist3 - dist2 - dist1;
- } else {
- diffDist = dist2 - dist1 - dist3;
- }
- return diffDist > -0.0001 && diffDist < 0.0001;
- }
-
- var getBezierLength = (function(){
-
- return function(pt1,pt2,pt3,pt4){
- var curveSegments = defaultCurveSegments;
- var k;
- var i, len;
- var ptCoord,perc,addedLength = 0;
- var ptDistance;
- var point = [],lastPoint = [];
- var lengthData = bezier_length_pool.newElement();
- len = pt3.length;
- for(k=0;k lengthPos ? -1 : 1;
- var flag = true;
- while(flag){
- if(lengths[initPos] <= lengthPos && lengths[initPos+1] > lengthPos){
- lPerc = (lengthPos - lengths[initPos]) / (lengths[initPos+1] - lengths[initPos]);
- flag = false;
- }else{
- initPos += dir;
- }
- if(initPos < 0 || initPos >= len - 1){
- //FIX for TypedArrays that don't store floating point values with enough accuracy
- if(initPos === len - 1) {
- return percents[initPos];
- }
- flag = false;
+
+ function completeChars(chars, assets) {
+ if (chars) {
+ var i = 0;
+ var len = chars.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (chars[i].t === 1) {
+ // var compData = findComp(chars[i].data.refId, assets);
+ chars[i].data.layers = findCompLayers(chars[i].data.refId, assets); // chars[i].data.ip = 0;
+ // chars[i].data.op = 99999;
+ // chars[i].data.st = 0;
+ // chars[i].data.sr = 1;
+ // chars[i].w = compData.w;
+ // chars[i].data.ks = {
+ // a: { k: [0, 0, 0], a: 0 },
+ // p: { k: [0, -compData.h, 0], a: 0 },
+ // r: { k: 0, a: 0 },
+ // s: { k: [100, 100], a: 0 },
+ // o: { k: 100, a: 0 },
+ // };
+
+ completeLayers(chars[i].data.layers, assets);
+ }
}
+ }
}
- return percents[initPos] + (percents[initPos+1] - percents[initPos])*lPerc;
- }
- }
- function getPointInSegment(pt1, pt2, pt3, pt4, percent, bezierData) {
- var t1 = getDistancePerc(percent,bezierData);
- var u0 = 1;
- var u1 = 1 - t1;
- var ptX = Math.round((u1*u1*u1* pt1[0] + (t1*u1*u1 + u1*t1*u1 + u1*u1*t1)* pt3[0] + (t1*t1*u1 + u1*t1*t1 + t1*u1*t1)*pt4[0] + t1*t1*t1* pt2[0])* 1000) / 1000;
- var ptY = Math.round((u1*u1*u1* pt1[1] + (t1*u1*u1 + u1*t1*u1 + u1*u1*t1)* pt3[1] + (t1*t1*u1 + u1*t1*t1 + t1*u1*t1)*pt4[1] + t1*t1*t1* pt2[1])* 1000) / 1000;
- return [ptX, ptY];
- }
-
- function getSegmentArray() {
-
- }
-
- var bezier_segment_points = createTypedArray('float32', 8);
-
- function getNewSegment(pt1,pt2,pt3,pt4,startPerc,endPerc, bezierData){
-
- startPerc = startPerc < 0 ? 0 : startPerc > 1 ? 1 : startPerc;
- var t0 = getDistancePerc(startPerc,bezierData);
- endPerc = endPerc > 1 ? 1 : endPerc;
- var t1 = getDistancePerc(endPerc,bezierData);
- var i, len = pt1.length;
- var u0 = 1 - t0;
- var u1 = 1 - t1;
- var u0u0u0 = u0*u0*u0;
- var t0u0u0_3 = t0*u0*u0*3;
- var t0t0u0_3 = t0*t0*u0*3;
- var t0t0t0 = t0*t0*t0;
- //
- var u0u0u1 = u0*u0*u1;
- var t0u0u1_3 = t0*u0*u1 + u0*t0*u1 + u0*u0*t1;
- var t0t0u1_3 = t0*t0*u1 + u0*t0*t1 + t0*u0*t1;
- var t0t0t1 = t0*t0*t1;
- //
- var u0u1u1 = u0*u1*u1;
- var t0u1u1_3 = t0*u1*u1 + u0*t1*u1 + u0*u1*t1;
- var t0t1u1_3 = t0*t1*u1 + u0*t1*t1 + t0*u1*t1;
- var t0t1t1 = t0*t1*t1;
- //
- var u1u1u1 = u1*u1*u1;
- var t1u1u1_3 = t1*u1*u1 + u1*t1*u1 + u1*u1*t1;
- var t1t1u1_3 = t1*t1*u1 + u1*t1*t1 + t1*u1*t1;
- var t1t1t1 = t1*t1*t1;
- for(i=0;i=0;i-=1){
- if(arr[i].ty == 'sh'){
- if(arr[i].ks.k.i){
+ function completeShapes(arr) {
+ var i;
+ var len = arr.length;
+ var j;
+ var jLen;
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ if (arr[i].ty === 'sh') {
+ if (arr[i].ks.k.i) {
convertPathsToAbsoluteValues(arr[i].ks.k);
- }else{
+ } else {
jLen = arr[i].ks.k.length;
- for(j=0;janimVersion[0]){
- return true;
- } else if(animVersion[0] > minimum[0]){
- return false;
- }
- if(minimum[1]>animVersion[1]){
- return true;
- } else if(animVersion[1] > minimum[1]){
- return false;
- }
- if(minimum[2]>animVersion[2]){
- return true;
- } else if(animVersion[2] > minimum[2]){
- return false;
- }
- }
+ for (i = 0; i < len; i += 1) {
+ path.i[i][0] += path.v[i][0];
+ path.i[i][1] += path.v[i][1];
+ path.o[i][0] += path.v[i][0];
+ path.o[i][1] += path.v[i][1];
+ }
+ }
- var checkText = (function(){
- var minimumVersion = [4,4,14];
+ function checkVersion(minimum, animVersionString) {
+ var animVersion = animVersionString ? animVersionString.split('.') : [100, 100, 100];
- function updateTextLayer(textLayer){
- var documentData = textLayer.t.d;
- textLayer.t.d = {
- k: [
- {
- s:documentData,
- t:0
- }
- ]
- };
- }
+ if (minimum[0] > animVersion[0]) {
+ return true;
+ }
+
+ if (animVersion[0] > minimum[0]) {
+ return false;
+ }
+
+ if (minimum[1] > animVersion[1]) {
+ return true;
+ }
+
+ if (animVersion[1] > minimum[1]) {
+ return false;
+ }
+
+ if (minimum[2] > animVersion[2]) {
+ return true;
+ }
+
+ if (animVersion[2] > minimum[2]) {
+ return false;
+ }
+
+ return null;
+ }
+
+ var checkText = function () {
+ var minimumVersion = [4, 4, 14];
+
+ function updateTextLayer(textLayer) {
+ var documentData = textLayer.t.d;
+ textLayer.t.d = {
+ k: [{
+ s: documentData,
+ t: 0
+ }]
+ };
+ }
+
+ function iterateLayers(layers) {
+ var i;
+ var len = layers.length;
- function iterateLayers(layers){
- var i, len = layers.length;
- for(i=0;i=0;i-=1){
- if(arr[i].ty == 'sh'){
- if(arr[i].ks.k.i){
- arr[i].ks.k.c = arr[i].closed;
- }else{
- jLen = arr[i].ks.k.length;
- for(j=0;j= 0; i -= 1) {
+ if (arr[i].ty === 'sh') {
+ if (arr[i].ks.k.i) {
+ arr[i].ks.k.c = arr[i].closed;
+ } else {
+ jLen = arr[i].ks.k.length;
- function checkLoadedFonts() {
- var i, len = this.fonts.length;
- var node, w;
- var loadedCount = len;
- for(i=0;i 0) {
- shouldLoadFont = false;
- }
+ if (maskProps[j].pt.k[k].e) {
+ maskProps[j].pt.k[k].e[0].c = maskProps[j].cl;
+ }
+ }
+ }
+ }
+ }
- if (shouldLoadFont) {
- var s = createTag('style');
- s.setAttribute('f-forigin', fontArr[i].fOrigin);
- s.setAttribute('f-origin', fontArr[i].origin);
- s.setAttribute('f-family', fontArr[i].fFamily);
- s.type = "text/css";
- s.innerHTML = "@font-face {" + "font-family: "+fontArr[i].fFamily+"; font-style: normal; src: url('"+fontArr[i].fPath+"');}";
- defs.appendChild(s);
+ if (layerData.ty === 4) {
+ completeClosingShapes(layerData.shapes);
+ }
}
- } else if(fontArr[i].fOrigin === 'g' || fontArr[i].origin === 1){
- loadedSelector = document.querySelectorAll('link[f-forigin="g"], link[f-origin="1"]');
+ }
+
+ return function (animationData) {
+ if (checkVersion(minimumVersion, animationData.v)) {
+ iterateLayers(animationData.layers);
+
+ if (animationData.assets) {
+ var i;
+ var len = animationData.assets.length;
- for (j = 0; j < loadedSelector.length; j++) {
- if (loadedSelector[j].href.indexOf(fontArr[i].fPath) !== -1) {
- // Font is already loaded
- shouldLoadFont = false;
+ for (i = 0; i < len; i += 1) {
+ if (animationData.assets[i].layers) {
+ iterateLayers(animationData.assets[i].layers);
+ }
}
+ }
}
+ };
+ }();
- if (shouldLoadFont) {
- var l = createTag('link');
- l.setAttribute('f-forigin', fontArr[i].fOrigin);
- l.setAttribute('f-origin', fontArr[i].origin);
- l.type = "text/css";
- l.rel = "stylesheet";
- l.href = fontArr[i].fPath;
- document.body.appendChild(l);
+ function completeData(animationData) {
+ if (animationData.__complete) {
+ return;
+ }
+
+ checkColors(animationData);
+ checkText(animationData);
+ checkChars(animationData);
+ checkPathProperties(animationData);
+ checkShapes(animationData);
+ completeLayers(animationData.layers, animationData.assets);
+ completeChars(animationData.chars, animationData.assets);
+ animationData.__complete = true;
+ }
+
+ function completeText(data) {
+ if (data.t.a.length === 0 && !('m' in data.t.p)) {// data.singleShape = true;
+ }
+ }
+
+ var moduleOb = {};
+ moduleOb.completeData = completeData;
+ moduleOb.checkColors = checkColors;
+ moduleOb.checkChars = checkChars;
+ moduleOb.checkPathProperties = checkPathProperties;
+ moduleOb.checkShapes = checkShapes;
+ moduleOb.completeLayers = completeLayers;
+ return moduleOb;
+ }
+
+ if (!_workerSelf.dataManager) {
+ _workerSelf.dataManager = dataFunctionManager();
+ }
+
+ if (!_workerSelf.assetLoader) {
+ _workerSelf.assetLoader = function () {
+ function formatResponse(xhr) {
+ // using typeof doubles the time of execution of this method,
+ // so if available, it's better to use the header to validate the type
+ var contentTypeHeader = xhr.getResponseHeader('content-type');
+
+ if (contentTypeHeader && xhr.responseType === 'json' && contentTypeHeader.indexOf('json') !== -1) {
+ return xhr.response;
}
- } else if(fontArr[i].fOrigin === 't' || fontArr[i].origin === 2){
- loadedSelector = document.querySelectorAll('script[f-forigin="t"], script[f-origin="2"]');
- for (j = 0; j < loadedSelector.length; j++) {
- if (fontArr[i].fPath === loadedSelector[j].src) {
- // Font is already loaded
- shouldLoadFont = false;
- }
+ if (xhr.response && _typeof$5(xhr.response) === 'object') {
+ return xhr.response;
}
- if (shouldLoadFont) {
- var sc = createTag('link');
- sc.setAttribute('f-forigin', fontArr[i].fOrigin);
- sc.setAttribute('f-origin', fontArr[i].origin);
- sc.setAttribute('rel','stylesheet');
- sc.setAttribute('href',fontArr[i].fPath);
- defs.appendChild(sc);
+ if (xhr.response && typeof xhr.response === 'string') {
+ return JSON.parse(xhr.response);
}
- }
- fontArr[i].helper = createHelper(defs,fontArr[i]);
- fontArr[i].cache = {};
- this.fonts.push(fontArr[i]);
- }
- if (_pendingFonts === 0) {
- this.isLoaded = true;
- } else {
- //On some cases even if the font is loaded, it won't load correctly when measuring text on canvas.
- //Adding this timeout seems to fix it
- setTimeout(this.checkLoadedFonts.bind(this), 100);
- }
- }
- function addChars(chars){
- if(!chars){
- return;
- }
- if(!this.chars){
- this.chars = [];
- }
- var i, len = chars.length;
- var j, jLen = this.chars.length, found;
- for(i=0;i= nextKeyData.t - offsetTime){
- if(keyData.h){
- keyData = nextKeyData;
- }
- iterationIndex = 0;
- break;
- }
- if ((nextKeyData.t - offsetTime) > frameNum){
- iterationIndex = i;
- break;
- }
- if (i < len - 1){
- i += 1;
- } else {
- iterationIndex = 0;
- flag = false;
- }
- }
+ path = assetsPath + imagePath;
+ } else {
+ path = originalPath;
+ path += assetData.u ? assetData.u : '';
+ path += assetData.p;
+ }
- var k, kLen, perc, jLen, j, fnc;
- var nextKeyTime = nextKeyData.t - offsetTime;
- var keyTime = keyData.t - offsetTime;
- var endValue;
- if (keyData.to) {
- if (!keyData.bezierData) {
- keyData.bezierData = bez.buildBezierData(keyData.s, nextKeyData.s || keyData.e, keyData.to, keyData.ti);
- }
- var bezierData = keyData.bezierData;
- if (frameNum >= nextKeyTime || frameNum < keyTime) {
- var ind = frameNum >= nextKeyTime ? bezierData.points.length - 1 : 0;
- kLen = bezierData.points[ind].point.length;
- for (k = 0; k < kLen; k += 1) {
- newValue[k] = bezierData.points[ind].point[k];
- }
- // caching._lastKeyframeIndex = -1;
- } else {
- if (keyData.__fnct) {
- fnc = keyData.__fnct;
- } else {
- fnc = BezierFactory.getBezierEasing(keyData.o.x, keyData.o.y, keyData.i.x, keyData.i.y, keyData.n).get;
- keyData.__fnct = fnc;
- }
- perc = fnc((frameNum - keyTime) / (nextKeyTime - keyTime));
- var distanceInLine = bezierData.segmentLength*perc;
-
- var segmentPerc;
- var addedLength = (caching.lastFrame < frameNum && caching._lastKeyframeIndex === i) ? caching._lastAddedLength : 0;
- j = (caching.lastFrame < frameNum && caching._lastKeyframeIndex === i) ? caching._lastPoint : 0;
- flag = true;
- jLen = bezierData.points.length;
- while (flag) {
- addedLength += bezierData.points[j].partialLength;
- if (distanceInLine === 0 || perc === 0 || j === bezierData.points.length - 1) {
- kLen = bezierData.points[j].point.length;
- for (k = 0; k < kLen; k += 1) {
- newValue[k] = bezierData.points[j].point[k];
- }
- break;
- } else if (distanceInLine >= addedLength && distanceInLine < addedLength + bezierData.points[j + 1].partialLength) {
- segmentPerc = (distanceInLine - addedLength) / bezierData.points[j + 1].partialLength;
- kLen = bezierData.points[j].point.length;
- for (k = 0; k < kLen; k += 1) {
- newValue[k] = bezierData.points[j].point[k] + (bezierData.points[j + 1].point[k] - bezierData.points[j].point[k]) * segmentPerc;
- }
- break;
- }
- if (j < jLen - 1){
- j += 1;
- } else {
- flag = false;
- }
- }
- caching._lastPoint = j;
- caching._lastAddedLength = addedLength - bezierData.points[j].partialLength;
- caching._lastKeyframeIndex = i;
- }
- } else {
- var outX, outY, inX, inY, keyValue;
- len = keyData.s.length;
- endValue = nextKeyData.s || keyData.e;
- if (this.sh && keyData.h !== 1) {
- if (frameNum >= nextKeyTime) {
- newValue[0] = endValue[0];
- newValue[1] = endValue[1];
- newValue[2] = endValue[2];
- } else if (frameNum <= keyTime) {
- newValue[0] = keyData.s[0];
- newValue[1] = keyData.s[1];
- newValue[2] = keyData.s[2];
- } else {
- var quatStart = createQuaternion(keyData.s);
- var quatEnd = createQuaternion(endValue);
- var time = (frameNum - keyTime) / (nextKeyTime - keyTime);
- quaternionToEuler(newValue, slerp(quatStart, quatEnd, time));
- }
-
- } else {
- for(i = 0; i < len; i += 1) {
- if (keyData.h !== 1) {
- if (frameNum >= nextKeyTime) {
- perc = 1;
- } else if(frameNum < keyTime) {
- perc = 0;
- } else {
- if(keyData.o.x.constructor === Array) {
- if (!keyData.__fnct) {
- keyData.__fnct = [];
- }
- if (!keyData.__fnct[i]) {
- outX = (typeof keyData.o.x[i] === 'undefined') ? keyData.o.x[0] : keyData.o.x[i];
- outY = (typeof keyData.o.y[i] === 'undefined') ? keyData.o.y[0] : keyData.o.y[i];
- inX = (typeof keyData.i.x[i] === 'undefined') ? keyData.i.x[0] : keyData.i.x[i];
- inY = (typeof keyData.i.y[i] === 'undefined') ? keyData.i.y[0] : keyData.i.y[i];
- fnc = BezierFactory.getBezierEasing(outX, outY, inX, inY).get;
- keyData.__fnct[i] = fnc;
- } else {
- fnc = keyData.__fnct[i];
- }
- } else {
- if (!keyData.__fnct) {
- outX = keyData.o.x;
- outY = keyData.o.y;
- inX = keyData.i.x;
- inY = keyData.i.y;
- fnc = BezierFactory.getBezierEasing(outX, outY, inX, inY).get;
- keyData.__fnct = fnc;
- } else {
- fnc = keyData.__fnct;
- }
- }
- perc = fnc((frameNum - keyTime) / (nextKeyTime - keyTime ));
- }
- }
+ return path;
+ }
- endValue = nextKeyData.s || keyData.e;
- keyValue = keyData.h === 1 ? keyData.s[i] : keyData.s[i] + (endValue[i] - keyData.s[i]) * perc;
+ function testImageLoaded(img) {
+ var _count = 0;
+ var intervalId = setInterval(function () {
+ var box = img.getBBox();
- if (len === 1) {
- newValue = keyValue;
- } else {
- newValue[i] = keyValue;
- }
- }
- }
+ if (box.width || _count > 500) {
+ this._imageLoaded();
+
+ clearInterval(intervalId);
}
- caching.lastIndex = iterationIndex;
- return newValue;
+
+ _count += 1;
+ }.bind(this), 50);
}
- //based on @Toji's https://github.com/toji/gl-matrix/
- function slerp(a, b, t) {
- var out = [];
- var ax = a[0], ay = a[1], az = a[2], aw = a[3],
- bx = b[0], by = b[1], bz = b[2], bw = b[3]
+ function createImageData(assetData) {
+ var path = getAssetsPath(assetData, this.assetsPath, this.path);
+ var img = createNS('image');
+
+ if (isSafari) {
+ this.testImageLoaded(img);
+ } else {
+ img.addEventListener('load', this._imageLoaded, false);
+ }
- var omega, cosom, sinom, scale0, scale1;
+ img.addEventListener('error', function () {
+ ob.img = proxyImage;
- cosom = ax * bx + ay * by + az * bz + aw * bw;
- if (cosom < 0.0) {
- cosom = -cosom;
- bx = -bx;
- by = -by;
- bz = -bz;
- bw = -bw;
- }
- if ((1.0 - cosom) > 0.000001) {
- omega = Math.acos(cosom);
- sinom = Math.sin(omega);
- scale0 = Math.sin((1.0 - t) * omega) / sinom;
- scale1 = Math.sin(t * omega) / sinom;
- } else {
- scale0 = 1.0 - t;
- scale1 = t;
- }
- out[0] = scale0 * ax + scale1 * bx;
- out[1] = scale0 * ay + scale1 * by;
- out[2] = scale0 * az + scale1 * bz;
- out[3] = scale0 * aw + scale1 * bw;
-
- return out;
- }
-
- function quaternionToEuler(out, quat) {
- var qx = quat[0];
- var qy = quat[1];
- var qz = quat[2];
- var qw = quat[3];
- var heading = Math.atan2(2*qy*qw-2*qx*qz , 1 - 2*qy*qy - 2*qz*qz)
- var attitude = Math.asin(2*qx*qy + 2*qz*qw)
- var bank = Math.atan2(2*qx*qw-2*qy*qz , 1 - 2*qx*qx - 2*qz*qz);
- out[0] = heading/degToRads;
- out[1] = attitude/degToRads;
- out[2] = bank/degToRads;
- }
-
- function createQuaternion(values) {
- var heading = values[0] * degToRads;
- var attitude = values[1] * degToRads;
- var bank = values[2] * degToRads;
- var c1 = Math.cos(heading / 2);
- var c2 = Math.cos(attitude / 2);
- var c3 = Math.cos(bank / 2);
- var s1 = Math.sin(heading / 2);
- var s2 = Math.sin(attitude / 2);
- var s3 = Math.sin(bank / 2);
- var w = c1 * c2 * c3 - s1 * s2 * s3;
- var x = s1 * s2 * c3 + c1 * c2 * s3;
- var y = s1 * c2 * c3 + c1 * s2 * s3;
- var z = c1 * s2 * c3 - s1 * c2 * s3;
-
- return [x,y,z,w];
- }
-
- function getValueAtCurrentTime(){
- var frameNum = this.comp.renderedFrame - this.offsetTime;
- var initTime = this.keyframes[0].t - this.offsetTime;
- var endTime = this.keyframes[this.keyframes.length- 1].t-this.offsetTime;
- if(!(frameNum === this._caching.lastFrame || (this._caching.lastFrame !== initFrame && ((this._caching.lastFrame >= endTime && frameNum >= endTime) || (this._caching.lastFrame < initTime && frameNum < initTime))))){
- if(this._caching.lastFrame >= frameNum) {
- this._caching._lastKeyframeIndex = -1;
- this._caching.lastIndex = 0;
- }
+ this._imageLoaded();
+ }.bind(this), false);
+ img.setAttributeNS('http://www.w3.org/1999/xlink', 'href', path);
+
+ if (this._elementHelper.append) {
+ this._elementHelper.append(img);
+ } else {
+ this._elementHelper.appendChild(img);
+ }
- var renderResult = this.interpolateValue(frameNum, this._caching);
- this.pv = renderResult;
+ var ob = {
+ img: img,
+ assetData: assetData
+ };
+ return ob;
+ }
+
+ function createImgData(assetData) {
+ var path = getAssetsPath(assetData, this.assetsPath, this.path);
+ var img = createTag('img');
+ img.crossOrigin = 'anonymous';
+ img.addEventListener('load', this._imageLoaded, false);
+ img.addEventListener('error', function () {
+ ob.img = proxyImage;
+
+ this._imageLoaded();
+ }.bind(this), false);
+ img.src = path;
+ var ob = {
+ img: img,
+ assetData: assetData
+ };
+ return ob;
+ }
+
+ function createFootageData(data) {
+ var ob = {
+ assetData: data
+ };
+ var path = getAssetsPath(data, this.assetsPath, this.path);
+ dataManager.loadData(path, function (footageData) {
+ ob.img = footageData;
+
+ this._footageLoaded();
+ }.bind(this), function () {
+ ob.img = {};
+
+ this._footageLoaded();
+ }.bind(this));
+ return ob;
+ }
+
+ function loadAssets(assets, cb) {
+ this.imagesLoadedCb = cb;
+ var i;
+ var len = assets.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (!assets[i].layers) {
+ if (!assets[i].t || assets[i].t === 'seq') {
+ this.totalImages += 1;
+ this.images.push(this._createImageData(assets[i]));
+ } else if (assets[i].t === 3) {
+ this.totalFootages += 1;
+ this.images.push(this.createFootageData(assets[i]));
+ }
}
- this._caching.lastFrame = frameNum;
- return this.pv;
+ }
}
- function setVValue(val) {
- var multipliedValue;
- if(this.propType === 'unidimensional') {
- multipliedValue = val * this.mult;
- if(math_abs(this.v - multipliedValue) > 0.00001) {
- this.v = multipliedValue;
- this._mdf = true;
- }
- } else {
- var i = 0, len = this.v.length;
- while (i < len) {
- multipliedValue = val[i] * this.mult;
- if (math_abs(this.v[i] - multipliedValue) > 0.00001) {
- this.v[i] = multipliedValue;
- this._mdf = true;
- }
- i += 1;
- }
- }
+ function setPath(path) {
+ this.path = path || '';
}
- function processEffectsSequence() {
- if(this.elem.globalData.frameId === this.frameId || !this.effectsSequence.length) {
- return;
- }
- if(this.lock) {
- this.setVValue(this.pv);
- return;
- }
- this.lock = true;
- this._mdf = this._isFirstFrame;
- var multipliedValue;
- var i, len = this.effectsSequence.length;
- var finalValue = this.kf ? this.pv : this.data.k;
- for(i = 0; i < len; i += 1) {
- finalValue = this.effectsSequence[i](finalValue);
+ function setAssetsPath(path) {
+ this.assetsPath = path || '';
+ }
+
+ function getAsset(assetData) {
+ var i = 0;
+ var len = this.images.length;
+
+ while (i < len) {
+ if (this.images[i].assetData === assetData) {
+ return this.images[i].img;
}
- this.setVValue(finalValue);
- this._isFirstFrame = false;
- this.lock = false;
- this.frameId = this.elem.globalData.frameId;
+
+ i += 1;
+ }
+
+ return null;
}
- function addEffect(effectFunction) {
- this.effectsSequence.push(effectFunction);
- this.container.addDynamicProperty(this);
+ function destroy() {
+ this.imagesLoadedCb = null;
+ this.images.length = 0;
}
- function ValueProperty(elem, data, mult, container){
- this.propType = 'unidimensional';
- this.mult = mult || 1;
- this.data = data;
- this.v = mult ? data.k * mult : data.k;
- this.pv = data.k;
- this._mdf = false;
- this.elem = elem;
- this.container = container;
- this.comp = elem.comp;
- this.k = false;
- this.kf = false;
- this.vel = 0;
- this.effectsSequence = [];
- this._isFirstFrame = true;
- this.getValue = processEffectsSequence;
- this.setVValue = setVValue;
- this.addEffect = addEffect;
+ function loadedImages() {
+ return this.totalImages === this.loadedAssets;
}
- function MultiDimensionalProperty(elem, data, mult, container) {
- this.propType = 'multidimensional';
- this.mult = mult || 1;
- this.data = data;
- this._mdf = false;
- this.elem = elem;
- this.container = container;
- this.comp = elem.comp;
- this.k = false;
- this.kf = false;
- this.frameId = -1;
- var i, len = data.k.length;
- this.v = createTypedArray('float32', len);
- this.pv = createTypedArray('float32', len);
- var arr = createTypedArray('float32', len);
- this.vel = createTypedArray('float32', len);
- for (i = 0; i < len; i += 1) {
- this.v[i] = data.k[i] * this.mult;
- this.pv[i] = data.k[i];
- }
- this._isFirstFrame = true;
- this.effectsSequence = [];
- this.getValue = processEffectsSequence;
- this.setVValue = setVValue;
- this.addEffect = addEffect;
+ function loadedFootages() {
+ return this.totalFootages === this.loadedFootagesCount;
}
- function KeyframedValueProperty(elem, data, mult, container) {
- this.propType = 'unidimensional';
- this.keyframes = data.k;
- this.offsetTime = elem.data.st;
- this.frameId = -1;
- this._caching = {lastFrame: initFrame, lastIndex: 0, value: 0, _lastKeyframeIndex: -1};
- this.k = true;
- this.kf = true;
- this.data = data;
- this.mult = mult || 1;
- this.elem = elem;
- this.container = container;
- this.comp = elem.comp;
- this.v = initFrame;
- this.pv = initFrame;
- this._isFirstFrame = true;
- this.getValue = processEffectsSequence;
- this.setVValue = setVValue;
- this.interpolateValue = interpolateValue;
- this.effectsSequence = [getValueAtCurrentTime.bind(this)];
- this.addEffect = addEffect;
- }
-
- function KeyframedMultidimensionalProperty(elem, data, mult, container){
- this.propType = 'multidimensional';
- var i, len = data.k.length;
- var s, e,to,ti;
- for (i = 0; i < len - 1; i += 1) {
- if (data.k[i].to && data.k[i].s && data.k[i].e) {
- s = data.k[i].s;
- e = data.k[i].e;
- to = data.k[i].to;
- ti = data.k[i].ti;
- if((s.length === 2 && !(s[0] === e[0] && s[1] === e[1]) && bez.pointOnLine2D(s[0],s[1],e[0],e[1],s[0] + to[0],s[1] + to[1]) && bez.pointOnLine2D(s[0],s[1],e[0],e[1],e[0] + ti[0],e[1] + ti[1])) || (s.length === 3 && !(s[0] === e[0] && s[1] === e[1] && s[2] === e[2]) && bez.pointOnLine3D(s[0],s[1],s[2],e[0],e[1],e[2],s[0] + to[0],s[1] + to[1],s[2] + to[2]) && bez.pointOnLine3D(s[0],s[1],s[2],e[0],e[1],e[2],e[0] + ti[0],e[1] + ti[1],e[2] + ti[2]))){
- data.k[i].to = null;
- data.k[i].ti = null;
- }
- if(s[0] === e[0] && s[1] === e[1] && to[0] === 0 && to[1] === 0 && ti[0] === 0 && ti[1] === 0) {
- if(s.length === 2 || (s[2] === e[2] && to[2] === 0 && ti[2] === 0)) {
- data.k[i].to = null;
- data.k[i].ti = null;
- }
- }
- }
- }
- this.effectsSequence = [getValueAtCurrentTime.bind(this)];
- this.keyframes = data.k;
- this.offsetTime = elem.data.st;
- this.k = true;
- this.kf = true;
- this._isFirstFrame = true;
- this.mult = mult || 1;
- this.elem = elem;
- this.container = container;
- this.comp = elem.comp;
- this.getValue = processEffectsSequence;
- this.setVValue = setVValue;
- this.interpolateValue = interpolateValue;
- this.frameId = -1;
- var arrLen = data.k[0].s.length;
- this.v = createTypedArray('float32', arrLen);
- this.pv = createTypedArray('float32', arrLen);
- for (i = 0; i < arrLen; i += 1) {
- this.v[i] = initFrame;
- this.pv[i] = initFrame;
- }
- this._caching={lastFrame:initFrame,lastIndex:0,value:createTypedArray('float32', arrLen)};
- this.addEffect = addEffect;
- }
-
- function getProp(elem,data,type, mult, container) {
- var p;
- if(!data.k.length){
- p = new ValueProperty(elem,data, mult, container);
- }else if(typeof(data.k[0]) === 'number'){
- p = new MultiDimensionalProperty(elem,data, mult, container);
- }else{
- switch(type){
- case 0:
- p = new KeyframedValueProperty(elem,data,mult, container);
- break;
- case 1:
- p = new KeyframedMultidimensionalProperty(elem,data,mult, container);
- break;
- }
- }
- if(p.effectsSequence.length){
- container.addDynamicProperty(p);
- }
- return p;
+ function setCacheType(type, elementHelper) {
+ if (type === 'svg') {
+ this._elementHelper = elementHelper;
+ this._createImageData = this.createImageData.bind(this);
+ } else {
+ this._createImageData = this.createImgData.bind(this);
+ }
}
- var ob = {
- getProp: getProp
+ function ImagePreloaderFactory() {
+ this._imageLoaded = imageLoaded.bind(this);
+ this._footageLoaded = footageLoaded.bind(this);
+ this.testImageLoaded = testImageLoaded.bind(this);
+ this.createFootageData = createFootageData.bind(this);
+ this.assetsPath = '';
+ this.path = '';
+ this.totalImages = 0;
+ this.totalFootages = 0;
+ this.loadedAssets = 0;
+ this.loadedFootagesCount = 0;
+ this.imagesLoadedCb = null;
+ this.images = [];
+ }
+
+ ImagePreloaderFactory.prototype = {
+ loadAssets: loadAssets,
+ setAssetsPath: setAssetsPath,
+ setPath: setPath,
+ loadedImages: loadedImages,
+ loadedFootages: loadedFootages,
+ destroy: destroy,
+ getAsset: getAsset,
+ createImgData: createImgData,
+ createImageData: createImageData,
+ imageLoaded: imageLoaded,
+ footageLoaded: footageLoaded,
+ setCacheType: setCacheType
};
- return ob;
-}());
-var TransformPropertyFactory = (function() {
+ return ImagePreloaderFactory;
+ }();
- function applyToMatrix(mat) {
- var _mdf = this._mdf;
- this.iterateDynamicProperties();
- this._mdf = this._mdf || _mdf;
- if (this.a) {
- mat.translate(-this.a.v[0], -this.a.v[1], this.a.v[2]);
- }
- if (this.s) {
- mat.scale(this.s.v[0], this.s.v[1], this.s.v[2]);
- }
- if (this.sk) {
- mat.skewFromAxis(-this.sk.v, this.sa.v);
- }
- if (this.r) {
- mat.rotate(-this.r.v);
- } else {
- mat.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]);
- }
- if (this.data.p.s) {
- if (this.data.p.z) {
- mat.translate(this.px.v, this.py.v, -this.pz.v);
- } else {
- mat.translate(this.px.v, this.py.v, 0);
- }
- } else {
- mat.translate(this.p.v[0], this.p.v[1], -this.p.v[2]);
- }
- }
- function processKeys(forceRender){
- if (this.elem.globalData.frameId === this.frameId) {
- return;
- }
- if(this._isDirty) {
- this.precalculateMatrix();
- this._isDirty = false;
- }
+ function BaseEvent() {}
- this.iterateDynamicProperties();
+ BaseEvent.prototype = {
+ triggerEvent: function triggerEvent(eventName, args) {
+ if (this._cbs[eventName]) {
+ var callbacks = this._cbs[eventName];
- if (this._mdf || forceRender) {
- this.v.cloneFromProps(this.pre.props);
- if (this.appliedTransformations < 1) {
- this.v.translate(-this.a.v[0], -this.a.v[1], this.a.v[2]);
- }
- if(this.appliedTransformations < 2) {
- this.v.scale(this.s.v[0], this.s.v[1], this.s.v[2]);
- }
- if (this.sk && this.appliedTransformations < 3) {
- this.v.skewFromAxis(-this.sk.v, this.sa.v);
- }
- if (this.r && this.appliedTransformations < 4) {
- this.v.rotate(-this.r.v);
- } else if (!this.r && this.appliedTransformations < 4){
- this.v.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]);
- }
- if (this.autoOriented) {
- var v1,v2, frameRate = this.elem.globalData.frameRate;
- if(this.p && this.p.keyframes && this.p.getValueAtTime) {
- if (this.p._caching.lastFrame+this.p.offsetTime <= this.p.keyframes[0].t) {
- v1 = this.p.getValueAtTime((this.p.keyframes[0].t + 0.01) / frameRate,0);
- v2 = this.p.getValueAtTime(this.p.keyframes[0].t / frameRate, 0);
- } else if(this.p._caching.lastFrame+this.p.offsetTime >= this.p.keyframes[this.p.keyframes.length - 1].t) {
- v1 = this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length - 1].t / frameRate), 0);
- v2 = this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length - 1].t - 0.01) / frameRate, 0);
- } else {
- v1 = this.p.pv;
- v2 = this.p.getValueAtTime((this.p._caching.lastFrame+this.p.offsetTime - 0.01) / frameRate, this.p.offsetTime);
- }
- } else if(this.px && this.px.keyframes && this.py.keyframes && this.px.getValueAtTime && this.py.getValueAtTime) {
- v1 = [];
- v2 = [];
- var px = this.px, py = this.py, frameRate;
- if (px._caching.lastFrame+px.offsetTime <= px.keyframes[0].t) {
- v1[0] = px.getValueAtTime((px.keyframes[0].t + 0.01) / frameRate,0);
- v1[1] = py.getValueAtTime((py.keyframes[0].t + 0.01) / frameRate,0);
- v2[0] = px.getValueAtTime((px.keyframes[0].t) / frameRate,0);
- v2[1] = py.getValueAtTime((py.keyframes[0].t) / frameRate,0);
- } else if(px._caching.lastFrame+px.offsetTime >= px.keyframes[px.keyframes.length - 1].t) {
- v1[0] = px.getValueAtTime((px.keyframes[px.keyframes.length - 1].t / frameRate),0);
- v1[1] = py.getValueAtTime((py.keyframes[py.keyframes.length - 1].t / frameRate),0);
- v2[0] = px.getValueAtTime((px.keyframes[px.keyframes.length - 1].t - 0.01) / frameRate,0);
- v2[1] = py.getValueAtTime((py.keyframes[py.keyframes.length - 1].t - 0.01) / frameRate,0);
- } else {
- v1 = [px.pv, py.pv];
- v2[0] = px.getValueAtTime((px._caching.lastFrame+px.offsetTime - 0.01) / frameRate,px.offsetTime);
- v2[1] = py.getValueAtTime((py._caching.lastFrame+py.offsetTime - 0.01) / frameRate,py.offsetTime);
- }
- }
- this.v.rotate(-Math.atan2(v1[1] - v2[1], v1[0] - v2[0]));
- }
- if(this.data.p && this.data.p.s){
- if(this.data.p.z) {
- this.v.translate(this.px.v, this.py.v, -this.pz.v);
- } else {
- this.v.translate(this.px.v, this.py.v, 0);
- }
- }else{
- this.v.translate(this.p.v[0],this.p.v[1],-this.p.v[2]);
- }
+ for (var i = 0; i < callbacks.length; i += 1) {
+ callbacks[i](args);
}
- this.frameId = this.elem.globalData.frameId;
- }
+ }
+ },
+ addEventListener: function addEventListener(eventName, callback) {
+ if (!this._cbs[eventName]) {
+ this._cbs[eventName] = [];
+ }
- function precalculateMatrix() {
- if(!this.a.k) {
- this.pre.translate(-this.a.v[0], -this.a.v[1], this.a.v[2]);
- this.appliedTransformations = 1;
- } else {
- return;
- }
- if(!this.s.effectsSequence.length) {
- this.pre.scale(this.s.v[0], this.s.v[1], this.s.v[2]);
- this.appliedTransformations = 2;
- } else {
- return;
- }
- if(this.sk) {
- if(!this.sk.effectsSequence.length && !this.sa.effectsSequence.length) {
- this.pre.skewFromAxis(-this.sk.v, this.sa.v);
- this.appliedTransformations = 3;
- } else {
- return;
- }
- }
- if (this.r) {
- if(!this.r.effectsSequence.length) {
- this.pre.rotate(-this.r.v);
- this.appliedTransformations = 4;
- } else {
- return;
- }
- } else if(!this.rz.effectsSequence.length && !this.ry.effectsSequence.length && !this.rx.effectsSequence.length && !this.or.effectsSequence.length) {
- this.pre.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]);
- this.appliedTransformations = 4;
- }
- }
+ this._cbs[eventName].push(callback);
- function autoOrient(){
- //
- //var prevP = this.getValueAtTime();
- }
+ return function () {
+ this.removeEventListener(eventName, callback);
+ }.bind(this);
+ },
+ removeEventListener: function removeEventListener(eventName, callback) {
+ if (!callback) {
+ this._cbs[eventName] = null;
+ } else if (this._cbs[eventName]) {
+ var i = 0;
+ var len = this._cbs[eventName].length;
- function addDynamicProperty(prop) {
- this._addDynamicProperty(prop);
- this.elem.addDynamicProperty(prop);
- this._isDirty = true;
- }
+ while (i < len) {
+ if (this._cbs[eventName][i] === callback) {
+ this._cbs[eventName].splice(i, 1);
- function TransformProperty(elem,data,container){
- this.elem = elem;
- this.frameId = -1;
- this.propType = 'transform';
- this.data = data;
- this.v = new Matrix();
- //Precalculated matrix with non animated properties
- this.pre = new Matrix();
- this.appliedTransformations = 0;
- this.initDynamicPropertyContainer(container || elem);
- if(data.p && data.p.s){
- this.px = PropertyFactory.getProp(elem,data.p.x,0,0,this);
- this.py = PropertyFactory.getProp(elem,data.p.y,0,0,this);
- if(data.p.z){
- this.pz = PropertyFactory.getProp(elem,data.p.z,0,0,this);
- }
- }else{
- this.p = PropertyFactory.getProp(elem,data.p || {k:[0,0,0]},1,0,this);
- }
- if(data.rx) {
- this.rx = PropertyFactory.getProp(elem, data.rx, 0, degToRads, this);
- this.ry = PropertyFactory.getProp(elem, data.ry, 0, degToRads, this);
- this.rz = PropertyFactory.getProp(elem, data.rz, 0, degToRads, this);
- if(data.or.k[0].ti) {
- var i, len = data.or.k.length;
- for(i=0;i= this._maxLength) {
- this.doubleArrayLength();
- }
- switch(type){
- case 'v':
- arr = this.v;
- break;
- case 'i':
- arr = this.i;
- break;
- case 'o':
- arr = this.o;
- break;
- }
- if(!arr[pos] || (arr[pos] && !replace)){
- arr[pos] = point_pool.newElement();
- }
- arr[pos][0] = x;
- arr[pos][1] = y;
-};
-
-ShapePath.prototype.setTripleAt = function(vX,vY,oX,oY,iX,iY,pos, replace) {
- this.setXYAt(vX,vY,'v',pos, replace);
- this.setXYAt(oX,oY,'o',pos, replace);
- this.setXYAt(iX,iY,'i',pos, replace);
-};
-
-ShapePath.prototype.reverse = function() {
- var newPath = new ShapePath();
- newPath.setPathData(this.c, this._length);
- var vertices = this.v, outPoints = this.o, inPoints = this.i;
- var init = 0;
- if (this.c) {
- newPath.setTripleAt(vertices[0][0], vertices[0][1], inPoints[0][0], inPoints[0][1], outPoints[0][0], outPoints[0][1], 0, false);
- init = 1;
+ return keys;
}
- var cnt = this._length - 1;
- var len = this._length;
- var i;
- for (i = init; i < len; i += 1) {
- newPath.setTripleAt(vertices[cnt][0], vertices[cnt][1], inPoints[cnt][0], inPoints[cnt][1], outPoints[cnt][0], outPoints[cnt][1], i, false);
- cnt -= 1;
- }
- return newPath;
-};
-var ShapePropertyFactory = (function(){
+ return function (_markers) {
+ var markers = [];
- var initFrame = -999999;
+ for (var i = 0; i < _markers.length; i += 1) {
+ var _marker = _markers[i];
+ var markerData = {
+ time: _marker.tm,
+ duration: _marker.dr
+ };
- function interpolateShape(frameNum, previousValue, caching) {
- var iterationIndex = caching.lastIndex;
- var keyPropS,keyPropE,isHold, j, k, jLen, kLen, perc, vertexValue;
- var kf = this.keyframes;
- if(frameNum < kf[0].t-this.offsetTime){
- keyPropS = kf[0].s[0];
- isHold = true;
- iterationIndex = 0;
- }else if(frameNum >= kf[kf.length - 1].t-this.offsetTime){
- keyPropS = kf[kf.length - 1].s ? kf[kf.length - 1].s[0] : kf[kf.length - 2].e[0];
- /*if(kf[kf.length - 1].s){
- keyPropS = kf[kf.length - 1].s[0];
- }else{
- keyPropS = kf[kf.length - 2].e[0];
- }*/
- isHold = true;
- }else{
- var i = iterationIndex;
- var len = kf.length- 1,flag = true,keyData,nextKeyData;
- while(flag){
- keyData = kf[i];
- nextKeyData = kf[i+1];
- if((nextKeyData.t - this.offsetTime) > frameNum){
- break;
- }
- if(i < len - 1){
- i += 1;
- }else{
- flag = false;
- }
- }
- isHold = keyData.h === 1;
- iterationIndex = i;
- if(!isHold){
- if(frameNum >= nextKeyData.t-this.offsetTime){
- perc = 1;
- }else if(frameNum < keyData.t-this.offsetTime){
- perc = 0;
- }else{
- var fnc;
- if(keyData.__fnct){
- fnc = keyData.__fnct;
- }else{
- fnc = BezierFactory.getBezierEasing(keyData.o.x,keyData.o.y,keyData.i.x,keyData.i.y).get;
- keyData.__fnct = fnc;
- }
- perc = fnc((frameNum-(keyData.t-this.offsetTime))/((nextKeyData.t-this.offsetTime)-(keyData.t-this.offsetTime)));
- }
- keyPropE = nextKeyData.s ? nextKeyData.s[0] : keyData.e[0];
- }
- keyPropS = keyData.s[0];
- }
- jLen = previousValue._length;
- kLen = keyPropS.i[0].length;
- caching.lastIndex = iterationIndex;
-
- for(j=0;j endTime && frameNum > endTime)))){
- ////
- this._caching.lastIndex = lastFrame < frameNum ? this._caching.lastIndex : 0;
- this.interpolateShape(frameNum, this.pv, this._caching);
- ////
- }
- this._caching.lastFrame = frameNum;
- return this.pv;
- }
+ markers.push(markerData);
+ }
- function resetShape(){
- this.paths = this.localShapeCollection;
+ return markers;
+ };
+ }();
+
+ var ProjectInterface = function () {
+ function registerComposition(comp) {
+ this.compositions.push(comp);
}
- function shapesEqual(shape1, shape2) {
- if(shape1._length !== shape2._length || shape1.c !== shape2.c){
- return false;
- }
- var i, len = shape1._length;
- for(i = 0; i < len; i += 1) {
- if(shape1.v[i][0] !== shape2.v[i][0]
- || shape1.v[i][1] !== shape2.v[i][1]
- || shape1.o[i][0] !== shape2.o[i][0]
- || shape1.o[i][1] !== shape2.o[i][1]
- || shape1.i[i][0] !== shape2.i[i][0]
- || shape1.i[i][1] !== shape2.i[i][1]) {
- return false;
+ return function () {
+ function _thisProjectFunction(name) {
+ var i = 0;
+ var len = this.compositions.length;
+
+ while (i < len) {
+ if (this.compositions[i].data && this.compositions[i].data.nm === name) {
+ if (this.compositions[i].prepareFrame && this.compositions[i].data.xt) {
+ this.compositions[i].prepareFrame(this.currentFrame);
}
- }
- return true;
- }
- function setVValue(newPath) {
- if(!shapesEqual(this.v, newPath)) {
- this.v = shape_pool.clone(newPath);
- this.localShapeCollection.releaseShapes();
- this.localShapeCollection.addShape(this.v);
- this._mdf = true;
- this.paths = this.localShapeCollection;
+ return this.compositions[i].compInterface;
+ }
+
+ i += 1;
}
- }
- function processEffectsSequence() {
- if(this.elem.globalData.frameId === this.frameId || !this.effectsSequence.length) {
- return;
- }
- if(this.lock) {
- this.setVValue(this.pv);
- return;
- }
- this.lock = true;
- this._mdf = false;
- var finalValue = this.kf ? this.pv : this.data.ks ? this.data.ks.k : this.data.pt.k;
- var i, len = this.effectsSequence.length;
- for(i = 0; i < len; i += 1) {
- finalValue = this.effectsSequence[i](finalValue);
- }
- this.setVValue(finalValue);
- this.lock = false;
- this.frameId = this.elem.globalData.frameId;
- };
+ return null;
+ }
- function ShapeProperty(elem, data, type){
- this.propType = 'shape';
- this.comp = elem.comp;
- this.container = elem;
- this.elem = elem;
- this.data = data;
- this.k = false;
- this.kf = false;
- this._mdf = false;
- var pathData = type === 3 ? data.pt.k : data.ks.k;
- this.v = shape_pool.clone(pathData);
- this.pv = shape_pool.clone(this.v);
- this.localShapeCollection = shapeCollection_pool.newShapeCollection();
- this.paths = this.localShapeCollection;
- this.paths.addShape(this.v);
- this.reset = resetShape;
- this.effectsSequence = [];
- }
+ _thisProjectFunction.compositions = [];
+ _thisProjectFunction.currentFrame = 0;
+ _thisProjectFunction.registerComposition = registerComposition;
+ return _thisProjectFunction;
+ };
+ }();
- function addEffect(effectFunction) {
- this.effectsSequence.push(effectFunction);
- this.container.addDynamicProperty(this);
- }
+ var renderers = {};
- ShapeProperty.prototype.interpolateShape = interpolateShape;
- ShapeProperty.prototype.getValue = processEffectsSequence;
- ShapeProperty.prototype.setVValue = setVValue;
- ShapeProperty.prototype.addEffect = addEffect;
+ var registerRenderer = function registerRenderer(key, value) {
+ renderers[key] = value;
+ };
- function KeyframedShapeProperty(elem,data,type){
- this.propType = 'shape';
- this.comp = elem.comp;
- this.elem = elem;
- this.container = elem;
- this.offsetTime = elem.data.st;
- this.keyframes = type === 3 ? data.pt.k : data.ks.k;
- this.k = true;
- this.kf = true;
- var i, len = this.keyframes[0].s[0].i.length;
- var jLen = this.keyframes[0].s[0].i[0].length;
- this.v = shape_pool.newElement();
- this.v.setPathData(this.keyframes[0].s[0].c, len);
- this.pv = shape_pool.clone(this.v);
- this.localShapeCollection = shapeCollection_pool.newShapeCollection();
- this.paths = this.localShapeCollection;
- this.paths.addShape(this.v);
- this.lastFrame = initFrame;
- this.reset = resetShape;
- this._caching = {lastFrame: initFrame, lastIndex: 0};
- this.effectsSequence = [interpolateShapeCurrentTime.bind(this)];
- }
- KeyframedShapeProperty.prototype.getValue = processEffectsSequence;
- KeyframedShapeProperty.prototype.interpolateShape = interpolateShape;
- KeyframedShapeProperty.prototype.setVValue = setVValue;
- KeyframedShapeProperty.prototype.addEffect = addEffect;
+ function getRenderer(key) {
+ return renderers[key];
+ }
- var EllShapeProperty = (function(){
-
- var cPoint = roundCorner;
-
- function EllShapeProperty(elem,data) {
- /*this.v = {
- v: createSizedArray(4),
- i: createSizedArray(4),
- o: createSizedArray(4),
- c: true
- };*/
- this.v = shape_pool.newElement();
- this.v.setPathData(true, 4);
- this.localShapeCollection = shapeCollection_pool.newShapeCollection();
- this.paths = this.localShapeCollection;
- this.localShapeCollection.addShape(this.v);
- this.d = data.d;
- this.elem = elem;
- this.comp = elem.comp;
- this.frameId = -1;
- this.initDynamicPropertyContainer(elem);
- this.p = PropertyFactory.getProp(elem,data.p,1,0,this);
- this.s = PropertyFactory.getProp(elem,data.s,1,0,this);
- if(this.dynamicProperties.length){
- this.k = true;
- }else{
- this.k = false;
- this.convertEllToPath();
- }
- };
+ function getRegisteredRenderer() {
+ // Returns canvas by default for compatibility
+ if (renderers.canvas) {
+ return 'canvas';
+ } // Returns any renderer that is registered
- EllShapeProperty.prototype = {
- reset: resetShape,
- getValue: function (){
- if(this.elem.globalData.frameId === this.frameId){
- return;
- }
- this.frameId = this.elem.globalData.frameId;
- this.iterateDynamicProperties();
- if(this._mdf){
- this.convertEllToPath();
- }
- },
- convertEllToPath: function() {
- var p0 = this.p.v[0], p1 = this.p.v[1], s0 = this.s.v[0]/2, s1 = this.s.v[1]/2;
- var _cw = this.d !== 3;
- var _v = this.v;
- _v.v[0][0] = p0;
- _v.v[0][1] = p1 - s1;
- _v.v[1][0] = _cw ? p0 + s0 : p0 - s0;
- _v.v[1][1] = p1;
- _v.v[2][0] = p0;
- _v.v[2][1] = p1 + s1;
- _v.v[3][0] = _cw ? p0 - s0 : p0 + s0;
- _v.v[3][1] = p1;
- _v.i[0][0] = _cw ? p0 - s0 * cPoint : p0 + s0 * cPoint;
- _v.i[0][1] = p1 - s1;
- _v.i[1][0] = _cw ? p0 + s0 : p0 - s0;
- _v.i[1][1] = p1 - s1 * cPoint;
- _v.i[2][0] = _cw ? p0 + s0 * cPoint : p0 - s0 * cPoint;
- _v.i[2][1] = p1 + s1;
- _v.i[3][0] = _cw ? p0 - s0 : p0 + s0;
- _v.i[3][1] = p1 + s1 * cPoint;
- _v.o[0][0] = _cw ? p0 + s0 * cPoint : p0 - s0 * cPoint;
- _v.o[0][1] = p1 - s1;
- _v.o[1][0] = _cw ? p0 + s0 : p0 - s0;
- _v.o[1][1] = p1 + s1 * cPoint;
- _v.o[2][0] = _cw ? p0 - s0 * cPoint : p0 + s0 * cPoint;
- _v.o[2][1] = p1 + s1;
- _v.o[3][0] = _cw ? p0 - s0 : p0 + s0;
- _v.o[3][1] = p1 - s1 * cPoint;
- }
- }
+ for (var key in renderers) {
+ if (renderers[key]) {
+ return key;
+ }
+ }
- extendPrototype([DynamicPropertyContainer], EllShapeProperty);
+ return '';
+ }
- return EllShapeProperty;
- }());
+ function _typeof$4(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof$4 = function _typeof(obj) { return typeof obj; }; } else { _typeof$4 = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof$4(obj); }
- var StarShapeProperty = (function() {
+ var AnimationItem = function AnimationItem() {
+ this._cbs = [];
+ this.name = '';
+ this.path = '';
+ this.isLoaded = false;
+ this.currentFrame = 0;
+ this.currentRawFrame = 0;
+ this.firstFrame = 0;
+ this.totalFrames = 0;
+ this.frameRate = 0;
+ this.frameMult = 0;
+ this.playSpeed = 1;
+ this.playDirection = 1;
+ this.playCount = 0;
+ this.animationData = {};
+ this.assets = [];
+ this.isPaused = true;
+ this.autoplay = false;
+ this.loop = true;
+ this.renderer = null;
+ this.animationID = createElementID();
+ this.assetsPath = '';
+ this.timeCompleted = 0;
+ this.segmentPos = 0;
+ this.isSubframeEnabled = getSubframeEnabled();
+ this.segments = [];
+ this._idle = true;
+ this._completedLoop = false;
+ this.projectInterface = ProjectInterface();
+ this.imagePreloader = new ImagePreloader();
+ this.audioController = audioControllerFactory();
+ this.markers = [];
+ this.configAnimation = this.configAnimation.bind(this);
+ this.onSetupError = this.onSetupError.bind(this);
+ this.onSegmentComplete = this.onSegmentComplete.bind(this);
+ this.drawnFrameEvent = new BMEnterFrameEvent('drawnFrame', 0, 0, 0);
+ this.expressionsPlugin = getExpressionsPlugin();
+ };
- function StarShapeProperty(elem,data) {
- this.v = shape_pool.newElement();
- this.v.setPathData(true, 0);
- this.elem = elem;
- this.comp = elem.comp;
- this.data = data;
- this.frameId = -1;
- this.d = data.d;
- this.initDynamicPropertyContainer(elem);
- if(data.sy === 1){
- this.ir = PropertyFactory.getProp(elem,data.ir,0,0,this);
- this.is = PropertyFactory.getProp(elem,data.is,0,0.01,this);
- this.convertToPath = this.convertStarToPath;
- } else {
- this.convertToPath = this.convertPolygonToPath;
- }
- this.pt = PropertyFactory.getProp(elem,data.pt,0,0,this);
- this.p = PropertyFactory.getProp(elem,data.p,1,0,this);
- this.r = PropertyFactory.getProp(elem,data.r,0,degToRads,this);
- this.or = PropertyFactory.getProp(elem,data.or,0,0,this);
- this.os = PropertyFactory.getProp(elem,data.os,0,0.01,this);
- this.localShapeCollection = shapeCollection_pool.newShapeCollection();
- this.localShapeCollection.addShape(this.v);
- this.paths = this.localShapeCollection;
- if(this.dynamicProperties.length){
- this.k = true;
- }else{
- this.k = false;
- this.convertToPath();
- }
- };
+ extendPrototype([BaseEvent], AnimationItem);
- StarShapeProperty.prototype = {
- reset: resetShape,
- getValue: function() {
- if(this.elem.globalData.frameId === this.frameId){
- return;
- }
- this.frameId = this.elem.globalData.frameId;
- this.iterateDynamicProperties();
- if(this._mdf){
- this.convertToPath();
- }
- },
- convertStarToPath: function() {
- var numPts = Math.floor(this.pt.v)*2;
- var angle = Math.PI*2/numPts;
- /*this.v.v.length = numPts;
- this.v.i.length = numPts;
- this.v.o.length = numPts;*/
- var longFlag = true;
- var longRad = this.or.v;
- var shortRad = this.ir.v;
- var longRound = this.os.v;
- var shortRound = this.is.v;
- var longPerimSegment = 2*Math.PI*longRad/(numPts*2);
- var shortPerimSegment = 2*Math.PI*shortRad/(numPts*2);
- var i, rad,roundness,perimSegment, currentAng = -Math.PI/ 2;
- currentAng += this.r.v;
- var dir = this.data.d === 3 ? -1 : 1;
- this.v._length = 0;
- for(i=0;i this.animationData.op) {
+ this.animationData.op = data.op;
+ this.totalFrames = Math.floor(data.op - this.animationData.ip);
}
- this.frameId = this.elem.globalData.frameId;
- this.iterateDynamicProperties();
-};
-extendPrototype([DynamicPropertyContainer], ShapeModifier);
-function TrimModifier(){
-}
-extendPrototype([ShapeModifier], TrimModifier);
-TrimModifier.prototype.initModifierProperties = function(elem, data) {
- this.s = PropertyFactory.getProp(elem, data.s, 0, 0.01, this);
- this.e = PropertyFactory.getProp(elem, data.e, 0, 0.01, this);
- this.o = PropertyFactory.getProp(elem, data.o, 0, 0, this);
- this.sValue = 0;
- this.eValue = 0;
- this.getValue = this.processKeys;
- this.m = data.m;
- this._isAnimated = !!this.s.effectsSequence.length || !!this.e.effectsSequence.length || !!this.o.effectsSequence.length;
-};
+ var layers = this.animationData.layers;
+ var i;
+ var len = layers.length;
+ var newLayers = data.layers;
+ var j;
+ var jLen = newLayers.length;
-TrimModifier.prototype.addShapeToModifier = function(shapeData){
- shapeData.pathsData = [];
-};
+ for (j = 0; j < jLen; j += 1) {
+ i = 0;
-TrimModifier.prototype.calculateShapeEdges = function(s, e, shapeLength, addedLength, totalModifierLength) {
- var segments = [];
- if (e <= 1) {
- segments.push({
- s: s,
- e: e
- });
- } else if (s >= 1) {
- segments.push({
- s: s - 1,
- e: e - 1
- });
- } else {
- segments.push({
- s: s,
- e: 1
- });
- segments.push({
- s: 0,
- e: e - 1
- });
- }
- var shapeSegments = [];
- var i, len = segments.length, segmentOb;
- for (i = 0; i < len; i += 1) {
- segmentOb = segments[i];
- if (segmentOb.e * totalModifierLength < addedLength || segmentOb.s * totalModifierLength > addedLength + shapeLength) {
-
- } else {
- var shapeS, shapeE;
- if (segmentOb.s * totalModifierLength <= addedLength) {
- shapeS = 0;
- } else {
- shapeS = (segmentOb.s * totalModifierLength - addedLength) / shapeLength;
- }
- if(segmentOb.e * totalModifierLength >= addedLength + shapeLength) {
- shapeE = 1;
- } else {
- shapeE = ((segmentOb.e * totalModifierLength - addedLength) / shapeLength);
- }
- shapeSegments.push([shapeS, shapeE]);
+ while (i < len) {
+ if (layers[i].id === newLayers[j].id) {
+ layers[i] = newLayers[j];
+ break;
}
+
+ i += 1;
+ }
}
- if (!shapeSegments.length) {
- shapeSegments.push([0, 0]);
+
+ if (data.chars || data.fonts) {
+ this.renderer.globalData.fontManager.addChars(data.chars);
+ this.renderer.globalData.fontManager.addFonts(data.fonts, this.renderer.globalData.defs);
}
- return shapeSegments;
-};
-TrimModifier.prototype.releasePathsData = function(pathsData) {
- var i, len = pathsData.length;
- for (i = 0; i < len; i += 1) {
- segments_length_pool.release(pathsData[i]);
+ if (data.assets) {
+ len = data.assets.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.animationData.assets.push(data.assets[i]);
+ }
}
- pathsData.length = 0;
- return pathsData;
-};
-TrimModifier.prototype.processShapes = function(_isFirstFrame) {
- var s, e;
- if (this._mdf || _isFirstFrame) {
- var o = (this.o.v % 360) / 360;
- if (o < 0) {
- o += 1;
- }
- s = (this.s.v > 1 ? 1 : this.s.v < 0 ? 0 : this.s.v) + o;
- e = (this.e.v > 1 ? 1 : this.e.v < 0 ? 0 : this.e.v) + o;
- if (s === e) {
+ this.animationData.__complete = false;
+ dataManager.completeAnimation(this.animationData, this.onSegmentComplete);
+ };
- }
- if (s > e) {
- var _s = s;
- s = e;
- e = _s;
- }
- s = Math.round(s * 10000) * 0.0001;
- e = Math.round(e * 10000) * 0.0001;
- this.sValue = s;
- this.eValue = e;
- } else {
- s = this.sValue;
- e = this.eValue;
+ AnimationItem.prototype.onSegmentComplete = function (data) {
+ this.animationData = data;
+ var expressionsPlugin = getExpressionsPlugin();
+
+ if (expressionsPlugin) {
+ expressionsPlugin.initExpressions(this);
}
- var shapePaths;
- var i, len = this.shapes.length, j, jLen;
- var pathsData, pathData, totalShapeLength, totalModifierLength = 0;
- if (e === s) {
- for (i = 0; i < len; i += 1) {
- this.shapes[i].localShapeCollection.releaseShapes();
- this.shapes[i].shape._mdf = true;
- this.shapes[i].shape.paths = this.shapes[i].localShapeCollection;
- }
- } else if (!((e === 1 && s === 0) || (e===0 && s === 1))){
- var segments = [], shapeData, localShapeCollection;
- for (i = 0; i < len; i += 1) {
- shapeData = this.shapes[i];
- // if shape hasn't changed and trim properties haven't changed, cached previous path can be used
- if (!shapeData.shape._mdf && !this._mdf && !_isFirstFrame && this.m !== 2) {
- shapeData.shape.paths = shapeData.localShapeCollection;
- } else {
- shapePaths = shapeData.shape.paths;
- jLen = shapePaths._length;
- totalShapeLength = 0;
- if (!shapeData.shape._mdf && shapeData.pathsData.length) {
- totalShapeLength = shapeData.totalShapeLength;
- } else {
- pathsData = this.releasePathsData(shapeData.pathsData);
- for (j = 0; j < jLen; j += 1) {
- pathData = bez.getSegmentsLength(shapePaths.shapes[j]);
- pathsData.push(pathData);
- totalShapeLength += pathData.totalLength;
- }
- shapeData.totalShapeLength = totalShapeLength;
- shapeData.pathsData = pathsData;
- }
+ this.loadNextSegment();
+ };
- totalModifierLength += totalShapeLength;
- shapeData.shape._mdf = true;
- }
- }
- var shapeS = s, shapeE = e, addedLength = 0, edges;
- for (i = len - 1; i >= 0; i -= 1) {
- shapeData = this.shapes[i];
- if (shapeData.shape._mdf) {
- localShapeCollection = shapeData.localShapeCollection;
- localShapeCollection.releaseShapes();
- //if m === 2 means paths are trimmed individually so edges need to be found for this specific shape relative to whoel group
- if (this.m === 2 && len > 1) {
- edges = this.calculateShapeEdges(s, e, shapeData.totalShapeLength, addedLength, totalModifierLength);
- addedLength += shapeData.totalShapeLength;
- } else {
- edges = [[shapeS, shapeE]];
- }
- jLen = edges.length;
- for (j = 0; j < jLen; j += 1) {
- shapeS = edges[j][0];
- shapeE = edges[j][1];
- segments.length = 0;
- if (shapeE <= 1) {
- segments.push({
- s:shapeData.totalShapeLength * shapeS,
- e:shapeData.totalShapeLength * shapeE
- });
- } else if (shapeS >= 1) {
- segments.push({
- s:shapeData.totalShapeLength * (shapeS - 1),
- e:shapeData.totalShapeLength * (shapeE - 1)
- });
- } else {
- segments.push({
- s:shapeData.totalShapeLength * shapeS,
- e:shapeData.totalShapeLength
- });
- segments.push({
- s:0,
- e:shapeData.totalShapeLength * (shapeE - 1)
- });
- }
- var newShapesData = this.addShapes(shapeData,segments[0]);
- if (segments[0].s !== segments[0].e) {
- if (segments.length > 1) {
- var lastShapeInCollection = shapeData.shape.paths.shapes[shapeData.shape.paths._length - 1];
- if (lastShapeInCollection.c) {
- var lastShape = newShapesData.pop();
- this.addPaths(newShapesData, localShapeCollection);
- newShapesData = this.addShapes(shapeData, segments[1], lastShape);
- } else {
- this.addPaths(newShapesData, localShapeCollection);
- newShapesData = this.addShapes(shapeData, segments[1]);
- }
- }
- this.addPaths(newShapesData, localShapeCollection);
- }
-
- }
- shapeData.shape.paths = localShapeCollection;
- }
- }
- } else if (this._mdf) {
- for (i = 0; i < len; i += 1) {
- //Releasign Trim Cached paths data when no trim applied in case shapes are modified inbetween.
- //Don't remove this even if it's losing cached info.
- this.shapes[i].pathsData.length = 0;
- this.shapes[i].shape._mdf = true;
- }
+ AnimationItem.prototype.loadNextSegment = function () {
+ var segments = this.animationData.segments;
+
+ if (!segments || segments.length === 0 || !this.autoloadSegments) {
+ this.trigger('data_ready');
+ this.timeCompleted = this.totalFrames;
+ return;
}
-};
-TrimModifier.prototype.addPaths = function(newPaths, localShapeCollection) {
- var i, len = newPaths.length;
- for (i = 0; i < len; i += 1) {
- localShapeCollection.addShape(newPaths[i]);
+ var segment = segments.shift();
+ this.timeCompleted = segment.time * this.frameRate;
+ var segmentPath = this.path + this.fileName + '_' + this.segmentPos + '.json';
+ this.segmentPos += 1;
+ dataManager.loadData(segmentPath, this.includeLayers.bind(this), function () {
+ this.trigger('data_failed');
+ }.bind(this));
+ };
+
+ AnimationItem.prototype.loadSegments = function () {
+ var segments = this.animationData.segments;
+
+ if (!segments) {
+ this.timeCompleted = this.totalFrames;
}
-};
-TrimModifier.prototype.addSegment = function(pt1, pt2, pt3, pt4, shapePath, pos, newShape) {
- shapePath.setXYAt(pt2[0], pt2[1], 'o', pos);
- shapePath.setXYAt(pt3[0], pt3[1], 'i', pos + 1);
- if(newShape){
- shapePath.setXYAt(pt1[0], pt1[1], 'v', pos);
+ this.loadNextSegment();
+ };
+
+ AnimationItem.prototype.imagesLoaded = function () {
+ this.trigger('loaded_images');
+ this.checkLoaded();
+ };
+
+ AnimationItem.prototype.preloadImages = function () {
+ this.imagePreloader.setAssetsPath(this.assetsPath);
+ this.imagePreloader.setPath(this.path);
+ this.imagePreloader.loadAssets(this.animationData.assets, this.imagesLoaded.bind(this));
+ };
+
+ AnimationItem.prototype.configAnimation = function (animData) {
+ if (!this.renderer) {
+ return;
}
- shapePath.setXYAt(pt4[0], pt4[1], 'v', pos + 1);
-};
-TrimModifier.prototype.addSegmentFromArray = function(points, shapePath, pos, newShape) {
- shapePath.setXYAt(points[1], points[5], 'o', pos);
- shapePath.setXYAt(points[2], points[6], 'i', pos + 1);
- if(newShape){
- shapePath.setXYAt(points[0], points[4], 'v', pos);
+ try {
+ this.animationData = animData;
+
+ if (this.initialSegment) {
+ this.totalFrames = Math.floor(this.initialSegment[1] - this.initialSegment[0]);
+ this.firstFrame = Math.round(this.initialSegment[0]);
+ } else {
+ this.totalFrames = Math.floor(this.animationData.op - this.animationData.ip);
+ this.firstFrame = Math.round(this.animationData.ip);
+ }
+
+ this.renderer.configAnimation(animData);
+
+ if (!animData.assets) {
+ animData.assets = [];
+ }
+
+ this.assets = this.animationData.assets;
+ this.frameRate = this.animationData.fr;
+ this.frameMult = this.animationData.fr / 1000;
+ this.renderer.searchExtraCompositions(animData.assets);
+ this.markers = markerParser(animData.markers || []);
+ this.trigger('config_ready');
+ this.preloadImages();
+ this.loadSegments();
+ this.updaFrameModifier();
+ this.waitForFontsLoaded();
+
+ if (this.isPaused) {
+ this.audioController.pause();
+ }
+ } catch (error) {
+ this.triggerConfigError(error);
}
- shapePath.setXYAt(points[3], points[7], 'v', pos + 1);
-};
+ };
-TrimModifier.prototype.addShapes = function(shapeData, shapeSegment, shapePath) {
- var pathsData = shapeData.pathsData;
- var shapePaths = shapeData.shape.paths.shapes;
- var i, len = shapeData.shape.paths._length, j, jLen;
- var addedLength = 0;
- var currentLengthData,segmentCount;
- var lengths;
- var segment;
- var shapes = [];
- var initPos;
- var newShape = true;
- if (!shapePath) {
- shapePath = shape_pool.newElement();
- segmentCount = 0;
- initPos = 0;
- } else {
- segmentCount = shapePath._length;
- initPos = shapePath._length;
+ AnimationItem.prototype.waitForFontsLoaded = function () {
+ if (!this.renderer) {
+ return;
}
- shapes.push(shapePath);
- for (i = 0; i < len; i += 1) {
- lengths = pathsData[i].lengths;
- shapePath.c = shapePaths[i].c;
- jLen = shapePaths[i].c ? lengths.length : lengths.length + 1;
- for (j = 1; j < jLen; j +=1) {
- currentLengthData = lengths[j-1];
- if (addedLength + currentLengthData.addedLength < shapeSegment.s) {
- addedLength += currentLengthData.addedLength;
- shapePath.c = false;
- } else if(addedLength > shapeSegment.e) {
- shapePath.c = false;
- break;
- } else {
- if (shapeSegment.s <= addedLength && shapeSegment.e >= addedLength + currentLengthData.addedLength) {
- this.addSegment(shapePaths[i].v[j - 1], shapePaths[i].o[j - 1], shapePaths[i].i[j], shapePaths[i].v[j], shapePath, segmentCount, newShape);
- newShape = false;
- } else {
- segment = bez.getNewSegment(shapePaths[i].v[j - 1], shapePaths[i].v[j], shapePaths[i].o[j - 1], shapePaths[i].i[j], (shapeSegment.s - addedLength)/currentLengthData.addedLength,(shapeSegment.e - addedLength)/currentLengthData.addedLength, lengths[j-1]);
- this.addSegmentFromArray(segment, shapePath, segmentCount, newShape);
- // this.addSegment(segment.pt1, segment.pt3, segment.pt4, segment.pt2, shapePath, segmentCount, newShape);
- newShape = false;
- shapePath.c = false;
- }
- addedLength += currentLengthData.addedLength;
- segmentCount += 1;
- }
- }
- if (shapePaths[i].c && lengths.length) {
- currentLengthData = lengths[j - 1];
- if (addedLength <= shapeSegment.e) {
- var segmentLength = lengths[j - 1].addedLength;
- if (shapeSegment.s <= addedLength && shapeSegment.e >= addedLength + segmentLength) {
- this.addSegment(shapePaths[i].v[j - 1], shapePaths[i].o[j - 1], shapePaths[i].i[0], shapePaths[i].v[0], shapePath, segmentCount, newShape);
- newShape = false;
- } else {
- segment = bez.getNewSegment(shapePaths[i].v[j - 1], shapePaths[i].v[0], shapePaths[i].o[j - 1], shapePaths[i].i[0], (shapeSegment.s - addedLength) / segmentLength, (shapeSegment.e - addedLength) / segmentLength, lengths[j - 1]);
- this.addSegmentFromArray(segment, shapePath, segmentCount, newShape);
- // this.addSegment(segment.pt1, segment.pt3, segment.pt4, segment.pt2, shapePath, segmentCount, newShape);
- newShape = false;
- shapePath.c = false;
- }
- } else {
- shapePath.c = false;
- }
- addedLength += currentLengthData.addedLength;
- segmentCount += 1;
- }
- if (shapePath._length) {
- shapePath.setXYAt(shapePath.v[initPos][0], shapePath.v[initPos][1], 'i', initPos);
- shapePath.setXYAt(shapePath.v[shapePath._length - 1][0], shapePath.v[shapePath._length - 1][1],'o', shapePath._length - 1);
- }
- if (addedLength > shapeSegment.e) {
- break;
- }
- if (i < len - 1) {
- shapePath = shape_pool.newElement();
- newShape = true;
- shapes.push(shapePath);
- segmentCount = 0;
- }
+
+ if (this.renderer.globalData.fontManager.isLoaded) {
+ this.checkLoaded();
+ } else {
+ setTimeout(this.waitForFontsLoaded.bind(this), 20);
}
- return shapes;
-};
+ };
+ AnimationItem.prototype.checkLoaded = function () {
+ if (!this.isLoaded && this.renderer.globalData.fontManager.isLoaded && (this.imagePreloader.loadedImages() || this.renderer.rendererType !== 'canvas') && this.imagePreloader.loadedFootages()) {
+ this.isLoaded = true;
+ var expressionsPlugin = getExpressionsPlugin();
-ShapeModifiers.registerModifier('tm', TrimModifier);
-function RoundCornersModifier(){}
-extendPrototype([ShapeModifier],RoundCornersModifier);
-RoundCornersModifier.prototype.initModifierProperties = function(elem,data){
- this.getValue = this.processKeys;
- this.rd = PropertyFactory.getProp(elem,data.r,0,null,this);
- this._isAnimated = !!this.rd.effectsSequence.length;
-};
-
-RoundCornersModifier.prototype.processPath = function(path, round){
- var cloned_path = shape_pool.newElement();
- cloned_path.c = path.c;
- var i, len = path._length;
- var currentV,currentI,currentO,closerV, newV,newO,newI,distance,newPosPerc,index = 0;
- var vX,vY,oX,oY,iX,iY;
- for(i=0;i this.timeCompleted) {
+ this.currentFrame = this.timeCompleted;
}
- if(!this.dynamicProperties.length){
- this._mdf = false;
+
+ this.trigger('enterFrame');
+ this.renderFrame();
+ this.trigger('drawnFrame');
+ };
+
+ AnimationItem.prototype.renderFrame = function () {
+ if (this.isLoaded === false || !this.renderer) {
+ return;
}
-};
-ShapeModifiers.registerModifier('rd',RoundCornersModifier);
-function RepeaterModifier(){}
-extendPrototype([ShapeModifier], RepeaterModifier);
+ try {
+ if (this.expressionsPlugin) {
+ this.expressionsPlugin.resetFrame();
+ }
+
+ this.renderer.renderFrame(this.currentFrame + this.firstFrame);
+ } catch (error) {
+ this.triggerRenderFrameError(error);
+ }
+ };
-RepeaterModifier.prototype.initModifierProperties = function(elem,data){
- this.getValue = this.processKeys;
- this.c = PropertyFactory.getProp(elem,data.c,0,null,this);
- this.o = PropertyFactory.getProp(elem,data.o,0,null,this);
- this.tr = TransformPropertyFactory.getTransformProperty(elem,data.tr,this);
- this.so = PropertyFactory.getProp(elem,data.tr.so,0,0.01,this);
- this.eo = PropertyFactory.getProp(elem,data.tr.eo,0,0.01,this);
- this.data = data;
- if(!this.dynamicProperties.length){
- this.getValue(true);
+ AnimationItem.prototype.play = function (name) {
+ if (name && this.name !== name) {
+ return;
}
- this._isAnimated = !!this.dynamicProperties.length;
- this.pMatrix = new Matrix();
- this.rMatrix = new Matrix();
- this.sMatrix = new Matrix();
- this.tMatrix = new Matrix();
- this.matrix = new Matrix();
-};
-RepeaterModifier.prototype.applyTransforms = function(pMatrix, rMatrix, sMatrix, transform, perc, inv){
- var dir = inv ? -1 : 1;
- var scaleX = transform.s.v[0] + (1 - transform.s.v[0]) * (1 - perc);
- var scaleY = transform.s.v[1] + (1 - transform.s.v[1]) * (1 - perc);
- pMatrix.translate(transform.p.v[0] * dir * perc, transform.p.v[1] * dir * perc, transform.p.v[2]);
- rMatrix.translate(-transform.a.v[0], -transform.a.v[1], transform.a.v[2]);
- rMatrix.rotate(-transform.r.v * dir * perc);
- rMatrix.translate(transform.a.v[0], transform.a.v[1], transform.a.v[2]);
- sMatrix.translate(-transform.a.v[0], -transform.a.v[1], transform.a.v[2]);
- sMatrix.scale(inv ? 1/scaleX : scaleX, inv ? 1/scaleY : scaleY);
- sMatrix.translate(transform.a.v[0], transform.a.v[1], transform.a.v[2]);
-};
+ if (this.isPaused === true) {
+ this.isPaused = false;
+ this.trigger('_play');
+ this.audioController.resume();
-RepeaterModifier.prototype.init = function(elem, arr, pos, elemsData) {
- this.elem = elem;
- this.arr = arr;
- this.pos = pos;
- this.elemsData = elemsData;
- this._currentCopies = 0;
- this._elements = [];
- this._groups = [];
- this.frameId = -1;
- this.initDynamicPropertyContainer(elem);
- this.initModifierProperties(elem,arr[pos]);
- var cont = 0;
- while(pos>0){
- pos -= 1;
- //this._elements.unshift(arr.splice(pos,1)[0]);
- this._elements.unshift(arr[pos]);
- cont += 1;
+ if (this._idle) {
+ this._idle = false;
+ this.trigger('_active');
+ }
}
- if(this.dynamicProperties.length){
- this.k = true;
- }else{
- this.getValue(true);
+ };
+
+ AnimationItem.prototype.pause = function (name) {
+ if (name && this.name !== name) {
+ return;
}
-};
-RepeaterModifier.prototype.resetElements = function(elements){
- var i, len = elements.length;
- for(i = 0; i < len; i += 1) {
- elements[i]._processed = false;
- if(elements[i].ty === 'gr'){
- this.resetElements(elements[i].it);
- }
+ if (this.isPaused === false) {
+ this.isPaused = true;
+ this.trigger('_pause');
+ this._idle = true;
+ this.trigger('_idle');
+ this.audioController.pause();
}
-};
+ };
-RepeaterModifier.prototype.cloneElements = function(elements){
- var i, len = elements.length;
- var newElements = JSON.parse(JSON.stringify(elements));
- this.resetElements(newElements);
- return newElements;
-};
-
-RepeaterModifier.prototype.changeGroupRender = function(elements, renderFlag) {
- var i, len = elements.length;
- for(i = 0; i < len; i += 1) {
- elements[i]._render = renderFlag;
- if(elements[i].ty === 'gr') {
- this.changeGroupRender(elements[i].it, renderFlag);
- }
- }
-};
-
-RepeaterModifier.prototype.processShapes = function(_isFirstFrame) {
- var items, itemsTransform, i, dir, cont;
- if(this._mdf || _isFirstFrame){
- var copies = Math.ceil(this.c.v);
- if(this._groups.length < copies){
- while(this._groups.length < copies){
- var group = {
- it:this.cloneElements(this._elements),
- ty:'gr'
- };
- group.it.push({"a":{"a":0,"ix":1,"k":[0,0]},"nm":"Transform","o":{"a":0,"ix":7,"k":100},"p":{"a":0,"ix":2,"k":[0,0]},"r":{"a":1,"ix":6,"k":[{s:0,e:0,t:0},{s:0,e:0,t:1}]},"s":{"a":0,"ix":3,"k":[100,100]},"sa":{"a":0,"ix":5,"k":0},"sk":{"a":0,"ix":4,"k":0},"ty":"tr"});
-
- this.arr.splice(0,0,group);
- this._groups.splice(0,0,group);
- this._currentCopies += 1;
- }
- this.elem.reloadShapes();
- }
- cont = 0;
- var renderFlag;
- for(i = 0; i <= this._groups.length - 1; i += 1){
- renderFlag = cont < copies;
- this._groups[i]._render = renderFlag;
- this.changeGroupRender(this._groups[i].it, renderFlag);
- cont += 1;
- }
-
- this._currentCopies = copies;
- ////
-
- var offset = this.o.v;
- var offsetModulo = offset%1;
- var roundOffset = offset > 0 ? Math.floor(offset) : Math.ceil(offset);
- var k;
- var tMat = this.tr.v.props;
- var pProps = this.pMatrix.props;
- var rProps = this.rMatrix.props;
- var sProps = this.sMatrix.props;
- this.pMatrix.reset();
- this.rMatrix.reset();
- this.sMatrix.reset();
- this.tMatrix.reset();
- this.matrix.reset();
- var iteration = 0;
-
- if(offset > 0) {
- while(iterationroundOffset){
- this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, 1, true);
- iteration -= 1;
- }
- if(offsetModulo){
- this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, - offsetModulo, true);
- iteration -= offsetModulo;
- }
- }
- i = this.data.m === 1 ? 0 : this._currentCopies - 1;
- dir = this.data.m === 1 ? 1 : -1;
- cont = this._currentCopies;
- var j, jLen;
- while(cont){
- items = this.elemsData[i].it;
- itemsTransform = items[items.length - 1].transform.mProps.v.props;
- jLen = itemsTransform.length;
- items[items.length - 1].transform.mProps._mdf = true;
- items[items.length - 1].transform.op._mdf = true;
- items[items.length - 1].transform.op.v = this.so.v + (this.eo.v - this.so.v) * (i / (this._currentCopies - 1));
- if(iteration !== 0){
- if((i !== 0 && dir === 1) || (i !== this._currentCopies - 1 && dir === -1)){
- this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, 1, false);
- }
- this.matrix.transform(rProps[0],rProps[1],rProps[2],rProps[3],rProps[4],rProps[5],rProps[6],rProps[7],rProps[8],rProps[9],rProps[10],rProps[11],rProps[12],rProps[13],rProps[14],rProps[15]);
- this.matrix.transform(sProps[0],sProps[1],sProps[2],sProps[3],sProps[4],sProps[5],sProps[6],sProps[7],sProps[8],sProps[9],sProps[10],sProps[11],sProps[12],sProps[13],sProps[14],sProps[15]);
- this.matrix.transform(pProps[0],pProps[1],pProps[2],pProps[3],pProps[4],pProps[5],pProps[6],pProps[7],pProps[8],pProps[9],pProps[10],pProps[11],pProps[12],pProps[13],pProps[14],pProps[15]);
-
- for(j=0;j 0.01){
- return false;
- }
- i += 1;
+ var numValue = Number(value);
+
+ if (isNaN(numValue)) {
+ var marker = this.getMarkerData(value);
+
+ if (marker) {
+ this.goToAndStop(marker.time, true);
+ }
+ } else if (isFrame) {
+ this.setCurrentRawFrameValue(value);
+ } else {
+ this.setCurrentRawFrameValue(value * this.frameModifier);
}
- return true;
-};
-GradientProperty.prototype.checkCollapsable = function() {
- if (this.o.length/2 !== this.c.length/4) {
- return false;
+ this.pause();
+ };
+
+ AnimationItem.prototype.goToAndPlay = function (value, isFrame, name) {
+ if (name && this.name !== name) {
+ return;
}
- if (this.data.k.k[0].s) {
- var i = 0, len = this.data.k.k.length;
- while (i < len) {
- if (!this.comparePoints(this.data.k.k[i].s, this.data.p)) {
- return false;
- }
- i += 1;
+
+ var numValue = Number(value);
+
+ if (isNaN(numValue)) {
+ var marker = this.getMarkerData(value);
+
+ if (marker) {
+ if (!marker.duration) {
+ this.goToAndStop(marker.time, true);
+ } else {
+ this.playSegments([marker.time, marker.time + marker.duration], true);
}
- } else if(!this.comparePoints(this.data.k.k, this.data.p)) {
- return false;
+ }
+ } else {
+ this.goToAndStop(numValue, isFrame, name);
}
- return true;
-};
-GradientProperty.prototype.getValue = function(forceRender){
- this.prop.getValue();
- this._mdf = false;
- this._cmdf = false;
- this._omdf = false;
- if(this.prop._mdf || forceRender){
- var i, len = this.data.p*4;
- var mult, val;
- for(i=0;i totalFrames - 1 for addressing non looping and looping animations.
+ // If animation won't loop, it should stop at totalFrames - 1. If it will loop it should complete the last frame and then loop.
+
+ if (nextValue >= this.totalFrames - 1 && this.frameModifier > 0) {
+ if (!this.loop || this.playCount === this.loop) {
+ if (!this.checkSegments(nextValue > this.totalFrames ? nextValue % this.totalFrames : 0)) {
+ _isComplete = true;
+ nextValue = this.totalFrames - 1;
}
- if(this.o.length){
- len = this.prop.v.length;
- for(i=this.data.p*4;i= this.totalFrames) {
+ this.playCount += 1;
+
+ if (!this.checkSegments(nextValue % this.totalFrames)) {
+ this.setCurrentRawFrameValue(nextValue % this.totalFrames);
+ this._completedLoop = true;
+ this.trigger('loopComplete');
}
- this._mdf = !forceRender;
- }
-};
-
-extendPrototype([DynamicPropertyContainer], GradientProperty);
-var buildShapeString = function(pathNodes, length, closed, mat) {
- if(length === 0) {
- return '';
- }
- var _o = pathNodes.o;
- var _i = pathNodes.i;
- var _v = pathNodes.v;
- var i, shapeString = " M" + mat.applyToPointStringified(_v[0][0], _v[0][1]);
- for(i = 1; i < length; i += 1) {
- shapeString += " C" + mat.applyToPointStringified(_o[i - 1][0], _o[i - 1][1]) + " " + mat.applyToPointStringified(_i[i][0], _i[i][1]) + " " + mat.applyToPointStringified(_v[i][0], _v[i][1]);
- }
- if (closed && length) {
- shapeString += " C" + mat.applyToPointStringified(_o[i - 1][0], _o[i - 1][1]) + " " + mat.applyToPointStringified(_i[0][0], _i[0][1]) + " " + mat.applyToPointStringified(_v[0][0], _v[0][1]);
- shapeString += 'z';
- }
- return shapeString;
-}
-var ImagePreloader = (function(){
-
- var proxyImage = (function(){
- var canvas = createTag('canvas');
- canvas.width = 1;
- canvas.height = 1;
- var ctx = canvas.getContext('2d');
- ctx.fillStyle = '#FF0000';
- ctx.fillRect(0, 0, 1, 1);
- return canvas;
- }())
-
- function imageLoaded(){
- this.loadedAssets += 1;
- if(this.loadedAssets === this.totalImages){
- if(this.imagesLoadedCb) {
- this.imagesLoadedCb(null);
- }
+ } else {
+ this.setCurrentRawFrameValue(nextValue);
+ }
+ } else if (nextValue < 0) {
+ if (!this.checkSegments(nextValue % this.totalFrames)) {
+ if (this.loop && !(this.playCount-- <= 0 && this.loop !== true)) {
+ // eslint-disable-line no-plusplus
+ this.setCurrentRawFrameValue(this.totalFrames + nextValue % this.totalFrames);
+
+ if (!this._completedLoop) {
+ this._completedLoop = true;
+ } else {
+ this.trigger('loopComplete');
+ }
+ } else {
+ _isComplete = true;
+ nextValue = 0;
}
+ }
+ } else {
+ this.setCurrentRawFrameValue(nextValue);
}
- function getAssetsPath(assetData, assetsPath, original_path) {
- var path = '';
- if (assetData.e) {
- path = assetData.p;
- } else if(assetsPath) {
- var imagePath = assetData.p;
- if (imagePath.indexOf('images/') !== -1) {
- imagePath = imagePath.split('/')[1];
- }
- path = assetsPath + imagePath;
+ if (_isComplete) {
+ this.setCurrentRawFrameValue(nextValue);
+ this.pause();
+ this.trigger('complete');
+ }
+ };
+
+ AnimationItem.prototype.adjustSegment = function (arr, offset) {
+ this.playCount = 0;
+
+ if (arr[1] < arr[0]) {
+ if (this.frameModifier > 0) {
+ if (this.playSpeed < 0) {
+ this.setSpeed(-this.playSpeed);
} else {
- path = original_path;
- path += assetData.u ? assetData.u : '';
- path += assetData.p;
+ this.setDirection(-1);
}
- return path;
- }
+ }
- function createImageData(assetData) {
- var path = getAssetsPath(assetData, this.assetsPath, this.path);
- var img = createTag('img');
- img.crossOrigin = 'anonymous';
- img.addEventListener('load', this._imageLoaded.bind(this), false);
- img.addEventListener('error', function() {
- ob.img = proxyImage;
- this._imageLoaded();
- }.bind(this), false);
- img.src = path;
- var ob = {
- img: img,
- assetData: assetData
- }
- return ob;
- }
-
- function loadAssets(assets, cb){
- this.imagesLoadedCb = cb;
- var i, len = assets.length;
- for (i = 0; i < len; i += 1) {
- if(!assets[i].layers){
- this.totalImages += 1;
- this.images.push(this._createImageData(assets[i]));
- }
+ this.totalFrames = arr[0] - arr[1];
+ this.timeCompleted = this.totalFrames;
+ this.firstFrame = arr[1];
+ this.setCurrentRawFrameValue(this.totalFrames - 0.001 - offset);
+ } else if (arr[1] > arr[0]) {
+ if (this.frameModifier < 0) {
+ if (this.playSpeed < 0) {
+ this.setSpeed(-this.playSpeed);
+ } else {
+ this.setDirection(1);
}
- }
+ }
- function setPath(path){
- this.path = path || '';
+ this.totalFrames = arr[1] - arr[0];
+ this.timeCompleted = this.totalFrames;
+ this.firstFrame = arr[0];
+ this.setCurrentRawFrameValue(0.001 + offset);
}
- function setAssetsPath(path){
- this.assetsPath = path || '';
+ this.trigger('segmentStart');
+ };
+
+ AnimationItem.prototype.setSegment = function (init, end) {
+ var pendingFrame = -1;
+
+ if (this.isPaused) {
+ if (this.currentRawFrame + this.firstFrame < init) {
+ pendingFrame = init;
+ } else if (this.currentRawFrame + this.firstFrame > end) {
+ pendingFrame = end - init;
+ }
}
- function getImage(assetData) {
- var i = 0, len = this.images.length;
- while (i < len) {
- if (this.images[i].assetData === assetData) {
- return this.images[i].img;
- }
- i += 1;
- }
+ this.firstFrame = init;
+ this.totalFrames = end - init;
+ this.timeCompleted = this.totalFrames;
+
+ if (pendingFrame !== -1) {
+ this.goToAndStop(pendingFrame, true);
}
+ };
- function destroy() {
- this.imagesLoadedCb = null;
- this.images.length = 0;
- }
-
- function loaded() {
- return this.totalImages === this.loadedAssets;
- }
-
- return function ImagePreloader(){
- this.loadAssets = loadAssets;
- this.setAssetsPath = setAssetsPath;
- this.setPath = setPath;
- this.loaded = loaded;
- this.destroy = destroy;
- this.getImage = getImage;
- this._createImageData = createImageData;
- this._imageLoaded = imageLoaded;
- this.assetsPath = '';
- this.path = '';
- this.totalImages = 0;
- this.loadedAssets = 0;
- this.imagesLoadedCb = null;
- this.images = [];
- };
-}());
-var featureSupport = (function(){
- var ob = {
- maskType: true
- };
- if (/MSIE 10/i.test(navigator.userAgent) || /MSIE 9/i.test(navigator.userAgent) || /rv:11.0/i.test(navigator.userAgent) || /Edge\/\d./i.test(navigator.userAgent)) {
- ob.maskType = false;
- }
- return ob;
-}());
-var filtersFactory = (function(){
- var ob = {};
- ob.createFilter = createFilter;
- ob.createAlphaToLuminanceFilter = createAlphaToLuminanceFilter;
-
- function createFilter(filId){
- var fil = createNS('filter');
- fil.setAttribute('id',filId);
- fil.setAttribute('filterUnits','objectBoundingBox');
- fil.setAttribute('x','0%');
- fil.setAttribute('y','0%');
- fil.setAttribute('width','100%');
- fil.setAttribute('height','100%');
- return fil;
- }
-
- function createAlphaToLuminanceFilter(){
- var feColorMatrix = createNS('feColorMatrix');
- feColorMatrix.setAttribute('type','matrix');
- feColorMatrix.setAttribute('color-interpolation-filters','sRGB');
- feColorMatrix.setAttribute('values','0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1');
- return feColorMatrix;
- }
-
- return ob;
-}());
-var assetLoader = (function(){
-
- function formatResponse(xhr) {
- if(xhr.response && typeof xhr.response === 'object') {
- return xhr.response;
- } else if(xhr.response && typeof xhr.response === 'string') {
- return JSON.parse(xhr.response);
- } else if(xhr.responseText) {
- return JSON.parse(xhr.responseText);
- }
- }
-
- function loadAsset(path, callback, errorCallback) {
- var response;
- var xhr = new XMLHttpRequest();
- xhr.open('GET', path, true);
- // set responseType after calling open or IE will break.
- try {
- // This crashes on Android WebView prior to KitKat
- xhr.responseType = "json";
- } catch (err) {}
- xhr.send();
- xhr.onreadystatechange = function () {
- if (xhr.readyState == 4) {
- if(xhr.status == 200){
- response = formatResponse(xhr);
- callback(response);
- }else{
- try{
- response = formatResponse(xhr);
- callback(response);
- }catch(err){
- if(errorCallback) {
- errorCallback(err);
- }
- }
- }
- }
- };
- }
- return {
- load: loadAsset
- }
-}())
-
-function TextAnimatorProperty(textData, renderType, elem){
- this._isFirstFrame = true;
- this._hasMaskedPath = false;
- this._frameId = -1;
- this._textData = textData;
- this._renderType = renderType;
- this._elem = elem;
- this._animatorsData = createSizedArray(this._textData.a.length);
- this._pathData = {};
- this._moreOptions = {
- alignment: {}
- };
- this.renderedLetters = [];
- this.lettersChangedFlag = false;
- this.initDynamicPropertyContainer(elem);
+ AnimationItem.prototype.playSegments = function (arr, forceFlag) {
+ if (forceFlag) {
+ this.segments.length = 0;
+ }
-}
+ if (_typeof$4(arr[0]) === 'object') {
+ var i;
+ var len = arr.length;
-TextAnimatorProperty.prototype.searchProperties = function(){
- var i, len = this._textData.a.length, animatorProps;
- var getProp = PropertyFactory.getProp;
- for(i=0;i= currentLength + animatorOffset || !points) {
- perc = (currentLength + animatorOffset - segmentLength) / currentPoint.partialLength;
- xPathPos = prevPoint.point[0] + (currentPoint.point[0] - prevPoint.point[0]) * perc;
- yPathPos = prevPoint.point[1] + (currentPoint.point[1] - prevPoint.point[1]) * perc;
- matrixHelper.translate(-alignment[0]*letters[i].an/200, -(alignment[1] * yOff / 100));
- flag = false;
- } else if (points) {
- segmentLength += currentPoint.partialLength;
- pointInd += 1;
- if (pointInd >= points.length) {
- pointInd = 0;
- segmentInd += 1;
- if (!segments[segmentInd]) {
- if (mask.v.c) {
- pointInd = 0;
- segmentInd = 0;
- points = segments[segmentInd].points;
- } else {
- segmentLength -= currentPoint.partialLength;
- points = null;
- }
- } else {
- points = segments[segmentInd].points;
- }
- }
- if (points) {
- prevPoint = currentPoint;
- currentPoint = points[pointInd];
- partialLength = currentPoint.partialLength;
- }
- }
- }
- offf = letters[i].an / 2 - letters[i].add;
- matrixHelper.translate(-offf, 0, 0);
- } else {
- offf = letters[i].an/2 - letters[i].add;
- matrixHelper.translate(-offf,0,0);
+ this.audioController.setVolume(val);
+ };
- // Grouping alignment
- matrixHelper.translate(-alignment[0]*letters[i].an/200, -alignment[1]*yOff/100, 0);
- }
+ AnimationItem.prototype.getVolume = function () {
+ return this.audioController.getVolume();
+ };
- lineLength += letters[i].l/2;
- for(j=0;j 1;
- if(this.kf) {
- this.addEffect(this.getKeyframeValue.bind(this));
+ AnimationItem.prototype.hide = function () {
+ this.renderer.hide();
+ };
+
+ AnimationItem.prototype.show = function () {
+ this.renderer.show();
+ };
+
+ AnimationItem.prototype.getDuration = function (isFrame) {
+ return isFrame ? this.totalFrames : this.totalFrames / this.frameRate;
+ };
+
+ AnimationItem.prototype.updateDocumentData = function (path, documentData, index) {
+ try {
+ var element = this.renderer.getElementByPath(path);
+ element.updateDocumentData(documentData, index);
+ } catch (error) {// TODO: decide how to handle catch case
}
- return this.kf;
-}
+ };
-TextProperty.prototype.addEffect = function(effectFunction) {
- this.effectsSequence.push(effectFunction);
- this.elem.addDynamicProperty(this);
-};
+ AnimationItem.prototype.trigger = function (name) {
+ if (this._cbs && this._cbs[name]) {
+ switch (name) {
+ case 'enterFrame':
+ this.triggerEvent(name, new BMEnterFrameEvent(name, this.currentFrame, this.totalFrames, this.frameModifier));
+ break;
-TextProperty.prototype.getValue = function(_finalValue) {
- if((this.elem.globalData.frameId === this.frameId || !this.effectsSequence.length) && !_finalValue) {
- return;
+ case 'drawnFrame':
+ this.drawnFrameEvent.currentTime = this.currentFrame;
+ this.drawnFrameEvent.totalTime = this.totalFrames;
+ this.drawnFrameEvent.direction = this.frameModifier;
+ this.triggerEvent(name, this.drawnFrameEvent);
+ break;
+
+ case 'loopComplete':
+ this.triggerEvent(name, new BMCompleteLoopEvent(name, this.loop, this.playCount, this.frameMult));
+ break;
+
+ case 'complete':
+ this.triggerEvent(name, new BMCompleteEvent(name, this.frameMult));
+ break;
+
+ case 'segmentStart':
+ this.triggerEvent(name, new BMSegmentStartEvent(name, this.firstFrame, this.totalFrames));
+ break;
+
+ case 'destroy':
+ this.triggerEvent(name, new BMDestroyEvent(name, this));
+ break;
+
+ default:
+ this.triggerEvent(name);
+ }
}
- this.currentData.t = this.data.d.k[this.keysIndex].s.t;
- var currentValue = this.currentData;
- var currentIndex = this.keysIndex;
- if(this.lock) {
- this.setCurrentData(this.currentData);
- return;
+
+ if (name === 'enterFrame' && this.onEnterFrame) {
+ this.onEnterFrame.call(this, new BMEnterFrameEvent(name, this.currentFrame, this.totalFrames, this.frameMult));
}
- this.lock = true;
- this._mdf = false;
- var multipliedValue;
- var i, len = this.effectsSequence.length;
- var finalValue = _finalValue || this.data.d.k[this.keysIndex].s;
- for(i = 0; i < len; i += 1) {
- //Checking if index changed to prevent creating a new object every time the expression updates.
- if(currentIndex !== this.keysIndex) {
- finalValue = this.effectsSequence[i](finalValue, finalValue.t);
- } else {
- finalValue = this.effectsSequence[i](this.currentData, finalValue.t);
- }
+
+ if (name === 'loopComplete' && this.onLoopComplete) {
+ this.onLoopComplete.call(this, new BMCompleteLoopEvent(name, this.loop, this.playCount, this.frameMult));
}
- if(currentValue !== finalValue) {
- this.setCurrentData(finalValue);
+
+ if (name === 'complete' && this.onComplete) {
+ this.onComplete.call(this, new BMCompleteEvent(name, this.frameMult));
}
- this.pv = this.v = this.currentData;
- this.lock = false;
- this.frameId = this.elem.globalData.frameId;
-}
-TextProperty.prototype.getKeyframeValue = function() {
- var textKeys = this.data.d.k, textDocumentData;
- var frameNum = this.elem.comp.renderedFrame;
- var i = 0, len = textKeys.length;
- while(i <= len - 1) {
- textDocumentData = textKeys[i].s;
- if(i === len - 1 || textKeys[i+1].t > frameNum){
- break;
- }
- i += 1;
+ if (name === 'segmentStart' && this.onSegmentStart) {
+ this.onSegmentStart.call(this, new BMSegmentStartEvent(name, this.firstFrame, this.totalFrames));
}
- if(this.keysIndex !== i) {
- this.keysIndex = i;
+
+ if (name === 'destroy' && this.onDestroy) {
+ this.onDestroy.call(this, new BMDestroyEvent(name, this));
}
- return this.data.d.k[this.keysIndex].s;
-};
+ };
-TextProperty.prototype.buildFinalText = function(text) {
- var combinedCharacters = FontManager.getCombinedCharacterCodes();
- var charactersArray = [];
- var i = 0, len = text.length;
- while (i < len) {
- if (combinedCharacters.indexOf(text.charCodeAt(i)) !== -1) {
- charactersArray[charactersArray.length - 1] += text.charAt(i);
- } else {
- charactersArray.push(text.charAt(i));
- }
- i += 1;
+ AnimationItem.prototype.triggerRenderFrameError = function (nativeError) {
+ var error = new BMRenderFrameErrorEvent(nativeError, this.currentFrame);
+ this.triggerEvent('error', error);
+
+ if (this.onError) {
+ this.onError.call(this, error);
}
- return charactersArray;
-}
+ };
-TextProperty.prototype.completeTextData = function(documentData) {
- documentData.__complete = true;
- var fontManager = this.elem.globalData.fontManager;
- var data = this.data;
- var letters = [];
- var i, len;
- var newLineFlag, index = 0, val;
- var anchorGrouping = data.m.g;
- var currentSize = 0, currentPos = 0, currentLine = 0, lineWidths = [];
- var lineWidth = 0;
- var maxLineWidth = 0;
- var j, jLen;
- var fontData = fontManager.getFontByName(documentData.f);
- var charData, cLength = 0;
- var styles = fontData.fStyle ? fontData.fStyle.split(' ') : [];
+ AnimationItem.prototype.triggerConfigError = function (nativeError) {
+ var error = new BMConfigErrorEvent(nativeError, this.currentFrame);
+ this.triggerEvent('error', error);
- var fWeight = 'normal', fStyle = 'normal';
- len = styles.length;
- var styleName;
- for(i=0;i boxWidth && finalText[i] !== ' '){
- if(lastSpaceIndex === -1){
- len += 1;
- } else {
- i = lastSpaceIndex;
- }
- currentHeight += documentData.finalLineHeight || documentData.finalSize*1.2;
- finalText.splice(i, lastSpaceIndex === i ? 1 : 0,"\r");
- //finalText = finalText.substr(0,i) + "\r" + finalText.substr(i === lastSpaceIndex ? i + 1 : i);
- lastSpaceIndex = -1;
- lineWidth = 0;
- }else {
- lineWidth += cLength;
- lineWidth += trackingOffset;
- }
- }
- currentHeight += fontData.ascent*documentData.finalSize/100;
- if(this.canResize && documentData.finalSize > this.minimumFontSize && boxHeight < currentHeight) {
- documentData.finalSize -= 1;
- documentData.finalLineHeight = documentData.finalSize * documentData.lh / documentData.s;
- } else {
- documentData.finalText = finalText;
- len = documentData.finalText.length;
- flag = false;
- }
- }
+ };
- }
- lineWidth = - trackingOffset;
- cLength = 0;
- var uncollapsedSpaces = 0;
- var currentChar;
- for (i = 0;i < len ;i += 1) {
- newLineFlag = false;
- currentChar = documentData.finalText[i];
- charCode = currentChar.charCodeAt(0);
- if (currentChar === ' '){
- val = '\u00A0';
- } else if (charCode === 13 || charCode === 3) {
- uncollapsedSpaces = 0;
- lineWidths.push(lineWidth);
- maxLineWidth = lineWidth > maxLineWidth ? lineWidth : maxLineWidth;
- lineWidth = - 2 * trackingOffset;
- val = '';
- newLineFlag = true;
- currentLine += 1;
- }else{
- val = documentData.finalText[i];
- }
- if(fontManager.chars){
- charData = fontManager.getCharData(currentChar, fontData.fStyle, fontManager.getFontByName(documentData.f).fFamily);
- cLength = newLineFlag ? 0 : charData.w*documentData.finalSize/100;
- }else{
- //var charWidth = fontManager.measureText(val, documentData.f, documentData.finalSize);
- //tCanvasHelper.font = documentData.finalSize + 'px '+ fontManager.getFontByName(documentData.f).fFamily;
- cLength = fontManager.measureText(val, documentData.f, documentData.finalSize);
- }
-
- //
- if(currentChar === ' '){
- uncollapsedSpaces += cLength + trackingOffset;
- } else {
- lineWidth += cLength + trackingOffset + uncollapsedSpaces;
- uncollapsedSpaces = 0;
- }
- letters.push({l:cLength,an:cLength,add:currentSize,n:newLineFlag, anIndexes:[], val: val, line: currentLine, animatorJustifyOffset: 0});
- if(anchorGrouping == 2){
- currentSize += cLength;
- if(val === '' || val === '\u00A0' || i === len - 1){
- if(val === '' || val === '\u00A0'){
- currentSize -= cLength;
- }
- while(currentPos<=i){
- letters[currentPos].an = currentSize;
- letters[currentPos].ind = index;
- letters[currentPos].extra = cLength;
- currentPos += 1;
- }
- index += 1;
- currentSize = 0;
- }
- }else if(anchorGrouping == 3){
- currentSize += cLength;
- if(val === '' || i === len - 1){
- if(val === ''){
- currentSize -= cLength;
- }
- while(currentPos<=i){
- letters[currentPos].an = currentSize;
- letters[currentPos].ind = index;
- letters[currentPos].extra = cLength;
- currentPos += 1;
- }
- currentSize = 0;
- index += 1;
- }
- }else{
- letters[index].ind = index;
- letters[index].extra = 0;
- index += 1;
- }
- }
- documentData.l = letters;
- maxLineWidth = lineWidth > maxLineWidth ? lineWidth : maxLineWidth;
- lineWidths.push(lineWidth);
- if(documentData.sz){
- documentData.boxWidth = documentData.sz[0];
- documentData.justifyOffset = 0;
- }else{
- documentData.boxWidth = maxLineWidth;
- switch(documentData.j){
- case 1:
- documentData.justifyOffset = - documentData.boxWidth;
- break;
- case 2:
- documentData.justifyOffset = - documentData.boxWidth/2;
- break;
- default:
- documentData.justifyOffset = 0;
- }
- }
- documentData.lineWidths = lineWidths;
+ var animationManager = function () {
+ var moduleOb = {};
+ var registeredAnimations = [];
+ var initTime = 0;
+ var len = 0;
+ var playingAnimationsNum = 0;
+ var _stopped = true;
+ var _isFrozen = false;
- var animators = data.a, animatorData, letterData;
- jLen = animators.length;
- var based, ind, indexes = [];
- for(j=0;j= e ? 1 : 0;
- }else{
- mult = max(0,min(0.5/(e-s) + (ind-s)/(e-s),1));
- }
- mult = easer(mult);
- }else if(type == 3){
- if(e === s){
- mult = ind >= e ? 0 : 1;
- }else{
- mult = 1 - max(0,min(0.5/(e-s) + (ind-s)/(e-s),1));
- }
+ i += 1;
+ }
- mult = easer(mult);
- }else if(type == 4){
- if(e === s){
- mult = 0;
- }else{
- mult = max(0,min(0.5/(e-s) + (ind-s)/(e-s),1));
- if(mult<0.5){
- mult *= 2;
- }else{
- mult = 1 - 2*(mult-0.5);
- }
- }
- mult = easer(mult);
- }else if(type == 5){
- if(e === s){
- mult = 0;
- }else{
- var tot = e - s;
- /*ind += 0.5;
- mult = -4/(tot*tot)*(ind*ind)+(4/tot)*ind;*/
- ind = min(max(0,ind+0.5-s),e-s);
- var x = -tot/2+ind;
- var a = tot/2;
- mult = Math.sqrt(1 - (x*x)/(a*a));
- }
- mult = easer(mult);
- }else if(type == 6){
- if(e === s){
- mult = 0;
- }else{
- ind = min(max(0,ind+0.5-s),e-s);
- mult = (1+(Math.cos((Math.PI+Math.PI*2*(ind)/(e-s)))))/2;
- /*
- ind = Math.min(Math.max(s,ind),e-1);
- mult = (1+(Math.cos((Math.PI+Math.PI*2*(ind-s)/(e-1-s)))))/2;
- mult = Math.max(mult,(1/(e-1-s))/(e-1-s));*/
- }
- mult = easer(mult);
- }else {
- if(ind >= floor(s)){
- if(ind-s < 0){
- mult = 1 - (s - ind);
- }else{
- mult = max(0,min(e-ind,1));
- }
- }
- mult = easer(mult);
- }
- return mult*this.a.v;
- },
- getValue: function(newCharsFlag) {
- this.iterateDynamicProperties();
- this._mdf = newCharsFlag || this._mdf;
- this._currentTextLength = this.elem.textProperty.currentData.l.length || 0;
- if(newCharsFlag && this.data.r === 2) {
- this.e.v = this._currentTextLength;
- }
- var divisor = this.data.r === 2 ? 1 : 100 / this.data.totalChars;
- var o = this.o.v/divisor;
- var s = this.s.v/divisor + o;
- var e = (this.e.v/divisor) + o;
- if(s>e){
- var _s = s;
- s = e;
- e = _s;
- }
- this.finalS = s;
- this.finalE = e;
- }
+ var animItem = new AnimationItem();
+ setupAnimation(animItem, element);
+ animItem.setData(element, animationData);
+ return animItem;
}
- extendPrototype([DynamicPropertyContainer], TextSelectorProp);
- function getTextSelectorProp(elem, data,arr) {
- return new TextSelectorProp(elem, data, arr);
- }
+ function getRegisteredAnimations() {
+ var i;
+ var lenAnims = registeredAnimations.length;
+ var animations = [];
- return {
- getTextSelectorProp: getTextSelectorProp
- };
-}());
-
-
-var pool_factory = (function() {
- return function(initialLength, _create, _release, _clone) {
-
- var _length = 0;
- var _maxLength = initialLength;
- var pool = createSizedArray(_maxLength);
-
- var ob = {
- newElement: newElement,
- release: release
- };
-
- function newElement(){
- var element;
- if(_length){
- _length -= 1;
- element = pool[_length];
- } else {
- element = _create();
- }
- return element;
- }
-
- function release(element) {
- if(_length === _maxLength) {
- pool = pooling.double(pool);
- _maxLength = _maxLength*2;
- }
- if (_release) {
- _release(element);
- }
- pool[_length] = element;
- _length += 1;
- }
-
- function clone() {
- var clonedElement = newElement();
- return _clone(clonedElement);
- }
-
- return ob;
- };
-}());
-
-var pooling = (function(){
-
- function double(arr){
- return arr.concat(createSizedArray(arr.length));
- }
-
- return {
- double: double
- };
-}());
-var point_pool = (function(){
-
- function create() {
- return createTypedArray('float32', 2);
- }
- return pool_factory(8, create);
-}());
-var shape_pool = (function(){
-
- function create() {
- return new ShapePath();
- }
-
- function release(shapePath) {
- var len = shapePath._length, i;
- for(i = 0; i < len; i += 1) {
- point_pool.release(shapePath.v[i]);
- point_pool.release(shapePath.i[i]);
- point_pool.release(shapePath.o[i]);
- shapePath.v[i] = null;
- shapePath.i[i] = null;
- shapePath.o[i] = null;
- }
- shapePath._length = 0;
- shapePath.c = false;
- }
-
- function clone(shape) {
- var cloned = factory.newElement();
- var i, len = shape._length === undefined ? shape.v.length : shape._length;
- cloned.setLength(len);
- cloned.c = shape.c;
- var pt;
-
- for(i = 0; i < len; i += 1) {
- cloned.setTripleAt(shape.v[i][0],shape.v[i][1],shape.o[i][0],shape.o[i][1],shape.i[i][0],shape.i[i][1], i);
- }
- return cloned;
- }
-
- var factory = pool_factory(4, create, release);
- factory.clone = clone;
-
- return factory;
-}());
-var shapeCollection_pool = (function(){
- var ob = {
- newShapeCollection: newShapeCollection,
- release: release
- };
-
- var _length = 0;
- var _maxLength = 4;
- var pool = createSizedArray(_maxLength);
-
- function newShapeCollection(){
- var shapeCollection;
- if(_length){
- _length -= 1;
- shapeCollection = pool[_length];
- } else {
- shapeCollection = new ShapeCollection();
- }
- return shapeCollection;
- }
-
- function release(shapeCollection) {
- var i, len = shapeCollection._length;
- for(i = 0; i < len; i += 1) {
- shape_pool.release(shapeCollection.shapes[i]);
- }
- shapeCollection._length = 0;
-
- if(_length === _maxLength) {
- pool = pooling.double(pool);
- _maxLength = _maxLength*2;
- }
- pool[_length] = shapeCollection;
- _length += 1;
- }
-
- return ob;
-}());
-var segments_length_pool = (function(){
-
- function create() {
- return {
- lengths: [],
- totalLength: 0
- };
- }
-
- function release(element) {
- var i, len = element.lengths.length;
- for(i=0;i= 0; i--) {
- if (!this.elements[i]) {
- data = this.layers[i];
- if(data.ip - data.st <= (num - this.layers[i].st) && data.op - data.st > (num - this.layers[i].st))
- {
- this.buildItem(i);
- }
- }
- this.completeLayers = this.elements[i] ? this.completeLayers:false;
+ for (i = 0; i < lenAnims; i += 1) {
+ animations.push(registeredAnimations[i].animation);
+ }
+
+ return animations;
}
- this.checkPendingElements();
-};
-BaseRenderer.prototype.createItem = function(layer){
- switch(layer.ty){
- case 2:
- return this.createImage(layer);
- case 0:
- return this.createComp(layer);
- case 1:
- return this.createSolid(layer);
- case 3:
- return this.createNull(layer);
- case 4:
- return this.createShape(layer);
- case 5:
- return this.createText(layer);
- case 13:
- return this.createCamera(layer);
+ function addPlayingCount() {
+ playingAnimationsNum += 1;
+ activate();
}
- return this.createNull(layer);
-};
-BaseRenderer.prototype.createCamera = function(){
- throw new Error('You\'re using a 3d camera. Try the html renderer.');
-};
+ function subtractPlayingCount() {
+ playingAnimationsNum -= 1;
+ }
-BaseRenderer.prototype.buildAllItems = function(){
- var i, len = this.layers.length;
- for(i=0;i= 0; i -= 1) {
+ registeredAnimations[i].animation.destroy(animation);
+ }
+ }
- defs.appendChild(maskElement);
- this.layers = animData.layers;
- this.elements = createSizedArray(animData.layers.length);
-};
+ function searchAnimations(animationData, standalone, renderer) {
+ var animElements = [].concat([].slice.call(document.getElementsByClassName('lottie')), [].slice.call(document.getElementsByClassName('bodymovin')));
+ var i;
+ var lenAnims = animElements.length;
+
+ for (i = 0; i < lenAnims; i += 1) {
+ if (renderer) {
+ animElements[i].setAttribute('data-bm-type', renderer);
+ }
+ registerAnimation(animElements[i], animationData);
+ }
-SVGRenderer.prototype.destroy = function () {
- this.animationItem.wrapper.innerHTML = '';
- this.layerElement = null;
- this.globalData.defs = null;
- var i, len = this.layers ? this.layers.length : 0;
- for (i = 0; i < len; i++) {
- if(this.elements[i]){
- this.elements[i].destroy();
+ if (standalone && lenAnims === 0) {
+ if (!renderer) {
+ renderer = 'svg';
}
+
+ var body = document.getElementsByTagName('body')[0];
+ body.innerText = '';
+ var div = createTag('div');
+ div.style.width = '100%';
+ div.style.height = '100%';
+ div.setAttribute('data-bm-type', renderer);
+ body.appendChild(div);
+ registerAnimation(div, animationData);
+ }
}
- this.elements.length = 0;
- this.destroyed = true;
- this.animationItem = null;
-};
-SVGRenderer.prototype.updateContainerSize = function () {
-};
+ function resize() {
+ var i;
-SVGRenderer.prototype.buildItem = function(pos){
- var elements = this.elements;
- if(elements[pos] || this.layers[pos].ty == 99){
- return;
+ for (i = 0; i < len; i += 1) {
+ registeredAnimations[i].animation.resize();
+ }
}
- elements[pos] = true;
- var element = this.createItem(this.layers[pos]);
- elements[pos] = element;
- if(expressionsPlugin){
- if(this.layers[pos].ty === 0){
- this.globalData.projectInterface.registerComposition(element);
+ function activate() {
+ if (!_isFrozen && playingAnimationsNum) {
+ if (_stopped) {
+ window.requestAnimationFrame(first);
+ _stopped = false;
}
- element.initExpressions();
+ }
}
- this.appendElementInPos(element,pos);
- if(this.layers[pos].tt){
- if(!this.elements[pos - 1] || this.elements[pos - 1] === true){
- this.buildItem(pos - 1);
- this.addPendingElement(element);
- } else {
- element.setMatte(elements[pos - 1].layerId);
- }
+
+ function freeze() {
+ _isFrozen = true;
}
-};
-SVGRenderer.prototype.checkPendingElements = function(){
- while(this.pendingElements.length){
- var element = this.pendingElements.pop();
- element.checkParenting();
- if(element.data.tt){
- var i = 0, len = this.elements.length;
- while(i= 0; i--) {
- if(this.completeLayers || this.elements[i]){
- this.elements[i].prepareFrame(num - this.layers[i].st);
- }
- }
- if(this.globalData._mdf) {
- for (i = 0; i < len; i += 1) {
- if(this.completeLayers || this.elements[i]){
- this.elements[i].renderFrame();
- }
- }
- }
-};
+ function setVolume(val, animation) {
+ var i;
-SVGRenderer.prototype.appendElementInPos = function(element, pos){
- var newElement = element.getBaseElement();
- if(!newElement){
- return;
- }
- var i = 0;
- var nextElement;
- while(i returns the easing value | x must be in [0, 1] range
+ *
+ */
+ var ob = {};
+ ob.getBezierEasing = getBezierEasing;
+ var beziers = {};
-CanvasRenderer.prototype.createComp = function (data) {
- return new CVCompElement(data, this.globalData, this);
-};
+ function getBezierEasing(a, b, c, d, nm) {
+ var str = nm || ('bez_' + a + '_' + b + '_' + c + '_' + d).replace(/\./g, 'p');
-CanvasRenderer.prototype.createSolid = function (data) {
- return new CVSolidElement(data, this.globalData, this);
-};
+ if (beziers[str]) {
+ return beziers[str];
+ }
-CanvasRenderer.prototype.createNull = SVGRenderer.prototype.createNull;
+ var bezEasing = new BezierEasing([a, b, c, d]);
+ beziers[str] = bezEasing;
+ return bezEasing;
+ } // These values are established by empiricism with tests (tradeoff: performance VS precision)
-CanvasRenderer.prototype.ctxTransform = function(props){
- if(props[0] === 1 && props[1] === 0 && props[4] === 0 && props[5] === 1 && props[12] === 0 && props[13] === 0){
- return;
- }
- if(!this.renderConfig.clearCanvas){
- this.canvasContext.transform(props[0],props[1],props[4],props[5],props[12],props[13]);
- return;
- }
- this.transformMat.cloneFromProps(props);
- var cProps = this.contextData.cTr.props;
- this.transformMat.transform(cProps[0],cProps[1],cProps[2],cProps[3],cProps[4],cProps[5],cProps[6],cProps[7],cProps[8],cProps[9],cProps[10],cProps[11],cProps[12],cProps[13],cProps[14],cProps[15]);
- //this.contextData.cTr.transform(props[0],props[1],props[2],props[3],props[4],props[5],props[6],props[7],props[8],props[9],props[10],props[11],props[12],props[13],props[14],props[15]);
- this.contextData.cTr.cloneFromProps(this.transformMat.props);
- var trProps = this.contextData.cTr.props;
- this.canvasContext.setTransform(trProps[0],trProps[1],trProps[4],trProps[5],trProps[12],trProps[13]);
-};
-
-CanvasRenderer.prototype.ctxOpacity = function(op){
- /*if(op === 1){
- return;
- }*/
- if(!this.renderConfig.clearCanvas){
- this.canvasContext.globalAlpha *= op < 0 ? 0 : op;
- this.globalData.currentGlobalAlpha = this.contextData.cO;
- return;
- }
- this.contextData.cO *= op < 0 ? 0 : op;
- if(this.globalData.currentGlobalAlpha !== this.contextData.cO) {
- this.canvasContext.globalAlpha = this.contextData.cO;
- this.globalData.currentGlobalAlpha = this.contextData.cO;
- }
-};
-CanvasRenderer.prototype.reset = function(){
- if(!this.renderConfig.clearCanvas){
- this.canvasContext.restore();
- return;
- }
- this.contextData.reset();
-};
+ var NEWTON_ITERATIONS = 4;
+ var NEWTON_MIN_SLOPE = 0.001;
+ var SUBDIVISION_PRECISION = 0.0000001;
+ var SUBDIVISION_MAX_ITERATIONS = 10;
+ var kSplineTableSize = 11;
+ var kSampleStepSize = 1.0 / (kSplineTableSize - 1.0);
+ var float32ArraySupported = typeof Float32Array === 'function';
-CanvasRenderer.prototype.save = function(actionFlag){
- if(!this.renderConfig.clearCanvas){
- this.canvasContext.save();
- return;
- }
- if(actionFlag){
- this.canvasContext.save();
- }
- var props = this.contextData.cTr.props;
- if(this.contextData._length <= this.contextData.cArrPos) {
- this.contextData.duplicate();
- }
- var i, arr = this.contextData.saved[this.contextData.cArrPos];
- for (i = 0; i < 16; i += 1) {
- arr[i] = props[i];
+ function A(aA1, aA2) {
+ return 1.0 - 3.0 * aA2 + 3.0 * aA1;
}
- this.contextData.savedOp[this.contextData.cArrPos] = this.contextData.cO;
- this.contextData.cArrPos += 1;
-};
-CanvasRenderer.prototype.restore = function(actionFlag){
- if(!this.renderConfig.clearCanvas){
- this.canvasContext.restore();
- return;
+ function B(aA1, aA2) {
+ return 3.0 * aA2 - 6.0 * aA1;
}
- if(actionFlag){
- this.canvasContext.restore();
- this.globalData.blendMode = 'source-over';
- }
- this.contextData.cArrPos -= 1;
- var popped = this.contextData.saved[this.contextData.cArrPos];
- var i,arr = this.contextData.cTr.props;
- for(i=0;i<16;i+=1){
- arr[i] = popped[i];
- }
- this.canvasContext.setTransform(popped[0],popped[1],popped[4],popped[5],popped[12],popped[13]);
- popped = this.contextData.savedOp[this.contextData.cArrPos];
- this.contextData.cO = popped;
- if(this.globalData.currentGlobalAlpha !== popped) {
- this.canvasContext.globalAlpha = popped;
- this.globalData.currentGlobalAlpha = popped;
- }
-};
-
-CanvasRenderer.prototype.configAnimation = function(animData){
- if(this.animationItem.wrapper){
- this.animationItem.container = createTag('canvas');
- this.animationItem.container.style.width = '100%';
- this.animationItem.container.style.height = '100%';
- //this.animationItem.container.style.transform = 'translate3d(0,0,0)';
- //this.animationItem.container.style.webkitTransform = 'translate3d(0,0,0)';
- this.animationItem.container.style.transformOrigin = this.animationItem.container.style.mozTransformOrigin = this.animationItem.container.style.webkitTransformOrigin = this.animationItem.container.style['-webkit-transform'] = "0px 0px 0px";
- this.animationItem.wrapper.appendChild(this.animationItem.container);
- this.canvasContext = this.animationItem.container.getContext('2d');
- if(this.renderConfig.className) {
- this.animationItem.container.setAttribute('class', this.renderConfig.className);
- }
- }else{
- this.canvasContext = this.renderConfig.context;
+
+ function C(aA1) {
+ return 3.0 * aA1;
+ } // Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2.
+
+
+ function calcBezier(aT, aA1, aA2) {
+ return ((A(aA1, aA2) * aT + B(aA1, aA2)) * aT + C(aA1)) * aT;
+ } // Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2.
+
+
+ function getSlope(aT, aA1, aA2) {
+ return 3.0 * A(aA1, aA2) * aT * aT + 2.0 * B(aA1, aA2) * aT + C(aA1);
}
- this.data = animData;
- this.layers = animData.layers;
- this.transformCanvas = {
- w: animData.w,
- h:animData.h,
- sx:0,
- sy:0,
- tx:0,
- ty:0
- };
- this.setupGlobalData(animData, document.body);
- this.globalData.canvasContext = this.canvasContext;
- this.globalData.renderer = this;
- this.globalData.isDashed = false;
- this.globalData.progressiveLoad = this.renderConfig.progressiveLoad;
- this.globalData.transformCanvas = this.transformCanvas;
- this.elements = createSizedArray(animData.layers.length);
- this.updateContainerSize();
-};
+ function binarySubdivide(aX, aA, aB, mX1, mX2) {
+ var currentX,
+ currentT,
+ i = 0;
-CanvasRenderer.prototype.updateContainerSize = function () {
- this.reset();
- var elementWidth,elementHeight;
- if(this.animationItem.wrapper && this.animationItem.container){
- elementWidth = this.animationItem.wrapper.offsetWidth;
- elementHeight = this.animationItem.wrapper.offsetHeight;
- this.animationItem.container.setAttribute('width',elementWidth * this.renderConfig.dpr );
- this.animationItem.container.setAttribute('height',elementHeight * this.renderConfig.dpr);
- }else{
- elementWidth = this.canvasContext.canvas.width * this.renderConfig.dpr;
- elementHeight = this.canvasContext.canvas.height * this.renderConfig.dpr;
- }
- var elementRel,animationRel;
- if(this.renderConfig.preserveAspectRatio.indexOf('meet') !== -1 || this.renderConfig.preserveAspectRatio.indexOf('slice') !== -1){
- var par = this.renderConfig.preserveAspectRatio.split(' ');
- var fillType = par[1] || 'meet';
- var pos = par[0] || 'xMidYMid';
- var xPos = pos.substr(0,4);
- var yPos = pos.substr(4);
- elementRel = elementWidth/elementHeight;
- animationRel = this.transformCanvas.w/this.transformCanvas.h;
- if(animationRel>elementRel && fillType === 'meet' || animationRelelementRel && fillType === 'slice'))){
- this.transformCanvas.tx = (elementWidth-this.transformCanvas.w*(elementHeight/this.transformCanvas.h))/2*this.renderConfig.dpr;
- } else if(xPos === 'xMax' && ((animationRelelementRel && fillType === 'slice'))){
- this.transformCanvas.tx = (elementWidth-this.transformCanvas.w*(elementHeight/this.transformCanvas.h))*this.renderConfig.dpr;
- } else {
- this.transformCanvas.tx = 0;
- }
- if(yPos === 'YMid' && ((animationRel>elementRel && fillType==='meet') || (animationRelelementRel && fillType==='meet') || (animationRel 0.0) {
+ aB = currentT;
} else {
- this.transformCanvas.ty = 0;
+ aA = currentT;
}
+ } while (Math.abs(currentX) > SUBDIVISION_PRECISION && ++i < SUBDIVISION_MAX_ITERATIONS);
- }else if(this.renderConfig.preserveAspectRatio == 'none'){
- this.transformCanvas.sx = elementWidth/(this.transformCanvas.w/this.renderConfig.dpr);
- this.transformCanvas.sy = elementHeight/(this.transformCanvas.h/this.renderConfig.dpr);
- this.transformCanvas.tx = 0;
- this.transformCanvas.ty = 0;
- }else{
- this.transformCanvas.sx = this.renderConfig.dpr;
- this.transformCanvas.sy = this.renderConfig.dpr;
- this.transformCanvas.tx = 0;
- this.transformCanvas.ty = 0;
+ return currentT;
}
- this.transformCanvas.props = [this.transformCanvas.sx,0,0,0,0,this.transformCanvas.sy,0,0,0,0,1,0,this.transformCanvas.tx,this.transformCanvas.ty,0,1];
- /*var i, len = this.elements.length;
- for(i=0;i= 0; i-=1) {
- if(this.elements[i]) {
- this.elements[i].destroy();
- }
+ return aGuessT;
}
- this.elements.length = 0;
- this.globalData.canvasContext = null;
- this.animationItem.container = null;
- this.destroyed = true;
-};
+ /**
+ * points is an array of [ mX1, mY1, mX2, mY2 ]
+ */
-CanvasRenderer.prototype.renderFrame = function(num, forceRender){
- if((this.renderedFrame === num && this.renderConfig.clearCanvas === true && !forceRender) || this.destroyed || num === -1){
- return;
- }
- this.renderedFrame = num;
- this.globalData.frameNum = num - this.animationItem._isFirstFrame;
- this.globalData.frameId += 1;
- this.globalData._mdf = !this.renderConfig.clearCanvas || forceRender;
- this.globalData.projectInterface.currentFrame = num;
- // console.log('--------');
- // console.log('NEW: ',num);
- var i, len = this.layers.length;
- if(!this.completeLayers){
- this.checkLayers(num);
+ function BezierEasing(points) {
+ this._p = points;
+ this._mSampleValues = float32ArraySupported ? new Float32Array(kSplineTableSize) : new Array(kSplineTableSize);
+ this._precomputed = false;
+ this.get = this.get.bind(this);
}
- for (i = 0; i < len; i++) {
- if(this.completeLayers || this.elements[i]){
- this.elements[i].prepareFrame(num - this.layers[i].st);
- }
+ BezierEasing.prototype = {
+ get: function get(x) {
+ var mX1 = this._p[0],
+ mY1 = this._p[1],
+ mX2 = this._p[2],
+ mY2 = this._p[3];
+ if (!this._precomputed) this._precompute();
+ if (mX1 === mY1 && mX2 === mY2) return x; // linear
+ // Because JavaScript number are imprecise, we should guarantee the extremes are right.
+
+ if (x === 0) return 0;
+ if (x === 1) return 1;
+ return calcBezier(this._getTForX(x), mY1, mY2);
+ },
+ // Private part
+ _precompute: function _precompute() {
+ var mX1 = this._p[0],
+ mY1 = this._p[1],
+ mX2 = this._p[2],
+ mY2 = this._p[3];
+ this._precomputed = true;
+
+ if (mX1 !== mY1 || mX2 !== mY2) {
+ this._calcSampleValues();
+ }
+ },
+ _calcSampleValues: function _calcSampleValues() {
+ var mX1 = this._p[0],
+ mX2 = this._p[2];
+
+ for (var i = 0; i < kSplineTableSize; ++i) {
+ this._mSampleValues[i] = calcBezier(i * kSampleStepSize, mX1, mX2);
+ }
+ },
+
+ /**
+ * getTForX chose the fastest heuristic to determine the percentage value precisely from a given X projection.
+ */
+ _getTForX: function _getTForX(aX) {
+ var mX1 = this._p[0],
+ mX2 = this._p[2],
+ mSampleValues = this._mSampleValues;
+ var intervalStart = 0.0;
+ var currentSample = 1;
+ var lastSample = kSplineTableSize - 1;
+
+ for (; currentSample !== lastSample && mSampleValues[currentSample] <= aX; ++currentSample) {
+ intervalStart += kSampleStepSize;
+ }
+
+ --currentSample; // Interpolate to provide an initial guess for t
+
+ var dist = (aX - mSampleValues[currentSample]) / (mSampleValues[currentSample + 1] - mSampleValues[currentSample]);
+ var guessForT = intervalStart + dist * kSampleStepSize;
+ var initialSlope = getSlope(guessForT, mX1, mX2);
+
+ if (initialSlope >= NEWTON_MIN_SLOPE) {
+ return newtonRaphsonIterate(aX, guessForT, mX1, mX2);
+ }
+
+ if (initialSlope === 0.0) {
+ return guessForT;
+ }
+
+ return binarySubdivide(aX, intervalStart, intervalStart + kSampleStepSize, mX1, mX2);
+ }
+ };
+ return ob;
+ }();
+
+ var pooling = function () {
+ function _double(arr) {
+ return arr.concat(createSizedArray(arr.length));
}
- if(this.globalData._mdf) {
- if(this.renderConfig.clearCanvas === true){
- this.canvasContext.clearRect(0, 0, this.transformCanvas.w, this.transformCanvas.h);
- }else{
- this.save();
+
+ return {
+ "double": _double
+ };
+ }();
+
+ var poolFactory = function () {
+ return function (initialLength, _create, _release) {
+ var _length = 0;
+ var _maxLength = initialLength;
+ var pool = createSizedArray(_maxLength);
+ var ob = {
+ newElement: newElement,
+ release: release
+ };
+
+ function newElement() {
+ var element;
+
+ if (_length) {
+ _length -= 1;
+ element = pool[_length];
+ } else {
+ element = _create();
}
- for (i = len - 1; i >= 0; i-=1) {
- if(this.completeLayers || this.elements[i]){
- this.elements[i].renderFrame();
- }
+
+ return element;
+ }
+
+ function release(element) {
+ if (_length === _maxLength) {
+ pool = pooling["double"](pool);
+ _maxLength *= 2;
}
- if(this.renderConfig.clearCanvas !== true){
- this.restore();
+
+ if (_release) {
+ _release(element);
}
+
+ pool[_length] = element;
+ _length += 1;
+ }
+
+ return ob;
+ };
+ }();
+
+ var bezierLengthPool = function () {
+ function create() {
+ return {
+ addedLength: 0,
+ percents: createTypedArray('float32', getDefaultCurveSegments()),
+ lengths: createTypedArray('float32', getDefaultCurveSegments())
+ };
}
-};
-CanvasRenderer.prototype.buildItem = function(pos){
- var elements = this.elements;
- if(elements[pos] || this.layers[pos].ty == 99){
- return;
+ return poolFactory(8, create);
+ }();
+
+ var segmentsLengthPool = function () {
+ function create() {
+ return {
+ lengths: [],
+ totalLength: 0
+ };
}
- var element = this.createItem(this.layers[pos], this,this.globalData);
- elements[pos] = element;
- element.initExpressions();
- /*if(this.layers[pos].ty === 0){
- element.resize(this.globalData.transformCanvas);
- }*/
-};
-CanvasRenderer.prototype.checkPendingElements = function(){
- while(this.pendingElements.length){
- var element = this.pendingElements.pop();
- element.checkParenting();
+ function release(element) {
+ var i;
+ var len = element.lengths.length;
+
+ for (i = 0; i < len; i += 1) {
+ bezierLengthPool.release(element.lengths[i]);
+ }
+
+ element.lengths.length = 0;
}
-};
-CanvasRenderer.prototype.hide = function(){
- this.animationItem.container.style.display = 'none';
-};
+ return poolFactory(8, create, release);
+ }();
-CanvasRenderer.prototype.show = function(){
- this.animationItem.container.style.display = 'block';
-};
+ function bezFunction() {
+ var math = Math;
-function HybridRenderer(animationItem, config){
- this.animationItem = animationItem;
- this.layers = null;
- this.renderedFrame = -1;
- this.renderConfig = {
- className: (config && config.className) || '',
- imagePreserveAspectRatio: (config && config.imagePreserveAspectRatio) || 'xMidYMid slice',
- hideOnTransparent: (config && config.hideOnTransparent === false) ? false : true
- };
- this.globalData = {
- _mdf: false,
- frameNum: -1,
- renderConfig: this.renderConfig
- };
- this.pendingElements = [];
- this.elements = [];
- this.threeDElements = [];
- this.destroyed = false;
- this.camera = null;
- this.supports3d = true;
- this.rendererType = 'html';
+ function pointOnLine2D(x1, y1, x2, y2, x3, y3) {
+ var det1 = x1 * y2 + y1 * x3 + x2 * y3 - x3 * y2 - y3 * x1 - x2 * y1;
+ return det1 > -0.001 && det1 < 0.001;
+ }
-}
+ function pointOnLine3D(x1, y1, z1, x2, y2, z2, x3, y3, z3) {
+ if (z1 === 0 && z2 === 0 && z3 === 0) {
+ return pointOnLine2D(x1, y1, x2, y2, x3, y3);
+ }
-extendPrototype([BaseRenderer],HybridRenderer);
+ var dist1 = math.sqrt(math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2) + math.pow(z2 - z1, 2));
+ var dist2 = math.sqrt(math.pow(x3 - x1, 2) + math.pow(y3 - y1, 2) + math.pow(z3 - z1, 2));
+ var dist3 = math.sqrt(math.pow(x3 - x2, 2) + math.pow(y3 - y2, 2) + math.pow(z3 - z2, 2));
+ var diffDist;
-HybridRenderer.prototype.buildItem = SVGRenderer.prototype.buildItem;
+ if (dist1 > dist2) {
+ if (dist1 > dist3) {
+ diffDist = dist1 - dist2 - dist3;
+ } else {
+ diffDist = dist3 - dist2 - dist1;
+ }
+ } else if (dist3 > dist2) {
+ diffDist = dist3 - dist2 - dist1;
+ } else {
+ diffDist = dist2 - dist1 - dist3;
+ }
-HybridRenderer.prototype.checkPendingElements = function(){
- while(this.pendingElements.length){
- var element = this.pendingElements.pop();
- element.checkParenting();
+ return diffDist > -0.0001 && diffDist < 0.0001;
}
-};
-HybridRenderer.prototype.appendElementInPos = function(element, pos){
- var newDOMElement = element.getBaseElement();
- if(!newDOMElement){
- return;
- }
- var layer = this.layers[pos];
- if(!layer.ddd || !this.supports3d){
- if(this.threeDElements) {
- this.addTo3dContainer(newDOMElement,pos);
- } else {
- var i = 0;
- var nextDOMElement, nextLayer, tmpDOMElement;
- while(i= pos) {
- return this.threeDElements[i].perspectiveElem;
+ bezierData.segmentLength = addedLength;
+ storedData[bezierName] = bezierData;
}
- i += 1;
- }
-};
-HybridRenderer.prototype.createThreeDContainer = function(pos, type){
- var perspectiveElem = createTag('div');
- styleDiv(perspectiveElem);
- var container = createTag('div');
- styleDiv(container);
- if(type === '3d') {
- perspectiveElem.style.width = this.globalData.compSize.w+'px';
- perspectiveElem.style.height = this.globalData.compSize.h+'px';
- perspectiveElem.style.transformOrigin = perspectiveElem.style.mozTransformOrigin = perspectiveElem.style.webkitTransformOrigin = "50% 50%";
- container.style.transform = container.style.webkitTransform = 'matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)';
- }
-
- perspectiveElem.appendChild(container);
- //this.resizerElem.appendChild(perspectiveElem);
- var threeDContainerData = {
- container:container,
- perspectiveElem:perspectiveElem,
- startPos: pos,
- endPos: pos,
- type: type
- };
- this.threeDElements.push(threeDContainerData);
- return threeDContainerData;
-};
+ return storedData[bezierName];
+ };
+ }();
-HybridRenderer.prototype.build3dContainers = function(){
- var i, len = this.layers.length;
- var lastThreeDContainerData;
- var currentContainer = '';
- for(i=0;i lengthPos ? -1 : 1;
+ var flag = true;
+
+ while (flag) {
+ if (lengths[initPos] <= lengthPos && lengths[initPos + 1] > lengthPos) {
+ lPerc = (lengthPos - lengths[initPos]) / (lengths[initPos + 1] - lengths[initPos]);
+ flag = false;
} else {
- if(currentContainer !== '2d'){
- currentContainer = '2d';
- lastThreeDContainerData = this.createThreeDContainer(i,'2d');
- }
- lastThreeDContainerData.endPos = Math.max(lastThreeDContainerData.endPos,i);
+ initPos += dir;
}
- }
- len = this.threeDElements.length;
- for(i = len - 1; i >= 0; i --) {
- this.resizerElem.appendChild(this.threeDElements[i].perspectiveElem);
- }
-};
-
-HybridRenderer.prototype.addTo3dContainer = function(elem,pos){
- var i = 0, len = this.threeDElements.length;
- while(i= len - 1) {
+ // FIX for TypedArrays that don't store floating point values with enough accuracy
+ if (initPos === len - 1) {
+ return percents[initPos];
+ }
+
+ flag = false;
}
- i += 1;
+ }
+
+ return percents[initPos] + (percents[initPos + 1] - percents[initPos]) * lPerc;
}
-};
-HybridRenderer.prototype.configAnimation = function(animData){
- var resizerElem = createTag('div');
- var wrapper = this.animationItem.wrapper;
- resizerElem.style.width = animData.w+'px';
- resizerElem.style.height = animData.h+'px';
- this.resizerElem = resizerElem;
- styleDiv(resizerElem);
- resizerElem.style.transformStyle = resizerElem.style.webkitTransformStyle = resizerElem.style.mozTransformStyle = "flat";
- if(this.renderConfig.className) {
- resizerElem.setAttribute('class', this.renderConfig.className);
+ function getPointInSegment(pt1, pt2, pt3, pt4, percent, bezierData) {
+ var t1 = getDistancePerc(percent, bezierData);
+ var u1 = 1 - t1;
+ var ptX = math.round((u1 * u1 * u1 * pt1[0] + (t1 * u1 * u1 + u1 * t1 * u1 + u1 * u1 * t1) * pt3[0] + (t1 * t1 * u1 + u1 * t1 * t1 + t1 * u1 * t1) * pt4[0] + t1 * t1 * t1 * pt2[0]) * 1000) / 1000;
+ var ptY = math.round((u1 * u1 * u1 * pt1[1] + (t1 * u1 * u1 + u1 * t1 * u1 + u1 * u1 * t1) * pt3[1] + (t1 * t1 * u1 + u1 * t1 * t1 + t1 * u1 * t1) * pt4[1] + t1 * t1 * t1 * pt2[1]) * 1000) / 1000;
+ return [ptX, ptY];
}
- wrapper.appendChild(resizerElem);
- resizerElem.style.overflow = 'hidden';
- var svg = createNS('svg');
- svg.setAttribute('width','1');
- svg.setAttribute('height','1');
- styleDiv(svg);
- this.resizerElem.appendChild(svg);
- var defs = createNS('defs');
- svg.appendChild(defs);
- this.data = animData;
- //Mask animation
- this.setupGlobalData(animData, svg);
- this.globalData.defs = defs;
- this.layers = animData.layers;
- this.layerElement = this.resizerElem;
- this.build3dContainers();
- this.updateContainerSize();
-};
+ var bezierSegmentPoints = createTypedArray('float32', 8);
-HybridRenderer.prototype.destroy = function () {
- this.animationItem.wrapper.innerHTML = '';
- this.animationItem.container = null;
- this.globalData.defs = null;
- var i, len = this.layers ? this.layers.length : 0;
- for (i = 0; i < len; i++) {
- this.elements[i].destroy();
- }
- this.elements.length = 0;
- this.destroyed = true;
- this.animationItem = null;
-};
+ function getNewSegment(pt1, pt2, pt3, pt4, startPerc, endPerc, bezierData) {
+ if (startPerc < 0) {
+ startPerc = 0;
+ } else if (startPerc > 1) {
+ startPerc = 1;
+ }
-HybridRenderer.prototype.updateContainerSize = function () {
- var elementWidth = this.animationItem.wrapper.offsetWidth;
- var elementHeight = this.animationItem.wrapper.offsetHeight;
- var elementRel = elementWidth/elementHeight;
- var animationRel = this.globalData.compSize.w/this.globalData.compSize.h;
- var sx,sy,tx,ty;
- if(animationRel>elementRel){
- sx = elementWidth/(this.globalData.compSize.w);
- sy = elementWidth/(this.globalData.compSize.w);
- tx = 0;
- ty = ((elementHeight-this.globalData.compSize.h*(elementWidth/this.globalData.compSize.w))/2);
- }else{
- sx = elementHeight/(this.globalData.compSize.h);
- sy = elementHeight/(this.globalData.compSize.h);
- tx = (elementWidth-this.globalData.compSize.w*(elementHeight/this.globalData.compSize.h))/2;
- ty = 0;
- }
- this.resizerElem.style.transform = this.resizerElem.style.webkitTransform = 'matrix3d(' + sx + ',0,0,0,0,'+sy+',0,0,0,0,1,0,'+tx+','+ty+',0,1)';
-};
-
-HybridRenderer.prototype.renderFrame = SVGRenderer.prototype.renderFrame;
-
-HybridRenderer.prototype.hide = function(){
- this.resizerElem.style.display = 'none';
-};
+ var t0 = getDistancePerc(startPerc, bezierData);
+ endPerc = endPerc > 1 ? 1 : endPerc;
+ var t1 = getDistancePerc(endPerc, bezierData);
+ var i;
+ var len = pt1.length;
+ var u0 = 1 - t0;
+ var u1 = 1 - t1;
+ var u0u0u0 = u0 * u0 * u0;
+ var t0u0u0_3 = t0 * u0 * u0 * 3; // eslint-disable-line camelcase
-HybridRenderer.prototype.show = function(){
- this.resizerElem.style.display = 'block';
-};
+ var t0t0u0_3 = t0 * t0 * u0 * 3; // eslint-disable-line camelcase
-HybridRenderer.prototype.initItems = function(){
- this.buildAllItems();
- if(this.camera){
- this.camera.setup();
- } else {
- var cWidth = this.globalData.compSize.w;
- var cHeight = this.globalData.compSize.h;
- var i, len = this.threeDElements.length;
- for(i=0;i 0){
- this.maskElement.setAttribute('id', layerId);
- this.element.maskedElement.setAttribute(maskRef, "url(" + locationHref + "#" + layerId + ")");
- defs.appendChild(this.maskElement);
- }
- if (this.viewData.length) {
- this.element.addRenderableComponent(this);
+ return bezierSegmentPoints;
}
-}
+ return {
+ getSegmentsLength: getSegmentsLength,
+ getNewSegment: getNewSegment,
+ getPointInSegment: getPointInSegment,
+ buildBezierData: buildBezierData,
+ pointOnLine2D: pointOnLine2D,
+ pointOnLine3D: pointOnLine3D
+ };
+ }
-MaskElement.prototype.getMaskProperty = function(pos){
- return this.viewData[pos].prop;
-};
+ var bez = bezFunction();
-MaskElement.prototype.renderFrame = function (isFirstFrame) {
- var finalMat = this.element.finalTransform.mat;
- var i, len = this.masksProperties.length;
- for (i = 0; i < len; i++) {
- if(this.viewData[i].prop._mdf || isFirstFrame){
- this.drawPath(this.masksProperties[i],this.viewData[i].prop.v,this.viewData[i]);
- }
- if(this.viewData[i].op._mdf || isFirstFrame){
- this.viewData[i].elem.setAttribute('fill-opacity',this.viewData[i].op.v);
- }
- if(this.masksProperties[i].mode !== 'n'){
- if(this.viewData[i].invRect && (this.element.finalTransform.mProp._mdf || isFirstFrame)){
- this.viewData[i].invRect.setAttribute('x', -finalMat.props[12]);
- this.viewData[i].invRect.setAttribute('y', -finalMat.props[13]);
- }
- if(this.storedData[i].x && (this.storedData[i].x._mdf || isFirstFrame)){
- var feMorph = this.storedData[i].expan;
- if(this.storedData[i].x.v < 0){
- if(this.storedData[i].lastOperator !== 'erode'){
- this.storedData[i].lastOperator = 'erode';
- this.storedData[i].elem.setAttribute('filter','url(' + locationHref + '#'+this.storedData[i].filterId+')');
- }
- feMorph.setAttribute('radius',-this.storedData[i].x.v);
- }else{
- if(this.storedData[i].lastOperator !== 'dilate'){
- this.storedData[i].lastOperator = 'dilate';
- this.storedData[i].elem.setAttribute('filter',null);
- }
- this.storedData[i].elem.setAttribute('stroke-width', this.storedData[i].x.v*2);
+ var initFrame = initialDefaultFrame;
+ var mathAbs = Math.abs;
- }
- }
- }
- }
-};
+ function interpolateValue(frameNum, caching) {
+ var offsetTime = this.offsetTime;
+ var newValue;
-MaskElement.prototype.getMaskelement = function () {
- return this.maskElement;
-};
+ if (this.propType === 'multidimensional') {
+ newValue = createTypedArray('float32', this.pv.length);
+ }
-MaskElement.prototype.createLayerSolidPath = function(){
- var path = 'M0,0 ';
- path += ' h' + this.globalData.compSize.w ;
- path += ' v' + this.globalData.compSize.h ;
- path += ' h-' + this.globalData.compSize.w ;
- path += ' v-' + this.globalData.compSize.h + ' ';
- return path;
-};
+ var iterationIndex = caching.lastIndex;
+ var i = iterationIndex;
+ var len = this.keyframes.length - 1;
+ var flag = true;
+ var keyData;
+ var nextKeyData;
+ var keyframeMetadata;
-MaskElement.prototype.drawPath = function(pathData,pathNodes,viewData){
- var pathString = " M"+pathNodes.v[0][0]+','+pathNodes.v[0][1];
- var i, len;
- len = pathNodes._length;
- for(i=1;i 1){
- pathString += " C"+pathNodes.o[i-1][0]+','+pathNodes.o[i-1][1] + " "+pathNodes.i[0][0]+','+pathNodes.i[0][1] + " "+pathNodes.v[0][0]+','+pathNodes.v[0][1];
- }
- //pathNodes.__renderedString = pathString;
+ while (flag) {
+ keyData = this.keyframes[i];
+ nextKeyData = this.keyframes[i + 1];
- if(viewData.lastPath !== pathString){
- var pathShapeValue = '';
- if(viewData.elem){
- if(pathNodes.c){
- pathShapeValue = pathData.inv ? this.solidPath + pathString : pathString;
- }
- viewData.elem.setAttribute('d',pathShapeValue);
+ if (i === len - 1 && frameNum >= nextKeyData.t - offsetTime) {
+ if (keyData.h) {
+ keyData = nextKeyData;
}
- viewData.lastPath = pathString;
- }
-};
-MaskElement.prototype.destroy = function(){
- this.element = null;
- this.globalData = null;
- this.maskElement = null;
- this.data = null;
- this.masksProperties = null;
-};
-
-/**
- * @file
- * Handles AE's layer parenting property.
- *
- */
-
-function HierarchyElement(){}
-
-HierarchyElement.prototype = {
- /**
- * @function
- * Initializes hierarchy properties
- *
- */
- initHierarchy: function() {
- //element's parent list
- this.hierarchy = [];
- //if element is parent of another layer _isParent will be true
- this._isParent = false;
- this.checkParenting();
- },
- /**
- * @function
- * Sets layer's hierarchy.
- * @param {array} hierarch
- * layer's parent list
- *
- */
- setHierarchy: function(hierarchy){
- this.hierarchy = hierarchy;
- },
- /**
- * @function
- * Sets layer as parent.
- *
- */
- setAsParent: function() {
- this._isParent = true;
- },
- /**
- * @function
- * Searches layer's parenting chain
- *
- */
- checkParenting: function(){
- if (this.data.parent !== undefined){
- this.comp.buildElementParenting(this, this.data.parent, []);
- }
- }
-};
-/**
- * @file
- * Handles element's layer frame update.
- * Checks layer in point and out point
- *
- */
-
-function FrameElement(){}
-
-FrameElement.prototype = {
- /**
- * @function
- * Initializes frame related properties.
- *
- */
- initFrame: function(){
- //set to true when inpoint is rendered
- this._isFirstFrame = false;
- //list of animated properties
- this.dynamicProperties = [];
- // If layer has been modified in current tick this will be true
- this._mdf = false;
- },
- /**
- * @function
- * Calculates all dynamic values
- *
- * @param {number} num
- * current frame number in Layer's time
- * @param {boolean} isVisible
- * if layers is currently in range
- *
- */
- prepareProperties: function(num, isVisible) {
- var i, len = this.dynamicProperties.length;
- for (i = 0;i < len; i += 1) {
- if (isVisible || (this._isParent && this.dynamicProperties[i].propType === 'transform')) {
- this.dynamicProperties[i].getValue();
- if (this.dynamicProperties[i]._mdf) {
- this.globalData._mdf = true;
- this._mdf = true;
- }
- }
- }
- },
- addDynamicProperty: function(prop) {
- if(this.dynamicProperties.indexOf(prop) === -1) {
- this.dynamicProperties.push(prop);
- }
+ iterationIndex = 0;
+ break;
+ }
+
+ if (nextKeyData.t - offsetTime > frameNum) {
+ iterationIndex = i;
+ break;
+ }
+
+ if (i < len - 1) {
+ i += 1;
+ } else {
+ iterationIndex = 0;
+ flag = false;
+ }
}
-};
-function TransformElement(){}
-TransformElement.prototype = {
- initTransform: function() {
- this.finalTransform = {
- mProp: this.data.ks ? TransformPropertyFactory.getTransformProperty(this, this.data.ks, this) : {o:0},
- _matMdf: false,
- _opMdf: false,
- mat: new Matrix()
- };
- if (this.data.ao) {
- this.finalTransform.mProp.autoOriented = true;
- }
+ keyframeMetadata = this.keyframesMetadata[i] || {};
+ var k;
+ var kLen;
+ var perc;
+ var jLen;
+ var j;
+ var fnc;
+ var nextKeyTime = nextKeyData.t - offsetTime;
+ var keyTime = keyData.t - offsetTime;
+ var endValue;
+
+ if (keyData.to) {
+ if (!keyframeMetadata.bezierData) {
+ keyframeMetadata.bezierData = bez.buildBezierData(keyData.s, nextKeyData.s || keyData.e, keyData.to, keyData.ti);
+ }
- //TODO: check TYPE 11: Guided elements
- if (this.data.ty !== 11) {
- //this.createElements();
- }
- },
- renderTransform: function() {
-
- this.finalTransform._opMdf = this.finalTransform.mProp.o._mdf || this._isFirstFrame;
- this.finalTransform._matMdf = this.finalTransform.mProp._mdf || this._isFirstFrame;
-
- if (this.hierarchy) {
- var mat;
- var finalMat = this.finalTransform.mat;
- var i = 0, len = this.hierarchy.length;
- //Checking if any of the transformation matrices in the hierarchy chain has changed.
- if (!this.finalTransform._matMdf) {
- while (i < len) {
- if (this.hierarchy[i].finalTransform.mProp._mdf) {
- this.finalTransform._matMdf = true;
- break;
- }
- i += 1;
- }
- }
-
- if (this.finalTransform._matMdf) {
- mat = this.finalTransform.mProp.v.props;
- finalMat.cloneFromProps(mat);
- for (i = 0; i < len; i += 1) {
- mat = this.hierarchy[i].finalTransform.mProp.v.props;
- finalMat.transform(mat[0], mat[1], mat[2], mat[3], mat[4], mat[5], mat[6], mat[7], mat[8], mat[9], mat[10], mat[11], mat[12], mat[13], mat[14], mat[15]);
- }
- }
+ var bezierData = keyframeMetadata.bezierData;
+
+ if (frameNum >= nextKeyTime || frameNum < keyTime) {
+ var ind = frameNum >= nextKeyTime ? bezierData.points.length - 1 : 0;
+ kLen = bezierData.points[ind].point.length;
+
+ for (k = 0; k < kLen; k += 1) {
+ newValue[k] = bezierData.points[ind].point[k];
+ } // caching._lastKeyframeIndex = -1;
+
+ } else {
+ if (keyframeMetadata.__fnct) {
+ fnc = keyframeMetadata.__fnct;
+ } else {
+ fnc = BezierFactory.getBezierEasing(keyData.o.x, keyData.o.y, keyData.i.x, keyData.i.y, keyData.n).get;
+ keyframeMetadata.__fnct = fnc;
}
- },
- globalToLocal: function(pt) {
- var transforms = [];
- transforms.push(this.finalTransform);
- var flag = true;
- var comp = this.comp;
+
+ perc = fnc((frameNum - keyTime) / (nextKeyTime - keyTime));
+ var distanceInLine = bezierData.segmentLength * perc;
+ var segmentPerc;
+ var addedLength = caching.lastFrame < frameNum && caching._lastKeyframeIndex === i ? caching._lastAddedLength : 0;
+ j = caching.lastFrame < frameNum && caching._lastKeyframeIndex === i ? caching._lastPoint : 0;
+ flag = true;
+ jLen = bezierData.points.length;
+
while (flag) {
- if (comp.finalTransform) {
- if (comp.data.hasMask) {
- transforms.splice(0, 0, comp.finalTransform);
- }
- comp = comp.comp;
- } else {
- flag = false;
+ addedLength += bezierData.points[j].partialLength;
+
+ if (distanceInLine === 0 || perc === 0 || j === bezierData.points.length - 1) {
+ kLen = bezierData.points[j].point.length;
+
+ for (k = 0; k < kLen; k += 1) {
+ newValue[k] = bezierData.points[j].point[k];
}
- }
- var i, len = transforms.length,ptNew;
- for (i = 0; i < len; i += 1) {
- ptNew = transforms[i].mat.applyToPointArray(0, 0, 0);
- //ptNew = transforms[i].mat.applyToPointArray(pt[0],pt[1],pt[2]);
- pt = [pt[0] - ptNew[0], pt[1] - ptNew[1], 0];
- }
- return pt;
- },
- mHelper: new Matrix()
-};
-function RenderableElement(){
-}
+ break;
+ } else if (distanceInLine >= addedLength && distanceInLine < addedLength + bezierData.points[j + 1].partialLength) {
+ segmentPerc = (distanceInLine - addedLength) / bezierData.points[j + 1].partialLength;
+ kLen = bezierData.points[j].point.length;
-RenderableElement.prototype = {
- initRenderable: function() {
- //layer's visibility related to inpoint and outpoint. Rename isVisible to isInRange
- this.isInRange = false;
- //layer's display state
- this.hidden = false;
- // If layer's transparency equals 0, it can be hidden
- this.isTransparent = false;
- //list of animated components
- this.renderableComponents = [];
- },
- addRenderableComponent: function(component) {
- if(this.renderableComponents.indexOf(component) === -1) {
- this.renderableComponents.push(component);
- }
- },
- removeRenderableComponent: function(component) {
- if(this.renderableComponents.indexOf(component) !== -1) {
- this.renderableComponents.splice(this.renderableComponents.indexOf(component), 1);
- }
- },
- prepareRenderableFrame: function(num) {
- this.checkLayerLimits(num);
- },
- checkTransparency: function(){
- if(this.finalTransform.mProp.o.v <= 0) {
- if(!this.isTransparent && this.globalData.renderConfig.hideOnTransparent){
- this.isTransparent = true;
- this.hide();
+ for (k = 0; k < kLen; k += 1) {
+ newValue[k] = bezierData.points[j].point[k] + (bezierData.points[j + 1].point[k] - bezierData.points[j].point[k]) * segmentPerc;
}
- } else if(this.isTransparent) {
- this.isTransparent = false;
- this.show();
+
+ break;
+ }
+
+ if (j < jLen - 1) {
+ j += 1;
+ } else {
+ flag = false;
+ }
}
- },
- /**
- * @function
- * Initializes frame related properties.
- *
- * @param {number} num
- * current frame number in Layer's time
- *
- */
- checkLayerLimits: function(num) {
- if(this.data.ip - this.data.st <= num && this.data.op - this.data.st > num)
- {
- if(this.isInRange !== true){
- this.globalData._mdf = true;
- this._mdf = true;
- this.isInRange = true;
- this.show();
- }
+
+ caching._lastPoint = j;
+ caching._lastAddedLength = addedLength - bezierData.points[j].partialLength;
+ caching._lastKeyframeIndex = i;
+ }
+ } else {
+ var outX;
+ var outY;
+ var inX;
+ var inY;
+ var keyValue;
+ len = keyData.s.length;
+ endValue = nextKeyData.s || keyData.e;
+
+ if (this.sh && keyData.h !== 1) {
+ if (frameNum >= nextKeyTime) {
+ newValue[0] = endValue[0];
+ newValue[1] = endValue[1];
+ newValue[2] = endValue[2];
+ } else if (frameNum <= keyTime) {
+ newValue[0] = keyData.s[0];
+ newValue[1] = keyData.s[1];
+ newValue[2] = keyData.s[2];
} else {
- if(this.isInRange !== false){
- this.globalData._mdf = true;
- this.isInRange = false;
- this.hide();
- }
- }
- },
- renderRenderable: function() {
- var i, len = this.renderableComponents.length;
- for(i = 0; i < len; i += 1) {
- this.renderableComponents[i].renderFrame(this._isFirstFrame);
- }
- /*this.maskManager.renderFrame(this.finalTransform.mat);
- this.renderableEffectsManager.renderFrame(this._isFirstFrame);*/
- },
- sourceRectAtTime: function(){
- return {
- top:0,
- left:0,
- width:100,
- height:100
- };
- },
- getLayerSize: function(){
- if(this.data.ty === 5){
- return {w:this.data.textData.width,h:this.data.textData.height};
- }else{
- return {w:this.data.width,h:this.data.height};
+ var quatStart = createQuaternion(keyData.s);
+ var quatEnd = createQuaternion(endValue);
+ var time = (frameNum - keyTime) / (nextKeyTime - keyTime);
+ quaternionToEuler(newValue, slerp(quatStart, quatEnd, time));
}
- }
-};
-function RenderableDOMElement() {}
+ } else {
+ for (i = 0; i < len; i += 1) {
+ if (keyData.h !== 1) {
+ if (frameNum >= nextKeyTime) {
+ perc = 1;
+ } else if (frameNum < keyTime) {
+ perc = 0;
+ } else {
+ if (keyData.o.x.constructor === Array) {
+ if (!keyframeMetadata.__fnct) {
+ keyframeMetadata.__fnct = [];
+ }
-(function(){
- var _prototype = {
- initElement: function(data,globalData,comp) {
- this.initFrame();
- this.initBaseData(data, globalData, comp);
- this.initTransform(data, globalData, comp);
- this.initHierarchy();
- this.initRenderable();
- this.initRendererElement();
- this.createContainerElements();
- this.createRenderableComponents();
- this.createContent();
- this.hide();
- },
- hide: function(){
- if (!this.hidden && (!this.isInRange || this.isTransparent)) {
- var elem = this.baseElement || this.layerElement;
- elem.style.display = 'none';
- this.hidden = true;
- }
- },
- show: function(){
- if (this.isInRange && !this.isTransparent){
- if (!this.data.hd) {
- var elem = this.baseElement || this.layerElement;
- elem.style.display = 'block';
+ if (!keyframeMetadata.__fnct[i]) {
+ outX = keyData.o.x[i] === undefined ? keyData.o.x[0] : keyData.o.x[i];
+ outY = keyData.o.y[i] === undefined ? keyData.o.y[0] : keyData.o.y[i];
+ inX = keyData.i.x[i] === undefined ? keyData.i.x[0] : keyData.i.x[i];
+ inY = keyData.i.y[i] === undefined ? keyData.i.y[0] : keyData.i.y[i];
+ fnc = BezierFactory.getBezierEasing(outX, outY, inX, inY).get;
+ keyframeMetadata.__fnct[i] = fnc;
+ } else {
+ fnc = keyframeMetadata.__fnct[i];
}
- this.hidden = false;
- this._isFirstFrame = true;
- }
- },
- renderFrame: function() {
- //If it is exported as hidden (data.hd === true) no need to render
- //If it is not visible no need to render
- if (this.data.hd || this.hidden) {
- return;
- }
- this.renderTransform();
- this.renderRenderable();
- this.renderElement();
- this.renderInnerContent();
- if (this._isFirstFrame) {
- this._isFirstFrame = false;
- }
- },
- renderInnerContent: function() {},
- prepareFrame: function(num) {
- this._mdf = false;
- this.prepareRenderableFrame(num);
- this.prepareProperties(num, this.isInRange);
- this.checkTransparency();
- },
- destroy: function(){
- this.innerElem = null;
- this.destroyBaseElement();
+ } else if (!keyframeMetadata.__fnct) {
+ outX = keyData.o.x;
+ outY = keyData.o.y;
+ inX = keyData.i.x;
+ inY = keyData.i.y;
+ fnc = BezierFactory.getBezierEasing(outX, outY, inX, inY).get;
+ keyData.keyframeMetadata = fnc;
+ } else {
+ fnc = keyframeMetadata.__fnct;
+ }
+
+ perc = fnc((frameNum - keyTime) / (nextKeyTime - keyTime));
+ }
+ }
+
+ endValue = nextKeyData.s || keyData.e;
+ keyValue = keyData.h === 1 ? keyData.s[i] : keyData.s[i] + (endValue[i] - keyData.s[i]) * perc;
+
+ if (this.propType === 'multidimensional') {
+ newValue[i] = keyValue;
+ } else {
+ newValue = keyValue;
+ }
}
- };
- extendPrototype([RenderableElement, createProxyFunction(_prototype)], RenderableDOMElement);
-}());
-function ProcessedElement(element, position) {
- this.elem = element;
- this.pos = position;
-}
-function SVGStyleData(data, level) {
- this.data = data;
- this.type = data.ty;
- this.d = '';
- this.lvl = level;
- this._mdf = false;
- this.closed = data.hd === true;
- this.pElem = createNS('path');
- this.msElem = null;
-}
-
-SVGStyleData.prototype.reset = function() {
- this.d = '';
- this._mdf = false;
-};
-function SVGShapeData(transformers, level, shape) {
- this.caches = [];
- this.styles = [];
- this.transformers = transformers;
- this.lStr = '';
- this.sh = shape;
- this.lvl = level;
- //TODO find if there are some cases where _isAnimated can be false.
- // For now, since shapes add up with other shapes. They have to be calculated every time.
- // One way of finding out is checking if all styles associated to this shape depend only of this shape
- this._isAnimated = !!shape.k;
- // TODO: commenting this for now since all shapes are animated
- var i = 0, len = transformers.length;
- while(i < len) {
- if(transformers[i].mProps.dynamicProperties.length) {
- this._isAnimated = true;
- break;
- }
- i += 1;
- }
-}
-
-SVGShapeData.prototype.setAsAnimated = function() {
- this._isAnimated = true;
-}
-function SVGTransformData(mProps, op, container) {
- this.transform = {
- mProps: mProps,
- op: op,
- container: container
- };
- this.elements = [];
- this._isAnimated = this.transform.mProps.dynamicProperties.length || this.transform.op.effectsSequence.length;
-}
-function SVGStrokeStyleData(elem, data, styleOb){
- this.initDynamicPropertyContainer(elem);
- this.getValue = this.iterateDynamicProperties;
- this.o = PropertyFactory.getProp(elem,data.o,0,0.01,this);
- this.w = PropertyFactory.getProp(elem,data.w,0,null,this);
- this.d = new DashProperty(elem,data.d||{},'svg',this);
- this.c = PropertyFactory.getProp(elem,data.c,1,255,this);
- this.style = styleOb;
- this._isAnimated = !!this._isAnimated;
-}
-
-extendPrototype([DynamicPropertyContainer], SVGStrokeStyleData);
-function SVGFillStyleData(elem, data, styleOb){
- this.initDynamicPropertyContainer(elem);
- this.getValue = this.iterateDynamicProperties;
- this.o = PropertyFactory.getProp(elem,data.o,0,0.01,this);
- this.c = PropertyFactory.getProp(elem,data.c,1,255,this);
- this.style = styleOb;
-}
-
-extendPrototype([DynamicPropertyContainer], SVGFillStyleData);
-function SVGGradientFillStyleData(elem, data, styleOb){
- this.initDynamicPropertyContainer(elem);
- this.getValue = this.iterateDynamicProperties;
- this.initGradientData(elem, data, styleOb);
-}
-
-SVGGradientFillStyleData.prototype.initGradientData = function(elem, data, styleOb){
- this.o = PropertyFactory.getProp(elem,data.o,0,0.01,this);
- this.s = PropertyFactory.getProp(elem,data.s,1,null,this);
- this.e = PropertyFactory.getProp(elem,data.e,1,null,this);
- this.h = PropertyFactory.getProp(elem,data.h||{k:0},0,0.01,this);
- this.a = PropertyFactory.getProp(elem,data.a||{k:0},0,degToRads,this);
- this.g = new GradientProperty(elem,data.g,this);
- this.style = styleOb;
- this.stops = [];
- this.setGradientData(styleOb.pElem, data);
- this.setGradientOpacity(data, styleOb);
- this._isAnimated = !!this._isAnimated;
+ }
+ }
-};
+ caching.lastIndex = iterationIndex;
+ return newValue;
+ } // based on @Toji's https://github.com/toji/gl-matrix/
+
+
+ function slerp(a, b, t) {
+ var out = [];
+ var ax = a[0];
+ var ay = a[1];
+ var az = a[2];
+ var aw = a[3];
+ var bx = b[0];
+ var by = b[1];
+ var bz = b[2];
+ var bw = b[3];
+ var omega;
+ var cosom;
+ var sinom;
+ var scale0;
+ var scale1;
+ cosom = ax * bx + ay * by + az * bz + aw * bw;
+
+ if (cosom < 0.0) {
+ cosom = -cosom;
+ bx = -bx;
+ by = -by;
+ bz = -bz;
+ bw = -bw;
+ }
+
+ if (1.0 - cosom > 0.000001) {
+ omega = Math.acos(cosom);
+ sinom = Math.sin(omega);
+ scale0 = Math.sin((1.0 - t) * omega) / sinom;
+ scale1 = Math.sin(t * omega) / sinom;
+ } else {
+ scale0 = 1.0 - t;
+ scale1 = t;
+ }
-SVGGradientFillStyleData.prototype.setGradientData = function(pathElement,data){
+ out[0] = scale0 * ax + scale1 * bx;
+ out[1] = scale0 * ay + scale1 * by;
+ out[2] = scale0 * az + scale1 * bz;
+ out[3] = scale0 * aw + scale1 * bw;
+ return out;
+ }
- var gradientId = createElementID();
- var gfill = createNS(data.t === 1 ? 'linearGradient' : 'radialGradient');
- gfill.setAttribute('id',gradientId);
- gfill.setAttribute('spreadMethod','pad');
- gfill.setAttribute('gradientUnits','userSpaceOnUse');
- var stops = [];
- var stop, j, jLen;
- jLen = data.g.p*4;
- for(j=0;j 0) {
- redraw = itemData.transformers[k].mProps._mdf || redraw;
- iterations --;
- k --;
- }
- if(redraw) {
- iterations = lvl - itemData.styles[l].lvl;
- k = itemData.transformers.length-1;
- while(iterations > 0) {
- props = itemData.transformers[k].mProps.v.props;
- mat.transform(props[0],props[1],props[2],props[3],props[4],props[5],props[6],props[7],props[8],props[9],props[10],props[11],props[12],props[13],props[14],props[15]);
- iterations --;
- k --;
- }
- }
- } else {
- mat = _identityMatrix;
- }
- paths = itemData.sh.paths;
- jLen = paths._length;
- if(redraw){
- pathStringTransformed = '';
- for(j=0;j= 1 ? 0.99 : itemData.h.v <= -1 ? -0.99: itemData.h.v;
- var dist = rad * percent;
- var x = Math.cos(ang + itemData.a.v) * dist + pt1[0];
- var y = Math.sin(ang + itemData.a.v) * dist + pt1[1];
- gfill.setAttribute('fx', x);
- gfill.setAttribute('fy', y);
- if (hasOpacity && !itemData.g._collapsable) {
- itemData.of.setAttribute('fx', x);
- itemData.of.setAttribute('fy', y);
- }
- }
- //gfill.setAttribute('fy','200');
- }
- };
-
- function renderStroke(styleData, itemData, isFirstFrame) {
- var styleElem = itemData.style;
- var d = itemData.d;
- if (d && (d._mdf || isFirstFrame) && d.dashStr) {
- styleElem.pElem.setAttribute('stroke-dasharray', d.dashStr);
- styleElem.pElem.setAttribute('stroke-dashoffset', d.dashoffset[0]);
- }
- if(itemData.c && (itemData.c._mdf || isFirstFrame)){
- styleElem.pElem.setAttribute('stroke','rgb(' + bm_floor(itemData.c.v[0]) + ',' + bm_floor(itemData.c.v[1]) + ',' + bm_floor(itemData.c.v[2]) + ')');
- }
- if(itemData.o._mdf || isFirstFrame){
- styleElem.pElem.setAttribute('stroke-opacity', itemData.o.v);
- }
- if(itemData.w._mdf || isFirstFrame){
- styleElem.pElem.setAttribute('stroke-width', itemData.w.v);
- if(styleElem.msElem){
- styleElem.msElem.setAttribute('stroke-width', itemData.w.v);
- }
- }
- };
-
- return ob;
-}())
-function ShapeTransformManager() {
- this.sequences = {};
- this.sequenceList = [];
- this.transform_key_count = 0;
-}
-
-ShapeTransformManager.prototype = {
- addTransformSequence: function(transforms) {
- var i, len = transforms.length;
- var key = '_';
- for(i = 0; i < len; i += 1) {
- key += transforms[i].transform.key + '_';
- }
- var sequence = this.sequences[key];
- if(!sequence) {
- sequence = {
- transforms: [].concat(transforms),
- finalTransform: new Matrix(),
- _mdf: false
- };
- this.sequences[key] = sequence;
- this.sequenceList.push(sequence);
- }
- return sequence;
- },
- processSequence: function(sequence, isFirstFrame) {
- var i = 0, len = sequence.transforms.length, _mdf = isFirstFrame;
- while (i < len && !isFirstFrame) {
- if (sequence.transforms[i].transform.mProps._mdf) {
- _mdf = true;
- break;
- }
- i += 1
- }
- if (_mdf) {
- var props;
- sequence.finalTransform.reset();
- for (i = len - 1; i >= 0; i -= 1) {
- props = sequence.transforms[i].transform.mProps.v.props;
- sequence.finalTransform.transform(props[0],props[1],props[2],props[3],props[4],props[5],props[6],props[7],props[8],props[9],props[10],props[11],props[12],props[13],props[14],props[15]);
- }
- }
- sequence._mdf = _mdf;
-
- },
- processSequences: function(isFirstFrame) {
- var i, len = this.sequenceList.length;
- for (i = 0; i < len; i += 1) {
- this.processSequence(this.sequenceList[i], isFirstFrame);
- }
-
- },
- getNewKey: function() {
- return '_' + this.transform_key_count++;
- }
-}
-function CVShapeData(element, data, styles, transformsManager) {
- this.styledShapes = [];
- this.tr = [0,0,0,0,0,0];
- var ty = 4;
- if(data.ty == 'rc'){
- ty = 5;
- }else if(data.ty == 'el'){
- ty = 6;
- }else if(data.ty == 'sr'){
- ty = 7;
- }
- this.sh = ShapePropertyFactory.getShapeProp(element,data,ty,element);
- var i , len = styles.length,styledShape;
- for (i = 0; i < len; i += 1) {
- if (!styles[i].closed) {
- styledShape = {
- transforms: transformsManager.addTransformSequence(styles[i].transforms),
- trNodes: []
- }
- this.styledShapes.push(styledShape);
- styles[i].elements.push(styledShape);
- }
- }
-}
+ function createQuaternion(values) {
+ var heading = values[0] * degToRads;
+ var attitude = values[1] * degToRads;
+ var bank = values[2] * degToRads;
+ var c1 = Math.cos(heading / 2);
+ var c2 = Math.cos(attitude / 2);
+ var c3 = Math.cos(bank / 2);
+ var s1 = Math.sin(heading / 2);
+ var s2 = Math.sin(attitude / 2);
+ var s3 = Math.sin(bank / 2);
+ var w = c1 * c2 * c3 - s1 * s2 * s3;
+ var x = s1 * s2 * c3 + c1 * c2 * s3;
+ var y = s1 * c2 * c3 + c1 * s2 * s3;
+ var z = c1 * s2 * c3 - s1 * c2 * s3;
+ return [x, y, z, w];
+ }
-CVShapeData.prototype.setAsAnimated = SVGShapeData.prototype.setAsAnimated;
-function BaseElement(){
-}
+ function getValueAtCurrentTime() {
+ var frameNum = this.comp.renderedFrame - this.offsetTime;
+ var initTime = this.keyframes[0].t - this.offsetTime;
+ var endTime = this.keyframes[this.keyframes.length - 1].t - this.offsetTime;
-BaseElement.prototype = {
- checkMasks: function(){
- if(!this.data.hasMask){
- return false;
- }
- var i = 0, len = this.data.masksProperties.length;
- while(i= endTime && frameNum >= endTime || this._caching.lastFrame < initTime && frameNum < initTime))) {
+ if (this._caching.lastFrame >= frameNum) {
+ this._caching._lastKeyframeIndex = -1;
+ this._caching.lastIndex = 0;
+ }
+
+ var renderResult = this.interpolateValue(frameNum, this._caching);
+ this.pv = renderResult;
+ }
+
+ this._caching.lastFrame = frameNum;
+ return this.pv;
+ }
+
+ function setVValue(val) {
+ var multipliedValue;
+
+ if (this.propType === 'unidimensional') {
+ multipliedValue = val * this.mult;
+
+ if (mathAbs(this.v - multipliedValue) > 0.00001) {
+ this.v = multipliedValue;
+ this._mdf = true;
+ }
+ } else {
+ var i = 0;
+ var len = this.v.length;
+
+ while (i < len) {
+ multipliedValue = val[i] * this.mult;
+
+ if (mathAbs(this.v[i] - multipliedValue) > 0.00001) {
+ this.v[i] = multipliedValue;
+ this._mdf = true;
}
- },
- setBlendMode: function(){
- var blendModeValue = getBlendMode(this.data.bm);
- var elem = this.baseElement || this.layerElement;
- elem.style['mix-blend-mode'] = blendModeValue;
- },
- initBaseData: function(data, globalData, comp){
- this.globalData = globalData;
- this.comp = comp;
- this.data = data;
- this.layerId = createElementID();
-
- //Stretch factor for old animations missing this property.
- if(!this.data.sr){
- this.data.sr = 1;
- }
- // effects manager
- this.effectsManager = new EffectsManager(this.data,this,this.dynamicProperties);
-
- },
- getType: function(){
- return this.type;
+ i += 1;
+ }
}
- ,sourceRectAtTime: function(){}
-}
-function NullElement(data,globalData,comp){
- this.initFrame();
- this.initBaseData(data, globalData, comp);
- this.initFrame();
- this.initTransform(data, globalData, comp);
- this.initHierarchy();
-}
+ }
-NullElement.prototype.prepareFrame = function(num) {
- this.prepareProperties(num, true);
-};
+ function processEffectsSequence() {
+ if (this.elem.globalData.frameId === this.frameId || !this.effectsSequence.length) {
+ return;
+ }
-NullElement.prototype.renderFrame = function() {
-};
+ if (this.lock) {
+ this.setVValue(this.pv);
+ return;
+ }
-NullElement.prototype.getBaseElement = function() {
- return null;
-};
+ this.lock = true;
+ this._mdf = this._isFirstFrame;
+ var i;
+ var len = this.effectsSequence.length;
+ var finalValue = this.kf ? this.pv : this.data.k;
-NullElement.prototype.destroy = function() {
-};
+ for (i = 0; i < len; i += 1) {
+ finalValue = this.effectsSequence[i](finalValue);
+ }
-NullElement.prototype.sourceRectAtTime = function() {
-};
+ this.setVValue(finalValue);
+ this._isFirstFrame = false;
+ this.lock = false;
+ this.frameId = this.elem.globalData.frameId;
+ }
-NullElement.prototype.hide = function() {
-};
+ function addEffect(effectFunction) {
+ this.effectsSequence.push(effectFunction);
+ this.container.addDynamicProperty(this);
+ }
-extendPrototype([BaseElement,TransformElement,HierarchyElement,FrameElement], NullElement);
+ function ValueProperty(elem, data, mult, container) {
+ this.propType = 'unidimensional';
+ this.mult = mult || 1;
+ this.data = data;
+ this.v = mult ? data.k * mult : data.k;
+ this.pv = data.k;
+ this._mdf = false;
+ this.elem = elem;
+ this.container = container;
+ this.comp = elem.comp;
+ this.k = false;
+ this.kf = false;
+ this.vel = 0;
+ this.effectsSequence = [];
+ this._isFirstFrame = true;
+ this.getValue = processEffectsSequence;
+ this.setVValue = setVValue;
+ this.addEffect = addEffect;
+ }
-function SVGBaseElement(){
-}
+ function MultiDimensionalProperty(elem, data, mult, container) {
+ this.propType = 'multidimensional';
+ this.mult = mult || 1;
+ this.data = data;
+ this._mdf = false;
+ this.elem = elem;
+ this.container = container;
+ this.comp = elem.comp;
+ this.k = false;
+ this.kf = false;
+ this.frameId = -1;
+ var i;
+ var len = data.k.length;
+ this.v = createTypedArray('float32', len);
+ this.pv = createTypedArray('float32', len);
+ this.vel = createTypedArray('float32', len);
-SVGBaseElement.prototype = {
- initRendererElement: function() {
- this.layerElement = createNS('g');
- },
- createContainerElements: function(){
- this.matteElement = createNS('g');
- this.transformedElement = this.layerElement;
- this.maskedElement = this.layerElement;
- this._sizeChanged = false;
- var layerElementParent = null;
- //If this layer acts as a mask for the following layer
- var filId, fil, gg;
- if (this.data.td) {
- if (this.data.td == 3 || this.data.td == 1) {
- var masker = createNS('mask');
- masker.setAttribute('id', this.layerId);
- masker.setAttribute('mask-type', this.data.td == 3 ? 'luminance' : 'alpha');
- masker.appendChild(this.layerElement);
- layerElementParent = masker;
- this.globalData.defs.appendChild(masker);
- // This is only for IE and Edge when mask if of type alpha
- if (!featureSupport.maskType && this.data.td == 1) {
- masker.setAttribute('mask-type', 'luminance');
- filId = createElementID();
- fil = filtersFactory.createFilter(filId);
- this.globalData.defs.appendChild(fil);
- fil.appendChild(filtersFactory.createAlphaToLuminanceFilter());
- gg = createNS('g');
- gg.appendChild(this.layerElement);
- layerElementParent = gg;
- masker.appendChild(gg);
- gg.setAttribute('filter','url(' + locationHref + '#' + filId + ')');
- }
- } else if(this.data.td == 2) {
- var maskGroup = createNS('mask');
- maskGroup.setAttribute('id', this.layerId);
- maskGroup.setAttribute('mask-type','alpha');
- var maskGrouper = createNS('g');
- maskGroup.appendChild(maskGrouper);
- filId = createElementID();
- fil = filtersFactory.createFilter(filId);
- ////
-
- // This solution doesn't work on Android when meta tag with viewport attribute is set
- /*var feColorMatrix = createNS('feColorMatrix');
- feColorMatrix.setAttribute('type', 'matrix');
- feColorMatrix.setAttribute('color-interpolation-filters', 'sRGB');
- feColorMatrix.setAttribute('values','1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1');
- fil.appendChild(feColorMatrix);*/
- ////
- var feCTr = createNS('feComponentTransfer');
- feCTr.setAttribute('in','SourceGraphic');
- fil.appendChild(feCTr);
- var feFunc = createNS('feFuncA');
- feFunc.setAttribute('type','table');
- feFunc.setAttribute('tableValues','1.0 0.0');
- feCTr.appendChild(feFunc);
- ////
- this.globalData.defs.appendChild(fil);
- var alphaRect = createNS('rect');
- alphaRect.setAttribute('width', this.comp.data.w);
- alphaRect.setAttribute('height', this.comp.data.h);
- alphaRect.setAttribute('x','0');
- alphaRect.setAttribute('y','0');
- alphaRect.setAttribute('fill','#ffffff');
- alphaRect.setAttribute('opacity','0');
- maskGrouper.setAttribute('filter', 'url(' + locationHref + '#'+filId+')');
- maskGrouper.appendChild(alphaRect);
- maskGrouper.appendChild(this.layerElement);
- layerElementParent = maskGrouper;
- if (!featureSupport.maskType) {
- maskGroup.setAttribute('mask-type', 'luminance');
- fil.appendChild(filtersFactory.createAlphaToLuminanceFilter());
- gg = createNS('g');
- maskGrouper.appendChild(alphaRect);
- gg.appendChild(this.layerElement);
- layerElementParent = gg;
- maskGrouper.appendChild(gg);
- }
- this.globalData.defs.appendChild(maskGroup);
- }
- } else if (this.data.tt) {
- this.matteElement.appendChild(this.layerElement);
- layerElementParent = this.matteElement;
- this.baseElement = this.matteElement;
- } else {
- this.baseElement = this.layerElement;
- }
- if (this.data.ln) {
- this.layerElement.setAttribute('id', this.data.ln);
- }
- if (this.data.cl) {
- this.layerElement.setAttribute('class', this.data.cl);
- }
- //Clipping compositions to hide content that exceeds boundaries. If collapsed transformations is on, component should not be clipped
- if (this.data.ty === 0 && !this.data.hd) {
- var cp = createNS( 'clipPath');
- var pt = createNS('path');
- pt.setAttribute('d','M0,0 L' + this.data.w + ',0' + ' L' + this.data.w + ',' + this.data.h + ' L0,' + this.data.h + 'z');
- var clipId = createElementID();
- cp.setAttribute('id',clipId);
- cp.appendChild(pt);
- this.globalData.defs.appendChild(cp);
-
- if (this.checkMasks()) {
- var cpGroup = createNS('g');
- cpGroup.setAttribute('clip-path','url(' + locationHref + '#'+clipId + ')');
- cpGroup.appendChild(this.layerElement);
- this.transformedElement = cpGroup;
- if (layerElementParent) {
- layerElementParent.appendChild(this.transformedElement);
- } else {
- this.baseElement = this.transformedElement;
- }
- } else {
- this.layerElement.setAttribute('clip-path','url(' + locationHref + '#'+clipId+')');
- }
-
- }
- if (this.data.bm !== 0) {
- this.setBlendMode();
- }
+ for (i = 0; i < len; i += 1) {
+ this.v[i] = data.k[i] * this.mult;
+ this.pv[i] = data.k[i];
+ }
- },
- renderElement: function() {
- if (this.finalTransform._matMdf) {
- this.transformedElement.setAttribute('transform', this.finalTransform.mat.to2dCSS());
- }
- if (this.finalTransform._opMdf) {
- this.transformedElement.setAttribute('opacity', this.finalTransform.mProp.o.v);
- }
- },
- destroyBaseElement: function() {
- this.layerElement = null;
- this.matteElement = null;
- this.maskManager.destroy();
- },
- getBaseElement: function() {
- if (this.data.hd) {
- return null;
+ this._isFirstFrame = true;
+ this.effectsSequence = [];
+ this.getValue = processEffectsSequence;
+ this.setVValue = setVValue;
+ this.addEffect = addEffect;
+ }
+
+ function KeyframedValueProperty(elem, data, mult, container) {
+ this.propType = 'unidimensional';
+ this.keyframes = data.k;
+ this.keyframesMetadata = [];
+ this.offsetTime = elem.data.st;
+ this.frameId = -1;
+ this._caching = {
+ lastFrame: initFrame,
+ lastIndex: 0,
+ value: 0,
+ _lastKeyframeIndex: -1
+ };
+ this.k = true;
+ this.kf = true;
+ this.data = data;
+ this.mult = mult || 1;
+ this.elem = elem;
+ this.container = container;
+ this.comp = elem.comp;
+ this.v = initFrame;
+ this.pv = initFrame;
+ this._isFirstFrame = true;
+ this.getValue = processEffectsSequence;
+ this.setVValue = setVValue;
+ this.interpolateValue = interpolateValue;
+ this.effectsSequence = [getValueAtCurrentTime.bind(this)];
+ this.addEffect = addEffect;
+ }
+
+ function KeyframedMultidimensionalProperty(elem, data, mult, container) {
+ this.propType = 'multidimensional';
+ var i;
+ var len = data.k.length;
+ var s;
+ var e;
+ var to;
+ var ti;
+
+ for (i = 0; i < len - 1; i += 1) {
+ if (data.k[i].to && data.k[i].s && data.k[i + 1] && data.k[i + 1].s) {
+ s = data.k[i].s;
+ e = data.k[i + 1].s;
+ to = data.k[i].to;
+ ti = data.k[i].ti;
+
+ if (s.length === 2 && !(s[0] === e[0] && s[1] === e[1]) && bez.pointOnLine2D(s[0], s[1], e[0], e[1], s[0] + to[0], s[1] + to[1]) && bez.pointOnLine2D(s[0], s[1], e[0], e[1], e[0] + ti[0], e[1] + ti[1]) || s.length === 3 && !(s[0] === e[0] && s[1] === e[1] && s[2] === e[2]) && bez.pointOnLine3D(s[0], s[1], s[2], e[0], e[1], e[2], s[0] + to[0], s[1] + to[1], s[2] + to[2]) && bez.pointOnLine3D(s[0], s[1], s[2], e[0], e[1], e[2], e[0] + ti[0], e[1] + ti[1], e[2] + ti[2])) {
+ data.k[i].to = null;
+ data.k[i].ti = null;
}
- return this.baseElement;
- },
- createRenderableComponents: function() {
- this.maskManager = new MaskElement(this.data, this, this.globalData);
- this.renderableEffectsManager = new SVGEffects(this);
- },
- setMatte: function(id) {
- if (!this.matteElement) {
- return;
+
+ if (s[0] === e[0] && s[1] === e[1] && to[0] === 0 && to[1] === 0 && ti[0] === 0 && ti[1] === 0) {
+ if (s.length === 2 || s[2] === e[2] && to[2] === 0 && ti[2] === 0) {
+ data.k[i].to = null;
+ data.k[i].ti = null;
+ }
}
- this.matteElement.setAttribute("mask", "url(" + locationHref + "#" + id + ")");
+ }
}
-};
-function IShapeElement(){
-}
-IShapeElement.prototype = {
- addShapeToModifiers: function(data) {
- var i, len = this.shapeModifiers.length;
- for(i=0;i=0;i-=1){
- this.shapeModifiers[i].processShapes(this._isFirstFrame);
- }
- },
- lcEnum: {
- '1': 'butt',
- '2': 'round',
- '3': 'square'
- },
- ljEnum: {
- '1': 'miter',
- '2': 'round',
- '3': 'bevel'
- },
- searchProcessedElement: function(elem){
- var elements = this.processedElements;
- var i = 0, len = elements.length;
- while (i < len) {
- if (elements[i].elem === elem) {
- return elements[i].pos;
- }
- i += 1;
+ for (i = 0; i < arrLen; i += 1) {
+ this.v[i] = initFrame;
+ this.pv[i] = initFrame;
+ }
+
+ this._caching = {
+ lastFrame: initFrame,
+ lastIndex: 0,
+ value: createTypedArray('float32', arrLen)
+ };
+ this.addEffect = addEffect;
+ }
+
+ var PropertyFactory = function () {
+ function getProp(elem, data, type, mult, container) {
+ if (data.sid) {
+ data = elem.globalData.slotManager.getProp(data);
+ }
+
+ var p;
+
+ if (!data.k.length) {
+ p = new ValueProperty(elem, data, mult, container);
+ } else if (typeof data.k[0] === 'number') {
+ p = new MultiDimensionalProperty(elem, data, mult, container);
+ } else {
+ switch (type) {
+ case 0:
+ p = new KeyframedValueProperty(elem, data, mult, container);
+ break;
+
+ case 1:
+ p = new KeyframedMultidimensionalProperty(elem, data, mult, container);
+ break;
+
+ default:
+ break;
}
- return 0;
+ }
+
+ if (p.effectsSequence.length) {
+ container.addDynamicProperty(p);
+ }
+
+ return p;
+ }
+
+ var ob = {
+ getProp: getProp
+ };
+ return ob;
+ }();
+
+ function DynamicPropertyContainer() {}
+
+ DynamicPropertyContainer.prototype = {
+ addDynamicProperty: function addDynamicProperty(prop) {
+ if (this.dynamicProperties.indexOf(prop) === -1) {
+ this.dynamicProperties.push(prop);
+ this.container.addDynamicProperty(this);
+ this._isAnimated = true;
+ }
},
- addProcessedElement: function(elem, pos){
- var elements = this.processedElements;
- var i = elements.length;
- while(i) {
- i -= 1;
- if (elements[i].elem === elem) {
- elements[i].pos = pos;
- return;
- }
+ iterateDynamicProperties: function iterateDynamicProperties() {
+ this._mdf = false;
+ var i;
+ var len = this.dynamicProperties.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.dynamicProperties[i].getValue();
+
+ if (this.dynamicProperties[i]._mdf) {
+ this._mdf = true;
}
- elements.push(new ProcessedElement(elem, pos));
+ }
},
- prepareFrame: function(num) {
- this.prepareRenderableFrame(num);
- this.prepareProperties(num, this.isInRange);
+ initDynamicPropertyContainer: function initDynamicPropertyContainer(container) {
+ this.container = container;
+ this.dynamicProperties = [];
+ this._mdf = false;
+ this._isAnimated = false;
}
-};
-function ITextElement(){
-}
+ };
-ITextElement.prototype.initElement = function(data,globalData,comp){
- this.lettersChangedFlag = true;
- this.initFrame();
- this.initBaseData(data, globalData, comp);
- this.textProperty = new TextProperty(this, data.t, this.dynamicProperties);
- this.textAnimator = new TextAnimatorProperty(data.t, this.renderType, this);
- this.initTransform(data, globalData, comp);
- this.initHierarchy();
- this.initRenderable();
- this.initRendererElement();
- this.createContainerElements();
- this.createRenderableComponents();
- this.createContent();
- this.hide();
- this.textAnimator.searchProperties(this.dynamicProperties);
-};
+ var pointPool = function () {
+ function create() {
+ return createTypedArray('float32', 2);
+ }
-ITextElement.prototype.prepareFrame = function(num) {
- this._mdf = false;
- this.prepareRenderableFrame(num);
- this.prepareProperties(num, this.isInRange);
- if(this.textProperty._mdf || this.textProperty._isFirstFrame) {
- this.buildNewText();
- this.textProperty._isFirstFrame = false;
- this.textProperty._mdf = false;
+ return poolFactory(8, create);
+ }();
+
+ function ShapePath() {
+ this.c = false;
+ this._length = 0;
+ this._maxLength = 8;
+ this.v = createSizedArray(this._maxLength);
+ this.o = createSizedArray(this._maxLength);
+ this.i = createSizedArray(this._maxLength);
+ }
+
+ ShapePath.prototype.setPathData = function (closed, len) {
+ this.c = closed;
+ this.setLength(len);
+ var i = 0;
+
+ while (i < len) {
+ this.v[i] = pointPool.newElement();
+ this.o[i] = pointPool.newElement();
+ this.i[i] = pointPool.newElement();
+ i += 1;
}
-};
+ };
-ITextElement.prototype.createPathShape = function(matrixHelper, shapes) {
- var j,jLen = shapes.length;
- var k, kLen, pathNodes;
- var shapeStr = '';
- for(j=0;j= this._maxLength) {
+ this.doubleArrayLength();
+ }
+
+ switch (type) {
+ case 'v':
+ arr = this.v;
+ break;
+
+ case 'i':
+ arr = this.i;
+ break;
+
+ case 'o':
+ arr = this.o;
+ break;
+
+ default:
+ arr = [];
+ break;
+ }
+
+ if (!arr[pos] || arr[pos] && !replace) {
+ arr[pos] = pointPool.newElement();
+ }
+
+ arr[pos][0] = x;
+ arr[pos][1] = y;
+ };
+
+ ShapePath.prototype.setTripleAt = function (vX, vY, oX, oY, iX, iY, pos, replace) {
+ this.setXYAt(vX, vY, 'v', pos, replace);
+ this.setXYAt(oX, oY, 'o', pos, replace);
+ this.setXYAt(iX, iY, 'i', pos, replace);
+ };
+
+ ShapePath.prototype.reverse = function () {
+ var newPath = new ShapePath();
+ newPath.setPathData(this.c, this._length);
+ var vertices = this.v;
+ var outPoints = this.o;
+ var inPoints = this.i;
+ var init = 0;
+
+ if (this.c) {
+ newPath.setTripleAt(vertices[0][0], vertices[0][1], inPoints[0][0], inPoints[0][1], outPoints[0][0], outPoints[0][1], 0, false);
+ init = 1;
+ }
+
+ var cnt = this._length - 1;
+ var len = this._length;
+ var i;
+
+ for (i = init; i < len; i += 1) {
+ newPath.setTripleAt(vertices[cnt][0], vertices[cnt][1], inPoints[cnt][0], inPoints[cnt][1], outPoints[cnt][0], outPoints[cnt][1], i, false);
+ cnt -= 1;
+ }
+
+ return newPath;
+ };
+
+ ShapePath.prototype.length = function () {
+ return this._length;
+ };
+
+ var shapePool = function () {
+ function create() {
+ return new ShapePath();
+ }
+
+ function release(shapePath) {
+ var len = shapePath._length;
+ var i;
+
+ for (i = 0; i < len; i += 1) {
+ pointPool.release(shapePath.v[i]);
+ pointPool.release(shapePath.i[i]);
+ pointPool.release(shapePath.o[i]);
+ shapePath.v[i] = null;
+ shapePath.i[i] = null;
+ shapePath.o[i] = null;
+ }
+
+ shapePath._length = 0;
+ shapePath.c = false;
+ }
+
+ function clone(shape) {
+ var cloned = factory.newElement();
+ var i;
+ var len = shape._length === undefined ? shape.v.length : shape._length;
+ cloned.setLength(len);
+ cloned.c = shape.c;
+
+ for (i = 0; i < len; i += 1) {
+ cloned.setTripleAt(shape.v[i][0], shape.v[i][1], shape.o[i][0], shape.o[i][1], shape.i[i][0], shape.i[i][1], i);
+ }
+
+ return cloned;
+ }
+
+ var factory = poolFactory(4, create, release);
+ factory.clone = clone;
+ return factory;
+ }();
+
+ function ShapeCollection() {
+ this._length = 0;
+ this._maxLength = 4;
+ this.shapes = createSizedArray(this._maxLength);
+ }
+
+ ShapeCollection.prototype.addShape = function (shapeData) {
+ if (this._length === this._maxLength) {
+ this.shapes = this.shapes.concat(createSizedArray(this._maxLength));
+ this._maxLength *= 2;
+ }
+
+ this.shapes[this._length] = shapeData;
+ this._length += 1;
+ };
+
+ ShapeCollection.prototype.releaseShapes = function () {
+ var i;
+
+ for (i = 0; i < this._length; i += 1) {
+ shapePool.release(this.shapes[i]);
+ }
+
+ this._length = 0;
+ };
+
+ var shapeCollectionPool = function () {
+ var ob = {
+ newShapeCollection: newShapeCollection,
+ release: release
+ };
+ var _length = 0;
+ var _maxLength = 4;
+ var pool = createSizedArray(_maxLength);
+
+ function newShapeCollection() {
+ var shapeCollection;
+
+ if (_length) {
+ _length -= 1;
+ shapeCollection = pool[_length];
+ } else {
+ shapeCollection = new ShapeCollection();
+ }
+
+ return shapeCollection;
+ }
+
+ function release(shapeCollection) {
+ var i;
+ var len = shapeCollection._length;
+
+ for (i = 0; i < len; i += 1) {
+ shapePool.release(shapeCollection.shapes[i]);
+ }
+
+ shapeCollection._length = 0;
+
+ if (_length === _maxLength) {
+ pool = pooling["double"](pool);
+ _maxLength *= 2;
+ }
+
+ pool[_length] = shapeCollection;
+ _length += 1;
+ }
+
+ return ob;
+ }();
+
+ var ShapePropertyFactory = function () {
+ var initFrame = -999999;
+
+ function interpolateShape(frameNum, previousValue, caching) {
+ var iterationIndex = caching.lastIndex;
+ var keyPropS;
+ var keyPropE;
+ var isHold;
+ var j;
+ var k;
+ var jLen;
+ var kLen;
+ var perc;
+ var vertexValue;
+ var kf = this.keyframes;
+
+ if (frameNum < kf[0].t - this.offsetTime) {
+ keyPropS = kf[0].s[0];
+ isHold = true;
+ iterationIndex = 0;
+ } else if (frameNum >= kf[kf.length - 1].t - this.offsetTime) {
+ keyPropS = kf[kf.length - 1].s ? kf[kf.length - 1].s[0] : kf[kf.length - 2].e[0];
+ /* if(kf[kf.length - 1].s){
+ keyPropS = kf[kf.length - 1].s[0];
+ }else{
+ keyPropS = kf[kf.length - 2].e[0];
+ } */
+
+ isHold = true;
+ } else {
+ var i = iterationIndex;
+ var len = kf.length - 1;
+ var flag = true;
+ var keyData;
+ var nextKeyData;
+ var keyframeMetadata;
+
+ while (flag) {
+ keyData = kf[i];
+ nextKeyData = kf[i + 1];
+
+ if (nextKeyData.t - this.offsetTime > frameNum) {
+ break;
+ }
+
+ if (i < len - 1) {
+ i += 1;
+ } else {
+ flag = false;
+ }
+ }
+
+ keyframeMetadata = this.keyframesMetadata[i] || {};
+ isHold = keyData.h === 1;
+ iterationIndex = i;
+
+ if (!isHold) {
+ if (frameNum >= nextKeyData.t - this.offsetTime) {
+ perc = 1;
+ } else if (frameNum < keyData.t - this.offsetTime) {
+ perc = 0;
+ } else {
+ var fnc;
+
+ if (keyframeMetadata.__fnct) {
+ fnc = keyframeMetadata.__fnct;
+ } else {
+ fnc = BezierFactory.getBezierEasing(keyData.o.x, keyData.o.y, keyData.i.x, keyData.i.y).get;
+ keyframeMetadata.__fnct = fnc;
+ }
+
+ perc = fnc((frameNum - (keyData.t - this.offsetTime)) / (nextKeyData.t - this.offsetTime - (keyData.t - this.offsetTime)));
+ }
+
+ keyPropE = nextKeyData.s ? nextKeyData.s[0] : keyData.e[0];
+ }
+
+ keyPropS = keyData.s[0];
+ }
+
+ jLen = previousValue._length;
+ kLen = keyPropS.i[0].length;
+ caching.lastIndex = iterationIndex;
+
+ for (j = 0; j < jLen; j += 1) {
+ for (k = 0; k < kLen; k += 1) {
+ vertexValue = isHold ? keyPropS.i[j][k] : keyPropS.i[j][k] + (keyPropE.i[j][k] - keyPropS.i[j][k]) * perc;
+ previousValue.i[j][k] = vertexValue;
+ vertexValue = isHold ? keyPropS.o[j][k] : keyPropS.o[j][k] + (keyPropE.o[j][k] - keyPropS.o[j][k]) * perc;
+ previousValue.o[j][k] = vertexValue;
+ vertexValue = isHold ? keyPropS.v[j][k] : keyPropS.v[j][k] + (keyPropE.v[j][k] - keyPropS.v[j][k]) * perc;
+ previousValue.v[j][k] = vertexValue;
+ }
+ }
+ }
+
+ function interpolateShapeCurrentTime() {
+ var frameNum = this.comp.renderedFrame - this.offsetTime;
+ var initTime = this.keyframes[0].t - this.offsetTime;
+ var endTime = this.keyframes[this.keyframes.length - 1].t - this.offsetTime;
+ var lastFrame = this._caching.lastFrame;
+
+ if (!(lastFrame !== initFrame && (lastFrame < initTime && frameNum < initTime || lastFrame > endTime && frameNum > endTime))) {
+ /// /
+ this._caching.lastIndex = lastFrame < frameNum ? this._caching.lastIndex : 0;
+ this.interpolateShape(frameNum, this.pv, this._caching); /// /
+ }
+
+ this._caching.lastFrame = frameNum;
+ return this.pv;
+ }
+
+ function resetShape() {
+ this.paths = this.localShapeCollection;
+ }
+
+ function shapesEqual(shape1, shape2) {
+ if (shape1._length !== shape2._length || shape1.c !== shape2.c) {
+ return false;
+ }
+
+ var i;
+ var len = shape1._length;
+
+ for (i = 0; i < len; i += 1) {
+ if (shape1.v[i][0] !== shape2.v[i][0] || shape1.v[i][1] !== shape2.v[i][1] || shape1.o[i][0] !== shape2.o[i][0] || shape1.o[i][1] !== shape2.o[i][1] || shape1.i[i][0] !== shape2.i[i][0] || shape1.i[i][1] !== shape2.i[i][1]) {
+ return false;
+ }
+ }
+
+ return true;
+ }
+
+ function setVValue(newPath) {
+ if (!shapesEqual(this.v, newPath)) {
+ this.v = shapePool.clone(newPath);
+ this.localShapeCollection.releaseShapes();
+ this.localShapeCollection.addShape(this.v);
+ this._mdf = true;
+ this.paths = this.localShapeCollection;
+ }
+ }
+
+ function processEffectsSequence() {
+ if (this.elem.globalData.frameId === this.frameId) {
+ return;
+ }
+
+ if (!this.effectsSequence.length) {
+ this._mdf = false;
+ return;
+ }
+
+ if (this.lock) {
+ this.setVValue(this.pv);
+ return;
+ }
+
+ this.lock = true;
+ this._mdf = false;
+ var finalValue;
+
+ if (this.kf) {
+ finalValue = this.pv;
+ } else if (this.data.ks) {
+ finalValue = this.data.ks.k;
+ } else {
+ finalValue = this.data.pt.k;
+ }
+
+ var i;
+ var len = this.effectsSequence.length;
+
+ for (i = 0; i < len; i += 1) {
+ finalValue = this.effectsSequence[i](finalValue);
+ }
+
+ this.setVValue(finalValue);
+ this.lock = false;
+ this.frameId = this.elem.globalData.frameId;
+ }
+
+ function ShapeProperty(elem, data, type) {
+ this.propType = 'shape';
+ this.comp = elem.comp;
+ this.container = elem;
+ this.elem = elem;
+ this.data = data;
+ this.k = false;
+ this.kf = false;
+ this._mdf = false;
+ var pathData = type === 3 ? data.pt.k : data.ks.k;
+ this.v = shapePool.clone(pathData);
+ this.pv = shapePool.clone(this.v);
+ this.localShapeCollection = shapeCollectionPool.newShapeCollection();
+ this.paths = this.localShapeCollection;
+ this.paths.addShape(this.v);
+ this.reset = resetShape;
+ this.effectsSequence = [];
+ }
+
+ function addEffect(effectFunction) {
+ this.effectsSequence.push(effectFunction);
+ this.container.addDynamicProperty(this);
+ }
+
+ ShapeProperty.prototype.interpolateShape = interpolateShape;
+ ShapeProperty.prototype.getValue = processEffectsSequence;
+ ShapeProperty.prototype.setVValue = setVValue;
+ ShapeProperty.prototype.addEffect = addEffect;
+
+ function KeyframedShapeProperty(elem, data, type) {
+ this.propType = 'shape';
+ this.comp = elem.comp;
+ this.elem = elem;
+ this.container = elem;
+ this.offsetTime = elem.data.st;
+ this.keyframes = type === 3 ? data.pt.k : data.ks.k;
+ this.keyframesMetadata = [];
+ this.k = true;
+ this.kf = true;
+ var len = this.keyframes[0].s[0].i.length;
+ this.v = shapePool.newElement();
+ this.v.setPathData(this.keyframes[0].s[0].c, len);
+ this.pv = shapePool.clone(this.v);
+ this.localShapeCollection = shapeCollectionPool.newShapeCollection();
+ this.paths = this.localShapeCollection;
+ this.paths.addShape(this.v);
+ this.lastFrame = initFrame;
+ this.reset = resetShape;
+ this._caching = {
+ lastFrame: initFrame,
+ lastIndex: 0
+ };
+ this.effectsSequence = [interpolateShapeCurrentTime.bind(this)];
+ }
+
+ KeyframedShapeProperty.prototype.getValue = processEffectsSequence;
+ KeyframedShapeProperty.prototype.interpolateShape = interpolateShape;
+ KeyframedShapeProperty.prototype.setVValue = setVValue;
+ KeyframedShapeProperty.prototype.addEffect = addEffect;
+
+ var EllShapeProperty = function () {
+ var cPoint = roundCorner;
+
+ function EllShapePropertyFactory(elem, data) {
+ this.v = shapePool.newElement();
+ this.v.setPathData(true, 4);
+ this.localShapeCollection = shapeCollectionPool.newShapeCollection();
+ this.paths = this.localShapeCollection;
+ this.localShapeCollection.addShape(this.v);
+ this.d = data.d;
+ this.elem = elem;
+ this.comp = elem.comp;
+ this.frameId = -1;
+ this.initDynamicPropertyContainer(elem);
+ this.p = PropertyFactory.getProp(elem, data.p, 1, 0, this);
+ this.s = PropertyFactory.getProp(elem, data.s, 1, 0, this);
+
+ if (this.dynamicProperties.length) {
+ this.k = true;
+ } else {
+ this.k = false;
+ this.convertEllToPath();
+ }
+ }
+
+ EllShapePropertyFactory.prototype = {
+ reset: resetShape,
+ getValue: function getValue() {
+ if (this.elem.globalData.frameId === this.frameId) {
+ return;
+ }
+
+ this.frameId = this.elem.globalData.frameId;
+ this.iterateDynamicProperties();
+
+ if (this._mdf) {
+ this.convertEllToPath();
+ }
+ },
+ convertEllToPath: function convertEllToPath() {
+ var p0 = this.p.v[0];
+ var p1 = this.p.v[1];
+ var s0 = this.s.v[0] / 2;
+ var s1 = this.s.v[1] / 2;
+
+ var _cw = this.d !== 3;
+
+ var _v = this.v;
+ _v.v[0][0] = p0;
+ _v.v[0][1] = p1 - s1;
+ _v.v[1][0] = _cw ? p0 + s0 : p0 - s0;
+ _v.v[1][1] = p1;
+ _v.v[2][0] = p0;
+ _v.v[2][1] = p1 + s1;
+ _v.v[3][0] = _cw ? p0 - s0 : p0 + s0;
+ _v.v[3][1] = p1;
+ _v.i[0][0] = _cw ? p0 - s0 * cPoint : p0 + s0 * cPoint;
+ _v.i[0][1] = p1 - s1;
+ _v.i[1][0] = _cw ? p0 + s0 : p0 - s0;
+ _v.i[1][1] = p1 - s1 * cPoint;
+ _v.i[2][0] = _cw ? p0 + s0 * cPoint : p0 - s0 * cPoint;
+ _v.i[2][1] = p1 + s1;
+ _v.i[3][0] = _cw ? p0 - s0 : p0 + s0;
+ _v.i[3][1] = p1 + s1 * cPoint;
+ _v.o[0][0] = _cw ? p0 + s0 * cPoint : p0 - s0 * cPoint;
+ _v.o[0][1] = p1 - s1;
+ _v.o[1][0] = _cw ? p0 + s0 : p0 - s0;
+ _v.o[1][1] = p1 + s1 * cPoint;
+ _v.o[2][0] = _cw ? p0 - s0 * cPoint : p0 + s0 * cPoint;
+ _v.o[2][1] = p1 + s1;
+ _v.o[3][0] = _cw ? p0 - s0 : p0 + s0;
+ _v.o[3][1] = p1 - s1 * cPoint;
+ }
+ };
+ extendPrototype([DynamicPropertyContainer], EllShapePropertyFactory);
+ return EllShapePropertyFactory;
+ }();
+
+ var StarShapeProperty = function () {
+ function StarShapePropertyFactory(elem, data) {
+ this.v = shapePool.newElement();
+ this.v.setPathData(true, 0);
+ this.elem = elem;
+ this.comp = elem.comp;
+ this.data = data;
+ this.frameId = -1;
+ this.d = data.d;
+ this.initDynamicPropertyContainer(elem);
+
+ if (data.sy === 1) {
+ this.ir = PropertyFactory.getProp(elem, data.ir, 0, 0, this);
+ this.is = PropertyFactory.getProp(elem, data.is, 0, 0.01, this);
+ this.convertToPath = this.convertStarToPath;
+ } else {
+ this.convertToPath = this.convertPolygonToPath;
+ }
+
+ this.pt = PropertyFactory.getProp(elem, data.pt, 0, 0, this);
+ this.p = PropertyFactory.getProp(elem, data.p, 1, 0, this);
+ this.r = PropertyFactory.getProp(elem, data.r, 0, degToRads, this);
+ this.or = PropertyFactory.getProp(elem, data.or, 0, 0, this);
+ this.os = PropertyFactory.getProp(elem, data.os, 0, 0.01, this);
+ this.localShapeCollection = shapeCollectionPool.newShapeCollection();
+ this.localShapeCollection.addShape(this.v);
+ this.paths = this.localShapeCollection;
+
+ if (this.dynamicProperties.length) {
+ this.k = true;
+ } else {
+ this.k = false;
+ this.convertToPath();
+ }
+ }
+
+ StarShapePropertyFactory.prototype = {
+ reset: resetShape,
+ getValue: function getValue() {
+ if (this.elem.globalData.frameId === this.frameId) {
+ return;
+ }
+
+ this.frameId = this.elem.globalData.frameId;
+ this.iterateDynamicProperties();
+
+ if (this._mdf) {
+ this.convertToPath();
+ }
+ },
+ convertStarToPath: function convertStarToPath() {
+ var numPts = Math.floor(this.pt.v) * 2;
+ var angle = Math.PI * 2 / numPts;
+ /* this.v.v.length = numPts;
+ this.v.i.length = numPts;
+ this.v.o.length = numPts; */
+
+ var longFlag = true;
+ var longRad = this.or.v;
+ var shortRad = this.ir.v;
+ var longRound = this.os.v;
+ var shortRound = this.is.v;
+ var longPerimSegment = 2 * Math.PI * longRad / (numPts * 2);
+ var shortPerimSegment = 2 * Math.PI * shortRad / (numPts * 2);
+ var i;
+ var rad;
+ var roundness;
+ var perimSegment;
+ var currentAng = -Math.PI / 2;
+ currentAng += this.r.v;
+ var dir = this.data.d === 3 ? -1 : 1;
+ this.v._length = 0;
+
+ for (i = 0; i < numPts; i += 1) {
+ rad = longFlag ? longRad : shortRad;
+ roundness = longFlag ? longRound : shortRound;
+ perimSegment = longFlag ? longPerimSegment : shortPerimSegment;
+ var x = rad * Math.cos(currentAng);
+ var y = rad * Math.sin(currentAng);
+ var ox = x === 0 && y === 0 ? 0 : y / Math.sqrt(x * x + y * y);
+ var oy = x === 0 && y === 0 ? 0 : -x / Math.sqrt(x * x + y * y);
+ x += +this.p.v[0];
+ y += +this.p.v[1];
+ this.v.setTripleAt(x, y, x - ox * perimSegment * roundness * dir, y - oy * perimSegment * roundness * dir, x + ox * perimSegment * roundness * dir, y + oy * perimSegment * roundness * dir, i, true);
+ /* this.v.v[i] = [x,y];
+ this.v.i[i] = [x+ox*perimSegment*roundness*dir,y+oy*perimSegment*roundness*dir];
+ this.v.o[i] = [x-ox*perimSegment*roundness*dir,y-oy*perimSegment*roundness*dir];
+ this.v._length = numPts; */
+
+ longFlag = !longFlag;
+ currentAng += angle * dir;
+ }
+ },
+ convertPolygonToPath: function convertPolygonToPath() {
+ var numPts = Math.floor(this.pt.v);
+ var angle = Math.PI * 2 / numPts;
+ var rad = this.or.v;
+ var roundness = this.os.v;
+ var perimSegment = 2 * Math.PI * rad / (numPts * 4);
+ var i;
+ var currentAng = -Math.PI * 0.5;
+ var dir = this.data.d === 3 ? -1 : 1;
+ currentAng += this.r.v;
+ this.v._length = 0;
+
+ for (i = 0; i < numPts; i += 1) {
+ var x = rad * Math.cos(currentAng);
+ var y = rad * Math.sin(currentAng);
+ var ox = x === 0 && y === 0 ? 0 : y / Math.sqrt(x * x + y * y);
+ var oy = x === 0 && y === 0 ? 0 : -x / Math.sqrt(x * x + y * y);
+ x += +this.p.v[0];
+ y += +this.p.v[1];
+ this.v.setTripleAt(x, y, x - ox * perimSegment * roundness * dir, y - oy * perimSegment * roundness * dir, x + ox * perimSegment * roundness * dir, y + oy * perimSegment * roundness * dir, i, true);
+ currentAng += angle * dir;
+ }
+
+ this.paths.length = 0;
+ this.paths[0] = this.v;
+ }
+ };
+ extendPrototype([DynamicPropertyContainer], StarShapePropertyFactory);
+ return StarShapePropertyFactory;
+ }();
+
+ var RectShapeProperty = function () {
+ function RectShapePropertyFactory(elem, data) {
+ this.v = shapePool.newElement();
+ this.v.c = true;
+ this.localShapeCollection = shapeCollectionPool.newShapeCollection();
+ this.localShapeCollection.addShape(this.v);
+ this.paths = this.localShapeCollection;
+ this.elem = elem;
+ this.comp = elem.comp;
+ this.frameId = -1;
+ this.d = data.d;
+ this.initDynamicPropertyContainer(elem);
+ this.p = PropertyFactory.getProp(elem, data.p, 1, 0, this);
+ this.s = PropertyFactory.getProp(elem, data.s, 1, 0, this);
+ this.r = PropertyFactory.getProp(elem, data.r, 0, 0, this);
+
+ if (this.dynamicProperties.length) {
+ this.k = true;
+ } else {
+ this.k = false;
+ this.convertRectToPath();
+ }
+ }
+
+ RectShapePropertyFactory.prototype = {
+ convertRectToPath: function convertRectToPath() {
+ var p0 = this.p.v[0];
+ var p1 = this.p.v[1];
+ var v0 = this.s.v[0] / 2;
+ var v1 = this.s.v[1] / 2;
+ var round = bmMin(v0, v1, this.r.v);
+ var cPoint = round * (1 - roundCorner);
+ this.v._length = 0;
+
+ if (this.d === 2 || this.d === 1) {
+ this.v.setTripleAt(p0 + v0, p1 - v1 + round, p0 + v0, p1 - v1 + round, p0 + v0, p1 - v1 + cPoint, 0, true);
+ this.v.setTripleAt(p0 + v0, p1 + v1 - round, p0 + v0, p1 + v1 - cPoint, p0 + v0, p1 + v1 - round, 1, true);
+
+ if (round !== 0) {
+ this.v.setTripleAt(p0 + v0 - round, p1 + v1, p0 + v0 - round, p1 + v1, p0 + v0 - cPoint, p1 + v1, 2, true);
+ this.v.setTripleAt(p0 - v0 + round, p1 + v1, p0 - v0 + cPoint, p1 + v1, p0 - v0 + round, p1 + v1, 3, true);
+ this.v.setTripleAt(p0 - v0, p1 + v1 - round, p0 - v0, p1 + v1 - round, p0 - v0, p1 + v1 - cPoint, 4, true);
+ this.v.setTripleAt(p0 - v0, p1 - v1 + round, p0 - v0, p1 - v1 + cPoint, p0 - v0, p1 - v1 + round, 5, true);
+ this.v.setTripleAt(p0 - v0 + round, p1 - v1, p0 - v0 + round, p1 - v1, p0 - v0 + cPoint, p1 - v1, 6, true);
+ this.v.setTripleAt(p0 + v0 - round, p1 - v1, p0 + v0 - cPoint, p1 - v1, p0 + v0 - round, p1 - v1, 7, true);
+ } else {
+ this.v.setTripleAt(p0 - v0, p1 + v1, p0 - v0 + cPoint, p1 + v1, p0 - v0, p1 + v1, 2);
+ this.v.setTripleAt(p0 - v0, p1 - v1, p0 - v0, p1 - v1 + cPoint, p0 - v0, p1 - v1, 3);
+ }
+ } else {
+ this.v.setTripleAt(p0 + v0, p1 - v1 + round, p0 + v0, p1 - v1 + cPoint, p0 + v0, p1 - v1 + round, 0, true);
+
+ if (round !== 0) {
+ this.v.setTripleAt(p0 + v0 - round, p1 - v1, p0 + v0 - round, p1 - v1, p0 + v0 - cPoint, p1 - v1, 1, true);
+ this.v.setTripleAt(p0 - v0 + round, p1 - v1, p0 - v0 + cPoint, p1 - v1, p0 - v0 + round, p1 - v1, 2, true);
+ this.v.setTripleAt(p0 - v0, p1 - v1 + round, p0 - v0, p1 - v1 + round, p0 - v0, p1 - v1 + cPoint, 3, true);
+ this.v.setTripleAt(p0 - v0, p1 + v1 - round, p0 - v0, p1 + v1 - cPoint, p0 - v0, p1 + v1 - round, 4, true);
+ this.v.setTripleAt(p0 - v0 + round, p1 + v1, p0 - v0 + round, p1 + v1, p0 - v0 + cPoint, p1 + v1, 5, true);
+ this.v.setTripleAt(p0 + v0 - round, p1 + v1, p0 + v0 - cPoint, p1 + v1, p0 + v0 - round, p1 + v1, 6, true);
+ this.v.setTripleAt(p0 + v0, p1 + v1 - round, p0 + v0, p1 + v1 - round, p0 + v0, p1 + v1 - cPoint, 7, true);
+ } else {
+ this.v.setTripleAt(p0 - v0, p1 - v1, p0 - v0 + cPoint, p1 - v1, p0 - v0, p1 - v1, 1, true);
+ this.v.setTripleAt(p0 - v0, p1 + v1, p0 - v0, p1 + v1 - cPoint, p0 - v0, p1 + v1, 2, true);
+ this.v.setTripleAt(p0 + v0, p1 + v1, p0 + v0 - cPoint, p1 + v1, p0 + v0, p1 + v1, 3, true);
+ }
+ }
+ },
+ getValue: function getValue() {
+ if (this.elem.globalData.frameId === this.frameId) {
+ return;
+ }
+
+ this.frameId = this.elem.globalData.frameId;
+ this.iterateDynamicProperties();
+
+ if (this._mdf) {
+ this.convertRectToPath();
+ }
+ },
+ reset: resetShape
+ };
+ extendPrototype([DynamicPropertyContainer], RectShapePropertyFactory);
+ return RectShapePropertyFactory;
+ }();
+
+ function getShapeProp(elem, data, type) {
+ var prop;
+
+ if (type === 3 || type === 4) {
+ var dataProp = type === 3 ? data.pt : data.ks;
+ var keys = dataProp.k;
+
+ if (keys.length) {
+ prop = new KeyframedShapeProperty(elem, data, type);
+ } else {
+ prop = new ShapeProperty(elem, data, type);
+ }
+ } else if (type === 5) {
+ prop = new RectShapeProperty(elem, data);
+ } else if (type === 6) {
+ prop = new EllShapeProperty(elem, data);
+ } else if (type === 7) {
+ prop = new StarShapeProperty(elem, data);
+ }
+
+ if (prop.k) {
+ elem.addDynamicProperty(prop);
+ }
+
+ return prop;
+ }
+
+ function getConstructorFunction() {
+ return ShapeProperty;
+ }
+
+ function getKeyframedConstructorFunction() {
+ return KeyframedShapeProperty;
+ }
+
+ var ob = {};
+ ob.getShapeProp = getShapeProp;
+ ob.getConstructorFunction = getConstructorFunction;
+ ob.getKeyframedConstructorFunction = getKeyframedConstructorFunction;
+ return ob;
+ }();
+
+ /*!
+ Transformation Matrix v2.0
+ (c) Epistemex 2014-2015
+ www.epistemex.com
+ By Ken Fyrstenberg
+ Contributions by leeoniya.
+ License: MIT, header required.
+ */
+
+ /**
+ * 2D transformation matrix object initialized with identity matrix.
+ *
+ * The matrix can synchronize a canvas context by supplying the context
+ * as an argument, or later apply current absolute transform to an
+ * existing context.
+ *
+ * All values are handled as floating point values.
+ *
+ * @param {CanvasRenderingContext2D} [context] - Optional context to sync with Matrix
+ * @prop {number} a - scale x
+ * @prop {number} b - shear y
+ * @prop {number} c - shear x
+ * @prop {number} d - scale y
+ * @prop {number} e - translate x
+ * @prop {number} f - translate y
+ * @prop {CanvasRenderingContext2D|null} [context=null] - set or get current canvas context
+ * @constructor
+ */
+
+ var Matrix = function () {
+ var _cos = Math.cos;
+ var _sin = Math.sin;
+ var _tan = Math.tan;
+ var _rnd = Math.round;
+
+ function reset() {
+ this.props[0] = 1;
+ this.props[1] = 0;
+ this.props[2] = 0;
+ this.props[3] = 0;
+ this.props[4] = 0;
+ this.props[5] = 1;
+ this.props[6] = 0;
+ this.props[7] = 0;
+ this.props[8] = 0;
+ this.props[9] = 0;
+ this.props[10] = 1;
+ this.props[11] = 0;
+ this.props[12] = 0;
+ this.props[13] = 0;
+ this.props[14] = 0;
+ this.props[15] = 1;
+ return this;
+ }
+
+ function rotate(angle) {
+ if (angle === 0) {
+ return this;
+ }
+
+ var mCos = _cos(angle);
+
+ var mSin = _sin(angle);
+
+ return this._t(mCos, -mSin, 0, 0, mSin, mCos, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ }
+
+ function rotateX(angle) {
+ if (angle === 0) {
+ return this;
+ }
+
+ var mCos = _cos(angle);
+
+ var mSin = _sin(angle);
+
+ return this._t(1, 0, 0, 0, 0, mCos, -mSin, 0, 0, mSin, mCos, 0, 0, 0, 0, 1);
+ }
+
+ function rotateY(angle) {
+ if (angle === 0) {
+ return this;
+ }
+
+ var mCos = _cos(angle);
+
+ var mSin = _sin(angle);
+
+ return this._t(mCos, 0, mSin, 0, 0, 1, 0, 0, -mSin, 0, mCos, 0, 0, 0, 0, 1);
+ }
+
+ function rotateZ(angle) {
+ if (angle === 0) {
+ return this;
+ }
+
+ var mCos = _cos(angle);
+
+ var mSin = _sin(angle);
+
+ return this._t(mCos, -mSin, 0, 0, mSin, mCos, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ }
+
+ function shear(sx, sy) {
+ return this._t(1, sy, sx, 1, 0, 0);
+ }
+
+ function skew(ax, ay) {
+ return this.shear(_tan(ax), _tan(ay));
+ }
+
+ function skewFromAxis(ax, angle) {
+ var mCos = _cos(angle);
+
+ var mSin = _sin(angle);
+
+ return this._t(mCos, mSin, 0, 0, -mSin, mCos, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)._t(1, 0, 0, 0, _tan(ax), 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)._t(mCos, -mSin, 0, 0, mSin, mCos, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); // return this._t(mCos, mSin, -mSin, mCos, 0, 0)._t(1, 0, _tan(ax), 1, 0, 0)._t(mCos, -mSin, mSin, mCos, 0, 0);
+ }
+
+ function scale(sx, sy, sz) {
+ if (!sz && sz !== 0) {
+ sz = 1;
+ }
+
+ if (sx === 1 && sy === 1 && sz === 1) {
+ return this;
+ }
+
+ return this._t(sx, 0, 0, 0, 0, sy, 0, 0, 0, 0, sz, 0, 0, 0, 0, 1);
+ }
+
+ function setTransform(a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p) {
+ this.props[0] = a;
+ this.props[1] = b;
+ this.props[2] = c;
+ this.props[3] = d;
+ this.props[4] = e;
+ this.props[5] = f;
+ this.props[6] = g;
+ this.props[7] = h;
+ this.props[8] = i;
+ this.props[9] = j;
+ this.props[10] = k;
+ this.props[11] = l;
+ this.props[12] = m;
+ this.props[13] = n;
+ this.props[14] = o;
+ this.props[15] = p;
+ return this;
+ }
+
+ function translate(tx, ty, tz) {
+ tz = tz || 0;
+
+ if (tx !== 0 || ty !== 0 || tz !== 0) {
+ return this._t(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, tx, ty, tz, 1);
+ }
+
+ return this;
+ }
+
+ function transform(a2, b2, c2, d2, e2, f2, g2, h2, i2, j2, k2, l2, m2, n2, o2, p2) {
+ var _p = this.props;
+
+ if (a2 === 1 && b2 === 0 && c2 === 0 && d2 === 0 && e2 === 0 && f2 === 1 && g2 === 0 && h2 === 0 && i2 === 0 && j2 === 0 && k2 === 1 && l2 === 0) {
+ // NOTE: commenting this condition because TurboFan deoptimizes code when present
+ // if(m2 !== 0 || n2 !== 0 || o2 !== 0){
+ _p[12] = _p[12] * a2 + _p[15] * m2;
+ _p[13] = _p[13] * f2 + _p[15] * n2;
+ _p[14] = _p[14] * k2 + _p[15] * o2;
+ _p[15] *= p2; // }
+
+ this._identityCalculated = false;
+ return this;
+ }
+
+ var a1 = _p[0];
+ var b1 = _p[1];
+ var c1 = _p[2];
+ var d1 = _p[3];
+ var e1 = _p[4];
+ var f1 = _p[5];
+ var g1 = _p[6];
+ var h1 = _p[7];
+ var i1 = _p[8];
+ var j1 = _p[9];
+ var k1 = _p[10];
+ var l1 = _p[11];
+ var m1 = _p[12];
+ var n1 = _p[13];
+ var o1 = _p[14];
+ var p1 = _p[15];
+ /* matrix order (canvas compatible):
+ * ace
+ * bdf
+ * 001
+ */
+
+ _p[0] = a1 * a2 + b1 * e2 + c1 * i2 + d1 * m2;
+ _p[1] = a1 * b2 + b1 * f2 + c1 * j2 + d1 * n2;
+ _p[2] = a1 * c2 + b1 * g2 + c1 * k2 + d1 * o2;
+ _p[3] = a1 * d2 + b1 * h2 + c1 * l2 + d1 * p2;
+ _p[4] = e1 * a2 + f1 * e2 + g1 * i2 + h1 * m2;
+ _p[5] = e1 * b2 + f1 * f2 + g1 * j2 + h1 * n2;
+ _p[6] = e1 * c2 + f1 * g2 + g1 * k2 + h1 * o2;
+ _p[7] = e1 * d2 + f1 * h2 + g1 * l2 + h1 * p2;
+ _p[8] = i1 * a2 + j1 * e2 + k1 * i2 + l1 * m2;
+ _p[9] = i1 * b2 + j1 * f2 + k1 * j2 + l1 * n2;
+ _p[10] = i1 * c2 + j1 * g2 + k1 * k2 + l1 * o2;
+ _p[11] = i1 * d2 + j1 * h2 + k1 * l2 + l1 * p2;
+ _p[12] = m1 * a2 + n1 * e2 + o1 * i2 + p1 * m2;
+ _p[13] = m1 * b2 + n1 * f2 + o1 * j2 + p1 * n2;
+ _p[14] = m1 * c2 + n1 * g2 + o1 * k2 + p1 * o2;
+ _p[15] = m1 * d2 + n1 * h2 + o1 * l2 + p1 * p2;
+ this._identityCalculated = false;
+ return this;
+ }
+
+ function multiply(matrix) {
+ var matrixProps = matrix.props;
+ return this.transform(matrixProps[0], matrixProps[1], matrixProps[2], matrixProps[3], matrixProps[4], matrixProps[5], matrixProps[6], matrixProps[7], matrixProps[8], matrixProps[9], matrixProps[10], matrixProps[11], matrixProps[12], matrixProps[13], matrixProps[14], matrixProps[15]);
+ }
+
+ function isIdentity() {
+ if (!this._identityCalculated) {
+ this._identity = !(this.props[0] !== 1 || this.props[1] !== 0 || this.props[2] !== 0 || this.props[3] !== 0 || this.props[4] !== 0 || this.props[5] !== 1 || this.props[6] !== 0 || this.props[7] !== 0 || this.props[8] !== 0 || this.props[9] !== 0 || this.props[10] !== 1 || this.props[11] !== 0 || this.props[12] !== 0 || this.props[13] !== 0 || this.props[14] !== 0 || this.props[15] !== 1);
+ this._identityCalculated = true;
+ }
+
+ return this._identity;
+ }
+
+ function equals(matr) {
+ var i = 0;
+
+ while (i < 16) {
+ if (matr.props[i] !== this.props[i]) {
+ return false;
+ }
+
+ i += 1;
+ }
+
+ return true;
+ }
+
+ function clone(matr) {
+ var i;
+
+ for (i = 0; i < 16; i += 1) {
+ matr.props[i] = this.props[i];
+ }
+
+ return matr;
+ }
+
+ function cloneFromProps(props) {
+ var i;
+
+ for (i = 0; i < 16; i += 1) {
+ this.props[i] = props[i];
+ }
+ }
+
+ function applyToPoint(x, y, z) {
+ return {
+ x: x * this.props[0] + y * this.props[4] + z * this.props[8] + this.props[12],
+ y: x * this.props[1] + y * this.props[5] + z * this.props[9] + this.props[13],
+ z: x * this.props[2] + y * this.props[6] + z * this.props[10] + this.props[14]
+ };
+ /* return {
+ x: x * me.a + y * me.c + me.e,
+ y: x * me.b + y * me.d + me.f
+ }; */
+ }
+
+ function applyToX(x, y, z) {
+ return x * this.props[0] + y * this.props[4] + z * this.props[8] + this.props[12];
+ }
+
+ function applyToY(x, y, z) {
+ return x * this.props[1] + y * this.props[5] + z * this.props[9] + this.props[13];
+ }
+
+ function applyToZ(x, y, z) {
+ return x * this.props[2] + y * this.props[6] + z * this.props[10] + this.props[14];
+ }
+
+ function getInverseMatrix() {
+ var determinant = this.props[0] * this.props[5] - this.props[1] * this.props[4];
+ var a = this.props[5] / determinant;
+ var b = -this.props[1] / determinant;
+ var c = -this.props[4] / determinant;
+ var d = this.props[0] / determinant;
+ var e = (this.props[4] * this.props[13] - this.props[5] * this.props[12]) / determinant;
+ var f = -(this.props[0] * this.props[13] - this.props[1] * this.props[12]) / determinant;
+ var inverseMatrix = new Matrix();
+ inverseMatrix.props[0] = a;
+ inverseMatrix.props[1] = b;
+ inverseMatrix.props[4] = c;
+ inverseMatrix.props[5] = d;
+ inverseMatrix.props[12] = e;
+ inverseMatrix.props[13] = f;
+ return inverseMatrix;
+ }
+
+ function inversePoint(pt) {
+ var inverseMatrix = this.getInverseMatrix();
+ return inverseMatrix.applyToPointArray(pt[0], pt[1], pt[2] || 0);
+ }
+
+ function inversePoints(pts) {
+ var i;
+ var len = pts.length;
+ var retPts = [];
+
+ for (i = 0; i < len; i += 1) {
+ retPts[i] = inversePoint(pts[i]);
+ }
+
+ return retPts;
+ }
+
+ function applyToTriplePoints(pt1, pt2, pt3) {
+ var arr = createTypedArray('float32', 6);
+
+ if (this.isIdentity()) {
+ arr[0] = pt1[0];
+ arr[1] = pt1[1];
+ arr[2] = pt2[0];
+ arr[3] = pt2[1];
+ arr[4] = pt3[0];
+ arr[5] = pt3[1];
+ } else {
+ var p0 = this.props[0];
+ var p1 = this.props[1];
+ var p4 = this.props[4];
+ var p5 = this.props[5];
+ var p12 = this.props[12];
+ var p13 = this.props[13];
+ arr[0] = pt1[0] * p0 + pt1[1] * p4 + p12;
+ arr[1] = pt1[0] * p1 + pt1[1] * p5 + p13;
+ arr[2] = pt2[0] * p0 + pt2[1] * p4 + p12;
+ arr[3] = pt2[0] * p1 + pt2[1] * p5 + p13;
+ arr[4] = pt3[0] * p0 + pt3[1] * p4 + p12;
+ arr[5] = pt3[0] * p1 + pt3[1] * p5 + p13;
+ }
+
+ return arr;
+ }
+
+ function applyToPointArray(x, y, z) {
+ var arr;
+
+ if (this.isIdentity()) {
+ arr = [x, y, z];
+ } else {
+ arr = [x * this.props[0] + y * this.props[4] + z * this.props[8] + this.props[12], x * this.props[1] + y * this.props[5] + z * this.props[9] + this.props[13], x * this.props[2] + y * this.props[6] + z * this.props[10] + this.props[14]];
+ }
+
+ return arr;
+ }
+
+ function applyToPointStringified(x, y) {
+ if (this.isIdentity()) {
+ return x + ',' + y;
+ }
+
+ var _p = this.props;
+ return Math.round((x * _p[0] + y * _p[4] + _p[12]) * 100) / 100 + ',' + Math.round((x * _p[1] + y * _p[5] + _p[13]) * 100) / 100;
+ }
+
+ function toCSS() {
+ // Doesn't make much sense to add this optimization. If it is an identity matrix, it's very likely this will get called only once since it won't be keyframed.
+
+ /* if(this.isIdentity()) {
+ return '';
+ } */
+ var i = 0;
+ var props = this.props;
+ var cssValue = 'matrix3d(';
+ var v = 10000;
+
+ while (i < 16) {
+ cssValue += _rnd(props[i] * v) / v;
+ cssValue += i === 15 ? ')' : ',';
+ i += 1;
+ }
+
+ return cssValue;
+ }
+
+ function roundMatrixProperty(val) {
+ var v = 10000;
+
+ if (val < 0.000001 && val > 0 || val > -0.000001 && val < 0) {
+ return _rnd(val * v) / v;
+ }
+
+ return val;
+ }
+
+ function to2dCSS() {
+ // Doesn't make much sense to add this optimization. If it is an identity matrix, it's very likely this will get called only once since it won't be keyframed.
+
+ /* if(this.isIdentity()) {
+ return '';
+ } */
+ var props = this.props;
+
+ var _a = roundMatrixProperty(props[0]);
+
+ var _b = roundMatrixProperty(props[1]);
+
+ var _c = roundMatrixProperty(props[4]);
+
+ var _d = roundMatrixProperty(props[5]);
+
+ var _e = roundMatrixProperty(props[12]);
+
+ var _f = roundMatrixProperty(props[13]);
+
+ return 'matrix(' + _a + ',' + _b + ',' + _c + ',' + _d + ',' + _e + ',' + _f + ')';
+ }
+
+ return function () {
+ this.reset = reset;
+ this.rotate = rotate;
+ this.rotateX = rotateX;
+ this.rotateY = rotateY;
+ this.rotateZ = rotateZ;
+ this.skew = skew;
+ this.skewFromAxis = skewFromAxis;
+ this.shear = shear;
+ this.scale = scale;
+ this.setTransform = setTransform;
+ this.translate = translate;
+ this.transform = transform;
+ this.multiply = multiply;
+ this.applyToPoint = applyToPoint;
+ this.applyToX = applyToX;
+ this.applyToY = applyToY;
+ this.applyToZ = applyToZ;
+ this.applyToPointArray = applyToPointArray;
+ this.applyToTriplePoints = applyToTriplePoints;
+ this.applyToPointStringified = applyToPointStringified;
+ this.toCSS = toCSS;
+ this.to2dCSS = to2dCSS;
+ this.clone = clone;
+ this.cloneFromProps = cloneFromProps;
+ this.equals = equals;
+ this.inversePoints = inversePoints;
+ this.inversePoint = inversePoint;
+ this.getInverseMatrix = getInverseMatrix;
+ this._t = this.transform;
+ this.isIdentity = isIdentity;
+ this._identity = true;
+ this._identityCalculated = false;
+ this.props = createTypedArray('float32', 16);
+ this.reset();
+ };
+ }();
+
+ function _typeof$3(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof$3 = function _typeof(obj) { return typeof obj; }; } else { _typeof$3 = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof$3(obj); }
+ var lottie = {};
+ var standalone = '__[STANDALONE]__';
+ var animationData = '__[ANIMATIONDATA]__';
+ var renderer = '';
+
+ function setLocation(href) {
+ setLocationHref(href);
+ }
+
+ function searchAnimations() {
+ if (standalone === true) {
+ animationManager.searchAnimations(animationData, standalone, renderer);
+ } else {
+ animationManager.searchAnimations();
+ }
+ }
+
+ function setSubframeRendering(flag) {
+ setSubframeEnabled(flag);
+ }
+
+ function setPrefix(prefix) {
+ setIdPrefix(prefix);
+ }
+
+ function loadAnimation(params) {
+ if (standalone === true) {
+ params.animationData = JSON.parse(animationData);
+ }
+
+ return animationManager.loadAnimation(params);
+ }
+
+ function setQuality(value) {
+ if (typeof value === 'string') {
+ switch (value) {
+ case 'high':
+ setDefaultCurveSegments(200);
+ break;
+
+ default:
+ case 'medium':
+ setDefaultCurveSegments(50);
+ break;
+
+ case 'low':
+ setDefaultCurveSegments(10);
+ break;
+ }
+ } else if (!isNaN(value) && value > 1) {
+ setDefaultCurveSegments(value);
+ }
+
+ if (getDefaultCurveSegments() >= 50) {
+ roundValues(false);
+ } else {
+ roundValues(true);
+ }
+ }
+
+ function inBrowser() {
+ return typeof navigator !== 'undefined';
+ }
+
+ function installPlugin(type, plugin) {
+ if (type === 'expressions') {
+ setExpressionsPlugin(plugin);
+ }
+ }
+
+ function getFactory(name) {
+ switch (name) {
+ case 'propertyFactory':
+ return PropertyFactory;
+
+ case 'shapePropertyFactory':
+ return ShapePropertyFactory;
+
+ case 'matrix':
+ return Matrix;
+
+ default:
+ return null;
+ }
+ }
+
+ lottie.play = animationManager.play;
+ lottie.pause = animationManager.pause;
+ lottie.setLocationHref = setLocation;
+ lottie.togglePause = animationManager.togglePause;
+ lottie.setSpeed = animationManager.setSpeed;
+ lottie.setDirection = animationManager.setDirection;
+ lottie.stop = animationManager.stop;
+ lottie.searchAnimations = searchAnimations;
+ lottie.registerAnimation = animationManager.registerAnimation;
+ lottie.loadAnimation = loadAnimation;
+ lottie.setSubframeRendering = setSubframeRendering;
+ lottie.resize = animationManager.resize; // lottie.start = start;
+
+ lottie.goToAndStop = animationManager.goToAndStop;
+ lottie.destroy = animationManager.destroy;
+ lottie.setQuality = setQuality;
+ lottie.inBrowser = inBrowser;
+ lottie.installPlugin = installPlugin;
+ lottie.freeze = animationManager.freeze;
+ lottie.unfreeze = animationManager.unfreeze;
+ lottie.setVolume = animationManager.setVolume;
+ lottie.mute = animationManager.mute;
+ lottie.unmute = animationManager.unmute;
+ lottie.getRegisteredAnimations = animationManager.getRegisteredAnimations;
+ lottie.useWebWorker = setWebWorker;
+ lottie.setIDPrefix = setPrefix;
+ lottie.__getFactory = getFactory;
+ lottie.version = '5.12.0';
+
+ function checkReady() {
+ if (document.readyState === 'complete') {
+ clearInterval(readyStateCheckInterval);
+ searchAnimations();
+ }
+ }
+
+ function getQueryVariable(variable) {
+ var vars = queryString.split('&');
+
+ for (var i = 0; i < vars.length; i += 1) {
+ var pair = vars[i].split('=');
+
+ if (decodeURIComponent(pair[0]) == variable) {
+ // eslint-disable-line eqeqeq
+ return decodeURIComponent(pair[1]);
+ }
+ }
+
+ return null;
+ }
+
+ var queryString = '';
+
+ if (standalone) {
+ var scripts = document.getElementsByTagName('script');
+ var index = scripts.length - 1;
+ var myScript = scripts[index] || {
+ src: ''
+ };
+ queryString = myScript.src ? myScript.src.replace(/^[^\?]+\??/, '') : ''; // eslint-disable-line no-useless-escape
+
+ renderer = getQueryVariable('renderer');
+ }
+
+ var readyStateCheckInterval = setInterval(checkReady, 100); // this adds bodymovin to the window object for backwards compatibility
+
+ try {
+ if (!((typeof exports === "undefined" ? "undefined" : _typeof$3(exports)) === 'object' && typeof module !== 'undefined') && !(typeof define === 'function' && define.amd) // eslint-disable-line no-undef
+ ) {
+ window.bodymovin = lottie;
+ }
+ } catch (err) {//
+ }
+
+ var ShapeModifiers = function () {
+ var ob = {};
+ var modifiers = {};
+ ob.registerModifier = registerModifier;
+ ob.getModifier = getModifier;
+
+ function registerModifier(nm, factory) {
+ if (!modifiers[nm]) {
+ modifiers[nm] = factory;
+ }
+ }
+
+ function getModifier(nm, elem, data) {
+ return new modifiers[nm](elem, data);
+ }
+
+ return ob;
+ }();
+
+ function ShapeModifier() {}
+
+ ShapeModifier.prototype.initModifierProperties = function () {};
+
+ ShapeModifier.prototype.addShapeToModifier = function () {};
+
+ ShapeModifier.prototype.addShape = function (data) {
+ if (!this.closed) {
+ // Adding shape to dynamic properties. It covers the case where a shape has no effects applied, to reset it's _mdf state on every tick.
+ data.sh.container.addDynamicProperty(data.sh);
+ var shapeData = {
+ shape: data.sh,
+ data: data,
+ localShapeCollection: shapeCollectionPool.newShapeCollection()
+ };
+ this.shapes.push(shapeData);
+ this.addShapeToModifier(shapeData);
+
+ if (this._isAnimated) {
+ data.setAsAnimated();
+ }
+ }
+ };
+
+ ShapeModifier.prototype.init = function (elem, data) {
+ this.shapes = [];
+ this.elem = elem;
+ this.initDynamicPropertyContainer(elem);
+ this.initModifierProperties(elem, data);
+ this.frameId = initialDefaultFrame;
+ this.closed = false;
+ this.k = false;
+
+ if (this.dynamicProperties.length) {
+ this.k = true;
+ } else {
+ this.getValue(true);
+ }
+ };
+
+ ShapeModifier.prototype.processKeys = function () {
+ if (this.elem.globalData.frameId === this.frameId) {
+ return;
+ }
+
+ this.frameId = this.elem.globalData.frameId;
+ this.iterateDynamicProperties();
+ };
+
+ extendPrototype([DynamicPropertyContainer], ShapeModifier);
+
+ function TrimModifier() {}
+
+ extendPrototype([ShapeModifier], TrimModifier);
+
+ TrimModifier.prototype.initModifierProperties = function (elem, data) {
+ this.s = PropertyFactory.getProp(elem, data.s, 0, 0.01, this);
+ this.e = PropertyFactory.getProp(elem, data.e, 0, 0.01, this);
+ this.o = PropertyFactory.getProp(elem, data.o, 0, 0, this);
+ this.sValue = 0;
+ this.eValue = 0;
+ this.getValue = this.processKeys;
+ this.m = data.m;
+ this._isAnimated = !!this.s.effectsSequence.length || !!this.e.effectsSequence.length || !!this.o.effectsSequence.length;
+ };
+
+ TrimModifier.prototype.addShapeToModifier = function (shapeData) {
+ shapeData.pathsData = [];
+ };
+
+ TrimModifier.prototype.calculateShapeEdges = function (s, e, shapeLength, addedLength, totalModifierLength) {
+ var segments = [];
+
+ if (e <= 1) {
+ segments.push({
+ s: s,
+ e: e
+ });
+ } else if (s >= 1) {
+ segments.push({
+ s: s - 1,
+ e: e - 1
+ });
+ } else {
+ segments.push({
+ s: s,
+ e: 1
+ });
+ segments.push({
+ s: 0,
+ e: e - 1
+ });
+ }
+
+ var shapeSegments = [];
+ var i;
+ var len = segments.length;
+ var segmentOb;
+
+ for (i = 0; i < len; i += 1) {
+ segmentOb = segments[i];
+
+ if (!(segmentOb.e * totalModifierLength < addedLength || segmentOb.s * totalModifierLength > addedLength + shapeLength)) {
+ var shapeS;
+ var shapeE;
+
+ if (segmentOb.s * totalModifierLength <= addedLength) {
+ shapeS = 0;
+ } else {
+ shapeS = (segmentOb.s * totalModifierLength - addedLength) / shapeLength;
+ }
+
+ if (segmentOb.e * totalModifierLength >= addedLength + shapeLength) {
+ shapeE = 1;
+ } else {
+ shapeE = (segmentOb.e * totalModifierLength - addedLength) / shapeLength;
+ }
+
+ shapeSegments.push([shapeS, shapeE]);
+ }
+ }
+
+ if (!shapeSegments.length) {
+ shapeSegments.push([0, 0]);
+ }
+
+ return shapeSegments;
+ };
+
+ TrimModifier.prototype.releasePathsData = function (pathsData) {
+ var i;
+ var len = pathsData.length;
+
+ for (i = 0; i < len; i += 1) {
+ segmentsLengthPool.release(pathsData[i]);
+ }
+
+ pathsData.length = 0;
+ return pathsData;
+ };
+
+ TrimModifier.prototype.processShapes = function (_isFirstFrame) {
+ var s;
+ var e;
+
+ if (this._mdf || _isFirstFrame) {
+ var o = this.o.v % 360 / 360;
+
+ if (o < 0) {
+ o += 1;
+ }
+
+ if (this.s.v > 1) {
+ s = 1 + o;
+ } else if (this.s.v < 0) {
+ s = 0 + o;
+ } else {
+ s = this.s.v + o;
+ }
+
+ if (this.e.v > 1) {
+ e = 1 + o;
+ } else if (this.e.v < 0) {
+ e = 0 + o;
+ } else {
+ e = this.e.v + o;
+ }
+
+ if (s > e) {
+ var _s = s;
+ s = e;
+ e = _s;
+ }
+
+ s = Math.round(s * 10000) * 0.0001;
+ e = Math.round(e * 10000) * 0.0001;
+ this.sValue = s;
+ this.eValue = e;
+ } else {
+ s = this.sValue;
+ e = this.eValue;
+ }
+
+ var shapePaths;
+ var i;
+ var len = this.shapes.length;
+ var j;
+ var jLen;
+ var pathsData;
+ var pathData;
+ var totalShapeLength;
+ var totalModifierLength = 0;
+
+ if (e === s) {
+ for (i = 0; i < len; i += 1) {
+ this.shapes[i].localShapeCollection.releaseShapes();
+ this.shapes[i].shape._mdf = true;
+ this.shapes[i].shape.paths = this.shapes[i].localShapeCollection;
+
+ if (this._mdf) {
+ this.shapes[i].pathsData.length = 0;
+ }
+ }
+ } else if (!(e === 1 && s === 0 || e === 0 && s === 1)) {
+ var segments = [];
+ var shapeData;
+ var localShapeCollection;
+
+ for (i = 0; i < len; i += 1) {
+ shapeData = this.shapes[i]; // if shape hasn't changed and trim properties haven't changed, cached previous path can be used
+
+ if (!shapeData.shape._mdf && !this._mdf && !_isFirstFrame && this.m !== 2) {
+ shapeData.shape.paths = shapeData.localShapeCollection;
+ } else {
+ shapePaths = shapeData.shape.paths;
+ jLen = shapePaths._length;
+ totalShapeLength = 0;
+
+ if (!shapeData.shape._mdf && shapeData.pathsData.length) {
+ totalShapeLength = shapeData.totalShapeLength;
+ } else {
+ pathsData = this.releasePathsData(shapeData.pathsData);
+
+ for (j = 0; j < jLen; j += 1) {
+ pathData = bez.getSegmentsLength(shapePaths.shapes[j]);
+ pathsData.push(pathData);
+ totalShapeLength += pathData.totalLength;
+ }
+
+ shapeData.totalShapeLength = totalShapeLength;
+ shapeData.pathsData = pathsData;
+ }
+
+ totalModifierLength += totalShapeLength;
+ shapeData.shape._mdf = true;
+ }
+ }
+
+ var shapeS = s;
+ var shapeE = e;
+ var addedLength = 0;
+ var edges;
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ shapeData = this.shapes[i];
+
+ if (shapeData.shape._mdf) {
+ localShapeCollection = shapeData.localShapeCollection;
+ localShapeCollection.releaseShapes(); // if m === 2 means paths are trimmed individually so edges need to be found for this specific shape relative to whoel group
+
+ if (this.m === 2 && len > 1) {
+ edges = this.calculateShapeEdges(s, e, shapeData.totalShapeLength, addedLength, totalModifierLength);
+ addedLength += shapeData.totalShapeLength;
+ } else {
+ edges = [[shapeS, shapeE]];
+ }
+
+ jLen = edges.length;
+
+ for (j = 0; j < jLen; j += 1) {
+ shapeS = edges[j][0];
+ shapeE = edges[j][1];
+ segments.length = 0;
+
+ if (shapeE <= 1) {
+ segments.push({
+ s: shapeData.totalShapeLength * shapeS,
+ e: shapeData.totalShapeLength * shapeE
+ });
+ } else if (shapeS >= 1) {
+ segments.push({
+ s: shapeData.totalShapeLength * (shapeS - 1),
+ e: shapeData.totalShapeLength * (shapeE - 1)
+ });
+ } else {
+ segments.push({
+ s: shapeData.totalShapeLength * shapeS,
+ e: shapeData.totalShapeLength
+ });
+ segments.push({
+ s: 0,
+ e: shapeData.totalShapeLength * (shapeE - 1)
+ });
+ }
+
+ var newShapesData = this.addShapes(shapeData, segments[0]);
+
+ if (segments[0].s !== segments[0].e) {
+ if (segments.length > 1) {
+ var lastShapeInCollection = shapeData.shape.paths.shapes[shapeData.shape.paths._length - 1];
+
+ if (lastShapeInCollection.c) {
+ var lastShape = newShapesData.pop();
+ this.addPaths(newShapesData, localShapeCollection);
+ newShapesData = this.addShapes(shapeData, segments[1], lastShape);
+ } else {
+ this.addPaths(newShapesData, localShapeCollection);
+ newShapesData = this.addShapes(shapeData, segments[1]);
+ }
+ }
+
+ this.addPaths(newShapesData, localShapeCollection);
+ }
+ }
+
+ shapeData.shape.paths = localShapeCollection;
+ }
+ }
+ } else if (this._mdf) {
+ for (i = 0; i < len; i += 1) {
+ // Releasign Trim Cached paths data when no trim applied in case shapes are modified inbetween.
+ // Don't remove this even if it's losing cached info.
+ this.shapes[i].pathsData.length = 0;
+ this.shapes[i].shape._mdf = true;
+ }
+ }
+ };
+
+ TrimModifier.prototype.addPaths = function (newPaths, localShapeCollection) {
+ var i;
+ var len = newPaths.length;
+
+ for (i = 0; i < len; i += 1) {
+ localShapeCollection.addShape(newPaths[i]);
+ }
+ };
+
+ TrimModifier.prototype.addSegment = function (pt1, pt2, pt3, pt4, shapePath, pos, newShape) {
+ shapePath.setXYAt(pt2[0], pt2[1], 'o', pos);
+ shapePath.setXYAt(pt3[0], pt3[1], 'i', pos + 1);
+
+ if (newShape) {
+ shapePath.setXYAt(pt1[0], pt1[1], 'v', pos);
+ }
+
+ shapePath.setXYAt(pt4[0], pt4[1], 'v', pos + 1);
+ };
+
+ TrimModifier.prototype.addSegmentFromArray = function (points, shapePath, pos, newShape) {
+ shapePath.setXYAt(points[1], points[5], 'o', pos);
+ shapePath.setXYAt(points[2], points[6], 'i', pos + 1);
+
+ if (newShape) {
+ shapePath.setXYAt(points[0], points[4], 'v', pos);
+ }
+
+ shapePath.setXYAt(points[3], points[7], 'v', pos + 1);
+ };
+
+ TrimModifier.prototype.addShapes = function (shapeData, shapeSegment, shapePath) {
+ var pathsData = shapeData.pathsData;
+ var shapePaths = shapeData.shape.paths.shapes;
+ var i;
+ var len = shapeData.shape.paths._length;
+ var j;
+ var jLen;
+ var addedLength = 0;
+ var currentLengthData;
+ var segmentCount;
+ var lengths;
+ var segment;
+ var shapes = [];
+ var initPos;
+ var newShape = true;
+
+ if (!shapePath) {
+ shapePath = shapePool.newElement();
+ segmentCount = 0;
+ initPos = 0;
+ } else {
+ segmentCount = shapePath._length;
+ initPos = shapePath._length;
+ }
+
+ shapes.push(shapePath);
+
+ for (i = 0; i < len; i += 1) {
+ lengths = pathsData[i].lengths;
+ shapePath.c = shapePaths[i].c;
+ jLen = shapePaths[i].c ? lengths.length : lengths.length + 1;
+
+ for (j = 1; j < jLen; j += 1) {
+ currentLengthData = lengths[j - 1];
+
+ if (addedLength + currentLengthData.addedLength < shapeSegment.s) {
+ addedLength += currentLengthData.addedLength;
+ shapePath.c = false;
+ } else if (addedLength > shapeSegment.e) {
+ shapePath.c = false;
+ break;
+ } else {
+ if (shapeSegment.s <= addedLength && shapeSegment.e >= addedLength + currentLengthData.addedLength) {
+ this.addSegment(shapePaths[i].v[j - 1], shapePaths[i].o[j - 1], shapePaths[i].i[j], shapePaths[i].v[j], shapePath, segmentCount, newShape);
+ newShape = false;
+ } else {
+ segment = bez.getNewSegment(shapePaths[i].v[j - 1], shapePaths[i].v[j], shapePaths[i].o[j - 1], shapePaths[i].i[j], (shapeSegment.s - addedLength) / currentLengthData.addedLength, (shapeSegment.e - addedLength) / currentLengthData.addedLength, lengths[j - 1]);
+ this.addSegmentFromArray(segment, shapePath, segmentCount, newShape); // this.addSegment(segment.pt1, segment.pt3, segment.pt4, segment.pt2, shapePath, segmentCount, newShape);
+
+ newShape = false;
+ shapePath.c = false;
+ }
+
+ addedLength += currentLengthData.addedLength;
+ segmentCount += 1;
+ }
+ }
+
+ if (shapePaths[i].c && lengths.length) {
+ currentLengthData = lengths[j - 1];
+
+ if (addedLength <= shapeSegment.e) {
+ var segmentLength = lengths[j - 1].addedLength;
+
+ if (shapeSegment.s <= addedLength && shapeSegment.e >= addedLength + segmentLength) {
+ this.addSegment(shapePaths[i].v[j - 1], shapePaths[i].o[j - 1], shapePaths[i].i[0], shapePaths[i].v[0], shapePath, segmentCount, newShape);
+ newShape = false;
+ } else {
+ segment = bez.getNewSegment(shapePaths[i].v[j - 1], shapePaths[i].v[0], shapePaths[i].o[j - 1], shapePaths[i].i[0], (shapeSegment.s - addedLength) / segmentLength, (shapeSegment.e - addedLength) / segmentLength, lengths[j - 1]);
+ this.addSegmentFromArray(segment, shapePath, segmentCount, newShape); // this.addSegment(segment.pt1, segment.pt3, segment.pt4, segment.pt2, shapePath, segmentCount, newShape);
+
+ newShape = false;
+ shapePath.c = false;
+ }
+ } else {
+ shapePath.c = false;
+ }
+
+ addedLength += currentLengthData.addedLength;
+ segmentCount += 1;
+ }
+
+ if (shapePath._length) {
+ shapePath.setXYAt(shapePath.v[initPos][0], shapePath.v[initPos][1], 'i', initPos);
+ shapePath.setXYAt(shapePath.v[shapePath._length - 1][0], shapePath.v[shapePath._length - 1][1], 'o', shapePath._length - 1);
+ }
+
+ if (addedLength > shapeSegment.e) {
+ break;
+ }
+
+ if (i < len - 1) {
+ shapePath = shapePool.newElement();
+ newShape = true;
+ shapes.push(shapePath);
+ segmentCount = 0;
+ }
+ }
+
+ return shapes;
+ };
+
+ function PuckerAndBloatModifier() {}
+
+ extendPrototype([ShapeModifier], PuckerAndBloatModifier);
+
+ PuckerAndBloatModifier.prototype.initModifierProperties = function (elem, data) {
+ this.getValue = this.processKeys;
+ this.amount = PropertyFactory.getProp(elem, data.a, 0, null, this);
+ this._isAnimated = !!this.amount.effectsSequence.length;
+ };
+
+ PuckerAndBloatModifier.prototype.processPath = function (path, amount) {
+ var percent = amount / 100;
+ var centerPoint = [0, 0];
+ var pathLength = path._length;
+ var i = 0;
+
+ for (i = 0; i < pathLength; i += 1) {
+ centerPoint[0] += path.v[i][0];
+ centerPoint[1] += path.v[i][1];
+ }
+
+ centerPoint[0] /= pathLength;
+ centerPoint[1] /= pathLength;
+ var clonedPath = shapePool.newElement();
+ clonedPath.c = path.c;
+ var vX;
+ var vY;
+ var oX;
+ var oY;
+ var iX;
+ var iY;
+
+ for (i = 0; i < pathLength; i += 1) {
+ vX = path.v[i][0] + (centerPoint[0] - path.v[i][0]) * percent;
+ vY = path.v[i][1] + (centerPoint[1] - path.v[i][1]) * percent;
+ oX = path.o[i][0] + (centerPoint[0] - path.o[i][0]) * -percent;
+ oY = path.o[i][1] + (centerPoint[1] - path.o[i][1]) * -percent;
+ iX = path.i[i][0] + (centerPoint[0] - path.i[i][0]) * -percent;
+ iY = path.i[i][1] + (centerPoint[1] - path.i[i][1]) * -percent;
+ clonedPath.setTripleAt(vX, vY, oX, oY, iX, iY, i);
+ }
+
+ return clonedPath;
+ };
+
+ PuckerAndBloatModifier.prototype.processShapes = function (_isFirstFrame) {
+ var shapePaths;
+ var i;
+ var len = this.shapes.length;
+ var j;
+ var jLen;
+ var amount = this.amount.v;
+
+ if (amount !== 0) {
+ var shapeData;
+ var localShapeCollection;
+
+ for (i = 0; i < len; i += 1) {
+ shapeData = this.shapes[i];
+ localShapeCollection = shapeData.localShapeCollection;
+
+ if (!(!shapeData.shape._mdf && !this._mdf && !_isFirstFrame)) {
+ localShapeCollection.releaseShapes();
+ shapeData.shape._mdf = true;
+ shapePaths = shapeData.shape.paths.shapes;
+ jLen = shapeData.shape.paths._length;
+
+ for (j = 0; j < jLen; j += 1) {
+ localShapeCollection.addShape(this.processPath(shapePaths[j], amount));
+ }
+ }
+
+ shapeData.shape.paths = shapeData.localShapeCollection;
+ }
+ }
+
+ if (!this.dynamicProperties.length) {
+ this._mdf = false;
+ }
+ };
+
+ var TransformPropertyFactory = function () {
+ var defaultVector = [0, 0];
+
+ function applyToMatrix(mat) {
+ var _mdf = this._mdf;
+ this.iterateDynamicProperties();
+ this._mdf = this._mdf || _mdf;
+
+ if (this.a) {
+ mat.translate(-this.a.v[0], -this.a.v[1], this.a.v[2]);
+ }
+
+ if (this.s) {
+ mat.scale(this.s.v[0], this.s.v[1], this.s.v[2]);
+ }
+
+ if (this.sk) {
+ mat.skewFromAxis(-this.sk.v, this.sa.v);
+ }
+
+ if (this.r) {
+ mat.rotate(-this.r.v);
+ } else {
+ mat.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]);
+ }
+
+ if (this.data.p.s) {
+ if (this.data.p.z) {
+ mat.translate(this.px.v, this.py.v, -this.pz.v);
+ } else {
+ mat.translate(this.px.v, this.py.v, 0);
+ }
+ } else {
+ mat.translate(this.p.v[0], this.p.v[1], -this.p.v[2]);
+ }
+ }
+
+ function processKeys(forceRender) {
+ if (this.elem.globalData.frameId === this.frameId) {
+ return;
+ }
+
+ if (this._isDirty) {
+ this.precalculateMatrix();
+ this._isDirty = false;
+ }
+
+ this.iterateDynamicProperties();
+
+ if (this._mdf || forceRender) {
+ var frameRate;
+ this.v.cloneFromProps(this.pre.props);
+
+ if (this.appliedTransformations < 1) {
+ this.v.translate(-this.a.v[0], -this.a.v[1], this.a.v[2]);
+ }
+
+ if (this.appliedTransformations < 2) {
+ this.v.scale(this.s.v[0], this.s.v[1], this.s.v[2]);
+ }
+
+ if (this.sk && this.appliedTransformations < 3) {
+ this.v.skewFromAxis(-this.sk.v, this.sa.v);
+ }
+
+ if (this.r && this.appliedTransformations < 4) {
+ this.v.rotate(-this.r.v);
+ } else if (!this.r && this.appliedTransformations < 4) {
+ this.v.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]);
+ }
+
+ if (this.autoOriented) {
+ var v1;
+ var v2;
+ frameRate = this.elem.globalData.frameRate;
+
+ if (this.p && this.p.keyframes && this.p.getValueAtTime) {
+ if (this.p._caching.lastFrame + this.p.offsetTime <= this.p.keyframes[0].t) {
+ v1 = this.p.getValueAtTime((this.p.keyframes[0].t + 0.01) / frameRate, 0);
+ v2 = this.p.getValueAtTime(this.p.keyframes[0].t / frameRate, 0);
+ } else if (this.p._caching.lastFrame + this.p.offsetTime >= this.p.keyframes[this.p.keyframes.length - 1].t) {
+ v1 = this.p.getValueAtTime(this.p.keyframes[this.p.keyframes.length - 1].t / frameRate, 0);
+ v2 = this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length - 1].t - 0.05) / frameRate, 0);
+ } else {
+ v1 = this.p.pv;
+ v2 = this.p.getValueAtTime((this.p._caching.lastFrame + this.p.offsetTime - 0.01) / frameRate, this.p.offsetTime);
+ }
+ } else if (this.px && this.px.keyframes && this.py.keyframes && this.px.getValueAtTime && this.py.getValueAtTime) {
+ v1 = [];
+ v2 = [];
+ var px = this.px;
+ var py = this.py;
+
+ if (px._caching.lastFrame + px.offsetTime <= px.keyframes[0].t) {
+ v1[0] = px.getValueAtTime((px.keyframes[0].t + 0.01) / frameRate, 0);
+ v1[1] = py.getValueAtTime((py.keyframes[0].t + 0.01) / frameRate, 0);
+ v2[0] = px.getValueAtTime(px.keyframes[0].t / frameRate, 0);
+ v2[1] = py.getValueAtTime(py.keyframes[0].t / frameRate, 0);
+ } else if (px._caching.lastFrame + px.offsetTime >= px.keyframes[px.keyframes.length - 1].t) {
+ v1[0] = px.getValueAtTime(px.keyframes[px.keyframes.length - 1].t / frameRate, 0);
+ v1[1] = py.getValueAtTime(py.keyframes[py.keyframes.length - 1].t / frameRate, 0);
+ v2[0] = px.getValueAtTime((px.keyframes[px.keyframes.length - 1].t - 0.01) / frameRate, 0);
+ v2[1] = py.getValueAtTime((py.keyframes[py.keyframes.length - 1].t - 0.01) / frameRate, 0);
+ } else {
+ v1 = [px.pv, py.pv];
+ v2[0] = px.getValueAtTime((px._caching.lastFrame + px.offsetTime - 0.01) / frameRate, px.offsetTime);
+ v2[1] = py.getValueAtTime((py._caching.lastFrame + py.offsetTime - 0.01) / frameRate, py.offsetTime);
+ }
+ } else {
+ v2 = defaultVector;
+ v1 = v2;
+ }
+
+ this.v.rotate(-Math.atan2(v1[1] - v2[1], v1[0] - v2[0]));
+ }
+
+ if (this.data.p && this.data.p.s) {
+ if (this.data.p.z) {
+ this.v.translate(this.px.v, this.py.v, -this.pz.v);
+ } else {
+ this.v.translate(this.px.v, this.py.v, 0);
+ }
+ } else {
+ this.v.translate(this.p.v[0], this.p.v[1], -this.p.v[2]);
+ }
+ }
+
+ this.frameId = this.elem.globalData.frameId;
+ }
+
+ function precalculateMatrix() {
+ if (!this.a.k) {
+ this.pre.translate(-this.a.v[0], -this.a.v[1], this.a.v[2]);
+ this.appliedTransformations = 1;
+ } else {
+ return;
+ }
+
+ if (!this.s.effectsSequence.length) {
+ this.pre.scale(this.s.v[0], this.s.v[1], this.s.v[2]);
+ this.appliedTransformations = 2;
+ } else {
+ return;
+ }
+
+ if (this.sk) {
+ if (!this.sk.effectsSequence.length && !this.sa.effectsSequence.length) {
+ this.pre.skewFromAxis(-this.sk.v, this.sa.v);
+ this.appliedTransformations = 3;
+ } else {
+ return;
+ }
+ }
+
+ if (this.r) {
+ if (!this.r.effectsSequence.length) {
+ this.pre.rotate(-this.r.v);
+ this.appliedTransformations = 4;
+ }
+ } else if (!this.rz.effectsSequence.length && !this.ry.effectsSequence.length && !this.rx.effectsSequence.length && !this.or.effectsSequence.length) {
+ this.pre.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]);
+ this.appliedTransformations = 4;
+ }
+ }
+
+ function autoOrient() {//
+ // var prevP = this.getValueAtTime();
+ }
+
+ function addDynamicProperty(prop) {
+ this._addDynamicProperty(prop);
+
+ this.elem.addDynamicProperty(prop);
+ this._isDirty = true;
+ }
+
+ function TransformProperty(elem, data, container) {
+ this.elem = elem;
+ this.frameId = -1;
+ this.propType = 'transform';
+ this.data = data;
+ this.v = new Matrix(); // Precalculated matrix with non animated properties
+
+ this.pre = new Matrix();
+ this.appliedTransformations = 0;
+ this.initDynamicPropertyContainer(container || elem);
+
+ if (data.p && data.p.s) {
+ this.px = PropertyFactory.getProp(elem, data.p.x, 0, 0, this);
+ this.py = PropertyFactory.getProp(elem, data.p.y, 0, 0, this);
+
+ if (data.p.z) {
+ this.pz = PropertyFactory.getProp(elem, data.p.z, 0, 0, this);
+ }
+ } else {
+ this.p = PropertyFactory.getProp(elem, data.p || {
+ k: [0, 0, 0]
+ }, 1, 0, this);
+ }
+
+ if (data.rx) {
+ this.rx = PropertyFactory.getProp(elem, data.rx, 0, degToRads, this);
+ this.ry = PropertyFactory.getProp(elem, data.ry, 0, degToRads, this);
+ this.rz = PropertyFactory.getProp(elem, data.rz, 0, degToRads, this);
+
+ if (data.or.k[0].ti) {
+ var i;
+ var len = data.or.k.length;
+
+ for (i = 0; i < len; i += 1) {
+ data.or.k[i].to = null;
+ data.or.k[i].ti = null;
+ }
+ }
+
+ this.or = PropertyFactory.getProp(elem, data.or, 1, degToRads, this); // sh Indicates it needs to be capped between -180 and 180
+
+ this.or.sh = true;
+ } else {
+ this.r = PropertyFactory.getProp(elem, data.r || {
+ k: 0
+ }, 0, degToRads, this);
+ }
+
+ if (data.sk) {
+ this.sk = PropertyFactory.getProp(elem, data.sk, 0, degToRads, this);
+ this.sa = PropertyFactory.getProp(elem, data.sa, 0, degToRads, this);
+ }
+
+ this.a = PropertyFactory.getProp(elem, data.a || {
+ k: [0, 0, 0]
+ }, 1, 0, this);
+ this.s = PropertyFactory.getProp(elem, data.s || {
+ k: [100, 100, 100]
+ }, 1, 0.01, this); // Opacity is not part of the transform properties, that's why it won't use this.dynamicProperties. That way transforms won't get updated if opacity changes.
+
+ if (data.o) {
+ this.o = PropertyFactory.getProp(elem, data.o, 0, 0.01, elem);
+ } else {
+ this.o = {
+ _mdf: false,
+ v: 1
+ };
+ }
+
+ this._isDirty = true;
+
+ if (!this.dynamicProperties.length) {
+ this.getValue(true);
+ }
+ }
+
+ TransformProperty.prototype = {
+ applyToMatrix: applyToMatrix,
+ getValue: processKeys,
+ precalculateMatrix: precalculateMatrix,
+ autoOrient: autoOrient
+ };
+ extendPrototype([DynamicPropertyContainer], TransformProperty);
+ TransformProperty.prototype.addDynamicProperty = addDynamicProperty;
+ TransformProperty.prototype._addDynamicProperty = DynamicPropertyContainer.prototype.addDynamicProperty;
+
+ function getTransformProperty(elem, data, container) {
+ return new TransformProperty(elem, data, container);
+ }
+
+ return {
+ getTransformProperty: getTransformProperty
+ };
+ }();
+
+ function RepeaterModifier() {}
+
+ extendPrototype([ShapeModifier], RepeaterModifier);
+
+ RepeaterModifier.prototype.initModifierProperties = function (elem, data) {
+ this.getValue = this.processKeys;
+ this.c = PropertyFactory.getProp(elem, data.c, 0, null, this);
+ this.o = PropertyFactory.getProp(elem, data.o, 0, null, this);
+ this.tr = TransformPropertyFactory.getTransformProperty(elem, data.tr, this);
+ this.so = PropertyFactory.getProp(elem, data.tr.so, 0, 0.01, this);
+ this.eo = PropertyFactory.getProp(elem, data.tr.eo, 0, 0.01, this);
+ this.data = data;
+
+ if (!this.dynamicProperties.length) {
+ this.getValue(true);
+ }
+
+ this._isAnimated = !!this.dynamicProperties.length;
+ this.pMatrix = new Matrix();
+ this.rMatrix = new Matrix();
+ this.sMatrix = new Matrix();
+ this.tMatrix = new Matrix();
+ this.matrix = new Matrix();
+ };
+
+ RepeaterModifier.prototype.applyTransforms = function (pMatrix, rMatrix, sMatrix, transform, perc, inv) {
+ var dir = inv ? -1 : 1;
+ var scaleX = transform.s.v[0] + (1 - transform.s.v[0]) * (1 - perc);
+ var scaleY = transform.s.v[1] + (1 - transform.s.v[1]) * (1 - perc);
+ pMatrix.translate(transform.p.v[0] * dir * perc, transform.p.v[1] * dir * perc, transform.p.v[2]);
+ rMatrix.translate(-transform.a.v[0], -transform.a.v[1], transform.a.v[2]);
+ rMatrix.rotate(-transform.r.v * dir * perc);
+ rMatrix.translate(transform.a.v[0], transform.a.v[1], transform.a.v[2]);
+ sMatrix.translate(-transform.a.v[0], -transform.a.v[1], transform.a.v[2]);
+ sMatrix.scale(inv ? 1 / scaleX : scaleX, inv ? 1 / scaleY : scaleY);
+ sMatrix.translate(transform.a.v[0], transform.a.v[1], transform.a.v[2]);
+ };
+
+ RepeaterModifier.prototype.init = function (elem, arr, pos, elemsData) {
+ this.elem = elem;
+ this.arr = arr;
+ this.pos = pos;
+ this.elemsData = elemsData;
+ this._currentCopies = 0;
+ this._elements = [];
+ this._groups = [];
+ this.frameId = -1;
+ this.initDynamicPropertyContainer(elem);
+ this.initModifierProperties(elem, arr[pos]);
+
+ while (pos > 0) {
+ pos -= 1; // this._elements.unshift(arr.splice(pos,1)[0]);
+
+ this._elements.unshift(arr[pos]);
+ }
+
+ if (this.dynamicProperties.length) {
+ this.k = true;
+ } else {
+ this.getValue(true);
+ }
+ };
+
+ RepeaterModifier.prototype.resetElements = function (elements) {
+ var i;
+ var len = elements.length;
+
+ for (i = 0; i < len; i += 1) {
+ elements[i]._processed = false;
+
+ if (elements[i].ty === 'gr') {
+ this.resetElements(elements[i].it);
+ }
+ }
+ };
+
+ RepeaterModifier.prototype.cloneElements = function (elements) {
+ var newElements = JSON.parse(JSON.stringify(elements));
+ this.resetElements(newElements);
+ return newElements;
+ };
+
+ RepeaterModifier.prototype.changeGroupRender = function (elements, renderFlag) {
+ var i;
+ var len = elements.length;
+
+ for (i = 0; i < len; i += 1) {
+ elements[i]._render = renderFlag;
+
+ if (elements[i].ty === 'gr') {
+ this.changeGroupRender(elements[i].it, renderFlag);
+ }
+ }
+ };
+
+ RepeaterModifier.prototype.processShapes = function (_isFirstFrame) {
+ var items;
+ var itemsTransform;
+ var i;
+ var dir;
+ var cont;
+ var hasReloaded = false;
+
+ if (this._mdf || _isFirstFrame) {
+ var copies = Math.ceil(this.c.v);
+
+ if (this._groups.length < copies) {
+ while (this._groups.length < copies) {
+ var group = {
+ it: this.cloneElements(this._elements),
+ ty: 'gr'
+ };
+ group.it.push({
+ a: {
+ a: 0,
+ ix: 1,
+ k: [0, 0]
+ },
+ nm: 'Transform',
+ o: {
+ a: 0,
+ ix: 7,
+ k: 100
+ },
+ p: {
+ a: 0,
+ ix: 2,
+ k: [0, 0]
+ },
+ r: {
+ a: 1,
+ ix: 6,
+ k: [{
+ s: 0,
+ e: 0,
+ t: 0
+ }, {
+ s: 0,
+ e: 0,
+ t: 1
+ }]
+ },
+ s: {
+ a: 0,
+ ix: 3,
+ k: [100, 100]
+ },
+ sa: {
+ a: 0,
+ ix: 5,
+ k: 0
+ },
+ sk: {
+ a: 0,
+ ix: 4,
+ k: 0
+ },
+ ty: 'tr'
+ });
+ this.arr.splice(0, 0, group);
+
+ this._groups.splice(0, 0, group);
+
+ this._currentCopies += 1;
+ }
+
+ this.elem.reloadShapes();
+ hasReloaded = true;
+ }
+
+ cont = 0;
+ var renderFlag;
+
+ for (i = 0; i <= this._groups.length - 1; i += 1) {
+ renderFlag = cont < copies;
+ this._groups[i]._render = renderFlag;
+ this.changeGroupRender(this._groups[i].it, renderFlag);
+
+ if (!renderFlag) {
+ var elems = this.elemsData[i].it;
+ var transformData = elems[elems.length - 1];
+
+ if (transformData.transform.op.v !== 0) {
+ transformData.transform.op._mdf = true;
+ transformData.transform.op.v = 0;
+ } else {
+ transformData.transform.op._mdf = false;
+ }
+ }
+
+ cont += 1;
+ }
+
+ this._currentCopies = copies; /// /
+
+ var offset = this.o.v;
+ var offsetModulo = offset % 1;
+ var roundOffset = offset > 0 ? Math.floor(offset) : Math.ceil(offset);
+ var pProps = this.pMatrix.props;
+ var rProps = this.rMatrix.props;
+ var sProps = this.sMatrix.props;
+ this.pMatrix.reset();
+ this.rMatrix.reset();
+ this.sMatrix.reset();
+ this.tMatrix.reset();
+ this.matrix.reset();
+ var iteration = 0;
+
+ if (offset > 0) {
+ while (iteration < roundOffset) {
+ this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, 1, false);
+ iteration += 1;
+ }
+
+ if (offsetModulo) {
+ this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, offsetModulo, false);
+ iteration += offsetModulo;
+ }
+ } else if (offset < 0) {
+ while (iteration > roundOffset) {
+ this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, 1, true);
+ iteration -= 1;
+ }
+
+ if (offsetModulo) {
+ this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, -offsetModulo, true);
+ iteration -= offsetModulo;
+ }
+ }
+
+ i = this.data.m === 1 ? 0 : this._currentCopies - 1;
+ dir = this.data.m === 1 ? 1 : -1;
+ cont = this._currentCopies;
+ var j;
+ var jLen;
+
+ while (cont) {
+ items = this.elemsData[i].it;
+ itemsTransform = items[items.length - 1].transform.mProps.v.props;
+ jLen = itemsTransform.length;
+ items[items.length - 1].transform.mProps._mdf = true;
+ items[items.length - 1].transform.op._mdf = true;
+ items[items.length - 1].transform.op.v = this._currentCopies === 1 ? this.so.v : this.so.v + (this.eo.v - this.so.v) * (i / (this._currentCopies - 1));
+
+ if (iteration !== 0) {
+ if (i !== 0 && dir === 1 || i !== this._currentCopies - 1 && dir === -1) {
+ this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, 1, false);
+ }
+
+ this.matrix.transform(rProps[0], rProps[1], rProps[2], rProps[3], rProps[4], rProps[5], rProps[6], rProps[7], rProps[8], rProps[9], rProps[10], rProps[11], rProps[12], rProps[13], rProps[14], rProps[15]);
+ this.matrix.transform(sProps[0], sProps[1], sProps[2], sProps[3], sProps[4], sProps[5], sProps[6], sProps[7], sProps[8], sProps[9], sProps[10], sProps[11], sProps[12], sProps[13], sProps[14], sProps[15]);
+ this.matrix.transform(pProps[0], pProps[1], pProps[2], pProps[3], pProps[4], pProps[5], pProps[6], pProps[7], pProps[8], pProps[9], pProps[10], pProps[11], pProps[12], pProps[13], pProps[14], pProps[15]);
+
+ for (j = 0; j < jLen; j += 1) {
+ itemsTransform[j] = this.matrix.props[j];
+ }
+
+ this.matrix.reset();
+ } else {
+ this.matrix.reset();
+
+ for (j = 0; j < jLen; j += 1) {
+ itemsTransform[j] = this.matrix.props[j];
+ }
+ }
+
+ iteration += 1;
+ cont -= 1;
+ i += dir;
+ }
+ } else {
+ cont = this._currentCopies;
+ i = 0;
+ dir = 1;
+
+ while (cont) {
+ items = this.elemsData[i].it;
+ itemsTransform = items[items.length - 1].transform.mProps.v.props;
+ items[items.length - 1].transform.mProps._mdf = false;
+ items[items.length - 1].transform.op._mdf = false;
+ cont -= 1;
+ i += dir;
+ }
+ }
+
+ return hasReloaded;
+ };
+
+ RepeaterModifier.prototype.addShape = function () {};
+
+ function RoundCornersModifier() {}
+
+ extendPrototype([ShapeModifier], RoundCornersModifier);
+
+ RoundCornersModifier.prototype.initModifierProperties = function (elem, data) {
+ this.getValue = this.processKeys;
+ this.rd = PropertyFactory.getProp(elem, data.r, 0, null, this);
+ this._isAnimated = !!this.rd.effectsSequence.length;
+ };
+
+ RoundCornersModifier.prototype.processPath = function (path, round) {
+ var clonedPath = shapePool.newElement();
+ clonedPath.c = path.c;
+ var i;
+ var len = path._length;
+ var currentV;
+ var currentI;
+ var currentO;
+ var closerV;
+ var distance;
+ var newPosPerc;
+ var index = 0;
+ var vX;
+ var vY;
+ var oX;
+ var oY;
+ var iX;
+ var iY;
+
+ for (i = 0; i < len; i += 1) {
+ currentV = path.v[i];
+ currentO = path.o[i];
+ currentI = path.i[i];
+
+ if (currentV[0] === currentO[0] && currentV[1] === currentO[1] && currentV[0] === currentI[0] && currentV[1] === currentI[1]) {
+ if ((i === 0 || i === len - 1) && !path.c) {
+ clonedPath.setTripleAt(currentV[0], currentV[1], currentO[0], currentO[1], currentI[0], currentI[1], index);
+ /* clonedPath.v[index] = currentV;
+ clonedPath.o[index] = currentO;
+ clonedPath.i[index] = currentI; */
+
+ index += 1;
+ } else {
+ if (i === 0) {
+ closerV = path.v[len - 1];
+ } else {
+ closerV = path.v[i - 1];
+ }
+
+ distance = Math.sqrt(Math.pow(currentV[0] - closerV[0], 2) + Math.pow(currentV[1] - closerV[1], 2));
+ newPosPerc = distance ? Math.min(distance / 2, round) / distance : 0;
+ iX = currentV[0] + (closerV[0] - currentV[0]) * newPosPerc;
+ vX = iX;
+ iY = currentV[1] - (currentV[1] - closerV[1]) * newPosPerc;
+ vY = iY;
+ oX = vX - (vX - currentV[0]) * roundCorner;
+ oY = vY - (vY - currentV[1]) * roundCorner;
+ clonedPath.setTripleAt(vX, vY, oX, oY, iX, iY, index);
+ index += 1;
+
+ if (i === len - 1) {
+ closerV = path.v[0];
+ } else {
+ closerV = path.v[i + 1];
+ }
+
+ distance = Math.sqrt(Math.pow(currentV[0] - closerV[0], 2) + Math.pow(currentV[1] - closerV[1], 2));
+ newPosPerc = distance ? Math.min(distance / 2, round) / distance : 0;
+ oX = currentV[0] + (closerV[0] - currentV[0]) * newPosPerc;
+ vX = oX;
+ oY = currentV[1] + (closerV[1] - currentV[1]) * newPosPerc;
+ vY = oY;
+ iX = vX - (vX - currentV[0]) * roundCorner;
+ iY = vY - (vY - currentV[1]) * roundCorner;
+ clonedPath.setTripleAt(vX, vY, oX, oY, iX, iY, index);
+ index += 1;
+ }
+ } else {
+ clonedPath.setTripleAt(path.v[i][0], path.v[i][1], path.o[i][0], path.o[i][1], path.i[i][0], path.i[i][1], index);
+ index += 1;
+ }
+ }
+
+ return clonedPath;
+ };
+
+ RoundCornersModifier.prototype.processShapes = function (_isFirstFrame) {
+ var shapePaths;
+ var i;
+ var len = this.shapes.length;
+ var j;
+ var jLen;
+ var rd = this.rd.v;
+
+ if (rd !== 0) {
+ var shapeData;
+ var localShapeCollection;
+
+ for (i = 0; i < len; i += 1) {
+ shapeData = this.shapes[i];
+ localShapeCollection = shapeData.localShapeCollection;
+
+ if (!(!shapeData.shape._mdf && !this._mdf && !_isFirstFrame)) {
+ localShapeCollection.releaseShapes();
+ shapeData.shape._mdf = true;
+ shapePaths = shapeData.shape.paths.shapes;
+ jLen = shapeData.shape.paths._length;
+
+ for (j = 0; j < jLen; j += 1) {
+ localShapeCollection.addShape(this.processPath(shapePaths[j], rd));
+ }
+ }
+
+ shapeData.shape.paths = shapeData.localShapeCollection;
+ }
+ }
+
+ if (!this.dynamicProperties.length) {
+ this._mdf = false;
+ }
+ };
+
+ function floatEqual(a, b) {
+ return Math.abs(a - b) * 100000 <= Math.min(Math.abs(a), Math.abs(b));
+ }
+
+ function floatZero(f) {
+ return Math.abs(f) <= 0.00001;
+ }
+
+ function lerp(p0, p1, amount) {
+ return p0 * (1 - amount) + p1 * amount;
+ }
+
+ function lerpPoint(p0, p1, amount) {
+ return [lerp(p0[0], p1[0], amount), lerp(p0[1], p1[1], amount)];
+ }
+
+ function quadRoots(a, b, c) {
+ // no root
+ if (a === 0) return [];
+ var s = b * b - 4 * a * c; // Complex roots
+
+ if (s < 0) return [];
+ var singleRoot = -b / (2 * a); // 1 root
+
+ if (s === 0) return [singleRoot];
+ var delta = Math.sqrt(s) / (2 * a); // 2 roots
+
+ return [singleRoot - delta, singleRoot + delta];
+ }
+
+ function polynomialCoefficients(p0, p1, p2, p3) {
+ return [-p0 + 3 * p1 - 3 * p2 + p3, 3 * p0 - 6 * p1 + 3 * p2, -3 * p0 + 3 * p1, p0];
+ }
+
+ function singlePoint(p) {
+ return new PolynomialBezier(p, p, p, p, false);
+ }
+
+ function PolynomialBezier(p0, p1, p2, p3, linearize) {
+ if (linearize && pointEqual(p0, p1)) {
+ p1 = lerpPoint(p0, p3, 1 / 3);
+ }
+
+ if (linearize && pointEqual(p2, p3)) {
+ p2 = lerpPoint(p0, p3, 2 / 3);
+ }
+
+ var coeffx = polynomialCoefficients(p0[0], p1[0], p2[0], p3[0]);
+ var coeffy = polynomialCoefficients(p0[1], p1[1], p2[1], p3[1]);
+ this.a = [coeffx[0], coeffy[0]];
+ this.b = [coeffx[1], coeffy[1]];
+ this.c = [coeffx[2], coeffy[2]];
+ this.d = [coeffx[3], coeffy[3]];
+ this.points = [p0, p1, p2, p3];
+ }
+
+ PolynomialBezier.prototype.point = function (t) {
+ return [((this.a[0] * t + this.b[0]) * t + this.c[0]) * t + this.d[0], ((this.a[1] * t + this.b[1]) * t + this.c[1]) * t + this.d[1]];
+ };
+
+ PolynomialBezier.prototype.derivative = function (t) {
+ return [(3 * t * this.a[0] + 2 * this.b[0]) * t + this.c[0], (3 * t * this.a[1] + 2 * this.b[1]) * t + this.c[1]];
+ };
+
+ PolynomialBezier.prototype.tangentAngle = function (t) {
+ var p = this.derivative(t);
+ return Math.atan2(p[1], p[0]);
+ };
+
+ PolynomialBezier.prototype.normalAngle = function (t) {
+ var p = this.derivative(t);
+ return Math.atan2(p[0], p[1]);
+ };
+
+ PolynomialBezier.prototype.inflectionPoints = function () {
+ var denom = this.a[1] * this.b[0] - this.a[0] * this.b[1];
+ if (floatZero(denom)) return [];
+ var tcusp = -0.5 * (this.a[1] * this.c[0] - this.a[0] * this.c[1]) / denom;
+ var square = tcusp * tcusp - 1 / 3 * (this.b[1] * this.c[0] - this.b[0] * this.c[1]) / denom;
+ if (square < 0) return [];
+ var root = Math.sqrt(square);
+
+ if (floatZero(root)) {
+ if (root > 0 && root < 1) return [tcusp];
+ return [];
+ }
+
+ return [tcusp - root, tcusp + root].filter(function (r) {
+ return r > 0 && r < 1;
+ });
+ };
+
+ PolynomialBezier.prototype.split = function (t) {
+ if (t <= 0) return [singlePoint(this.points[0]), this];
+ if (t >= 1) return [this, singlePoint(this.points[this.points.length - 1])];
+ var p10 = lerpPoint(this.points[0], this.points[1], t);
+ var p11 = lerpPoint(this.points[1], this.points[2], t);
+ var p12 = lerpPoint(this.points[2], this.points[3], t);
+ var p20 = lerpPoint(p10, p11, t);
+ var p21 = lerpPoint(p11, p12, t);
+ var p3 = lerpPoint(p20, p21, t);
+ return [new PolynomialBezier(this.points[0], p10, p20, p3, true), new PolynomialBezier(p3, p21, p12, this.points[3], true)];
+ };
+
+ function extrema(bez, comp) {
+ var min = bez.points[0][comp];
+ var max = bez.points[bez.points.length - 1][comp];
+
+ if (min > max) {
+ var e = max;
+ max = min;
+ min = e;
+ } // Derivative roots to find min/max
+
+
+ var f = quadRoots(3 * bez.a[comp], 2 * bez.b[comp], bez.c[comp]);
+
+ for (var i = 0; i < f.length; i += 1) {
+ if (f[i] > 0 && f[i] < 1) {
+ var val = bez.point(f[i])[comp];
+ if (val < min) min = val;else if (val > max) max = val;
+ }
+ }
+
+ return {
+ min: min,
+ max: max
+ };
+ }
+
+ PolynomialBezier.prototype.bounds = function () {
+ return {
+ x: extrema(this, 0),
+ y: extrema(this, 1)
+ };
+ };
+
+ PolynomialBezier.prototype.boundingBox = function () {
+ var bounds = this.bounds();
+ return {
+ left: bounds.x.min,
+ right: bounds.x.max,
+ top: bounds.y.min,
+ bottom: bounds.y.max,
+ width: bounds.x.max - bounds.x.min,
+ height: bounds.y.max - bounds.y.min,
+ cx: (bounds.x.max + bounds.x.min) / 2,
+ cy: (bounds.y.max + bounds.y.min) / 2
+ };
+ };
+
+ function intersectData(bez, t1, t2) {
+ var box = bez.boundingBox();
+ return {
+ cx: box.cx,
+ cy: box.cy,
+ width: box.width,
+ height: box.height,
+ bez: bez,
+ t: (t1 + t2) / 2,
+ t1: t1,
+ t2: t2
+ };
+ }
+
+ function splitData(data) {
+ var split = data.bez.split(0.5);
+ return [intersectData(split[0], data.t1, data.t), intersectData(split[1], data.t, data.t2)];
+ }
+
+ function boxIntersect(b1, b2) {
+ return Math.abs(b1.cx - b2.cx) * 2 < b1.width + b2.width && Math.abs(b1.cy - b2.cy) * 2 < b1.height + b2.height;
+ }
+
+ function intersectsImpl(d1, d2, depth, tolerance, intersections, maxRecursion) {
+ if (!boxIntersect(d1, d2)) return;
+
+ if (depth >= maxRecursion || d1.width <= tolerance && d1.height <= tolerance && d2.width <= tolerance && d2.height <= tolerance) {
+ intersections.push([d1.t, d2.t]);
+ return;
+ }
+
+ var d1s = splitData(d1);
+ var d2s = splitData(d2);
+ intersectsImpl(d1s[0], d2s[0], depth + 1, tolerance, intersections, maxRecursion);
+ intersectsImpl(d1s[0], d2s[1], depth + 1, tolerance, intersections, maxRecursion);
+ intersectsImpl(d1s[1], d2s[0], depth + 1, tolerance, intersections, maxRecursion);
+ intersectsImpl(d1s[1], d2s[1], depth + 1, tolerance, intersections, maxRecursion);
+ }
+
+ PolynomialBezier.prototype.intersections = function (other, tolerance, maxRecursion) {
+ if (tolerance === undefined) tolerance = 2;
+ if (maxRecursion === undefined) maxRecursion = 7;
+ var intersections = [];
+ intersectsImpl(intersectData(this, 0, 1), intersectData(other, 0, 1), 0, tolerance, intersections, maxRecursion);
+ return intersections;
+ };
+
+ PolynomialBezier.shapeSegment = function (shapePath, index) {
+ var nextIndex = (index + 1) % shapePath.length();
+ return new PolynomialBezier(shapePath.v[index], shapePath.o[index], shapePath.i[nextIndex], shapePath.v[nextIndex], true);
+ };
+
+ PolynomialBezier.shapeSegmentInverted = function (shapePath, index) {
+ var nextIndex = (index + 1) % shapePath.length();
+ return new PolynomialBezier(shapePath.v[nextIndex], shapePath.i[nextIndex], shapePath.o[index], shapePath.v[index], true);
+ };
+
+ function crossProduct(a, b) {
+ return [a[1] * b[2] - a[2] * b[1], a[2] * b[0] - a[0] * b[2], a[0] * b[1] - a[1] * b[0]];
+ }
+
+ function lineIntersection(start1, end1, start2, end2) {
+ var v1 = [start1[0], start1[1], 1];
+ var v2 = [end1[0], end1[1], 1];
+ var v3 = [start2[0], start2[1], 1];
+ var v4 = [end2[0], end2[1], 1];
+ var r = crossProduct(crossProduct(v1, v2), crossProduct(v3, v4));
+ if (floatZero(r[2])) return null;
+ return [r[0] / r[2], r[1] / r[2]];
+ }
+
+ function polarOffset(p, angle, length) {
+ return [p[0] + Math.cos(angle) * length, p[1] - Math.sin(angle) * length];
+ }
+
+ function pointDistance(p1, p2) {
+ return Math.hypot(p1[0] - p2[0], p1[1] - p2[1]);
+ }
+
+ function pointEqual(p1, p2) {
+ return floatEqual(p1[0], p2[0]) && floatEqual(p1[1], p2[1]);
+ }
+
+ function ZigZagModifier() {}
+
+ extendPrototype([ShapeModifier], ZigZagModifier);
+
+ ZigZagModifier.prototype.initModifierProperties = function (elem, data) {
+ this.getValue = this.processKeys;
+ this.amplitude = PropertyFactory.getProp(elem, data.s, 0, null, this);
+ this.frequency = PropertyFactory.getProp(elem, data.r, 0, null, this);
+ this.pointsType = PropertyFactory.getProp(elem, data.pt, 0, null, this);
+ this._isAnimated = this.amplitude.effectsSequence.length !== 0 || this.frequency.effectsSequence.length !== 0 || this.pointsType.effectsSequence.length !== 0;
+ };
+
+ function setPoint(outputBezier, point, angle, direction, amplitude, outAmplitude, inAmplitude) {
+ var angO = angle - Math.PI / 2;
+ var angI = angle + Math.PI / 2;
+ var px = point[0] + Math.cos(angle) * direction * amplitude;
+ var py = point[1] - Math.sin(angle) * direction * amplitude;
+ outputBezier.setTripleAt(px, py, px + Math.cos(angO) * outAmplitude, py - Math.sin(angO) * outAmplitude, px + Math.cos(angI) * inAmplitude, py - Math.sin(angI) * inAmplitude, outputBezier.length());
+ }
+
+ function getPerpendicularVector(pt1, pt2) {
+ var vector = [pt2[0] - pt1[0], pt2[1] - pt1[1]];
+ var rot = -Math.PI * 0.5;
+ var rotatedVector = [Math.cos(rot) * vector[0] - Math.sin(rot) * vector[1], Math.sin(rot) * vector[0] + Math.cos(rot) * vector[1]];
+ return rotatedVector;
+ }
+
+ function getProjectingAngle(path, cur) {
+ var prevIndex = cur === 0 ? path.length() - 1 : cur - 1;
+ var nextIndex = (cur + 1) % path.length();
+ var prevPoint = path.v[prevIndex];
+ var nextPoint = path.v[nextIndex];
+ var pVector = getPerpendicularVector(prevPoint, nextPoint);
+ return Math.atan2(0, 1) - Math.atan2(pVector[1], pVector[0]);
+ }
+
+ function zigZagCorner(outputBezier, path, cur, amplitude, frequency, pointType, direction) {
+ var angle = getProjectingAngle(path, cur);
+ var point = path.v[cur % path._length];
+ var prevPoint = path.v[cur === 0 ? path._length - 1 : cur - 1];
+ var nextPoint = path.v[(cur + 1) % path._length];
+ var prevDist = pointType === 2 ? Math.sqrt(Math.pow(point[0] - prevPoint[0], 2) + Math.pow(point[1] - prevPoint[1], 2)) : 0;
+ var nextDist = pointType === 2 ? Math.sqrt(Math.pow(point[0] - nextPoint[0], 2) + Math.pow(point[1] - nextPoint[1], 2)) : 0;
+ setPoint(outputBezier, path.v[cur % path._length], angle, direction, amplitude, nextDist / ((frequency + 1) * 2), prevDist / ((frequency + 1) * 2), pointType);
+ }
+
+ function zigZagSegment(outputBezier, segment, amplitude, frequency, pointType, direction) {
+ for (var i = 0; i < frequency; i += 1) {
+ var t = (i + 1) / (frequency + 1);
+ var dist = pointType === 2 ? Math.sqrt(Math.pow(segment.points[3][0] - segment.points[0][0], 2) + Math.pow(segment.points[3][1] - segment.points[0][1], 2)) : 0;
+ var angle = segment.normalAngle(t);
+ var point = segment.point(t);
+ setPoint(outputBezier, point, angle, direction, amplitude, dist / ((frequency + 1) * 2), dist / ((frequency + 1) * 2), pointType);
+ direction = -direction;
+ }
+
+ return direction;
+ }
+
+ ZigZagModifier.prototype.processPath = function (path, amplitude, frequency, pointType) {
+ var count = path._length;
+ var clonedPath = shapePool.newElement();
+ clonedPath.c = path.c;
+
+ if (!path.c) {
+ count -= 1;
+ }
+
+ if (count === 0) return clonedPath;
+ var direction = -1;
+ var segment = PolynomialBezier.shapeSegment(path, 0);
+ zigZagCorner(clonedPath, path, 0, amplitude, frequency, pointType, direction);
+
+ for (var i = 0; i < count; i += 1) {
+ direction = zigZagSegment(clonedPath, segment, amplitude, frequency, pointType, -direction);
+
+ if (i === count - 1 && !path.c) {
+ segment = null;
+ } else {
+ segment = PolynomialBezier.shapeSegment(path, (i + 1) % count);
+ }
+
+ zigZagCorner(clonedPath, path, i + 1, amplitude, frequency, pointType, direction);
+ }
+
+ return clonedPath;
+ };
+
+ ZigZagModifier.prototype.processShapes = function (_isFirstFrame) {
+ var shapePaths;
+ var i;
+ var len = this.shapes.length;
+ var j;
+ var jLen;
+ var amplitude = this.amplitude.v;
+ var frequency = Math.max(0, Math.round(this.frequency.v));
+ var pointType = this.pointsType.v;
+
+ if (amplitude !== 0) {
+ var shapeData;
+ var localShapeCollection;
+
+ for (i = 0; i < len; i += 1) {
+ shapeData = this.shapes[i];
+ localShapeCollection = shapeData.localShapeCollection;
+
+ if (!(!shapeData.shape._mdf && !this._mdf && !_isFirstFrame)) {
+ localShapeCollection.releaseShapes();
+ shapeData.shape._mdf = true;
+ shapePaths = shapeData.shape.paths.shapes;
+ jLen = shapeData.shape.paths._length;
+
+ for (j = 0; j < jLen; j += 1) {
+ localShapeCollection.addShape(this.processPath(shapePaths[j], amplitude, frequency, pointType));
+ }
+ }
+
+ shapeData.shape.paths = shapeData.localShapeCollection;
+ }
+ }
+
+ if (!this.dynamicProperties.length) {
+ this._mdf = false;
+ }
+ };
+
+ function linearOffset(p1, p2, amount) {
+ var angle = Math.atan2(p2[0] - p1[0], p2[1] - p1[1]);
+ return [polarOffset(p1, angle, amount), polarOffset(p2, angle, amount)];
+ }
+
+ function offsetSegment(segment, amount) {
+ var p0;
+ var p1a;
+ var p1b;
+ var p2b;
+ var p2a;
+ var p3;
+ var e;
+ e = linearOffset(segment.points[0], segment.points[1], amount);
+ p0 = e[0];
+ p1a = e[1];
+ e = linearOffset(segment.points[1], segment.points[2], amount);
+ p1b = e[0];
+ p2b = e[1];
+ e = linearOffset(segment.points[2], segment.points[3], amount);
+ p2a = e[0];
+ p3 = e[1];
+ var p1 = lineIntersection(p0, p1a, p1b, p2b);
+ if (p1 === null) p1 = p1a;
+ var p2 = lineIntersection(p2a, p3, p1b, p2b);
+ if (p2 === null) p2 = p2a;
+ return new PolynomialBezier(p0, p1, p2, p3);
+ }
+
+ function joinLines(outputBezier, seg1, seg2, lineJoin, miterLimit) {
+ var p0 = seg1.points[3];
+ var p1 = seg2.points[0]; // Bevel
+
+ if (lineJoin === 3) return p0; // Connected, they don't need a joint
+
+ if (pointEqual(p0, p1)) return p0; // Round
+
+ if (lineJoin === 2) {
+ var angleOut = -seg1.tangentAngle(1);
+ var angleIn = -seg2.tangentAngle(0) + Math.PI;
+ var center = lineIntersection(p0, polarOffset(p0, angleOut + Math.PI / 2, 100), p1, polarOffset(p1, angleOut + Math.PI / 2, 100));
+ var radius = center ? pointDistance(center, p0) : pointDistance(p0, p1) / 2;
+ var tan = polarOffset(p0, angleOut, 2 * radius * roundCorner);
+ outputBezier.setXYAt(tan[0], tan[1], 'o', outputBezier.length() - 1);
+ tan = polarOffset(p1, angleIn, 2 * radius * roundCorner);
+ outputBezier.setTripleAt(p1[0], p1[1], p1[0], p1[1], tan[0], tan[1], outputBezier.length());
+ return p1;
+ } // Miter
+
+
+ var t0 = pointEqual(p0, seg1.points[2]) ? seg1.points[0] : seg1.points[2];
+ var t1 = pointEqual(p1, seg2.points[1]) ? seg2.points[3] : seg2.points[1];
+ var intersection = lineIntersection(t0, p0, p1, t1);
+
+ if (intersection && pointDistance(intersection, p0) < miterLimit) {
+ outputBezier.setTripleAt(intersection[0], intersection[1], intersection[0], intersection[1], intersection[0], intersection[1], outputBezier.length());
+ return intersection;
+ }
+
+ return p0;
+ }
+
+ function getIntersection(a, b) {
+ var intersect = a.intersections(b);
+ if (intersect.length && floatEqual(intersect[0][0], 1)) intersect.shift();
+ if (intersect.length) return intersect[0];
+ return null;
+ }
+
+ function pruneSegmentIntersection(a, b) {
+ var outa = a.slice();
+ var outb = b.slice();
+ var intersect = getIntersection(a[a.length - 1], b[0]);
+
+ if (intersect) {
+ outa[a.length - 1] = a[a.length - 1].split(intersect[0])[0];
+ outb[0] = b[0].split(intersect[1])[1];
+ }
+
+ if (a.length > 1 && b.length > 1) {
+ intersect = getIntersection(a[0], b[b.length - 1]);
+
+ if (intersect) {
+ return [[a[0].split(intersect[0])[0]], [b[b.length - 1].split(intersect[1])[1]]];
+ }
+ }
+
+ return [outa, outb];
+ }
+
+ function pruneIntersections(segments) {
+ var e;
+
+ for (var i = 1; i < segments.length; i += 1) {
+ e = pruneSegmentIntersection(segments[i - 1], segments[i]);
+ segments[i - 1] = e[0];
+ segments[i] = e[1];
+ }
+
+ if (segments.length > 1) {
+ e = pruneSegmentIntersection(segments[segments.length - 1], segments[0]);
+ segments[segments.length - 1] = e[0];
+ segments[0] = e[1];
+ }
+
+ return segments;
+ }
+
+ function offsetSegmentSplit(segment, amount) {
+ /*
+ We split each bezier segment into smaller pieces based
+ on inflection points, this ensures the control point
+ polygon is convex.
+ (A cubic bezier can have none, one, or two inflection points)
+ */
+ var flex = segment.inflectionPoints();
+ var left;
+ var right;
+ var split;
+ var mid;
+
+ if (flex.length === 0) {
+ return [offsetSegment(segment, amount)];
+ }
+
+ if (flex.length === 1 || floatEqual(flex[1], 1)) {
+ split = segment.split(flex[0]);
+ left = split[0];
+ right = split[1];
+ return [offsetSegment(left, amount), offsetSegment(right, amount)];
+ }
+
+ split = segment.split(flex[0]);
+ left = split[0];
+ var t = (flex[1] - flex[0]) / (1 - flex[0]);
+ split = split[1].split(t);
+ mid = split[0];
+ right = split[1];
+ return [offsetSegment(left, amount), offsetSegment(mid, amount), offsetSegment(right, amount)];
+ }
+
+ function OffsetPathModifier() {}
+
+ extendPrototype([ShapeModifier], OffsetPathModifier);
+
+ OffsetPathModifier.prototype.initModifierProperties = function (elem, data) {
+ this.getValue = this.processKeys;
+ this.amount = PropertyFactory.getProp(elem, data.a, 0, null, this);
+ this.miterLimit = PropertyFactory.getProp(elem, data.ml, 0, null, this);
+ this.lineJoin = data.lj;
+ this._isAnimated = this.amount.effectsSequence.length !== 0;
+ };
+
+ OffsetPathModifier.prototype.processPath = function (inputBezier, amount, lineJoin, miterLimit) {
+ var outputBezier = shapePool.newElement();
+ outputBezier.c = inputBezier.c;
+ var count = inputBezier.length();
+
+ if (!inputBezier.c) {
+ count -= 1;
+ }
+
+ var i;
+ var j;
+ var segment;
+ var multiSegments = [];
+
+ for (i = 0; i < count; i += 1) {
+ segment = PolynomialBezier.shapeSegment(inputBezier, i);
+ multiSegments.push(offsetSegmentSplit(segment, amount));
+ }
+
+ if (!inputBezier.c) {
+ for (i = count - 1; i >= 0; i -= 1) {
+ segment = PolynomialBezier.shapeSegmentInverted(inputBezier, i);
+ multiSegments.push(offsetSegmentSplit(segment, amount));
+ }
+ }
+
+ multiSegments = pruneIntersections(multiSegments); // Add bezier segments to the output and apply line joints
+
+ var lastPoint = null;
+ var lastSeg = null;
+
+ for (i = 0; i < multiSegments.length; i += 1) {
+ var multiSegment = multiSegments[i];
+ if (lastSeg) lastPoint = joinLines(outputBezier, lastSeg, multiSegment[0], lineJoin, miterLimit);
+ lastSeg = multiSegment[multiSegment.length - 1];
+
+ for (j = 0; j < multiSegment.length; j += 1) {
+ segment = multiSegment[j];
+
+ if (lastPoint && pointEqual(segment.points[0], lastPoint)) {
+ outputBezier.setXYAt(segment.points[1][0], segment.points[1][1], 'o', outputBezier.length() - 1);
+ } else {
+ outputBezier.setTripleAt(segment.points[0][0], segment.points[0][1], segment.points[1][0], segment.points[1][1], segment.points[0][0], segment.points[0][1], outputBezier.length());
+ }
+
+ outputBezier.setTripleAt(segment.points[3][0], segment.points[3][1], segment.points[3][0], segment.points[3][1], segment.points[2][0], segment.points[2][1], outputBezier.length());
+ lastPoint = segment.points[3];
+ }
+ }
+
+ if (multiSegments.length) joinLines(outputBezier, lastSeg, multiSegments[0][0], lineJoin, miterLimit);
+ return outputBezier;
+ };
+
+ OffsetPathModifier.prototype.processShapes = function (_isFirstFrame) {
+ var shapePaths;
+ var i;
+ var len = this.shapes.length;
+ var j;
+ var jLen;
+ var amount = this.amount.v;
+ var miterLimit = this.miterLimit.v;
+ var lineJoin = this.lineJoin;
+
+ if (amount !== 0) {
+ var shapeData;
+ var localShapeCollection;
+
+ for (i = 0; i < len; i += 1) {
+ shapeData = this.shapes[i];
+ localShapeCollection = shapeData.localShapeCollection;
+
+ if (!(!shapeData.shape._mdf && !this._mdf && !_isFirstFrame)) {
+ localShapeCollection.releaseShapes();
+ shapeData.shape._mdf = true;
+ shapePaths = shapeData.shape.paths.shapes;
+ jLen = shapeData.shape.paths._length;
+
+ for (j = 0; j < jLen; j += 1) {
+ localShapeCollection.addShape(this.processPath(shapePaths[j], amount, lineJoin, miterLimit));
+ }
+ }
+
+ shapeData.shape.paths = shapeData.localShapeCollection;
+ }
+ }
+
+ if (!this.dynamicProperties.length) {
+ this._mdf = false;
+ }
+ };
+
+ function getFontProperties(fontData) {
+ var styles = fontData.fStyle ? fontData.fStyle.split(' ') : [];
+ var fWeight = 'normal';
+ var fStyle = 'normal';
+ var len = styles.length;
+ var styleName;
+
+ for (var i = 0; i < len; i += 1) {
+ styleName = styles[i].toLowerCase();
+
+ switch (styleName) {
+ case 'italic':
+ fStyle = 'italic';
+ break;
+
+ case 'bold':
+ fWeight = '700';
+ break;
+
+ case 'black':
+ fWeight = '900';
+ break;
+
+ case 'medium':
+ fWeight = '500';
+ break;
+
+ case 'regular':
+ case 'normal':
+ fWeight = '400';
+ break;
+
+ case 'light':
+ case 'thin':
+ fWeight = '200';
+ break;
+
+ default:
+ break;
+ }
+ }
+
+ return {
+ style: fStyle,
+ weight: fontData.fWeight || fWeight
+ };
+ }
+
+ var FontManager = function () {
+ var maxWaitingTime = 5000;
+ var emptyChar = {
+ w: 0,
+ size: 0,
+ shapes: [],
+ data: {
+ shapes: []
+ }
+ };
+ var combinedCharacters = []; // Hindi characters
+
+ combinedCharacters = combinedCharacters.concat([2304, 2305, 2306, 2307, 2362, 2363, 2364, 2364, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2387, 2388, 2389, 2390, 2391, 2402, 2403]);
+ var surrogateModifiers = ['d83cdffb', 'd83cdffc', 'd83cdffd', 'd83cdffe', 'd83cdfff'];
+ var zeroWidthJoiner = [65039, 8205];
+
+ function trimFontOptions(font) {
+ var familyArray = font.split(',');
+ var i;
+ var len = familyArray.length;
+ var enabledFamilies = [];
+
+ for (i = 0; i < len; i += 1) {
+ if (familyArray[i] !== 'sans-serif' && familyArray[i] !== 'monospace') {
+ enabledFamilies.push(familyArray[i]);
+ }
+ }
+
+ return enabledFamilies.join(',');
+ }
+
+ function setUpNode(font, family) {
+ var parentNode = createTag('span'); // Node is invisible to screen readers.
+
+ parentNode.setAttribute('aria-hidden', true);
+ parentNode.style.fontFamily = family;
+ var node = createTag('span'); // Characters that vary significantly among different fonts
+
+ node.innerText = 'giItT1WQy@!-/#'; // Visible - so we can measure it - but not on the screen
+
+ parentNode.style.position = 'absolute';
+ parentNode.style.left = '-10000px';
+ parentNode.style.top = '-10000px'; // Large font size makes even subtle changes obvious
+
+ parentNode.style.fontSize = '300px'; // Reset any font properties
+
+ parentNode.style.fontVariant = 'normal';
+ parentNode.style.fontStyle = 'normal';
+ parentNode.style.fontWeight = 'normal';
+ parentNode.style.letterSpacing = '0';
+ parentNode.appendChild(node);
+ document.body.appendChild(parentNode); // Remember width with no applied web font
+
+ var width = node.offsetWidth;
+ node.style.fontFamily = trimFontOptions(font) + ', ' + family;
+ return {
+ node: node,
+ w: width,
+ parent: parentNode
+ };
+ }
+
+ function checkLoadedFonts() {
+ var i;
+ var len = this.fonts.length;
+ var node;
+ var w;
+ var loadedCount = len;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.fonts[i].loaded) {
+ loadedCount -= 1;
+ } else if (this.fonts[i].fOrigin === 'n' || this.fonts[i].origin === 0) {
+ this.fonts[i].loaded = true;
+ } else {
+ node = this.fonts[i].monoCase.node;
+ w = this.fonts[i].monoCase.w;
+
+ if (node.offsetWidth !== w) {
+ loadedCount -= 1;
+ this.fonts[i].loaded = true;
+ } else {
+ node = this.fonts[i].sansCase.node;
+ w = this.fonts[i].sansCase.w;
+
+ if (node.offsetWidth !== w) {
+ loadedCount -= 1;
+ this.fonts[i].loaded = true;
+ }
+ }
+
+ if (this.fonts[i].loaded) {
+ this.fonts[i].sansCase.parent.parentNode.removeChild(this.fonts[i].sansCase.parent);
+ this.fonts[i].monoCase.parent.parentNode.removeChild(this.fonts[i].monoCase.parent);
+ }
+ }
+ }
+
+ if (loadedCount !== 0 && Date.now() - this.initTime < maxWaitingTime) {
+ setTimeout(this.checkLoadedFontsBinded, 20);
+ } else {
+ setTimeout(this.setIsLoadedBinded, 10);
+ }
+ }
+
+ function createHelper(fontData, def) {
+ var engine = document.body && def ? 'svg' : 'canvas';
+ var helper;
+ var fontProps = getFontProperties(fontData);
+
+ if (engine === 'svg') {
+ var tHelper = createNS('text');
+ tHelper.style.fontSize = '100px'; // tHelper.style.fontFamily = fontData.fFamily;
+
+ tHelper.setAttribute('font-family', fontData.fFamily);
+ tHelper.setAttribute('font-style', fontProps.style);
+ tHelper.setAttribute('font-weight', fontProps.weight);
+ tHelper.textContent = '1';
+
+ if (fontData.fClass) {
+ tHelper.style.fontFamily = 'inherit';
+ tHelper.setAttribute('class', fontData.fClass);
+ } else {
+ tHelper.style.fontFamily = fontData.fFamily;
+ }
+
+ def.appendChild(tHelper);
+ helper = tHelper;
+ } else {
+ var tCanvasHelper = new OffscreenCanvas(500, 500).getContext('2d');
+ tCanvasHelper.font = fontProps.style + ' ' + fontProps.weight + ' 100px ' + fontData.fFamily;
+ helper = tCanvasHelper;
+ }
+
+ function measure(text) {
+ if (engine === 'svg') {
+ helper.textContent = text;
+ return helper.getComputedTextLength();
+ }
+
+ return helper.measureText(text).width;
+ }
+
+ return {
+ measureText: measure
+ };
+ }
+
+ function addFonts(fontData, defs) {
+ if (!fontData) {
+ this.isLoaded = true;
+ return;
+ }
+
+ if (this.chars) {
+ this.isLoaded = true;
+ this.fonts = fontData.list;
+ return;
+ }
+
+ if (!document.body) {
+ this.isLoaded = true;
+ fontData.list.forEach(function (data) {
+ data.helper = createHelper(data);
+ data.cache = {};
+ });
+ this.fonts = fontData.list;
+ return;
+ }
+
+ var fontArr = fontData.list;
+ var i;
+ var len = fontArr.length;
+ var _pendingFonts = len;
+
+ for (i = 0; i < len; i += 1) {
+ var shouldLoadFont = true;
+ var loadedSelector;
+ var j;
+ fontArr[i].loaded = false;
+ fontArr[i].monoCase = setUpNode(fontArr[i].fFamily, 'monospace');
+ fontArr[i].sansCase = setUpNode(fontArr[i].fFamily, 'sans-serif');
+
+ if (!fontArr[i].fPath) {
+ fontArr[i].loaded = true;
+ _pendingFonts -= 1;
+ } else if (fontArr[i].fOrigin === 'p' || fontArr[i].origin === 3) {
+ loadedSelector = document.querySelectorAll('style[f-forigin="p"][f-family="' + fontArr[i].fFamily + '"], style[f-origin="3"][f-family="' + fontArr[i].fFamily + '"]');
+
+ if (loadedSelector.length > 0) {
+ shouldLoadFont = false;
+ }
+
+ if (shouldLoadFont) {
+ var s = createTag('style');
+ s.setAttribute('f-forigin', fontArr[i].fOrigin);
+ s.setAttribute('f-origin', fontArr[i].origin);
+ s.setAttribute('f-family', fontArr[i].fFamily);
+ s.type = 'text/css';
+ s.innerText = '@font-face {font-family: ' + fontArr[i].fFamily + "; font-style: normal; src: url('" + fontArr[i].fPath + "');}";
+ defs.appendChild(s);
+ }
+ } else if (fontArr[i].fOrigin === 'g' || fontArr[i].origin === 1) {
+ loadedSelector = document.querySelectorAll('link[f-forigin="g"], link[f-origin="1"]');
+
+ for (j = 0; j < loadedSelector.length; j += 1) {
+ if (loadedSelector[j].href.indexOf(fontArr[i].fPath) !== -1) {
+ // Font is already loaded
+ shouldLoadFont = false;
+ }
+ }
+
+ if (shouldLoadFont) {
+ var l = createTag('link');
+ l.setAttribute('f-forigin', fontArr[i].fOrigin);
+ l.setAttribute('f-origin', fontArr[i].origin);
+ l.type = 'text/css';
+ l.rel = 'stylesheet';
+ l.href = fontArr[i].fPath;
+ document.body.appendChild(l);
+ }
+ } else if (fontArr[i].fOrigin === 't' || fontArr[i].origin === 2) {
+ loadedSelector = document.querySelectorAll('script[f-forigin="t"], script[f-origin="2"]');
+
+ for (j = 0; j < loadedSelector.length; j += 1) {
+ if (fontArr[i].fPath === loadedSelector[j].src) {
+ // Font is already loaded
+ shouldLoadFont = false;
+ }
+ }
+
+ if (shouldLoadFont) {
+ var sc = createTag('link');
+ sc.setAttribute('f-forigin', fontArr[i].fOrigin);
+ sc.setAttribute('f-origin', fontArr[i].origin);
+ sc.setAttribute('rel', 'stylesheet');
+ sc.setAttribute('href', fontArr[i].fPath);
+ defs.appendChild(sc);
+ }
+ }
+
+ fontArr[i].helper = createHelper(fontArr[i], defs);
+ fontArr[i].cache = {};
+ this.fonts.push(fontArr[i]);
+ }
+
+ if (_pendingFonts === 0) {
+ this.isLoaded = true;
+ } else {
+ // On some cases even if the font is loaded, it won't load correctly when measuring text on canvas.
+ // Adding this timeout seems to fix it
+ setTimeout(this.checkLoadedFonts.bind(this), 100);
+ }
+ }
+
+ function addChars(chars) {
+ if (!chars) {
+ return;
+ }
+
+ if (!this.chars) {
+ this.chars = [];
+ }
+
+ var i;
+ var len = chars.length;
+ var j;
+ var jLen = this.chars.length;
+ var found;
+
+ for (i = 0; i < len; i += 1) {
+ j = 0;
+ found = false;
+
+ while (j < jLen) {
+ if (this.chars[j].style === chars[i].style && this.chars[j].fFamily === chars[i].fFamily && this.chars[j].ch === chars[i].ch) {
+ found = true;
+ }
+
+ j += 1;
+ }
+
+ if (!found) {
+ this.chars.push(chars[i]);
+ jLen += 1;
+ }
+ }
+ }
+
+ function getCharData(_char, style, font) {
+ var i = 0;
+ var len = this.chars.length;
+
+ while (i < len) {
+ if (this.chars[i].ch === _char && this.chars[i].style === style && this.chars[i].fFamily === font) {
+ return this.chars[i];
+ }
+
+ i += 1;
+ }
+
+ if ((typeof _char === 'string' && _char.charCodeAt(0) !== 13 || !_char) && console && console.warn // eslint-disable-line no-console
+ && !this._warned) {
+ this._warned = true;
+ console.warn('Missing character from exported characters list: ', _char, style, font); // eslint-disable-line no-console
+ }
+
+ return emptyChar;
+ }
+
+ function measureText(_char2, fontName, size) {
+ var fontData = this.getFontByName(fontName);
+
+ var index = _char2.charCodeAt(0);
+
+ if (!fontData.cache[index + 1]) {
+ var tHelper = fontData.helper;
+
+ if (_char2 === ' ') {
+ var doubleSize = tHelper.measureText('|' + _char2 + '|');
+ var singleSize = tHelper.measureText('||');
+ fontData.cache[index + 1] = (doubleSize - singleSize) / 100;
+ } else {
+ fontData.cache[index + 1] = tHelper.measureText(_char2) / 100;
+ }
+ }
+
+ return fontData.cache[index + 1] * size;
+ }
+
+ function getFontByName(name) {
+ var i = 0;
+ var len = this.fonts.length;
+
+ while (i < len) {
+ if (this.fonts[i].fName === name) {
+ return this.fonts[i];
+ }
+
+ i += 1;
+ }
+
+ return this.fonts[0];
+ }
+
+ function isModifier(firstCharCode, secondCharCode) {
+ var sum = firstCharCode.toString(16) + secondCharCode.toString(16);
+ return surrogateModifiers.indexOf(sum) !== -1;
+ }
+
+ function isZeroWidthJoiner(firstCharCode, secondCharCode) {
+ if (!secondCharCode) {
+ return firstCharCode === zeroWidthJoiner[1];
+ }
+
+ return firstCharCode === zeroWidthJoiner[0] && secondCharCode === zeroWidthJoiner[1];
+ }
+
+ function isCombinedCharacter(_char3) {
+ return combinedCharacters.indexOf(_char3) !== -1;
+ }
+
+ function setIsLoaded() {
+ this.isLoaded = true;
+ }
+
+ var Font = function Font() {
+ this.fonts = [];
+ this.chars = null;
+ this.typekitLoaded = 0;
+ this.isLoaded = false;
+ this._warned = false;
+ this.initTime = Date.now();
+ this.setIsLoadedBinded = this.setIsLoaded.bind(this);
+ this.checkLoadedFontsBinded = this.checkLoadedFonts.bind(this);
+ };
+
+ Font.isModifier = isModifier;
+ Font.isZeroWidthJoiner = isZeroWidthJoiner;
+ Font.isCombinedCharacter = isCombinedCharacter;
+ var fontPrototype = {
+ addChars: addChars,
+ addFonts: addFonts,
+ getCharData: getCharData,
+ getFontByName: getFontByName,
+ measureText: measureText,
+ checkLoadedFonts: checkLoadedFonts,
+ setIsLoaded: setIsLoaded
+ };
+ Font.prototype = fontPrototype;
+ return Font;
+ }();
+
+ function SlotManager(animationData) {
+ this.animationData = animationData;
+ }
+
+ SlotManager.prototype.getProp = function (data) {
+ if (this.animationData.slots && this.animationData.slots[data.sid]) {
+ return Object.assign(data, this.animationData.slots[data.sid].p);
+ }
+
+ return data;
+ };
+
+ function slotFactory(animationData) {
+ return new SlotManager(animationData);
+ }
+
+ function RenderableElement() {}
+
+ RenderableElement.prototype = {
+ initRenderable: function initRenderable() {
+ // layer's visibility related to inpoint and outpoint. Rename isVisible to isInRange
+ this.isInRange = false; // layer's display state
+
+ this.hidden = false; // If layer's transparency equals 0, it can be hidden
+
+ this.isTransparent = false; // list of animated components
+
+ this.renderableComponents = [];
+ },
+ addRenderableComponent: function addRenderableComponent(component) {
+ if (this.renderableComponents.indexOf(component) === -1) {
+ this.renderableComponents.push(component);
+ }
+ },
+ removeRenderableComponent: function removeRenderableComponent(component) {
+ if (this.renderableComponents.indexOf(component) !== -1) {
+ this.renderableComponents.splice(this.renderableComponents.indexOf(component), 1);
+ }
+ },
+ prepareRenderableFrame: function prepareRenderableFrame(num) {
+ this.checkLayerLimits(num);
+ },
+ checkTransparency: function checkTransparency() {
+ if (this.finalTransform.mProp.o.v <= 0) {
+ if (!this.isTransparent && this.globalData.renderConfig.hideOnTransparent) {
+ this.isTransparent = true;
+ this.hide();
+ }
+ } else if (this.isTransparent) {
+ this.isTransparent = false;
+ this.show();
+ }
+ },
+
+ /**
+ * @function
+ * Initializes frame related properties.
+ *
+ * @param {number} num
+ * current frame number in Layer's time
+ *
+ */
+ checkLayerLimits: function checkLayerLimits(num) {
+ if (this.data.ip - this.data.st <= num && this.data.op - this.data.st > num) {
+ if (this.isInRange !== true) {
+ this.globalData._mdf = true;
+ this._mdf = true;
+ this.isInRange = true;
+ this.show();
+ }
+ } else if (this.isInRange !== false) {
+ this.globalData._mdf = true;
+ this.isInRange = false;
+ this.hide();
+ }
+ },
+ renderRenderable: function renderRenderable() {
+ var i;
+ var len = this.renderableComponents.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.renderableComponents[i].renderFrame(this._isFirstFrame);
+ }
+ /* this.maskManager.renderFrame(this.finalTransform.mat);
+ this.renderableEffectsManager.renderFrame(this._isFirstFrame); */
+
+ },
+ sourceRectAtTime: function sourceRectAtTime() {
+ return {
+ top: 0,
+ left: 0,
+ width: 100,
+ height: 100
+ };
+ },
+ getLayerSize: function getLayerSize() {
+ if (this.data.ty === 5) {
+ return {
+ w: this.data.textData.width,
+ h: this.data.textData.height
+ };
+ }
+
+ return {
+ w: this.data.width,
+ h: this.data.height
+ };
+ }
+ };
+
+ var getBlendMode = function () {
+ var blendModeEnums = {
+ 0: 'source-over',
+ 1: 'multiply',
+ 2: 'screen',
+ 3: 'overlay',
+ 4: 'darken',
+ 5: 'lighten',
+ 6: 'color-dodge',
+ 7: 'color-burn',
+ 8: 'hard-light',
+ 9: 'soft-light',
+ 10: 'difference',
+ 11: 'exclusion',
+ 12: 'hue',
+ 13: 'saturation',
+ 14: 'color',
+ 15: 'luminosity'
+ };
+ return function (mode) {
+ return blendModeEnums[mode] || '';
+ };
+ }();
+
+ function SliderEffect(data, elem, container) {
+ this.p = PropertyFactory.getProp(elem, data.v, 0, 0, container);
+ }
+
+ function AngleEffect(data, elem, container) {
+ this.p = PropertyFactory.getProp(elem, data.v, 0, 0, container);
+ }
+
+ function ColorEffect(data, elem, container) {
+ this.p = PropertyFactory.getProp(elem, data.v, 1, 0, container);
+ }
+
+ function PointEffect(data, elem, container) {
+ this.p = PropertyFactory.getProp(elem, data.v, 1, 0, container);
+ }
+
+ function LayerIndexEffect(data, elem, container) {
+ this.p = PropertyFactory.getProp(elem, data.v, 0, 0, container);
+ }
+
+ function MaskIndexEffect(data, elem, container) {
+ this.p = PropertyFactory.getProp(elem, data.v, 0, 0, container);
+ }
+
+ function CheckboxEffect(data, elem, container) {
+ this.p = PropertyFactory.getProp(elem, data.v, 0, 0, container);
+ }
+
+ function NoValueEffect() {
+ this.p = {};
+ }
+
+ function EffectsManager(data, element) {
+ var effects = data.ef || [];
+ this.effectElements = [];
+ var i;
+ var len = effects.length;
+ var effectItem;
+
+ for (i = 0; i < len; i += 1) {
+ effectItem = new GroupEffect(effects[i], element);
+ this.effectElements.push(effectItem);
+ }
+ }
+
+ function GroupEffect(data, element) {
+ this.init(data, element);
+ }
+
+ extendPrototype([DynamicPropertyContainer], GroupEffect);
+ GroupEffect.prototype.getValue = GroupEffect.prototype.iterateDynamicProperties;
+
+ GroupEffect.prototype.init = function (data, element) {
+ this.data = data;
+ this.effectElements = [];
+ this.initDynamicPropertyContainer(element);
+ var i;
+ var len = this.data.ef.length;
+ var eff;
+ var effects = this.data.ef;
+
+ for (i = 0; i < len; i += 1) {
+ eff = null;
+
+ switch (effects[i].ty) {
+ case 0:
+ eff = new SliderEffect(effects[i], element, this);
+ break;
+
+ case 1:
+ eff = new AngleEffect(effects[i], element, this);
+ break;
+
+ case 2:
+ eff = new ColorEffect(effects[i], element, this);
+ break;
+
+ case 3:
+ eff = new PointEffect(effects[i], element, this);
+ break;
+
+ case 4:
+ case 7:
+ eff = new CheckboxEffect(effects[i], element, this);
+ break;
+
+ case 10:
+ eff = new LayerIndexEffect(effects[i], element, this);
+ break;
+
+ case 11:
+ eff = new MaskIndexEffect(effects[i], element, this);
+ break;
+
+ case 5:
+ eff = new EffectsManager(effects[i], element, this);
+ break;
+ // case 6:
+
+ default:
+ eff = new NoValueEffect(effects[i], element, this);
+ break;
+ }
+
+ if (eff) {
+ this.effectElements.push(eff);
+ }
+ }
+ };
+
+ function BaseElement() {}
+
+ BaseElement.prototype = {
+ checkMasks: function checkMasks() {
+ if (!this.data.hasMask) {
+ return false;
+ }
+
+ var i = 0;
+ var len = this.data.masksProperties.length;
+
+ while (i < len) {
+ if (this.data.masksProperties[i].mode !== 'n' && this.data.masksProperties[i].cl !== false) {
+ return true;
+ }
+
+ i += 1;
+ }
+
+ return false;
+ },
+ initExpressions: function initExpressions() {
+ var expressionsInterfaces = getExpressionInterfaces();
+
+ if (!expressionsInterfaces) {
+ return;
+ }
+
+ var LayerExpressionInterface = expressionsInterfaces('layer');
+ var EffectsExpressionInterface = expressionsInterfaces('effects');
+ var ShapeExpressionInterface = expressionsInterfaces('shape');
+ var TextExpressionInterface = expressionsInterfaces('text');
+ var CompExpressionInterface = expressionsInterfaces('comp');
+ this.layerInterface = LayerExpressionInterface(this);
+
+ if (this.data.hasMask && this.maskManager) {
+ this.layerInterface.registerMaskInterface(this.maskManager);
+ }
+
+ var effectsInterface = EffectsExpressionInterface.createEffectsInterface(this, this.layerInterface);
+ this.layerInterface.registerEffectsInterface(effectsInterface);
+
+ if (this.data.ty === 0 || this.data.xt) {
+ this.compInterface = CompExpressionInterface(this);
+ } else if (this.data.ty === 4) {
+ this.layerInterface.shapeInterface = ShapeExpressionInterface(this.shapesData, this.itemsData, this.layerInterface);
+ this.layerInterface.content = this.layerInterface.shapeInterface;
+ } else if (this.data.ty === 5) {
+ this.layerInterface.textInterface = TextExpressionInterface(this);
+ this.layerInterface.text = this.layerInterface.textInterface;
+ }
+ },
+ setBlendMode: function setBlendMode() {
+ var blendModeValue = getBlendMode(this.data.bm);
+ var elem = this.baseElement || this.layerElement;
+ elem.style['mix-blend-mode'] = blendModeValue;
+ },
+ initBaseData: function initBaseData(data, globalData, comp) {
+ this.globalData = globalData;
+ this.comp = comp;
+ this.data = data;
+ this.layerId = createElementID(); // Stretch factor for old animations missing this property.
+
+ if (!this.data.sr) {
+ this.data.sr = 1;
+ } // effects manager
+
+
+ this.effectsManager = new EffectsManager(this.data, this, this.dynamicProperties);
+ },
+ getType: function getType() {
+ return this.type;
+ },
+ sourceRectAtTime: function sourceRectAtTime() {}
+ };
+
+ /**
+ * @file
+ * Handles element's layer frame update.
+ * Checks layer in point and out point
+ *
+ */
+ function FrameElement() {}
+
+ FrameElement.prototype = {
+ /**
+ * @function
+ * Initializes frame related properties.
+ *
+ */
+ initFrame: function initFrame() {
+ // set to true when inpoint is rendered
+ this._isFirstFrame = false; // list of animated properties
+
+ this.dynamicProperties = []; // If layer has been modified in current tick this will be true
+
+ this._mdf = false;
+ },
+
+ /**
+ * @function
+ * Calculates all dynamic values
+ *
+ * @param {number} num
+ * current frame number in Layer's time
+ * @param {boolean} isVisible
+ * if layers is currently in range
+ *
+ */
+ prepareProperties: function prepareProperties(num, isVisible) {
+ var i;
+ var len = this.dynamicProperties.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (isVisible || this._isParent && this.dynamicProperties[i].propType === 'transform') {
+ this.dynamicProperties[i].getValue();
+
+ if (this.dynamicProperties[i]._mdf) {
+ this.globalData._mdf = true;
+ this._mdf = true;
+ }
+ }
+ }
+ },
+ addDynamicProperty: function addDynamicProperty(prop) {
+ if (this.dynamicProperties.indexOf(prop) === -1) {
+ this.dynamicProperties.push(prop);
+ }
+ }
+ };
+
+ function FootageElement(data, globalData, comp) {
+ this.initFrame();
+ this.initRenderable();
+ this.assetData = globalData.getAssetData(data.refId);
+ this.footageData = globalData.imageLoader.getAsset(this.assetData);
+ this.initBaseData(data, globalData, comp);
+ }
+
+ FootageElement.prototype.prepareFrame = function () {};
+
+ extendPrototype([RenderableElement, BaseElement, FrameElement], FootageElement);
+
+ FootageElement.prototype.getBaseElement = function () {
+ return null;
+ };
+
+ FootageElement.prototype.renderFrame = function () {};
+
+ FootageElement.prototype.destroy = function () {};
+
+ FootageElement.prototype.initExpressions = function () {
+ var expressionsInterfaces = getExpressionInterfaces();
+
+ if (!expressionsInterfaces) {
+ return;
+ }
+
+ var FootageInterface = expressionsInterfaces('footage');
+ this.layerInterface = FootageInterface(this);
+ };
+
+ FootageElement.prototype.getFootageData = function () {
+ return this.footageData;
+ };
+
+ function AudioElement(data, globalData, comp) {
+ this.initFrame();
+ this.initRenderable();
+ this.assetData = globalData.getAssetData(data.refId);
+ this.initBaseData(data, globalData, comp);
+ this._isPlaying = false;
+ this._canPlay = false;
+ var assetPath = this.globalData.getAssetsPath(this.assetData);
+ this.audio = this.globalData.audioController.createAudio(assetPath);
+ this._currentTime = 0;
+ this.globalData.audioController.addAudio(this);
+ this._volumeMultiplier = 1;
+ this._volume = 1;
+ this._previousVolume = null;
+ this.tm = data.tm ? PropertyFactory.getProp(this, data.tm, 0, globalData.frameRate, this) : {
+ _placeholder: true
+ };
+ this.lv = PropertyFactory.getProp(this, data.au && data.au.lv ? data.au.lv : {
+ k: [100]
+ }, 1, 0.01, this);
+ }
+
+ AudioElement.prototype.prepareFrame = function (num) {
+ this.prepareRenderableFrame(num, true);
+ this.prepareProperties(num, true);
+
+ if (!this.tm._placeholder) {
+ var timeRemapped = this.tm.v;
+ this._currentTime = timeRemapped;
+ } else {
+ this._currentTime = num / this.data.sr;
+ }
+
+ this._volume = this.lv.v[0];
+ var totalVolume = this._volume * this._volumeMultiplier;
+
+ if (this._previousVolume !== totalVolume) {
+ this._previousVolume = totalVolume;
+ this.audio.volume(totalVolume);
+ }
+ };
+
+ extendPrototype([RenderableElement, BaseElement, FrameElement], AudioElement);
+
+ AudioElement.prototype.renderFrame = function () {
+ if (this.isInRange && this._canPlay) {
+ if (!this._isPlaying) {
+ this.audio.play();
+ this.audio.seek(this._currentTime / this.globalData.frameRate);
+ this._isPlaying = true;
+ } else if (!this.audio.playing() || Math.abs(this._currentTime / this.globalData.frameRate - this.audio.seek()) > 0.1) {
+ this.audio.seek(this._currentTime / this.globalData.frameRate);
+ }
+ }
+ };
+
+ AudioElement.prototype.show = function () {// this.audio.play()
+ };
+
+ AudioElement.prototype.hide = function () {
+ this.audio.pause();
+ this._isPlaying = false;
+ };
+
+ AudioElement.prototype.pause = function () {
+ this.audio.pause();
+ this._isPlaying = false;
+ this._canPlay = false;
+ };
+
+ AudioElement.prototype.resume = function () {
+ this._canPlay = true;
+ };
+
+ AudioElement.prototype.setRate = function (rateValue) {
+ this.audio.rate(rateValue);
+ };
+
+ AudioElement.prototype.volume = function (volumeValue) {
+ this._volumeMultiplier = volumeValue;
+ this._previousVolume = volumeValue * this._volume;
+ this.audio.volume(this._previousVolume);
+ };
+
+ AudioElement.prototype.getBaseElement = function () {
+ return null;
+ };
+
+ AudioElement.prototype.destroy = function () {};
+
+ AudioElement.prototype.sourceRectAtTime = function () {};
+
+ AudioElement.prototype.initExpressions = function () {};
+
+ function BaseRenderer() {}
+
+ BaseRenderer.prototype.checkLayers = function (num) {
+ var i;
+ var len = this.layers.length;
+ var data;
+ this.completeLayers = true;
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ if (!this.elements[i]) {
+ data = this.layers[i];
+
+ if (data.ip - data.st <= num - this.layers[i].st && data.op - data.st > num - this.layers[i].st) {
+ this.buildItem(i);
+ }
+ }
+
+ this.completeLayers = this.elements[i] ? this.completeLayers : false;
+ }
+
+ this.checkPendingElements();
+ };
+
+ BaseRenderer.prototype.createItem = function (layer) {
+ switch (layer.ty) {
+ case 2:
+ return this.createImage(layer);
+
+ case 0:
+ return this.createComp(layer);
+
+ case 1:
+ return this.createSolid(layer);
+
+ case 3:
+ return this.createNull(layer);
+
+ case 4:
+ return this.createShape(layer);
+
+ case 5:
+ return this.createText(layer);
+
+ case 6:
+ return this.createAudio(layer);
+
+ case 13:
+ return this.createCamera(layer);
+
+ case 15:
+ return this.createFootage(layer);
+
+ default:
+ return this.createNull(layer);
+ }
+ };
+
+ BaseRenderer.prototype.createCamera = function () {
+ throw new Error('You\'re using a 3d camera. Try the html renderer.');
+ };
+
+ BaseRenderer.prototype.createAudio = function (data) {
+ return new AudioElement(data, this.globalData, this);
+ };
+
+ BaseRenderer.prototype.createFootage = function (data) {
+ return new FootageElement(data, this.globalData, this);
+ };
+
+ BaseRenderer.prototype.buildAllItems = function () {
+ var i;
+ var len = this.layers.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.buildItem(i);
+ }
+
+ this.checkPendingElements();
+ };
+
+ BaseRenderer.prototype.includeLayers = function (newLayers) {
+ this.completeLayers = false;
+ var i;
+ var len = newLayers.length;
+ var j;
+ var jLen = this.layers.length;
+
+ for (i = 0; i < len; i += 1) {
+ j = 0;
+
+ while (j < jLen) {
+ if (this.layers[j].id === newLayers[i].id) {
+ this.layers[j] = newLayers[i];
+ break;
+ }
+
+ j += 1;
+ }
+ }
+ };
+
+ BaseRenderer.prototype.setProjectInterface = function (pInterface) {
+ this.globalData.projectInterface = pInterface;
+ };
+
+ BaseRenderer.prototype.initItems = function () {
+ if (!this.globalData.progressiveLoad) {
+ this.buildAllItems();
+ }
+ };
+
+ BaseRenderer.prototype.buildElementParenting = function (element, parentName, hierarchy) {
+ var elements = this.elements;
+ var layers = this.layers;
+ var i = 0;
+ var len = layers.length;
+
+ while (i < len) {
+ if (layers[i].ind == parentName) {
+ // eslint-disable-line eqeqeq
+ if (!elements[i] || elements[i] === true) {
+ this.buildItem(i);
+ this.addPendingElement(element);
+ } else {
+ hierarchy.push(elements[i]);
+ elements[i].setAsParent();
+
+ if (layers[i].parent !== undefined) {
+ this.buildElementParenting(element, layers[i].parent, hierarchy);
+ } else {
+ element.setHierarchy(hierarchy);
+ }
+ }
+ }
+
+ i += 1;
+ }
+ };
+
+ BaseRenderer.prototype.addPendingElement = function (element) {
+ this.pendingElements.push(element);
+ };
+
+ BaseRenderer.prototype.searchExtraCompositions = function (assets) {
+ var i;
+ var len = assets.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (assets[i].xt) {
+ var comp = this.createComp(assets[i]);
+ comp.initExpressions();
+ this.globalData.projectInterface.registerComposition(comp);
+ }
+ }
+ };
+
+ BaseRenderer.prototype.getElementById = function (ind) {
+ var i;
+ var len = this.elements.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.elements[i].data.ind === ind) {
+ return this.elements[i];
+ }
+ }
+
+ return null;
+ };
+
+ BaseRenderer.prototype.getElementByPath = function (path) {
+ var pathValue = path.shift();
+ var element;
+
+ if (typeof pathValue === 'number') {
+ element = this.elements[pathValue];
+ } else {
+ var i;
+ var len = this.elements.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.elements[i].data.nm === pathValue) {
+ element = this.elements[i];
+ break;
+ }
+ }
+ }
+
+ if (path.length === 0) {
+ return element;
+ }
+
+ return element.getElementByPath(path);
+ };
+
+ BaseRenderer.prototype.setupGlobalData = function (animData, fontsContainer) {
+ this.globalData.fontManager = new FontManager();
+ this.globalData.slotManager = slotFactory(animData);
+ this.globalData.fontManager.addChars(animData.chars);
+ this.globalData.fontManager.addFonts(animData.fonts, fontsContainer);
+ this.globalData.getAssetData = this.animationItem.getAssetData.bind(this.animationItem);
+ this.globalData.getAssetsPath = this.animationItem.getAssetsPath.bind(this.animationItem);
+ this.globalData.imageLoader = this.animationItem.imagePreloader;
+ this.globalData.audioController = this.animationItem.audioController;
+ this.globalData.frameId = 0;
+ this.globalData.frameRate = animData.fr;
+ this.globalData.nm = animData.nm;
+ this.globalData.compSize = {
+ w: animData.w,
+ h: animData.h
+ };
+ };
+
+ var effectTypes = {
+ TRANSFORM_EFFECT: 'transformEFfect'
+ };
+
+ function TransformElement() {}
+
+ TransformElement.prototype = {
+ initTransform: function initTransform() {
+ var mat = new Matrix();
+ this.finalTransform = {
+ mProp: this.data.ks ? TransformPropertyFactory.getTransformProperty(this, this.data.ks, this) : {
+ o: 0
+ },
+ _matMdf: false,
+ _localMatMdf: false,
+ _opMdf: false,
+ mat: mat,
+ localMat: mat,
+ localOpacity: 1
+ };
+
+ if (this.data.ao) {
+ this.finalTransform.mProp.autoOriented = true;
+ } // TODO: check TYPE 11: Guided elements
+
+
+ if (this.data.ty !== 11) {// this.createElements();
+ }
+ },
+ renderTransform: function renderTransform() {
+ this.finalTransform._opMdf = this.finalTransform.mProp.o._mdf || this._isFirstFrame;
+ this.finalTransform._matMdf = this.finalTransform.mProp._mdf || this._isFirstFrame;
+
+ if (this.hierarchy) {
+ var mat;
+ var finalMat = this.finalTransform.mat;
+ var i = 0;
+ var len = this.hierarchy.length; // Checking if any of the transformation matrices in the hierarchy chain has changed.
+
+ if (!this.finalTransform._matMdf) {
+ while (i < len) {
+ if (this.hierarchy[i].finalTransform.mProp._mdf) {
+ this.finalTransform._matMdf = true;
+ break;
+ }
+
+ i += 1;
+ }
+ }
+
+ if (this.finalTransform._matMdf) {
+ mat = this.finalTransform.mProp.v.props;
+ finalMat.cloneFromProps(mat);
+
+ for (i = 0; i < len; i += 1) {
+ finalMat.multiply(this.hierarchy[i].finalTransform.mProp.v);
+ }
+ }
+ }
+
+ if (this.finalTransform._matMdf) {
+ this.finalTransform._localMatMdf = this.finalTransform._matMdf;
+ }
+
+ if (this.finalTransform._opMdf) {
+ this.finalTransform.localOpacity = this.finalTransform.mProp.o.v;
+ }
+ },
+ renderLocalTransform: function renderLocalTransform() {
+ if (this.localTransforms) {
+ var i = 0;
+ var len = this.localTransforms.length;
+ this.finalTransform._localMatMdf = this.finalTransform._matMdf;
+
+ if (!this.finalTransform._localMatMdf || !this.finalTransform._opMdf) {
+ while (i < len) {
+ if (this.localTransforms[i]._mdf) {
+ this.finalTransform._localMatMdf = true;
+ }
+
+ if (this.localTransforms[i]._opMdf) {
+ this.finalTransform._opMdf = true;
+ }
+
+ i += 1;
+ }
+ }
+
+ if (this.finalTransform._localMatMdf) {
+ var localMat = this.finalTransform.localMat;
+ this.localTransforms[0].matrix.clone(localMat);
+
+ for (i = 1; i < len; i += 1) {
+ var lmat = this.localTransforms[i].matrix;
+ localMat.multiply(lmat);
+ }
+
+ localMat.multiply(this.finalTransform.mat);
+ }
+
+ if (this.finalTransform._opMdf) {
+ var localOp = this.finalTransform.localOpacity;
+
+ for (i = 0; i < len; i += 1) {
+ localOp *= this.localTransforms[i].opacity * 0.01;
+ }
+
+ this.finalTransform.localOpacity = localOp;
+ }
+ }
+ },
+ searchEffectTransforms: function searchEffectTransforms() {
+ if (this.renderableEffectsManager) {
+ var transformEffects = this.renderableEffectsManager.getEffects(effectTypes.TRANSFORM_EFFECT);
+
+ if (transformEffects.length) {
+ this.localTransforms = [];
+ this.finalTransform.localMat = new Matrix();
+ var i = 0;
+ var len = transformEffects.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.localTransforms.push(transformEffects[i]);
+ }
+ }
+ }
+ },
+ globalToLocal: function globalToLocal(pt) {
+ var transforms = [];
+ transforms.push(this.finalTransform);
+ var flag = true;
+ var comp = this.comp;
+
+ while (flag) {
+ if (comp.finalTransform) {
+ if (comp.data.hasMask) {
+ transforms.splice(0, 0, comp.finalTransform);
+ }
+
+ comp = comp.comp;
+ } else {
+ flag = false;
+ }
+ }
+
+ var i;
+ var len = transforms.length;
+ var ptNew;
+
+ for (i = 0; i < len; i += 1) {
+ ptNew = transforms[i].mat.applyToPointArray(0, 0, 0); // ptNew = transforms[i].mat.applyToPointArray(pt[0],pt[1],pt[2]);
+
+ pt = [pt[0] - ptNew[0], pt[1] - ptNew[1], 0];
+ }
+
+ return pt;
+ },
+ mHelper: new Matrix()
+ };
+
+ function MaskElement(data, element, globalData) {
+ this.data = data;
+ this.element = element;
+ this.globalData = globalData;
+ this.storedData = [];
+ this.masksProperties = this.data.masksProperties || [];
+ this.maskElement = null;
+ var defs = this.globalData.defs;
+ var i;
+ var len = this.masksProperties ? this.masksProperties.length : 0;
+ this.viewData = createSizedArray(len);
+ this.solidPath = '';
+ var path;
+ var properties = this.masksProperties;
+ var count = 0;
+ var currentMasks = [];
+ var j;
+ var jLen;
+ var layerId = createElementID();
+ var rect;
+ var expansor;
+ var feMorph;
+ var x;
+ var maskType = 'clipPath';
+ var maskRef = 'clip-path';
+
+ for (i = 0; i < len; i += 1) {
+ if (properties[i].mode !== 'a' && properties[i].mode !== 'n' || properties[i].inv || properties[i].o.k !== 100 || properties[i].o.x) {
+ maskType = 'mask';
+ maskRef = 'mask';
+ }
+
+ if ((properties[i].mode === 's' || properties[i].mode === 'i') && count === 0) {
+ rect = createNS('rect');
+ rect.setAttribute('fill', '#ffffff');
+ rect.setAttribute('width', this.element.comp.data.w || 0);
+ rect.setAttribute('height', this.element.comp.data.h || 0);
+ currentMasks.push(rect);
+ } else {
+ rect = null;
+ }
+
+ path = createNS('path');
+
+ if (properties[i].mode === 'n') {
+ // TODO move this to a factory or to a constructor
+ this.viewData[i] = {
+ op: PropertyFactory.getProp(this.element, properties[i].o, 0, 0.01, this.element),
+ prop: ShapePropertyFactory.getShapeProp(this.element, properties[i], 3),
+ elem: path,
+ lastPath: ''
+ };
+ defs.appendChild(path);
+ } else {
+ count += 1;
+ path.setAttribute('fill', properties[i].mode === 's' ? '#000000' : '#ffffff');
+ path.setAttribute('clip-rule', 'nonzero');
+ var filterID;
+
+ if (properties[i].x.k !== 0) {
+ maskType = 'mask';
+ maskRef = 'mask';
+ x = PropertyFactory.getProp(this.element, properties[i].x, 0, null, this.element);
+ filterID = createElementID();
+ expansor = createNS('filter');
+ expansor.setAttribute('id', filterID);
+ feMorph = createNS('feMorphology');
+ feMorph.setAttribute('operator', 'erode');
+ feMorph.setAttribute('in', 'SourceGraphic');
+ feMorph.setAttribute('radius', '0');
+ expansor.appendChild(feMorph);
+ defs.appendChild(expansor);
+ path.setAttribute('stroke', properties[i].mode === 's' ? '#000000' : '#ffffff');
+ } else {
+ feMorph = null;
+ x = null;
+ } // TODO move this to a factory or to a constructor
+
+
+ this.storedData[i] = {
+ elem: path,
+ x: x,
+ expan: feMorph,
+ lastPath: '',
+ lastOperator: '',
+ filterId: filterID,
+ lastRadius: 0
+ };
+
+ if (properties[i].mode === 'i') {
+ jLen = currentMasks.length;
+ var g = createNS('g');
+
+ for (j = 0; j < jLen; j += 1) {
+ g.appendChild(currentMasks[j]);
+ }
+
+ var mask = createNS('mask');
+ mask.setAttribute('mask-type', 'alpha');
+ mask.setAttribute('id', layerId + '_' + count);
+ mask.appendChild(path);
+ defs.appendChild(mask);
+ g.setAttribute('mask', 'url(' + getLocationHref() + '#' + layerId + '_' + count + ')');
+ currentMasks.length = 0;
+ currentMasks.push(g);
+ } else {
+ currentMasks.push(path);
+ }
+
+ if (properties[i].inv && !this.solidPath) {
+ this.solidPath = this.createLayerSolidPath();
+ } // TODO move this to a factory or to a constructor
+
+
+ this.viewData[i] = {
+ elem: path,
+ lastPath: '',
+ op: PropertyFactory.getProp(this.element, properties[i].o, 0, 0.01, this.element),
+ prop: ShapePropertyFactory.getShapeProp(this.element, properties[i], 3),
+ invRect: rect
+ };
+
+ if (!this.viewData[i].prop.k) {
+ this.drawPath(properties[i], this.viewData[i].prop.v, this.viewData[i]);
+ }
+ }
+ }
+
+ this.maskElement = createNS(maskType);
+ len = currentMasks.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.maskElement.appendChild(currentMasks[i]);
+ }
+
+ if (count > 0) {
+ this.maskElement.setAttribute('id', layerId);
+ this.element.maskedElement.setAttribute(maskRef, 'url(' + getLocationHref() + '#' + layerId + ')');
+ defs.appendChild(this.maskElement);
+ }
+
+ if (this.viewData.length) {
+ this.element.addRenderableComponent(this);
+ }
+ }
+
+ MaskElement.prototype.getMaskProperty = function (pos) {
+ return this.viewData[pos].prop;
+ };
+
+ MaskElement.prototype.renderFrame = function (isFirstFrame) {
+ var finalMat = this.element.finalTransform.mat;
+ var i;
+ var len = this.masksProperties.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.viewData[i].prop._mdf || isFirstFrame) {
+ this.drawPath(this.masksProperties[i], this.viewData[i].prop.v, this.viewData[i]);
+ }
+
+ if (this.viewData[i].op._mdf || isFirstFrame) {
+ this.viewData[i].elem.setAttribute('fill-opacity', this.viewData[i].op.v);
+ }
+
+ if (this.masksProperties[i].mode !== 'n') {
+ if (this.viewData[i].invRect && (this.element.finalTransform.mProp._mdf || isFirstFrame)) {
+ this.viewData[i].invRect.setAttribute('transform', finalMat.getInverseMatrix().to2dCSS());
+ }
+
+ if (this.storedData[i].x && (this.storedData[i].x._mdf || isFirstFrame)) {
+ var feMorph = this.storedData[i].expan;
+
+ if (this.storedData[i].x.v < 0) {
+ if (this.storedData[i].lastOperator !== 'erode') {
+ this.storedData[i].lastOperator = 'erode';
+ this.storedData[i].elem.setAttribute('filter', 'url(' + getLocationHref() + '#' + this.storedData[i].filterId + ')');
+ }
+
+ feMorph.setAttribute('radius', -this.storedData[i].x.v);
+ } else {
+ if (this.storedData[i].lastOperator !== 'dilate') {
+ this.storedData[i].lastOperator = 'dilate';
+ this.storedData[i].elem.setAttribute('filter', null);
+ }
+
+ this.storedData[i].elem.setAttribute('stroke-width', this.storedData[i].x.v * 2);
+ }
+ }
+ }
+ }
+ };
+
+ MaskElement.prototype.getMaskelement = function () {
+ return this.maskElement;
+ };
+
+ MaskElement.prototype.createLayerSolidPath = function () {
+ var path = 'M0,0 ';
+ path += ' h' + this.globalData.compSize.w;
+ path += ' v' + this.globalData.compSize.h;
+ path += ' h-' + this.globalData.compSize.w;
+ path += ' v-' + this.globalData.compSize.h + ' ';
+ return path;
+ };
+
+ MaskElement.prototype.drawPath = function (pathData, pathNodes, viewData) {
+ var pathString = ' M' + pathNodes.v[0][0] + ',' + pathNodes.v[0][1];
+ var i;
+ var len;
+ len = pathNodes._length;
+
+ for (i = 1; i < len; i += 1) {
+ // pathString += " C"+pathNodes.o[i-1][0]+','+pathNodes.o[i-1][1] + " "+pathNodes.i[i][0]+','+pathNodes.i[i][1] + " "+pathNodes.v[i][0]+','+pathNodes.v[i][1];
+ pathString += ' C' + pathNodes.o[i - 1][0] + ',' + pathNodes.o[i - 1][1] + ' ' + pathNodes.i[i][0] + ',' + pathNodes.i[i][1] + ' ' + pathNodes.v[i][0] + ',' + pathNodes.v[i][1];
+ } // pathString += " C"+pathNodes.o[i-1][0]+','+pathNodes.o[i-1][1] + " "+pathNodes.i[0][0]+','+pathNodes.i[0][1] + " "+pathNodes.v[0][0]+','+pathNodes.v[0][1];
+
+
+ if (pathNodes.c && len > 1) {
+ pathString += ' C' + pathNodes.o[i - 1][0] + ',' + pathNodes.o[i - 1][1] + ' ' + pathNodes.i[0][0] + ',' + pathNodes.i[0][1] + ' ' + pathNodes.v[0][0] + ',' + pathNodes.v[0][1];
+ } // pathNodes.__renderedString = pathString;
+
+
+ if (viewData.lastPath !== pathString) {
+ var pathShapeValue = '';
+
+ if (viewData.elem) {
+ if (pathNodes.c) {
+ pathShapeValue = pathData.inv ? this.solidPath + pathString : pathString;
+ }
+
+ viewData.elem.setAttribute('d', pathShapeValue);
+ }
+
+ viewData.lastPath = pathString;
+ }
+ };
+
+ MaskElement.prototype.destroy = function () {
+ this.element = null;
+ this.globalData = null;
+ this.maskElement = null;
+ this.data = null;
+ this.masksProperties = null;
+ };
+
+ var filtersFactory = function () {
+ var ob = {};
+ ob.createFilter = createFilter;
+ ob.createAlphaToLuminanceFilter = createAlphaToLuminanceFilter;
+
+ function createFilter(filId, skipCoordinates) {
+ var fil = createNS('filter');
+ fil.setAttribute('id', filId);
+
+ if (skipCoordinates !== true) {
+ fil.setAttribute('filterUnits', 'objectBoundingBox');
+ fil.setAttribute('x', '0%');
+ fil.setAttribute('y', '0%');
+ fil.setAttribute('width', '100%');
+ fil.setAttribute('height', '100%');
+ }
+
+ return fil;
+ }
+
+ function createAlphaToLuminanceFilter() {
+ var feColorMatrix = createNS('feColorMatrix');
+ feColorMatrix.setAttribute('type', 'matrix');
+ feColorMatrix.setAttribute('color-interpolation-filters', 'sRGB');
+ feColorMatrix.setAttribute('values', '0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1');
+ return feColorMatrix;
+ }
+
+ return ob;
+ }();
+
+ var featureSupport = function () {
+ var ob = {
+ maskType: true,
+ svgLumaHidden: true,
+ offscreenCanvas: typeof OffscreenCanvas !== 'undefined'
+ };
+
+ if (/MSIE 10/i.test(navigator.userAgent) || /MSIE 9/i.test(navigator.userAgent) || /rv:11.0/i.test(navigator.userAgent) || /Edge\/\d./i.test(navigator.userAgent)) {
+ ob.maskType = false;
+ }
+
+ if (/firefox/i.test(navigator.userAgent)) {
+ ob.svgLumaHidden = false;
+ }
+
+ return ob;
+ }();
+
+ var registeredEffects$1 = {};
+ var idPrefix = 'filter_result_';
+
+ function SVGEffects(elem) {
+ var i;
+ var source = 'SourceGraphic';
+ var len = elem.data.ef ? elem.data.ef.length : 0;
+ var filId = createElementID();
+ var fil = filtersFactory.createFilter(filId, true);
+ var count = 0;
+ this.filters = [];
+ var filterManager;
+
+ for (i = 0; i < len; i += 1) {
+ filterManager = null;
+ var type = elem.data.ef[i].ty;
+
+ if (registeredEffects$1[type]) {
+ var Effect = registeredEffects$1[type].effect;
+ filterManager = new Effect(fil, elem.effectsManager.effectElements[i], elem, idPrefix + count, source);
+ source = idPrefix + count;
+
+ if (registeredEffects$1[type].countsAsEffect) {
+ count += 1;
+ }
+ }
+
+ if (filterManager) {
+ this.filters.push(filterManager);
+ }
+ }
+
+ if (count) {
+ elem.globalData.defs.appendChild(fil);
+ elem.layerElement.setAttribute('filter', 'url(' + getLocationHref() + '#' + filId + ')');
+ }
+
+ if (this.filters.length) {
+ elem.addRenderableComponent(this);
+ }
+ }
+
+ SVGEffects.prototype.renderFrame = function (_isFirstFrame) {
+ var i;
+ var len = this.filters.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.filters[i].renderFrame(_isFirstFrame);
+ }
+ };
+
+ SVGEffects.prototype.getEffects = function (type) {
+ var i;
+ var len = this.filters.length;
+ var effects = [];
+
+ for (i = 0; i < len; i += 1) {
+ if (this.filters[i].type === type) {
+ effects.push(this.filters[i]);
+ }
+ }
+
+ return effects;
+ };
+
+ function registerEffect$1(id, effect, countsAsEffect) {
+ registeredEffects$1[id] = {
+ effect: effect,
+ countsAsEffect: countsAsEffect
+ };
+ }
+
+ function SVGBaseElement() {}
+
+ SVGBaseElement.prototype = {
+ initRendererElement: function initRendererElement() {
+ this.layerElement = createNS('g');
+ },
+ createContainerElements: function createContainerElements() {
+ this.matteElement = createNS('g');
+ this.transformedElement = this.layerElement;
+ this.maskedElement = this.layerElement;
+ this._sizeChanged = false;
+ var layerElementParent = null; // If this layer acts as a mask for the following layer
+
+ if (this.data.td) {
+ this.matteMasks = {};
+ var gg = createNS('g');
+ gg.setAttribute('id', this.layerId);
+ gg.appendChild(this.layerElement);
+ layerElementParent = gg;
+ this.globalData.defs.appendChild(gg);
+ } else if (this.data.tt) {
+ this.matteElement.appendChild(this.layerElement);
+ layerElementParent = this.matteElement;
+ this.baseElement = this.matteElement;
+ } else {
+ this.baseElement = this.layerElement;
+ }
+
+ if (this.data.ln) {
+ this.layerElement.setAttribute('id', this.data.ln);
+ }
+
+ if (this.data.cl) {
+ this.layerElement.setAttribute('class', this.data.cl);
+ } // Clipping compositions to hide content that exceeds boundaries. If collapsed transformations is on, component should not be clipped
+
+
+ if (this.data.ty === 0 && !this.data.hd) {
+ var cp = createNS('clipPath');
+ var pt = createNS('path');
+ pt.setAttribute('d', 'M0,0 L' + this.data.w + ',0 L' + this.data.w + ',' + this.data.h + ' L0,' + this.data.h + 'z');
+ var clipId = createElementID();
+ cp.setAttribute('id', clipId);
+ cp.appendChild(pt);
+ this.globalData.defs.appendChild(cp);
+
+ if (this.checkMasks()) {
+ var cpGroup = createNS('g');
+ cpGroup.setAttribute('clip-path', 'url(' + getLocationHref() + '#' + clipId + ')');
+ cpGroup.appendChild(this.layerElement);
+ this.transformedElement = cpGroup;
+
+ if (layerElementParent) {
+ layerElementParent.appendChild(this.transformedElement);
+ } else {
+ this.baseElement = this.transformedElement;
+ }
+ } else {
+ this.layerElement.setAttribute('clip-path', 'url(' + getLocationHref() + '#' + clipId + ')');
+ }
+ }
+
+ if (this.data.bm !== 0) {
+ this.setBlendMode();
+ }
+ },
+ renderElement: function renderElement() {
+ if (this.finalTransform._localMatMdf) {
+ this.transformedElement.setAttribute('transform', this.finalTransform.localMat.to2dCSS());
+ }
+
+ if (this.finalTransform._opMdf) {
+ this.transformedElement.setAttribute('opacity', this.finalTransform.localOpacity);
+ }
+ },
+ destroyBaseElement: function destroyBaseElement() {
+ this.layerElement = null;
+ this.matteElement = null;
+ this.maskManager.destroy();
+ },
+ getBaseElement: function getBaseElement() {
+ if (this.data.hd) {
+ return null;
+ }
+
+ return this.baseElement;
+ },
+ createRenderableComponents: function createRenderableComponents() {
+ this.maskManager = new MaskElement(this.data, this, this.globalData);
+ this.renderableEffectsManager = new SVGEffects(this);
+ this.searchEffectTransforms();
+ },
+ getMatte: function getMatte(matteType) {
+ // This should not be a common case. But for backward compatibility, we'll create the matte object.
+ // It solves animations that have two consecutive layers marked as matte masks.
+ // Which is an undefined behavior in AE.
+ if (!this.matteMasks) {
+ this.matteMasks = {};
+ }
+
+ if (!this.matteMasks[matteType]) {
+ var id = this.layerId + '_' + matteType;
+ var filId;
+ var fil;
+ var useElement;
+ var gg;
+
+ if (matteType === 1 || matteType === 3) {
+ var masker = createNS('mask');
+ masker.setAttribute('id', id);
+ masker.setAttribute('mask-type', matteType === 3 ? 'luminance' : 'alpha');
+ useElement = createNS('use');
+ useElement.setAttributeNS('http://www.w3.org/1999/xlink', 'href', '#' + this.layerId);
+ masker.appendChild(useElement);
+ this.globalData.defs.appendChild(masker);
+
+ if (!featureSupport.maskType && matteType === 1) {
+ masker.setAttribute('mask-type', 'luminance');
+ filId = createElementID();
+ fil = filtersFactory.createFilter(filId);
+ this.globalData.defs.appendChild(fil);
+ fil.appendChild(filtersFactory.createAlphaToLuminanceFilter());
+ gg = createNS('g');
+ gg.appendChild(useElement);
+ masker.appendChild(gg);
+ gg.setAttribute('filter', 'url(' + getLocationHref() + '#' + filId + ')');
+ }
+ } else if (matteType === 2) {
+ var maskGroup = createNS('mask');
+ maskGroup.setAttribute('id', id);
+ maskGroup.setAttribute('mask-type', 'alpha');
+ var maskGrouper = createNS('g');
+ maskGroup.appendChild(maskGrouper);
+ filId = createElementID();
+ fil = filtersFactory.createFilter(filId); /// /
+
+ var feCTr = createNS('feComponentTransfer');
+ feCTr.setAttribute('in', 'SourceGraphic');
+ fil.appendChild(feCTr);
+ var feFunc = createNS('feFuncA');
+ feFunc.setAttribute('type', 'table');
+ feFunc.setAttribute('tableValues', '1.0 0.0');
+ feCTr.appendChild(feFunc); /// /
+
+ this.globalData.defs.appendChild(fil);
+ var alphaRect = createNS('rect');
+ alphaRect.setAttribute('width', this.comp.data.w);
+ alphaRect.setAttribute('height', this.comp.data.h);
+ alphaRect.setAttribute('x', '0');
+ alphaRect.setAttribute('y', '0');
+ alphaRect.setAttribute('fill', '#ffffff');
+ alphaRect.setAttribute('opacity', '0');
+ maskGrouper.setAttribute('filter', 'url(' + getLocationHref() + '#' + filId + ')');
+ maskGrouper.appendChild(alphaRect);
+ useElement = createNS('use');
+ useElement.setAttributeNS('http://www.w3.org/1999/xlink', 'href', '#' + this.layerId);
+ maskGrouper.appendChild(useElement);
+
+ if (!featureSupport.maskType) {
+ maskGroup.setAttribute('mask-type', 'luminance');
+ fil.appendChild(filtersFactory.createAlphaToLuminanceFilter());
+ gg = createNS('g');
+ maskGrouper.appendChild(alphaRect);
+ gg.appendChild(this.layerElement);
+ maskGrouper.appendChild(gg);
+ }
+
+ this.globalData.defs.appendChild(maskGroup);
+ }
+
+ this.matteMasks[matteType] = id;
+ }
+
+ return this.matteMasks[matteType];
+ },
+ setMatte: function setMatte(id) {
+ if (!this.matteElement) {
+ return;
+ }
+
+ this.matteElement.setAttribute('mask', 'url(' + getLocationHref() + '#' + id + ')');
+ }
+ };
+
+ /**
+ * @file
+ * Handles AE's layer parenting property.
+ *
+ */
+ function HierarchyElement() {}
+
+ HierarchyElement.prototype = {
+ /**
+ * @function
+ * Initializes hierarchy properties
+ *
+ */
+ initHierarchy: function initHierarchy() {
+ // element's parent list
+ this.hierarchy = []; // if element is parent of another layer _isParent will be true
+
+ this._isParent = false;
+ this.checkParenting();
+ },
+
+ /**
+ * @function
+ * Sets layer's hierarchy.
+ * @param {array} hierarch
+ * layer's parent list
+ *
+ */
+ setHierarchy: function setHierarchy(hierarchy) {
+ this.hierarchy = hierarchy;
+ },
+
+ /**
+ * @function
+ * Sets layer as parent.
+ *
+ */
+ setAsParent: function setAsParent() {
+ this._isParent = true;
+ },
+
+ /**
+ * @function
+ * Searches layer's parenting chain
+ *
+ */
+ checkParenting: function checkParenting() {
+ if (this.data.parent !== undefined) {
+ this.comp.buildElementParenting(this, this.data.parent, []);
+ }
+ }
+ };
+
+ function RenderableDOMElement() {}
+
+ (function () {
+ var _prototype = {
+ initElement: function initElement(data, globalData, comp) {
+ this.initFrame();
+ this.initBaseData(data, globalData, comp);
+ this.initTransform(data, globalData, comp);
+ this.initHierarchy();
+ this.initRenderable();
+ this.initRendererElement();
+ this.createContainerElements();
+ this.createRenderableComponents();
+ this.createContent();
+ this.hide();
+ },
+ hide: function hide() {
+ // console.log('HIDE', this);
+ if (!this.hidden && (!this.isInRange || this.isTransparent)) {
+ var elem = this.baseElement || this.layerElement;
+ elem.style.display = 'none';
+ this.hidden = true;
+ }
+ },
+ show: function show() {
+ // console.log('SHOW', this);
+ if (this.isInRange && !this.isTransparent) {
+ if (!this.data.hd) {
+ var elem = this.baseElement || this.layerElement;
+ elem.style.display = 'block';
+ }
+
+ this.hidden = false;
+ this._isFirstFrame = true;
+ }
+ },
+ renderFrame: function renderFrame() {
+ // If it is exported as hidden (data.hd === true) no need to render
+ // If it is not visible no need to render
+ if (this.data.hd || this.hidden) {
+ return;
+ }
+
+ this.renderTransform();
+ this.renderRenderable();
+ this.renderLocalTransform();
+ this.renderElement();
+ this.renderInnerContent();
+
+ if (this._isFirstFrame) {
+ this._isFirstFrame = false;
+ }
+ },
+ renderInnerContent: function renderInnerContent() {},
+ prepareFrame: function prepareFrame(num) {
+ this._mdf = false;
+ this.prepareRenderableFrame(num);
+ this.prepareProperties(num, this.isInRange);
+ this.checkTransparency();
+ },
+ destroy: function destroy() {
+ this.innerElem = null;
+ this.destroyBaseElement();
+ }
+ };
+ extendPrototype([RenderableElement, createProxyFunction(_prototype)], RenderableDOMElement);
+ })();
+
+ function IImageElement(data, globalData, comp) {
+ this.assetData = globalData.getAssetData(data.refId);
+
+ if (this.assetData && this.assetData.sid) {
+ this.assetData = globalData.slotManager.getProp(this.assetData);
+ }
+
+ this.initElement(data, globalData, comp);
+ this.sourceRect = {
+ top: 0,
+ left: 0,
+ width: this.assetData.w,
+ height: this.assetData.h
+ };
+ }
+
+ extendPrototype([BaseElement, TransformElement, SVGBaseElement, HierarchyElement, FrameElement, RenderableDOMElement], IImageElement);
+
+ IImageElement.prototype.createContent = function () {
+ var assetPath = this.globalData.getAssetsPath(this.assetData);
+ this.innerElem = createNS('image');
+ this.innerElem.setAttribute('width', this.assetData.w + 'px');
+ this.innerElem.setAttribute('height', this.assetData.h + 'px');
+ this.innerElem.setAttribute('preserveAspectRatio', this.assetData.pr || this.globalData.renderConfig.imagePreserveAspectRatio);
+ this.innerElem.setAttributeNS('http://www.w3.org/1999/xlink', 'href', assetPath);
+ this.layerElement.appendChild(this.innerElem);
+ };
+
+ IImageElement.prototype.sourceRectAtTime = function () {
+ return this.sourceRect;
+ };
+
+ function ProcessedElement(element, position) {
+ this.elem = element;
+ this.pos = position;
+ }
+
+ function IShapeElement() {}
+
+ IShapeElement.prototype = {
+ addShapeToModifiers: function addShapeToModifiers(data) {
+ var i;
+ var len = this.shapeModifiers.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.shapeModifiers[i].addShape(data);
+ }
+ },
+ isShapeInAnimatedModifiers: function isShapeInAnimatedModifiers(data) {
+ var i = 0;
+ var len = this.shapeModifiers.length;
+
+ while (i < len) {
+ if (this.shapeModifiers[i].isAnimatedWithShape(data)) {
+ return true;
+ }
+ }
+
+ return false;
+ },
+ renderModifiers: function renderModifiers() {
+ if (!this.shapeModifiers.length) {
+ return;
+ }
+
+ var i;
+ var len = this.shapes.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.shapes[i].sh.reset();
+ }
+
+ len = this.shapeModifiers.length;
+ var shouldBreakProcess;
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ shouldBreakProcess = this.shapeModifiers[i].processShapes(this._isFirstFrame); // workaround to fix cases where a repeater resets the shape so the following processes get called twice
+ // TODO: find a better solution for this
+
+ if (shouldBreakProcess) {
+ break;
+ }
+ }
+ },
+ searchProcessedElement: function searchProcessedElement(elem) {
+ var elements = this.processedElements;
+ var i = 0;
+ var len = elements.length;
+
+ while (i < len) {
+ if (elements[i].elem === elem) {
+ return elements[i].pos;
+ }
+
+ i += 1;
+ }
+
+ return 0;
+ },
+ addProcessedElement: function addProcessedElement(elem, pos) {
+ var elements = this.processedElements;
+ var i = elements.length;
+
+ while (i) {
+ i -= 1;
+
+ if (elements[i].elem === elem) {
+ elements[i].pos = pos;
+ return;
+ }
+ }
+
+ elements.push(new ProcessedElement(elem, pos));
+ },
+ prepareFrame: function prepareFrame(num) {
+ this.prepareRenderableFrame(num);
+ this.prepareProperties(num, this.isInRange);
+ }
+ };
+
+ var lineCapEnum = {
+ 1: 'butt',
+ 2: 'round',
+ 3: 'square'
+ };
+ var lineJoinEnum = {
+ 1: 'miter',
+ 2: 'round',
+ 3: 'bevel'
+ };
+
+ function SVGShapeData(transformers, level, shape) {
+ this.caches = [];
+ this.styles = [];
+ this.transformers = transformers;
+ this.lStr = '';
+ this.sh = shape;
+ this.lvl = level; // TODO find if there are some cases where _isAnimated can be false.
+ // For now, since shapes add up with other shapes. They have to be calculated every time.
+ // One way of finding out is checking if all styles associated to this shape depend only of this shape
+
+ this._isAnimated = !!shape.k; // TODO: commenting this for now since all shapes are animated
+
+ var i = 0;
+ var len = transformers.length;
+
+ while (i < len) {
+ if (transformers[i].mProps.dynamicProperties.length) {
+ this._isAnimated = true;
+ break;
+ }
+
+ i += 1;
+ }
+ }
+
+ SVGShapeData.prototype.setAsAnimated = function () {
+ this._isAnimated = true;
+ };
+
+ function SVGStyleData(data, level) {
+ this.data = data;
+ this.type = data.ty;
+ this.d = '';
+ this.lvl = level;
+ this._mdf = false;
+ this.closed = data.hd === true;
+ this.pElem = createNS('path');
+ this.msElem = null;
+ }
+
+ SVGStyleData.prototype.reset = function () {
+ this.d = '';
+ this._mdf = false;
+ };
+
+ function DashProperty(elem, data, renderer, container) {
+ this.elem = elem;
+ this.frameId = -1;
+ this.dataProps = createSizedArray(data.length);
+ this.renderer = renderer;
+ this.k = false;
+ this.dashStr = '';
+ this.dashArray = createTypedArray('float32', data.length ? data.length - 1 : 0);
+ this.dashoffset = createTypedArray('float32', 1);
+ this.initDynamicPropertyContainer(container);
+ var i;
+ var len = data.length || 0;
+ var prop;
+
+ for (i = 0; i < len; i += 1) {
+ prop = PropertyFactory.getProp(elem, data[i].v, 0, 0, this);
+ this.k = prop.k || this.k;
+ this.dataProps[i] = {
+ n: data[i].n,
+ p: prop
+ };
+ }
+
+ if (!this.k) {
+ this.getValue(true);
+ }
+
+ this._isAnimated = this.k;
+ }
+
+ DashProperty.prototype.getValue = function (forceRender) {
+ if (this.elem.globalData.frameId === this.frameId && !forceRender) {
+ return;
+ }
+
+ this.frameId = this.elem.globalData.frameId;
+ this.iterateDynamicProperties();
+ this._mdf = this._mdf || forceRender;
+
+ if (this._mdf) {
+ var i = 0;
+ var len = this.dataProps.length;
+
+ if (this.renderer === 'svg') {
+ this.dashStr = '';
+ }
+
+ for (i = 0; i < len; i += 1) {
+ if (this.dataProps[i].n !== 'o') {
+ if (this.renderer === 'svg') {
+ this.dashStr += ' ' + this.dataProps[i].p.v;
+ } else {
+ this.dashArray[i] = this.dataProps[i].p.v;
+ }
+ } else {
+ this.dashoffset[0] = this.dataProps[i].p.v;
+ }
+ }
+ }
+ };
+
+ extendPrototype([DynamicPropertyContainer], DashProperty);
+
+ function SVGStrokeStyleData(elem, data, styleOb) {
+ this.initDynamicPropertyContainer(elem);
+ this.getValue = this.iterateDynamicProperties;
+ this.o = PropertyFactory.getProp(elem, data.o, 0, 0.01, this);
+ this.w = PropertyFactory.getProp(elem, data.w, 0, null, this);
+ this.d = new DashProperty(elem, data.d || {}, 'svg', this);
+ this.c = PropertyFactory.getProp(elem, data.c, 1, 255, this);
+ this.style = styleOb;
+ this._isAnimated = !!this._isAnimated;
+ }
+
+ extendPrototype([DynamicPropertyContainer], SVGStrokeStyleData);
+
+ function SVGFillStyleData(elem, data, styleOb) {
+ this.initDynamicPropertyContainer(elem);
+ this.getValue = this.iterateDynamicProperties;
+ this.o = PropertyFactory.getProp(elem, data.o, 0, 0.01, this);
+ this.c = PropertyFactory.getProp(elem, data.c, 1, 255, this);
+ this.style = styleOb;
+ }
+
+ extendPrototype([DynamicPropertyContainer], SVGFillStyleData);
+
+ function SVGNoStyleData(elem, data, styleOb) {
+ this.initDynamicPropertyContainer(elem);
+ this.getValue = this.iterateDynamicProperties;
+ this.style = styleOb;
+ }
+
+ extendPrototype([DynamicPropertyContainer], SVGNoStyleData);
+
+ function GradientProperty(elem, data, container) {
+ this.data = data;
+ this.c = createTypedArray('uint8c', data.p * 4);
+ var cLength = data.k.k[0].s ? data.k.k[0].s.length - data.p * 4 : data.k.k.length - data.p * 4;
+ this.o = createTypedArray('float32', cLength);
+ this._cmdf = false;
+ this._omdf = false;
+ this._collapsable = this.checkCollapsable();
+ this._hasOpacity = cLength;
+ this.initDynamicPropertyContainer(container);
+ this.prop = PropertyFactory.getProp(elem, data.k, 1, null, this);
+ this.k = this.prop.k;
+ this.getValue(true);
+ }
+
+ GradientProperty.prototype.comparePoints = function (values, points) {
+ var i = 0;
+ var len = this.o.length / 2;
+ var diff;
+
+ while (i < len) {
+ diff = Math.abs(values[i * 4] - values[points * 4 + i * 2]);
+
+ if (diff > 0.01) {
+ return false;
+ }
+
+ i += 1;
+ }
+
+ return true;
+ };
+
+ GradientProperty.prototype.checkCollapsable = function () {
+ if (this.o.length / 2 !== this.c.length / 4) {
+ return false;
+ }
+
+ if (this.data.k.k[0].s) {
+ var i = 0;
+ var len = this.data.k.k.length;
+
+ while (i < len) {
+ if (!this.comparePoints(this.data.k.k[i].s, this.data.p)) {
+ return false;
+ }
+
+ i += 1;
+ }
+ } else if (!this.comparePoints(this.data.k.k, this.data.p)) {
+ return false;
+ }
+
+ return true;
+ };
+
+ GradientProperty.prototype.getValue = function (forceRender) {
+ this.prop.getValue();
+ this._mdf = false;
+ this._cmdf = false;
+ this._omdf = false;
+
+ if (this.prop._mdf || forceRender) {
+ var i;
+ var len = this.data.p * 4;
+ var mult;
+ var val;
+
+ for (i = 0; i < len; i += 1) {
+ mult = i % 4 === 0 ? 100 : 255;
+ val = Math.round(this.prop.v[i] * mult);
+
+ if (this.c[i] !== val) {
+ this.c[i] = val;
+ this._cmdf = !forceRender;
+ }
+ }
+
+ if (this.o.length) {
+ len = this.prop.v.length;
+
+ for (i = this.data.p * 4; i < len; i += 1) {
+ mult = i % 2 === 0 ? 100 : 1;
+ val = i % 2 === 0 ? Math.round(this.prop.v[i] * 100) : this.prop.v[i];
+
+ if (this.o[i - this.data.p * 4] !== val) {
+ this.o[i - this.data.p * 4] = val;
+ this._omdf = !forceRender;
+ }
+ }
+ }
+
+ this._mdf = !forceRender;
+ }
+ };
+
+ extendPrototype([DynamicPropertyContainer], GradientProperty);
+
+ function SVGGradientFillStyleData(elem, data, styleOb) {
+ this.initDynamicPropertyContainer(elem);
+ this.getValue = this.iterateDynamicProperties;
+ this.initGradientData(elem, data, styleOb);
+ }
+
+ SVGGradientFillStyleData.prototype.initGradientData = function (elem, data, styleOb) {
+ this.o = PropertyFactory.getProp(elem, data.o, 0, 0.01, this);
+ this.s = PropertyFactory.getProp(elem, data.s, 1, null, this);
+ this.e = PropertyFactory.getProp(elem, data.e, 1, null, this);
+ this.h = PropertyFactory.getProp(elem, data.h || {
+ k: 0
+ }, 0, 0.01, this);
+ this.a = PropertyFactory.getProp(elem, data.a || {
+ k: 0
+ }, 0, degToRads, this);
+ this.g = new GradientProperty(elem, data.g, this);
+ this.style = styleOb;
+ this.stops = [];
+ this.setGradientData(styleOb.pElem, data);
+ this.setGradientOpacity(data, styleOb);
+ this._isAnimated = !!this._isAnimated;
+ };
+
+ SVGGradientFillStyleData.prototype.setGradientData = function (pathElement, data) {
+ var gradientId = createElementID();
+ var gfill = createNS(data.t === 1 ? 'linearGradient' : 'radialGradient');
+ gfill.setAttribute('id', gradientId);
+ gfill.setAttribute('spreadMethod', 'pad');
+ gfill.setAttribute('gradientUnits', 'userSpaceOnUse');
+ var stops = [];
+ var stop;
+ var j;
+ var jLen;
+ jLen = data.g.p * 4;
+
+ for (j = 0; j < jLen; j += 4) {
+ stop = createNS('stop');
+ gfill.appendChild(stop);
+ stops.push(stop);
+ }
+
+ pathElement.setAttribute(data.ty === 'gf' ? 'fill' : 'stroke', 'url(' + getLocationHref() + '#' + gradientId + ')');
+ this.gf = gfill;
+ this.cst = stops;
+ };
+
+ SVGGradientFillStyleData.prototype.setGradientOpacity = function (data, styleOb) {
+ if (this.g._hasOpacity && !this.g._collapsable) {
+ var stop;
+ var j;
+ var jLen;
+ var mask = createNS('mask');
+ var maskElement = createNS('path');
+ mask.appendChild(maskElement);
+ var opacityId = createElementID();
+ var maskId = createElementID();
+ mask.setAttribute('id', maskId);
+ var opFill = createNS(data.t === 1 ? 'linearGradient' : 'radialGradient');
+ opFill.setAttribute('id', opacityId);
+ opFill.setAttribute('spreadMethod', 'pad');
+ opFill.setAttribute('gradientUnits', 'userSpaceOnUse');
+ jLen = data.g.k.k[0].s ? data.g.k.k[0].s.length : data.g.k.k.length;
+ var stops = this.stops;
+
+ for (j = data.g.p * 4; j < jLen; j += 2) {
+ stop = createNS('stop');
+ stop.setAttribute('stop-color', 'rgb(255,255,255)');
+ opFill.appendChild(stop);
+ stops.push(stop);
+ }
+
+ maskElement.setAttribute(data.ty === 'gf' ? 'fill' : 'stroke', 'url(' + getLocationHref() + '#' + opacityId + ')');
+
+ if (data.ty === 'gs') {
+ maskElement.setAttribute('stroke-linecap', lineCapEnum[data.lc || 2]);
+ maskElement.setAttribute('stroke-linejoin', lineJoinEnum[data.lj || 2]);
+
+ if (data.lj === 1) {
+ maskElement.setAttribute('stroke-miterlimit', data.ml);
+ }
+ }
+
+ this.of = opFill;
+ this.ms = mask;
+ this.ost = stops;
+ this.maskId = maskId;
+ styleOb.msElem = maskElement;
+ }
+ };
+
+ extendPrototype([DynamicPropertyContainer], SVGGradientFillStyleData);
+
+ function SVGGradientStrokeStyleData(elem, data, styleOb) {
+ this.initDynamicPropertyContainer(elem);
+ this.getValue = this.iterateDynamicProperties;
+ this.w = PropertyFactory.getProp(elem, data.w, 0, null, this);
+ this.d = new DashProperty(elem, data.d || {}, 'svg', this);
+ this.initGradientData(elem, data, styleOb);
+ this._isAnimated = !!this._isAnimated;
+ }
+
+ extendPrototype([SVGGradientFillStyleData, DynamicPropertyContainer], SVGGradientStrokeStyleData);
+
+ function ShapeGroupData() {
+ this.it = [];
+ this.prevViewData = [];
+ this.gr = createNS('g');
+ }
+
+ function SVGTransformData(mProps, op, container) {
+ this.transform = {
+ mProps: mProps,
+ op: op,
+ container: container
+ };
+ this.elements = [];
+ this._isAnimated = this.transform.mProps.dynamicProperties.length || this.transform.op.effectsSequence.length;
+ }
+
+ var buildShapeString = function buildShapeString(pathNodes, length, closed, mat) {
+ if (length === 0) {
+ return '';
+ }
+
+ var _o = pathNodes.o;
+ var _i = pathNodes.i;
+ var _v = pathNodes.v;
+ var i;
+ var shapeString = ' M' + mat.applyToPointStringified(_v[0][0], _v[0][1]);
+
+ for (i = 1; i < length; i += 1) {
+ shapeString += ' C' + mat.applyToPointStringified(_o[i - 1][0], _o[i - 1][1]) + ' ' + mat.applyToPointStringified(_i[i][0], _i[i][1]) + ' ' + mat.applyToPointStringified(_v[i][0], _v[i][1]);
+ }
+
+ if (closed && length) {
+ shapeString += ' C' + mat.applyToPointStringified(_o[i - 1][0], _o[i - 1][1]) + ' ' + mat.applyToPointStringified(_i[0][0], _i[0][1]) + ' ' + mat.applyToPointStringified(_v[0][0], _v[0][1]);
+ shapeString += 'z';
+ }
+
+ return shapeString;
+ };
+
+ var SVGElementsRenderer = function () {
+ var _identityMatrix = new Matrix();
+
+ var _matrixHelper = new Matrix();
+
+ var ob = {
+ createRenderFunction: createRenderFunction
+ };
+
+ function createRenderFunction(data) {
+ switch (data.ty) {
+ case 'fl':
+ return renderFill;
+
+ case 'gf':
+ return renderGradient;
+
+ case 'gs':
+ return renderGradientStroke;
+
+ case 'st':
+ return renderStroke;
+
+ case 'sh':
+ case 'el':
+ case 'rc':
+ case 'sr':
+ return renderPath;
+
+ case 'tr':
+ return renderContentTransform;
+
+ case 'no':
+ return renderNoop;
+
+ default:
+ return null;
+ }
+ }
+
+ function renderContentTransform(styleData, itemData, isFirstFrame) {
+ if (isFirstFrame || itemData.transform.op._mdf) {
+ itemData.transform.container.setAttribute('opacity', itemData.transform.op.v);
+ }
+
+ if (isFirstFrame || itemData.transform.mProps._mdf) {
+ itemData.transform.container.setAttribute('transform', itemData.transform.mProps.v.to2dCSS());
+ }
+ }
+
+ function renderNoop() {}
+
+ function renderPath(styleData, itemData, isFirstFrame) {
+ var j;
+ var jLen;
+ var pathStringTransformed;
+ var redraw;
+ var pathNodes;
+ var l;
+ var lLen = itemData.styles.length;
+ var lvl = itemData.lvl;
+ var paths;
+ var mat;
+ var iterations;
+ var k;
+
+ for (l = 0; l < lLen; l += 1) {
+ redraw = itemData.sh._mdf || isFirstFrame;
+
+ if (itemData.styles[l].lvl < lvl) {
+ mat = _matrixHelper.reset();
+ iterations = lvl - itemData.styles[l].lvl;
+ k = itemData.transformers.length - 1;
+
+ while (!redraw && iterations > 0) {
+ redraw = itemData.transformers[k].mProps._mdf || redraw;
+ iterations -= 1;
+ k -= 1;
+ }
+
+ if (redraw) {
+ iterations = lvl - itemData.styles[l].lvl;
+ k = itemData.transformers.length - 1;
+
+ while (iterations > 0) {
+ mat.multiply(itemData.transformers[k].mProps.v);
+ iterations -= 1;
+ k -= 1;
+ }
+ }
+ } else {
+ mat = _identityMatrix;
+ }
+
+ paths = itemData.sh.paths;
+ jLen = paths._length;
+
+ if (redraw) {
+ pathStringTransformed = '';
+
+ for (j = 0; j < jLen; j += 1) {
+ pathNodes = paths.shapes[j];
+
+ if (pathNodes && pathNodes._length) {
+ pathStringTransformed += buildShapeString(pathNodes, pathNodes._length, pathNodes.c, mat);
+ }
+ }
+
+ itemData.caches[l] = pathStringTransformed;
+ } else {
+ pathStringTransformed = itemData.caches[l];
+ }
+
+ itemData.styles[l].d += styleData.hd === true ? '' : pathStringTransformed;
+ itemData.styles[l]._mdf = redraw || itemData.styles[l]._mdf;
+ }
+ }
+
+ function renderFill(styleData, itemData, isFirstFrame) {
+ var styleElem = itemData.style;
+
+ if (itemData.c._mdf || isFirstFrame) {
+ styleElem.pElem.setAttribute('fill', 'rgb(' + bmFloor(itemData.c.v[0]) + ',' + bmFloor(itemData.c.v[1]) + ',' + bmFloor(itemData.c.v[2]) + ')');
+ }
+
+ if (itemData.o._mdf || isFirstFrame) {
+ styleElem.pElem.setAttribute('fill-opacity', itemData.o.v);
+ }
+ }
+
+ function renderGradientStroke(styleData, itemData, isFirstFrame) {
+ renderGradient(styleData, itemData, isFirstFrame);
+ renderStroke(styleData, itemData, isFirstFrame);
+ }
+
+ function renderGradient(styleData, itemData, isFirstFrame) {
+ var gfill = itemData.gf;
+ var hasOpacity = itemData.g._hasOpacity;
+ var pt1 = itemData.s.v;
+ var pt2 = itemData.e.v;
+
+ if (itemData.o._mdf || isFirstFrame) {
+ var attr = styleData.ty === 'gf' ? 'fill-opacity' : 'stroke-opacity';
+ itemData.style.pElem.setAttribute(attr, itemData.o.v);
+ }
+
+ if (itemData.s._mdf || isFirstFrame) {
+ var attr1 = styleData.t === 1 ? 'x1' : 'cx';
+ var attr2 = attr1 === 'x1' ? 'y1' : 'cy';
+ gfill.setAttribute(attr1, pt1[0]);
+ gfill.setAttribute(attr2, pt1[1]);
+
+ if (hasOpacity && !itemData.g._collapsable) {
+ itemData.of.setAttribute(attr1, pt1[0]);
+ itemData.of.setAttribute(attr2, pt1[1]);
+ }
+ }
+
+ var stops;
+ var i;
+ var len;
+ var stop;
+
+ if (itemData.g._cmdf || isFirstFrame) {
+ stops = itemData.cst;
+ var cValues = itemData.g.c;
+ len = stops.length;
+
+ for (i = 0; i < len; i += 1) {
+ stop = stops[i];
+ stop.setAttribute('offset', cValues[i * 4] + '%');
+ stop.setAttribute('stop-color', 'rgb(' + cValues[i * 4 + 1] + ',' + cValues[i * 4 + 2] + ',' + cValues[i * 4 + 3] + ')');
+ }
+ }
+
+ if (hasOpacity && (itemData.g._omdf || isFirstFrame)) {
+ var oValues = itemData.g.o;
+
+ if (itemData.g._collapsable) {
+ stops = itemData.cst;
+ } else {
+ stops = itemData.ost;
+ }
+
+ len = stops.length;
+
+ for (i = 0; i < len; i += 1) {
+ stop = stops[i];
+
+ if (!itemData.g._collapsable) {
+ stop.setAttribute('offset', oValues[i * 2] + '%');
+ }
+
+ stop.setAttribute('stop-opacity', oValues[i * 2 + 1]);
+ }
+ }
+
+ if (styleData.t === 1) {
+ if (itemData.e._mdf || isFirstFrame) {
+ gfill.setAttribute('x2', pt2[0]);
+ gfill.setAttribute('y2', pt2[1]);
+
+ if (hasOpacity && !itemData.g._collapsable) {
+ itemData.of.setAttribute('x2', pt2[0]);
+ itemData.of.setAttribute('y2', pt2[1]);
+ }
+ }
+ } else {
+ var rad;
+
+ if (itemData.s._mdf || itemData.e._mdf || isFirstFrame) {
+ rad = Math.sqrt(Math.pow(pt1[0] - pt2[0], 2) + Math.pow(pt1[1] - pt2[1], 2));
+ gfill.setAttribute('r', rad);
+
+ if (hasOpacity && !itemData.g._collapsable) {
+ itemData.of.setAttribute('r', rad);
+ }
+ }
+
+ if (itemData.e._mdf || itemData.h._mdf || itemData.a._mdf || isFirstFrame) {
+ if (!rad) {
+ rad = Math.sqrt(Math.pow(pt1[0] - pt2[0], 2) + Math.pow(pt1[1] - pt2[1], 2));
+ }
+
+ var ang = Math.atan2(pt2[1] - pt1[1], pt2[0] - pt1[0]);
+ var percent = itemData.h.v;
+
+ if (percent >= 1) {
+ percent = 0.99;
+ } else if (percent <= -1) {
+ percent = -0.99;
+ }
+
+ var dist = rad * percent;
+ var x = Math.cos(ang + itemData.a.v) * dist + pt1[0];
+ var y = Math.sin(ang + itemData.a.v) * dist + pt1[1];
+ gfill.setAttribute('fx', x);
+ gfill.setAttribute('fy', y);
+
+ if (hasOpacity && !itemData.g._collapsable) {
+ itemData.of.setAttribute('fx', x);
+ itemData.of.setAttribute('fy', y);
+ }
+ } // gfill.setAttribute('fy','200');
+
+ }
+ }
+
+ function renderStroke(styleData, itemData, isFirstFrame) {
+ var styleElem = itemData.style;
+ var d = itemData.d;
+
+ if (d && (d._mdf || isFirstFrame) && d.dashStr) {
+ styleElem.pElem.setAttribute('stroke-dasharray', d.dashStr);
+ styleElem.pElem.setAttribute('stroke-dashoffset', d.dashoffset[0]);
+ }
+
+ if (itemData.c && (itemData.c._mdf || isFirstFrame)) {
+ styleElem.pElem.setAttribute('stroke', 'rgb(' + bmFloor(itemData.c.v[0]) + ',' + bmFloor(itemData.c.v[1]) + ',' + bmFloor(itemData.c.v[2]) + ')');
+ }
+
+ if (itemData.o._mdf || isFirstFrame) {
+ styleElem.pElem.setAttribute('stroke-opacity', itemData.o.v);
+ }
+
+ if (itemData.w._mdf || isFirstFrame) {
+ styleElem.pElem.setAttribute('stroke-width', itemData.w.v);
+
+ if (styleElem.msElem) {
+ styleElem.msElem.setAttribute('stroke-width', itemData.w.v);
+ }
+ }
+ }
+
+ return ob;
+ }();
+
+ function SVGShapeElement(data, globalData, comp) {
+ // List of drawable elements
+ this.shapes = []; // Full shape data
+
+ this.shapesData = data.shapes; // List of styles that will be applied to shapes
+
+ this.stylesList = []; // List of modifiers that will be applied to shapes
+
+ this.shapeModifiers = []; // List of items in shape tree
+
+ this.itemsData = []; // List of items in previous shape tree
+
+ this.processedElements = []; // List of animated components
+
+ this.animatedContents = [];
+ this.initElement(data, globalData, comp); // Moving any property that doesn't get too much access after initialization because of v8 way of handling more than 10 properties.
+ // List of elements that have been created
+
+ this.prevViewData = []; // Moving any property that doesn't get too much access after initialization because of v8 way of handling more than 10 properties.
+ }
+
+ extendPrototype([BaseElement, TransformElement, SVGBaseElement, IShapeElement, HierarchyElement, FrameElement, RenderableDOMElement], SVGShapeElement);
+
+ SVGShapeElement.prototype.initSecondaryElement = function () {};
+
+ SVGShapeElement.prototype.identityMatrix = new Matrix();
+
+ SVGShapeElement.prototype.buildExpressionInterface = function () {};
+
+ SVGShapeElement.prototype.createContent = function () {
+ this.searchShapes(this.shapesData, this.itemsData, this.prevViewData, this.layerElement, 0, [], true);
+ this.filterUniqueShapes();
+ };
+ /*
+ This method searches for multiple shapes that affect a single element and one of them is animated
+ */
+
+
+ SVGShapeElement.prototype.filterUniqueShapes = function () {
+ var i;
+ var len = this.shapes.length;
+ var shape;
+ var j;
+ var jLen = this.stylesList.length;
+ var style;
+ var tempShapes = [];
+ var areAnimated = false;
+
+ for (j = 0; j < jLen; j += 1) {
+ style = this.stylesList[j];
+ areAnimated = false;
+ tempShapes.length = 0;
+
+ for (i = 0; i < len; i += 1) {
+ shape = this.shapes[i];
+
+ if (shape.styles.indexOf(style) !== -1) {
+ tempShapes.push(shape);
+ areAnimated = shape._isAnimated || areAnimated;
+ }
+ }
+
+ if (tempShapes.length > 1 && areAnimated) {
+ this.setShapesAsAnimated(tempShapes);
+ }
+ }
+ };
+
+ SVGShapeElement.prototype.setShapesAsAnimated = function (shapes) {
+ var i;
+ var len = shapes.length;
+
+ for (i = 0; i < len; i += 1) {
+ shapes[i].setAsAnimated();
+ }
+ };
+
+ SVGShapeElement.prototype.createStyleElement = function (data, level) {
+ // TODO: prevent drawing of hidden styles
+ var elementData;
+ var styleOb = new SVGStyleData(data, level);
+ var pathElement = styleOb.pElem;
+
+ if (data.ty === 'st') {
+ elementData = new SVGStrokeStyleData(this, data, styleOb);
+ } else if (data.ty === 'fl') {
+ elementData = new SVGFillStyleData(this, data, styleOb);
+ } else if (data.ty === 'gf' || data.ty === 'gs') {
+ var GradientConstructor = data.ty === 'gf' ? SVGGradientFillStyleData : SVGGradientStrokeStyleData;
+ elementData = new GradientConstructor(this, data, styleOb);
+ this.globalData.defs.appendChild(elementData.gf);
+
+ if (elementData.maskId) {
+ this.globalData.defs.appendChild(elementData.ms);
+ this.globalData.defs.appendChild(elementData.of);
+ pathElement.setAttribute('mask', 'url(' + getLocationHref() + '#' + elementData.maskId + ')');
+ }
+ } else if (data.ty === 'no') {
+ elementData = new SVGNoStyleData(this, data, styleOb);
+ }
+
+ if (data.ty === 'st' || data.ty === 'gs') {
+ pathElement.setAttribute('stroke-linecap', lineCapEnum[data.lc || 2]);
+ pathElement.setAttribute('stroke-linejoin', lineJoinEnum[data.lj || 2]);
+ pathElement.setAttribute('fill-opacity', '0');
+
+ if (data.lj === 1) {
+ pathElement.setAttribute('stroke-miterlimit', data.ml);
+ }
+ }
+
+ if (data.r === 2) {
+ pathElement.setAttribute('fill-rule', 'evenodd');
+ }
+
+ if (data.ln) {
+ pathElement.setAttribute('id', data.ln);
+ }
+
+ if (data.cl) {
+ pathElement.setAttribute('class', data.cl);
+ }
+
+ if (data.bm) {
+ pathElement.style['mix-blend-mode'] = getBlendMode(data.bm);
+ }
+
+ this.stylesList.push(styleOb);
+ this.addToAnimatedContents(data, elementData);
+ return elementData;
+ };
+
+ SVGShapeElement.prototype.createGroupElement = function (data) {
+ var elementData = new ShapeGroupData();
+
+ if (data.ln) {
+ elementData.gr.setAttribute('id', data.ln);
+ }
+
+ if (data.cl) {
+ elementData.gr.setAttribute('class', data.cl);
+ }
+
+ if (data.bm) {
+ elementData.gr.style['mix-blend-mode'] = getBlendMode(data.bm);
+ }
+
+ return elementData;
+ };
+
+ SVGShapeElement.prototype.createTransformElement = function (data, container) {
+ var transformProperty = TransformPropertyFactory.getTransformProperty(this, data, this);
+ var elementData = new SVGTransformData(transformProperty, transformProperty.o, container);
+ this.addToAnimatedContents(data, elementData);
+ return elementData;
+ };
+
+ SVGShapeElement.prototype.createShapeElement = function (data, ownTransformers, level) {
+ var ty = 4;
+
+ if (data.ty === 'rc') {
+ ty = 5;
+ } else if (data.ty === 'el') {
+ ty = 6;
+ } else if (data.ty === 'sr') {
+ ty = 7;
+ }
+
+ var shapeProperty = ShapePropertyFactory.getShapeProp(this, data, ty, this);
+ var elementData = new SVGShapeData(ownTransformers, level, shapeProperty);
+ this.shapes.push(elementData);
+ this.addShapeToModifiers(elementData);
+ this.addToAnimatedContents(data, elementData);
+ return elementData;
+ };
+
+ SVGShapeElement.prototype.addToAnimatedContents = function (data, element) {
+ var i = 0;
+ var len = this.animatedContents.length;
+
+ while (i < len) {
+ if (this.animatedContents[i].element === element) {
+ return;
+ }
+
+ i += 1;
+ }
+
+ this.animatedContents.push({
+ fn: SVGElementsRenderer.createRenderFunction(data),
+ element: element,
+ data: data
+ });
+ };
+
+ SVGShapeElement.prototype.setElementStyles = function (elementData) {
+ var arr = elementData.styles;
+ var j;
+ var jLen = this.stylesList.length;
+
+ for (j = 0; j < jLen; j += 1) {
+ if (!this.stylesList[j].closed) {
+ arr.push(this.stylesList[j]);
+ }
+ }
+ };
+
+ SVGShapeElement.prototype.reloadShapes = function () {
+ this._isFirstFrame = true;
+ var i;
+ var len = this.itemsData.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.prevViewData[i] = this.itemsData[i];
+ }
+
+ this.searchShapes(this.shapesData, this.itemsData, this.prevViewData, this.layerElement, 0, [], true);
+ this.filterUniqueShapes();
+ len = this.dynamicProperties.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.dynamicProperties[i].getValue();
+ }
+
+ this.renderModifiers();
+ };
+
+ SVGShapeElement.prototype.searchShapes = function (arr, itemsData, prevViewData, container, level, transformers, render) {
+ var ownTransformers = [].concat(transformers);
+ var i;
+ var len = arr.length - 1;
+ var j;
+ var jLen;
+ var ownStyles = [];
+ var ownModifiers = [];
+ var currentTransform;
+ var modifier;
+ var processedPos;
+
+ for (i = len; i >= 0; i -= 1) {
+ processedPos = this.searchProcessedElement(arr[i]);
+
+ if (!processedPos) {
+ arr[i]._render = render;
+ } else {
+ itemsData[i] = prevViewData[processedPos - 1];
+ }
+
+ if (arr[i].ty === 'fl' || arr[i].ty === 'st' || arr[i].ty === 'gf' || arr[i].ty === 'gs' || arr[i].ty === 'no') {
+ if (!processedPos) {
+ itemsData[i] = this.createStyleElement(arr[i], level);
+ } else {
+ itemsData[i].style.closed = false;
+ }
+
+ if (arr[i]._render) {
+ if (itemsData[i].style.pElem.parentNode !== container) {
+ container.appendChild(itemsData[i].style.pElem);
+ }
+ }
+
+ ownStyles.push(itemsData[i].style);
+ } else if (arr[i].ty === 'gr') {
+ if (!processedPos) {
+ itemsData[i] = this.createGroupElement(arr[i]);
+ } else {
+ jLen = itemsData[i].it.length;
+
+ for (j = 0; j < jLen; j += 1) {
+ itemsData[i].prevViewData[j] = itemsData[i].it[j];
+ }
+ }
+
+ this.searchShapes(arr[i].it, itemsData[i].it, itemsData[i].prevViewData, itemsData[i].gr, level + 1, ownTransformers, render);
+
+ if (arr[i]._render) {
+ if (itemsData[i].gr.parentNode !== container) {
+ container.appendChild(itemsData[i].gr);
+ }
+ }
+ } else if (arr[i].ty === 'tr') {
+ if (!processedPos) {
+ itemsData[i] = this.createTransformElement(arr[i], container);
+ }
+
+ currentTransform = itemsData[i].transform;
+ ownTransformers.push(currentTransform);
+ } else if (arr[i].ty === 'sh' || arr[i].ty === 'rc' || arr[i].ty === 'el' || arr[i].ty === 'sr') {
+ if (!processedPos) {
+ itemsData[i] = this.createShapeElement(arr[i], ownTransformers, level);
+ }
+
+ this.setElementStyles(itemsData[i]);
+ } else if (arr[i].ty === 'tm' || arr[i].ty === 'rd' || arr[i].ty === 'ms' || arr[i].ty === 'pb' || arr[i].ty === 'zz' || arr[i].ty === 'op') {
+ if (!processedPos) {
+ modifier = ShapeModifiers.getModifier(arr[i].ty);
+ modifier.init(this, arr[i]);
+ itemsData[i] = modifier;
+ this.shapeModifiers.push(modifier);
+ } else {
+ modifier = itemsData[i];
+ modifier.closed = false;
+ }
+
+ ownModifiers.push(modifier);
+ } else if (arr[i].ty === 'rp') {
+ if (!processedPos) {
+ modifier = ShapeModifiers.getModifier(arr[i].ty);
+ itemsData[i] = modifier;
+ modifier.init(this, arr, i, itemsData);
+ this.shapeModifiers.push(modifier);
+ render = false;
+ } else {
+ modifier = itemsData[i];
+ modifier.closed = true;
+ }
+
+ ownModifiers.push(modifier);
+ }
+
+ this.addProcessedElement(arr[i], i + 1);
+ }
+
+ len = ownStyles.length;
+
+ for (i = 0; i < len; i += 1) {
+ ownStyles[i].closed = true;
+ }
+
+ len = ownModifiers.length;
+
+ for (i = 0; i < len; i += 1) {
+ ownModifiers[i].closed = true;
+ }
+ };
+
+ SVGShapeElement.prototype.renderInnerContent = function () {
+ this.renderModifiers();
+ var i;
+ var len = this.stylesList.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.stylesList[i].reset();
+ }
+
+ this.renderShape();
+
+ for (i = 0; i < len; i += 1) {
+ if (this.stylesList[i]._mdf || this._isFirstFrame) {
+ if (this.stylesList[i].msElem) {
+ this.stylesList[i].msElem.setAttribute('d', this.stylesList[i].d); // Adding M0 0 fixes same mask bug on all browsers
+
+ this.stylesList[i].d = 'M0 0' + this.stylesList[i].d;
+ }
+
+ this.stylesList[i].pElem.setAttribute('d', this.stylesList[i].d || 'M0 0');
+ }
+ }
+ };
+
+ SVGShapeElement.prototype.renderShape = function () {
+ var i;
+ var len = this.animatedContents.length;
+ var animatedContent;
+
+ for (i = 0; i < len; i += 1) {
+ animatedContent = this.animatedContents[i];
+
+ if ((this._isFirstFrame || animatedContent.element._isAnimated) && animatedContent.data !== true) {
+ animatedContent.fn(animatedContent.data, animatedContent.element, this._isFirstFrame);
+ }
+ }
+ };
+
+ SVGShapeElement.prototype.destroy = function () {
+ this.destroyBaseElement();
+ this.shapesData = null;
+ this.itemsData = null;
+ };
+
+ function LetterProps(o, sw, sc, fc, m, p) {
+ this.o = o;
+ this.sw = sw;
+ this.sc = sc;
+ this.fc = fc;
+ this.m = m;
+ this.p = p;
+ this._mdf = {
+ o: true,
+ sw: !!sw,
+ sc: !!sc,
+ fc: !!fc,
+ m: true,
+ p: true
+ };
+ }
+
+ LetterProps.prototype.update = function (o, sw, sc, fc, m, p) {
+ this._mdf.o = false;
+ this._mdf.sw = false;
+ this._mdf.sc = false;
+ this._mdf.fc = false;
+ this._mdf.m = false;
+ this._mdf.p = false;
+ var updated = false;
+
+ if (this.o !== o) {
+ this.o = o;
+ this._mdf.o = true;
+ updated = true;
+ }
+
+ if (this.sw !== sw) {
+ this.sw = sw;
+ this._mdf.sw = true;
+ updated = true;
+ }
+
+ if (this.sc !== sc) {
+ this.sc = sc;
+ this._mdf.sc = true;
+ updated = true;
+ }
+
+ if (this.fc !== fc) {
+ this.fc = fc;
+ this._mdf.fc = true;
+ updated = true;
+ }
+
+ if (this.m !== m) {
+ this.m = m;
+ this._mdf.m = true;
+ updated = true;
+ }
+
+ if (p.length && (this.p[0] !== p[0] || this.p[1] !== p[1] || this.p[4] !== p[4] || this.p[5] !== p[5] || this.p[12] !== p[12] || this.p[13] !== p[13])) {
+ this.p = p;
+ this._mdf.p = true;
+ updated = true;
+ }
+
+ return updated;
+ };
+
+ function TextProperty(elem, data) {
+ this._frameId = initialDefaultFrame;
+ this.pv = '';
+ this.v = '';
+ this.kf = false;
+ this._isFirstFrame = true;
+ this._mdf = false;
+
+ if (data.d && data.d.sid) {
+ data.d = elem.globalData.slotManager.getProp(data.d);
+ }
+
+ this.data = data;
+ this.elem = elem;
+ this.comp = this.elem.comp;
+ this.keysIndex = 0;
+ this.canResize = false;
+ this.minimumFontSize = 1;
+ this.effectsSequence = [];
+ this.currentData = {
+ ascent: 0,
+ boxWidth: this.defaultBoxWidth,
+ f: '',
+ fStyle: '',
+ fWeight: '',
+ fc: '',
+ j: '',
+ justifyOffset: '',
+ l: [],
+ lh: 0,
+ lineWidths: [],
+ ls: '',
+ of: '',
+ s: '',
+ sc: '',
+ sw: 0,
+ t: 0,
+ tr: 0,
+ sz: 0,
+ ps: null,
+ fillColorAnim: false,
+ strokeColorAnim: false,
+ strokeWidthAnim: false,
+ yOffset: 0,
+ finalSize: 0,
+ finalText: [],
+ finalLineHeight: 0,
+ __complete: false
+ };
+ this.copyData(this.currentData, this.data.d.k[0].s);
+
+ if (!this.searchProperty()) {
+ this.completeTextData(this.currentData);
+ }
+ }
+
+ TextProperty.prototype.defaultBoxWidth = [0, 0];
+
+ TextProperty.prototype.copyData = function (obj, data) {
+ for (var s in data) {
+ if (Object.prototype.hasOwnProperty.call(data, s)) {
+ obj[s] = data[s];
+ }
+ }
+
+ return obj;
+ };
+
+ TextProperty.prototype.setCurrentData = function (data) {
+ if (!data.__complete) {
+ this.completeTextData(data);
+ }
+
+ this.currentData = data;
+ this.currentData.boxWidth = this.currentData.boxWidth || this.defaultBoxWidth;
+ this._mdf = true;
+ };
+
+ TextProperty.prototype.searchProperty = function () {
+ return this.searchKeyframes();
+ };
+
+ TextProperty.prototype.searchKeyframes = function () {
+ this.kf = this.data.d.k.length > 1;
+
+ if (this.kf) {
+ this.addEffect(this.getKeyframeValue.bind(this));
+ }
+
+ return this.kf;
+ };
+
+ TextProperty.prototype.addEffect = function (effectFunction) {
+ this.effectsSequence.push(effectFunction);
+ this.elem.addDynamicProperty(this);
+ };
+
+ TextProperty.prototype.getValue = function (_finalValue) {
+ if ((this.elem.globalData.frameId === this.frameId || !this.effectsSequence.length) && !_finalValue) {
+ return;
+ }
+
+ this.currentData.t = this.data.d.k[this.keysIndex].s.t;
+ var currentValue = this.currentData;
+ var currentIndex = this.keysIndex;
+
+ if (this.lock) {
+ this.setCurrentData(this.currentData);
+ return;
+ }
+
+ this.lock = true;
+ this._mdf = false;
+ var i;
+ var len = this.effectsSequence.length;
+ var finalValue = _finalValue || this.data.d.k[this.keysIndex].s;
+
+ for (i = 0; i < len; i += 1) {
+ // Checking if index changed to prevent creating a new object every time the expression updates.
+ if (currentIndex !== this.keysIndex) {
+ finalValue = this.effectsSequence[i](finalValue, finalValue.t);
+ } else {
+ finalValue = this.effectsSequence[i](this.currentData, finalValue.t);
+ }
+ }
+
+ if (currentValue !== finalValue) {
+ this.setCurrentData(finalValue);
+ }
+
+ this.v = this.currentData;
+ this.pv = this.v;
+ this.lock = false;
+ this.frameId = this.elem.globalData.frameId;
+ };
+
+ TextProperty.prototype.getKeyframeValue = function () {
+ var textKeys = this.data.d.k;
+ var frameNum = this.elem.comp.renderedFrame;
+ var i = 0;
+ var len = textKeys.length;
+
+ while (i <= len - 1) {
+ if (i === len - 1 || textKeys[i + 1].t > frameNum) {
+ break;
+ }
+
+ i += 1;
+ }
+
+ if (this.keysIndex !== i) {
+ this.keysIndex = i;
+ }
+
+ return this.data.d.k[this.keysIndex].s;
+ };
+
+ TextProperty.prototype.buildFinalText = function (text) {
+ var charactersArray = [];
+ var i = 0;
+ var len = text.length;
+ var charCode;
+ var secondCharCode;
+ var shouldCombine = false;
+
+ while (i < len) {
+ charCode = text.charCodeAt(i);
+
+ if (FontManager.isCombinedCharacter(charCode)) {
+ charactersArray[charactersArray.length - 1] += text.charAt(i);
+ } else if (charCode >= 0xD800 && charCode <= 0xDBFF) {
+ secondCharCode = text.charCodeAt(i + 1);
+
+ if (secondCharCode >= 0xDC00 && secondCharCode <= 0xDFFF) {
+ if (shouldCombine || FontManager.isModifier(charCode, secondCharCode)) {
+ charactersArray[charactersArray.length - 1] += text.substr(i, 2);
+ shouldCombine = false;
+ } else {
+ charactersArray.push(text.substr(i, 2));
+ }
+
+ i += 1;
+ } else {
+ charactersArray.push(text.charAt(i));
+ }
+ } else if (charCode > 0xDBFF) {
+ secondCharCode = text.charCodeAt(i + 1);
+
+ if (FontManager.isZeroWidthJoiner(charCode, secondCharCode)) {
+ shouldCombine = true;
+ charactersArray[charactersArray.length - 1] += text.substr(i, 2);
+ i += 1;
+ } else {
+ charactersArray.push(text.charAt(i));
+ }
+ } else if (FontManager.isZeroWidthJoiner(charCode)) {
+ charactersArray[charactersArray.length - 1] += text.charAt(i);
+ shouldCombine = true;
+ } else {
+ charactersArray.push(text.charAt(i));
+ }
+
+ i += 1;
+ }
+
+ return charactersArray;
+ };
+
+ TextProperty.prototype.completeTextData = function (documentData) {
+ documentData.__complete = true;
+ var fontManager = this.elem.globalData.fontManager;
+ var data = this.data;
+ var letters = [];
+ var i;
+ var len;
+ var newLineFlag;
+ var index = 0;
+ var val;
+ var anchorGrouping = data.m.g;
+ var currentSize = 0;
+ var currentPos = 0;
+ var currentLine = 0;
+ var lineWidths = [];
+ var lineWidth = 0;
+ var maxLineWidth = 0;
+ var j;
+ var jLen;
+ var fontData = fontManager.getFontByName(documentData.f);
+ var charData;
+ var cLength = 0;
+ var fontProps = getFontProperties(fontData);
+ documentData.fWeight = fontProps.weight;
+ documentData.fStyle = fontProps.style;
+ documentData.finalSize = documentData.s;
+ documentData.finalText = this.buildFinalText(documentData.t);
+ len = documentData.finalText.length;
+ documentData.finalLineHeight = documentData.lh;
+ var trackingOffset = documentData.tr / 1000 * documentData.finalSize;
+ var charCode;
+
+ if (documentData.sz) {
+ var flag = true;
+ var boxWidth = documentData.sz[0];
+ var boxHeight = documentData.sz[1];
+ var currentHeight;
+ var finalText;
+
+ while (flag) {
+ finalText = this.buildFinalText(documentData.t);
+ currentHeight = 0;
+ lineWidth = 0;
+ len = finalText.length;
+ trackingOffset = documentData.tr / 1000 * documentData.finalSize;
+ var lastSpaceIndex = -1;
+
+ for (i = 0; i < len; i += 1) {
+ charCode = finalText[i].charCodeAt(0);
+ newLineFlag = false;
+
+ if (finalText[i] === ' ') {
+ lastSpaceIndex = i;
+ } else if (charCode === 13 || charCode === 3) {
+ lineWidth = 0;
+ newLineFlag = true;
+ currentHeight += documentData.finalLineHeight || documentData.finalSize * 1.2;
+ }
+
+ if (fontManager.chars) {
+ charData = fontManager.getCharData(finalText[i], fontData.fStyle, fontData.fFamily);
+ cLength = newLineFlag ? 0 : charData.w * documentData.finalSize / 100;
+ } else {
+ // tCanvasHelper.font = documentData.s + 'px '+ fontData.fFamily;
+ cLength = fontManager.measureText(finalText[i], documentData.f, documentData.finalSize);
+ }
+
+ if (lineWidth + cLength > boxWidth && finalText[i] !== ' ') {
+ if (lastSpaceIndex === -1) {
+ len += 1;
+ } else {
+ i = lastSpaceIndex;
+ }
+
+ currentHeight += documentData.finalLineHeight || documentData.finalSize * 1.2;
+ finalText.splice(i, lastSpaceIndex === i ? 1 : 0, '\r'); // finalText = finalText.substr(0,i) + "\r" + finalText.substr(i === lastSpaceIndex ? i + 1 : i);
+
+ lastSpaceIndex = -1;
+ lineWidth = 0;
+ } else {
+ lineWidth += cLength;
+ lineWidth += trackingOffset;
+ }
+ }
+
+ currentHeight += fontData.ascent * documentData.finalSize / 100;
+
+ if (this.canResize && documentData.finalSize > this.minimumFontSize && boxHeight < currentHeight) {
+ documentData.finalSize -= 1;
+ documentData.finalLineHeight = documentData.finalSize * documentData.lh / documentData.s;
+ } else {
+ documentData.finalText = finalText;
+ len = documentData.finalText.length;
+ flag = false;
+ }
+ }
+ }
+
+ lineWidth = -trackingOffset;
+ cLength = 0;
+ var uncollapsedSpaces = 0;
+ var currentChar;
+
+ for (i = 0; i < len; i += 1) {
+ newLineFlag = false;
+ currentChar = documentData.finalText[i];
+ charCode = currentChar.charCodeAt(0);
+
+ if (charCode === 13 || charCode === 3) {
+ uncollapsedSpaces = 0;
+ lineWidths.push(lineWidth);
+ maxLineWidth = lineWidth > maxLineWidth ? lineWidth : maxLineWidth;
+ lineWidth = -2 * trackingOffset;
+ val = '';
+ newLineFlag = true;
+ currentLine += 1;
+ } else {
+ val = currentChar;
+ }
+
+ if (fontManager.chars) {
+ charData = fontManager.getCharData(currentChar, fontData.fStyle, fontManager.getFontByName(documentData.f).fFamily);
+ cLength = newLineFlag ? 0 : charData.w * documentData.finalSize / 100;
+ } else {
+ // var charWidth = fontManager.measureText(val, documentData.f, documentData.finalSize);
+ // tCanvasHelper.font = documentData.finalSize + 'px '+ fontManager.getFontByName(documentData.f).fFamily;
+ cLength = fontManager.measureText(val, documentData.f, documentData.finalSize);
+ } //
+
+
+ if (currentChar === ' ') {
+ uncollapsedSpaces += cLength + trackingOffset;
+ } else {
+ lineWidth += cLength + trackingOffset + uncollapsedSpaces;
+ uncollapsedSpaces = 0;
+ }
+
+ letters.push({
+ l: cLength,
+ an: cLength,
+ add: currentSize,
+ n: newLineFlag,
+ anIndexes: [],
+ val: val,
+ line: currentLine,
+ animatorJustifyOffset: 0
+ });
+
+ if (anchorGrouping == 2) {
+ // eslint-disable-line eqeqeq
+ currentSize += cLength;
+
+ if (val === '' || val === ' ' || i === len - 1) {
+ if (val === '' || val === ' ') {
+ currentSize -= cLength;
+ }
+
+ while (currentPos <= i) {
+ letters[currentPos].an = currentSize;
+ letters[currentPos].ind = index;
+ letters[currentPos].extra = cLength;
+ currentPos += 1;
+ }
+
+ index += 1;
+ currentSize = 0;
+ }
+ } else if (anchorGrouping == 3) {
+ // eslint-disable-line eqeqeq
+ currentSize += cLength;
+
+ if (val === '' || i === len - 1) {
+ if (val === '') {
+ currentSize -= cLength;
+ }
+
+ while (currentPos <= i) {
+ letters[currentPos].an = currentSize;
+ letters[currentPos].ind = index;
+ letters[currentPos].extra = cLength;
+ currentPos += 1;
+ }
+
+ currentSize = 0;
+ index += 1;
+ }
+ } else {
+ letters[index].ind = index;
+ letters[index].extra = 0;
+ index += 1;
+ }
+ }
+
+ documentData.l = letters;
+ maxLineWidth = lineWidth > maxLineWidth ? lineWidth : maxLineWidth;
+ lineWidths.push(lineWidth);
+
+ if (documentData.sz) {
+ documentData.boxWidth = documentData.sz[0];
+ documentData.justifyOffset = 0;
+ } else {
+ documentData.boxWidth = maxLineWidth;
+
+ switch (documentData.j) {
+ case 1:
+ documentData.justifyOffset = -documentData.boxWidth;
+ break;
+
+ case 2:
+ documentData.justifyOffset = -documentData.boxWidth / 2;
+ break;
+
+ default:
+ documentData.justifyOffset = 0;
+ }
+ }
+
+ documentData.lineWidths = lineWidths;
+ var animators = data.a;
+ var animatorData;
+ var letterData;
+ jLen = animators.length;
+ var based;
+ var ind;
+ var indexes = [];
+
+ for (j = 0; j < jLen; j += 1) {
+ animatorData = animators[j];
+
+ if (animatorData.a.sc) {
+ documentData.strokeColorAnim = true;
+ }
+
+ if (animatorData.a.sw) {
+ documentData.strokeWidthAnim = true;
+ }
+
+ if (animatorData.a.fc || animatorData.a.fh || animatorData.a.fs || animatorData.a.fb) {
+ documentData.fillColorAnim = true;
+ }
+
+ ind = 0;
+ based = animatorData.s.b;
+
+ for (i = 0; i < len; i += 1) {
+ letterData = letters[i];
+ letterData.anIndexes[j] = ind;
+
+ if (based == 1 && letterData.val !== '' || based == 2 && letterData.val !== '' && letterData.val !== ' ' || based == 3 && (letterData.n || letterData.val == ' ' || i == len - 1) || based == 4 && (letterData.n || i == len - 1)) {
+ // eslint-disable-line eqeqeq
+ if (animatorData.s.rn === 1) {
+ indexes.push(ind);
+ }
+
+ ind += 1;
+ }
+ }
+
+ data.a[j].s.totalChars = ind;
+ var currentInd = -1;
+ var newInd;
+
+ if (animatorData.s.rn === 1) {
+ for (i = 0; i < len; i += 1) {
+ letterData = letters[i];
+
+ if (currentInd != letterData.anIndexes[j]) {
+ // eslint-disable-line eqeqeq
+ currentInd = letterData.anIndexes[j];
+ newInd = indexes.splice(Math.floor(Math.random() * indexes.length), 1)[0];
+ }
+
+ letterData.anIndexes[j] = newInd;
+ }
+ }
+ }
+
+ documentData.yOffset = documentData.finalLineHeight || documentData.finalSize * 1.2;
+ documentData.ls = documentData.ls || 0;
+ documentData.ascent = fontData.ascent * documentData.finalSize / 100;
+ };
+
+ TextProperty.prototype.updateDocumentData = function (newData, index) {
+ index = index === undefined ? this.keysIndex : index;
+ var dData = this.copyData({}, this.data.d.k[index].s);
+ dData = this.copyData(dData, newData);
+ this.data.d.k[index].s = dData;
+ this.recalculate(index);
+ this.setCurrentData(dData);
+ this.elem.addDynamicProperty(this);
+ };
+
+ TextProperty.prototype.recalculate = function (index) {
+ var dData = this.data.d.k[index].s;
+ dData.__complete = false;
+ this.keysIndex = 0;
+ this._isFirstFrame = true;
+ this.getValue(dData);
+ };
+
+ TextProperty.prototype.canResizeFont = function (_canResize) {
+ this.canResize = _canResize;
+ this.recalculate(this.keysIndex);
+ this.elem.addDynamicProperty(this);
+ };
+
+ TextProperty.prototype.setMinimumFontSize = function (_fontValue) {
+ this.minimumFontSize = Math.floor(_fontValue) || 1;
+ this.recalculate(this.keysIndex);
+ this.elem.addDynamicProperty(this);
+ };
+
+ var TextSelectorProp = function () {
+ var max = Math.max;
+ var min = Math.min;
+ var floor = Math.floor;
+
+ function TextSelectorPropFactory(elem, data) {
+ this._currentTextLength = -1;
+ this.k = false;
+ this.data = data;
+ this.elem = elem;
+ this.comp = elem.comp;
+ this.finalS = 0;
+ this.finalE = 0;
+ this.initDynamicPropertyContainer(elem);
+ this.s = PropertyFactory.getProp(elem, data.s || {
+ k: 0
+ }, 0, 0, this);
+
+ if ('e' in data) {
+ this.e = PropertyFactory.getProp(elem, data.e, 0, 0, this);
+ } else {
+ this.e = {
+ v: 100
+ };
+ }
+
+ this.o = PropertyFactory.getProp(elem, data.o || {
+ k: 0
+ }, 0, 0, this);
+ this.xe = PropertyFactory.getProp(elem, data.xe || {
+ k: 0
+ }, 0, 0, this);
+ this.ne = PropertyFactory.getProp(elem, data.ne || {
+ k: 0
+ }, 0, 0, this);
+ this.sm = PropertyFactory.getProp(elem, data.sm || {
+ k: 100
+ }, 0, 0, this);
+ this.a = PropertyFactory.getProp(elem, data.a, 0, 0.01, this);
+
+ if (!this.dynamicProperties.length) {
+ this.getValue();
+ }
+ }
+
+ TextSelectorPropFactory.prototype = {
+ getMult: function getMult(ind) {
+ if (this._currentTextLength !== this.elem.textProperty.currentData.l.length) {
+ this.getValue();
+ }
+
+ var x1 = 0;
+ var y1 = 0;
+ var x2 = 1;
+ var y2 = 1;
+
+ if (this.ne.v > 0) {
+ x1 = this.ne.v / 100.0;
+ } else {
+ y1 = -this.ne.v / 100.0;
+ }
+
+ if (this.xe.v > 0) {
+ x2 = 1.0 - this.xe.v / 100.0;
+ } else {
+ y2 = 1.0 + this.xe.v / 100.0;
+ }
+
+ var easer = BezierFactory.getBezierEasing(x1, y1, x2, y2).get;
+ var mult = 0;
+ var s = this.finalS;
+ var e = this.finalE;
+ var type = this.data.sh;
+
+ if (type === 2) {
+ if (e === s) {
+ mult = ind >= e ? 1 : 0;
+ } else {
+ mult = max(0, min(0.5 / (e - s) + (ind - s) / (e - s), 1));
+ }
+
+ mult = easer(mult);
+ } else if (type === 3) {
+ if (e === s) {
+ mult = ind >= e ? 0 : 1;
+ } else {
+ mult = 1 - max(0, min(0.5 / (e - s) + (ind - s) / (e - s), 1));
+ }
+
+ mult = easer(mult);
+ } else if (type === 4) {
+ if (e === s) {
+ mult = 0;
+ } else {
+ mult = max(0, min(0.5 / (e - s) + (ind - s) / (e - s), 1));
+
+ if (mult < 0.5) {
+ mult *= 2;
+ } else {
+ mult = 1 - 2 * (mult - 0.5);
+ }
+ }
+
+ mult = easer(mult);
+ } else if (type === 5) {
+ if (e === s) {
+ mult = 0;
+ } else {
+ var tot = e - s;
+ /* ind += 0.5;
+ mult = -4/(tot*tot)*(ind*ind)+(4/tot)*ind; */
+
+ ind = min(max(0, ind + 0.5 - s), e - s);
+ var x = -tot / 2 + ind;
+ var a = tot / 2;
+ mult = Math.sqrt(1 - x * x / (a * a));
+ }
+
+ mult = easer(mult);
+ } else if (type === 6) {
+ if (e === s) {
+ mult = 0;
+ } else {
+ ind = min(max(0, ind + 0.5 - s), e - s);
+ mult = (1 + Math.cos(Math.PI + Math.PI * 2 * ind / (e - s))) / 2; // eslint-disable-line
+ }
+
+ mult = easer(mult);
+ } else {
+ if (ind >= floor(s)) {
+ if (ind - s < 0) {
+ mult = max(0, min(min(e, 1) - (s - ind), 1));
+ } else {
+ mult = max(0, min(e - ind, 1));
+ }
+ }
+
+ mult = easer(mult);
+ } // Smoothness implementation.
+ // The smoothness represents a reduced range of the original [0; 1] range.
+ // if smoothness is 25%, the new range will be [0.375; 0.625]
+ // Steps are:
+ // - find the lower value of the new range (threshold)
+ // - if multiplier is smaller than that value, floor it to 0
+ // - if it is larger,
+ // - subtract the threshold
+ // - divide it by the smoothness (this will return the range to [0; 1])
+ // Note: If it doesn't work on some scenarios, consider applying it before the easer.
+
+
+ if (this.sm.v !== 100) {
+ var smoothness = this.sm.v * 0.01;
+
+ if (smoothness === 0) {
+ smoothness = 0.00000001;
+ }
+
+ var threshold = 0.5 - smoothness * 0.5;
+
+ if (mult < threshold) {
+ mult = 0;
+ } else {
+ mult = (mult - threshold) / smoothness;
+
+ if (mult > 1) {
+ mult = 1;
+ }
+ }
+ }
+
+ return mult * this.a.v;
+ },
+ getValue: function getValue(newCharsFlag) {
+ this.iterateDynamicProperties();
+ this._mdf = newCharsFlag || this._mdf;
+ this._currentTextLength = this.elem.textProperty.currentData.l.length || 0;
+
+ if (newCharsFlag && this.data.r === 2) {
+ this.e.v = this._currentTextLength;
+ }
+
+ var divisor = this.data.r === 2 ? 1 : 100 / this.data.totalChars;
+ var o = this.o.v / divisor;
+ var s = this.s.v / divisor + o;
+ var e = this.e.v / divisor + o;
+
+ if (s > e) {
+ var _s = s;
+ s = e;
+ e = _s;
+ }
+
+ this.finalS = s;
+ this.finalE = e;
+ }
+ };
+ extendPrototype([DynamicPropertyContainer], TextSelectorPropFactory);
+
+ function getTextSelectorProp(elem, data, arr) {
+ return new TextSelectorPropFactory(elem, data, arr);
+ }
+
+ return {
+ getTextSelectorProp: getTextSelectorProp
+ };
+ }();
+
+ function TextAnimatorDataProperty(elem, animatorProps, container) {
+ var defaultData = {
+ propType: false
+ };
+ var getProp = PropertyFactory.getProp;
+ var textAnimatorAnimatables = animatorProps.a;
+ this.a = {
+ r: textAnimatorAnimatables.r ? getProp(elem, textAnimatorAnimatables.r, 0, degToRads, container) : defaultData,
+ rx: textAnimatorAnimatables.rx ? getProp(elem, textAnimatorAnimatables.rx, 0, degToRads, container) : defaultData,
+ ry: textAnimatorAnimatables.ry ? getProp(elem, textAnimatorAnimatables.ry, 0, degToRads, container) : defaultData,
+ sk: textAnimatorAnimatables.sk ? getProp(elem, textAnimatorAnimatables.sk, 0, degToRads, container) : defaultData,
+ sa: textAnimatorAnimatables.sa ? getProp(elem, textAnimatorAnimatables.sa, 0, degToRads, container) : defaultData,
+ s: textAnimatorAnimatables.s ? getProp(elem, textAnimatorAnimatables.s, 1, 0.01, container) : defaultData,
+ a: textAnimatorAnimatables.a ? getProp(elem, textAnimatorAnimatables.a, 1, 0, container) : defaultData,
+ o: textAnimatorAnimatables.o ? getProp(elem, textAnimatorAnimatables.o, 0, 0.01, container) : defaultData,
+ p: textAnimatorAnimatables.p ? getProp(elem, textAnimatorAnimatables.p, 1, 0, container) : defaultData,
+ sw: textAnimatorAnimatables.sw ? getProp(elem, textAnimatorAnimatables.sw, 0, 0, container) : defaultData,
+ sc: textAnimatorAnimatables.sc ? getProp(elem, textAnimatorAnimatables.sc, 1, 0, container) : defaultData,
+ fc: textAnimatorAnimatables.fc ? getProp(elem, textAnimatorAnimatables.fc, 1, 0, container) : defaultData,
+ fh: textAnimatorAnimatables.fh ? getProp(elem, textAnimatorAnimatables.fh, 0, 0, container) : defaultData,
+ fs: textAnimatorAnimatables.fs ? getProp(elem, textAnimatorAnimatables.fs, 0, 0.01, container) : defaultData,
+ fb: textAnimatorAnimatables.fb ? getProp(elem, textAnimatorAnimatables.fb, 0, 0.01, container) : defaultData,
+ t: textAnimatorAnimatables.t ? getProp(elem, textAnimatorAnimatables.t, 0, 0, container) : defaultData
+ };
+ this.s = TextSelectorProp.getTextSelectorProp(elem, animatorProps.s, container);
+ this.s.t = animatorProps.s.t;
+ }
+
+ function TextAnimatorProperty(textData, renderType, elem) {
+ this._isFirstFrame = true;
+ this._hasMaskedPath = false;
+ this._frameId = -1;
+ this._textData = textData;
+ this._renderType = renderType;
+ this._elem = elem;
+ this._animatorsData = createSizedArray(this._textData.a.length);
+ this._pathData = {};
+ this._moreOptions = {
+ alignment: {}
+ };
+ this.renderedLetters = [];
+ this.lettersChangedFlag = false;
+ this.initDynamicPropertyContainer(elem);
+ }
+
+ TextAnimatorProperty.prototype.searchProperties = function () {
+ var i;
+ var len = this._textData.a.length;
+ var animatorProps;
+ var getProp = PropertyFactory.getProp;
+
+ for (i = 0; i < len; i += 1) {
+ animatorProps = this._textData.a[i];
+ this._animatorsData[i] = new TextAnimatorDataProperty(this._elem, animatorProps, this);
+ }
+
+ if (this._textData.p && 'm' in this._textData.p) {
+ this._pathData = {
+ a: getProp(this._elem, this._textData.p.a, 0, 0, this),
+ f: getProp(this._elem, this._textData.p.f, 0, 0, this),
+ l: getProp(this._elem, this._textData.p.l, 0, 0, this),
+ r: getProp(this._elem, this._textData.p.r, 0, 0, this),
+ p: getProp(this._elem, this._textData.p.p, 0, 0, this),
+ m: this._elem.maskManager.getMaskProperty(this._textData.p.m)
+ };
+ this._hasMaskedPath = true;
+ } else {
+ this._hasMaskedPath = false;
+ }
+
+ this._moreOptions.alignment = getProp(this._elem, this._textData.m.a, 1, 0, this);
+ };
+
+ TextAnimatorProperty.prototype.getMeasures = function (documentData, lettersChangedFlag) {
+ this.lettersChangedFlag = lettersChangedFlag;
+
+ if (!this._mdf && !this._isFirstFrame && !lettersChangedFlag && (!this._hasMaskedPath || !this._pathData.m._mdf)) {
+ return;
+ }
+
+ this._isFirstFrame = false;
+ var alignment = this._moreOptions.alignment.v;
+ var animators = this._animatorsData;
+ var textData = this._textData;
+ var matrixHelper = this.mHelper;
+ var renderType = this._renderType;
+ var renderedLettersCount = this.renderedLetters.length;
+ var xPos;
+ var yPos;
+ var i;
+ var len;
+ var letters = documentData.l;
+ var pathInfo;
+ var currentLength;
+ var currentPoint;
+ var segmentLength;
+ var flag;
+ var pointInd;
+ var segmentInd;
+ var prevPoint;
+ var points;
+ var segments;
+ var partialLength;
+ var totalLength;
+ var perc;
+ var tanAngle;
+ var mask;
+
+ if (this._hasMaskedPath) {
+ mask = this._pathData.m;
+
+ if (!this._pathData.n || this._pathData._mdf) {
+ var paths = mask.v;
+
+ if (this._pathData.r.v) {
+ paths = paths.reverse();
+ } // TODO: release bezier data cached from previous pathInfo: this._pathData.pi
+
+
+ pathInfo = {
+ tLength: 0,
+ segments: []
+ };
+ len = paths._length - 1;
+ var bezierData;
+ totalLength = 0;
+
+ for (i = 0; i < len; i += 1) {
+ bezierData = bez.buildBezierData(paths.v[i], paths.v[i + 1], [paths.o[i][0] - paths.v[i][0], paths.o[i][1] - paths.v[i][1]], [paths.i[i + 1][0] - paths.v[i + 1][0], paths.i[i + 1][1] - paths.v[i + 1][1]]);
+ pathInfo.tLength += bezierData.segmentLength;
+ pathInfo.segments.push(bezierData);
+ totalLength += bezierData.segmentLength;
+ }
+
+ i = len;
+
+ if (mask.v.c) {
+ bezierData = bez.buildBezierData(paths.v[i], paths.v[0], [paths.o[i][0] - paths.v[i][0], paths.o[i][1] - paths.v[i][1]], [paths.i[0][0] - paths.v[0][0], paths.i[0][1] - paths.v[0][1]]);
+ pathInfo.tLength += bezierData.segmentLength;
+ pathInfo.segments.push(bezierData);
+ totalLength += bezierData.segmentLength;
+ }
+
+ this._pathData.pi = pathInfo;
+ }
+
+ pathInfo = this._pathData.pi;
+ currentLength = this._pathData.f.v;
+ segmentInd = 0;
+ pointInd = 1;
+ segmentLength = 0;
+ flag = true;
+ segments = pathInfo.segments;
+
+ if (currentLength < 0 && mask.v.c) {
+ if (pathInfo.tLength < Math.abs(currentLength)) {
+ currentLength = -Math.abs(currentLength) % pathInfo.tLength;
+ }
+
+ segmentInd = segments.length - 1;
+ points = segments[segmentInd].points;
+ pointInd = points.length - 1;
+
+ while (currentLength < 0) {
+ currentLength += points[pointInd].partialLength;
+ pointInd -= 1;
+
+ if (pointInd < 0) {
+ segmentInd -= 1;
+ points = segments[segmentInd].points;
+ pointInd = points.length - 1;
+ }
+ }
+ }
+
+ points = segments[segmentInd].points;
+ prevPoint = points[pointInd - 1];
+ currentPoint = points[pointInd];
+ partialLength = currentPoint.partialLength;
+ }
+
+ len = letters.length;
+ xPos = 0;
+ yPos = 0;
+ var yOff = documentData.finalSize * 1.2 * 0.714;
+ var firstLine = true;
+ var animatorProps;
+ var animatorSelector;
+ var j;
+ var jLen;
+ var letterValue;
+ jLen = animators.length;
+ var mult;
+ var ind = -1;
+ var offf;
+ var xPathPos;
+ var yPathPos;
+ var initPathPos = currentLength;
+ var initSegmentInd = segmentInd;
+ var initPointInd = pointInd;
+ var currentLine = -1;
+ var elemOpacity;
+ var sc;
+ var sw;
+ var fc;
+ var k;
+ var letterSw;
+ var letterSc;
+ var letterFc;
+ var letterM = '';
+ var letterP = this.defaultPropsArray;
+ var letterO; //
+
+ if (documentData.j === 2 || documentData.j === 1) {
+ var animatorJustifyOffset = 0;
+ var animatorFirstCharOffset = 0;
+ var justifyOffsetMult = documentData.j === 2 ? -0.5 : -1;
+ var lastIndex = 0;
+ var isNewLine = true;
+
+ for (i = 0; i < len; i += 1) {
+ if (letters[i].n) {
+ if (animatorJustifyOffset) {
+ animatorJustifyOffset += animatorFirstCharOffset;
+ }
+
+ while (lastIndex < i) {
+ letters[lastIndex].animatorJustifyOffset = animatorJustifyOffset;
+ lastIndex += 1;
+ }
+
+ animatorJustifyOffset = 0;
+ isNewLine = true;
+ } else {
+ for (j = 0; j < jLen; j += 1) {
+ animatorProps = animators[j].a;
+
+ if (animatorProps.t.propType) {
+ if (isNewLine && documentData.j === 2) {
+ animatorFirstCharOffset += animatorProps.t.v * justifyOffsetMult;
+ }
+
+ animatorSelector = animators[j].s;
+ mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);
+
+ if (mult.length) {
+ animatorJustifyOffset += animatorProps.t.v * mult[0] * justifyOffsetMult;
+ } else {
+ animatorJustifyOffset += animatorProps.t.v * mult * justifyOffsetMult;
+ }
+ }
+ }
+
+ isNewLine = false;
+ }
+ }
+
+ if (animatorJustifyOffset) {
+ animatorJustifyOffset += animatorFirstCharOffset;
+ }
+
+ while (lastIndex < i) {
+ letters[lastIndex].animatorJustifyOffset = animatorJustifyOffset;
+ lastIndex += 1;
+ }
+ } //
+
+
+ for (i = 0; i < len; i += 1) {
+ matrixHelper.reset();
+ elemOpacity = 1;
+
+ if (letters[i].n) {
+ xPos = 0;
+ yPos += documentData.yOffset;
+ yPos += firstLine ? 1 : 0;
+ currentLength = initPathPos;
+ firstLine = false;
+
+ if (this._hasMaskedPath) {
+ segmentInd = initSegmentInd;
+ pointInd = initPointInd;
+ points = segments[segmentInd].points;
+ prevPoint = points[pointInd - 1];
+ currentPoint = points[pointInd];
+ partialLength = currentPoint.partialLength;
+ segmentLength = 0;
+ }
+
+ letterM = '';
+ letterFc = '';
+ letterSw = '';
+ letterO = '';
+ letterP = this.defaultPropsArray;
+ } else {
+ if (this._hasMaskedPath) {
+ if (currentLine !== letters[i].line) {
+ switch (documentData.j) {
+ case 1:
+ currentLength += totalLength - documentData.lineWidths[letters[i].line];
+ break;
+
+ case 2:
+ currentLength += (totalLength - documentData.lineWidths[letters[i].line]) / 2;
+ break;
+
+ default:
+ break;
+ }
+
+ currentLine = letters[i].line;
+ }
+
+ if (ind !== letters[i].ind) {
+ if (letters[ind]) {
+ currentLength += letters[ind].extra;
+ }
+
+ currentLength += letters[i].an / 2;
+ ind = letters[i].ind;
+ }
+
+ currentLength += alignment[0] * letters[i].an * 0.005;
+ var animatorOffset = 0;
+
+ for (j = 0; j < jLen; j += 1) {
+ animatorProps = animators[j].a;
+
+ if (animatorProps.p.propType) {
+ animatorSelector = animators[j].s;
+ mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);
+
+ if (mult.length) {
+ animatorOffset += animatorProps.p.v[0] * mult[0];
+ } else {
+ animatorOffset += animatorProps.p.v[0] * mult;
+ }
+ }
+
+ if (animatorProps.a.propType) {
+ animatorSelector = animators[j].s;
+ mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);
+
+ if (mult.length) {
+ animatorOffset += animatorProps.a.v[0] * mult[0];
+ } else {
+ animatorOffset += animatorProps.a.v[0] * mult;
+ }
+ }
+ }
+
+ flag = true; // Force alignment only works with a single line for now
+
+ if (this._pathData.a.v) {
+ currentLength = letters[0].an * 0.5 + (totalLength - this._pathData.f.v - letters[0].an * 0.5 - letters[letters.length - 1].an * 0.5) * ind / (len - 1);
+ currentLength += this._pathData.f.v;
+ }
+
+ while (flag) {
+ if (segmentLength + partialLength >= currentLength + animatorOffset || !points) {
+ perc = (currentLength + animatorOffset - segmentLength) / currentPoint.partialLength;
+ xPathPos = prevPoint.point[0] + (currentPoint.point[0] - prevPoint.point[0]) * perc;
+ yPathPos = prevPoint.point[1] + (currentPoint.point[1] - prevPoint.point[1]) * perc;
+ matrixHelper.translate(-alignment[0] * letters[i].an * 0.005, -(alignment[1] * yOff) * 0.01);
+ flag = false;
+ } else if (points) {
+ segmentLength += currentPoint.partialLength;
+ pointInd += 1;
+
+ if (pointInd >= points.length) {
+ pointInd = 0;
+ segmentInd += 1;
+
+ if (!segments[segmentInd]) {
+ if (mask.v.c) {
+ pointInd = 0;
+ segmentInd = 0;
+ points = segments[segmentInd].points;
+ } else {
+ segmentLength -= currentPoint.partialLength;
+ points = null;
+ }
+ } else {
+ points = segments[segmentInd].points;
+ }
+ }
+
+ if (points) {
+ prevPoint = currentPoint;
+ currentPoint = points[pointInd];
+ partialLength = currentPoint.partialLength;
+ }
+ }
+ }
+
+ offf = letters[i].an / 2 - letters[i].add;
+ matrixHelper.translate(-offf, 0, 0);
+ } else {
+ offf = letters[i].an / 2 - letters[i].add;
+ matrixHelper.translate(-offf, 0, 0); // Grouping alignment
+
+ matrixHelper.translate(-alignment[0] * letters[i].an * 0.005, -alignment[1] * yOff * 0.01, 0);
+ }
+
+ for (j = 0; j < jLen; j += 1) {
+ animatorProps = animators[j].a;
+
+ if (animatorProps.t.propType) {
+ animatorSelector = animators[j].s;
+ mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars); // This condition is to prevent applying tracking to first character in each line. Might be better to use a boolean "isNewLine"
+
+ if (xPos !== 0 || documentData.j !== 0) {
+ if (this._hasMaskedPath) {
+ if (mult.length) {
+ currentLength += animatorProps.t.v * mult[0];
+ } else {
+ currentLength += animatorProps.t.v * mult;
+ }
+ } else if (mult.length) {
+ xPos += animatorProps.t.v * mult[0];
+ } else {
+ xPos += animatorProps.t.v * mult;
+ }
+ }
+ }
+ }
+
+ if (documentData.strokeWidthAnim) {
+ sw = documentData.sw || 0;
+ }
+
+ if (documentData.strokeColorAnim) {
+ if (documentData.sc) {
+ sc = [documentData.sc[0], documentData.sc[1], documentData.sc[2]];
+ } else {
+ sc = [0, 0, 0];
+ }
+ }
+
+ if (documentData.fillColorAnim && documentData.fc) {
+ fc = [documentData.fc[0], documentData.fc[1], documentData.fc[2]];
+ }
+
+ for (j = 0; j < jLen; j += 1) {
+ animatorProps = animators[j].a;
+
+ if (animatorProps.a.propType) {
+ animatorSelector = animators[j].s;
+ mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);
+
+ if (mult.length) {
+ matrixHelper.translate(-animatorProps.a.v[0] * mult[0], -animatorProps.a.v[1] * mult[1], animatorProps.a.v[2] * mult[2]);
+ } else {
+ matrixHelper.translate(-animatorProps.a.v[0] * mult, -animatorProps.a.v[1] * mult, animatorProps.a.v[2] * mult);
+ }
+ }
+ }
+
+ for (j = 0; j < jLen; j += 1) {
+ animatorProps = animators[j].a;
+
+ if (animatorProps.s.propType) {
+ animatorSelector = animators[j].s;
+ mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);
+
+ if (mult.length) {
+ matrixHelper.scale(1 + (animatorProps.s.v[0] - 1) * mult[0], 1 + (animatorProps.s.v[1] - 1) * mult[1], 1);
+ } else {
+ matrixHelper.scale(1 + (animatorProps.s.v[0] - 1) * mult, 1 + (animatorProps.s.v[1] - 1) * mult, 1);
+ }
+ }
+ }
+
+ for (j = 0; j < jLen; j += 1) {
+ animatorProps = animators[j].a;
+ animatorSelector = animators[j].s;
+ mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);
+
+ if (animatorProps.sk.propType) {
+ if (mult.length) {
+ matrixHelper.skewFromAxis(-animatorProps.sk.v * mult[0], animatorProps.sa.v * mult[1]);
+ } else {
+ matrixHelper.skewFromAxis(-animatorProps.sk.v * mult, animatorProps.sa.v * mult);
+ }
+ }
+
+ if (animatorProps.r.propType) {
+ if (mult.length) {
+ matrixHelper.rotateZ(-animatorProps.r.v * mult[2]);
+ } else {
+ matrixHelper.rotateZ(-animatorProps.r.v * mult);
+ }
+ }
+
+ if (animatorProps.ry.propType) {
+ if (mult.length) {
+ matrixHelper.rotateY(animatorProps.ry.v * mult[1]);
+ } else {
+ matrixHelper.rotateY(animatorProps.ry.v * mult);
+ }
+ }
+
+ if (animatorProps.rx.propType) {
+ if (mult.length) {
+ matrixHelper.rotateX(animatorProps.rx.v * mult[0]);
+ } else {
+ matrixHelper.rotateX(animatorProps.rx.v * mult);
+ }
+ }
+
+ if (animatorProps.o.propType) {
+ if (mult.length) {
+ elemOpacity += (animatorProps.o.v * mult[0] - elemOpacity) * mult[0];
+ } else {
+ elemOpacity += (animatorProps.o.v * mult - elemOpacity) * mult;
+ }
+ }
+
+ if (documentData.strokeWidthAnim && animatorProps.sw.propType) {
+ if (mult.length) {
+ sw += animatorProps.sw.v * mult[0];
+ } else {
+ sw += animatorProps.sw.v * mult;
+ }
+ }
+
+ if (documentData.strokeColorAnim && animatorProps.sc.propType) {
+ for (k = 0; k < 3; k += 1) {
+ if (mult.length) {
+ sc[k] += (animatorProps.sc.v[k] - sc[k]) * mult[0];
+ } else {
+ sc[k] += (animatorProps.sc.v[k] - sc[k]) * mult;
+ }
+ }
+ }
+
+ if (documentData.fillColorAnim && documentData.fc) {
+ if (animatorProps.fc.propType) {
+ for (k = 0; k < 3; k += 1) {
+ if (mult.length) {
+ fc[k] += (animatorProps.fc.v[k] - fc[k]) * mult[0];
+ } else {
+ fc[k] += (animatorProps.fc.v[k] - fc[k]) * mult;
+ }
+ }
+ }
+
+ if (animatorProps.fh.propType) {
+ if (mult.length) {
+ fc = addHueToRGB(fc, animatorProps.fh.v * mult[0]);
+ } else {
+ fc = addHueToRGB(fc, animatorProps.fh.v * mult);
+ }
+ }
+
+ if (animatorProps.fs.propType) {
+ if (mult.length) {
+ fc = addSaturationToRGB(fc, animatorProps.fs.v * mult[0]);
+ } else {
+ fc = addSaturationToRGB(fc, animatorProps.fs.v * mult);
+ }
+ }
+
+ if (animatorProps.fb.propType) {
+ if (mult.length) {
+ fc = addBrightnessToRGB(fc, animatorProps.fb.v * mult[0]);
+ } else {
+ fc = addBrightnessToRGB(fc, animatorProps.fb.v * mult);
+ }
+ }
+ }
+ }
+
+ for (j = 0; j < jLen; j += 1) {
+ animatorProps = animators[j].a;
+
+ if (animatorProps.p.propType) {
+ animatorSelector = animators[j].s;
+ mult = animatorSelector.getMult(letters[i].anIndexes[j], textData.a[j].s.totalChars);
+
+ if (this._hasMaskedPath) {
+ if (mult.length) {
+ matrixHelper.translate(0, animatorProps.p.v[1] * mult[0], -animatorProps.p.v[2] * mult[1]);
+ } else {
+ matrixHelper.translate(0, animatorProps.p.v[1] * mult, -animatorProps.p.v[2] * mult);
+ }
+ } else if (mult.length) {
+ matrixHelper.translate(animatorProps.p.v[0] * mult[0], animatorProps.p.v[1] * mult[1], -animatorProps.p.v[2] * mult[2]);
+ } else {
+ matrixHelper.translate(animatorProps.p.v[0] * mult, animatorProps.p.v[1] * mult, -animatorProps.p.v[2] * mult);
+ }
+ }
+ }
+
+ if (documentData.strokeWidthAnim) {
+ letterSw = sw < 0 ? 0 : sw;
+ }
+
+ if (documentData.strokeColorAnim) {
+ letterSc = 'rgb(' + Math.round(sc[0] * 255) + ',' + Math.round(sc[1] * 255) + ',' + Math.round(sc[2] * 255) + ')';
+ }
+
+ if (documentData.fillColorAnim && documentData.fc) {
+ letterFc = 'rgb(' + Math.round(fc[0] * 255) + ',' + Math.round(fc[1] * 255) + ',' + Math.round(fc[2] * 255) + ')';
+ }
+
+ if (this._hasMaskedPath) {
+ matrixHelper.translate(0, -documentData.ls);
+ matrixHelper.translate(0, alignment[1] * yOff * 0.01 + yPos, 0);
+
+ if (this._pathData.p.v) {
+ tanAngle = (currentPoint.point[1] - prevPoint.point[1]) / (currentPoint.point[0] - prevPoint.point[0]);
+ var rot = Math.atan(tanAngle) * 180 / Math.PI;
+
+ if (currentPoint.point[0] < prevPoint.point[0]) {
+ rot += 180;
+ }
+
+ matrixHelper.rotate(-rot * Math.PI / 180);
+ }
+
+ matrixHelper.translate(xPathPos, yPathPos, 0);
+ currentLength -= alignment[0] * letters[i].an * 0.005;
+
+ if (letters[i + 1] && ind !== letters[i + 1].ind) {
+ currentLength += letters[i].an / 2;
+ currentLength += documentData.tr * 0.001 * documentData.finalSize;
+ }
+ } else {
+ matrixHelper.translate(xPos, yPos, 0);
+
+ if (documentData.ps) {
+ // matrixHelper.translate(documentData.ps[0],documentData.ps[1],0);
+ matrixHelper.translate(documentData.ps[0], documentData.ps[1] + documentData.ascent, 0);
+ }
+
+ switch (documentData.j) {
+ case 1:
+ matrixHelper.translate(letters[i].animatorJustifyOffset + documentData.justifyOffset + (documentData.boxWidth - documentData.lineWidths[letters[i].line]), 0, 0);
+ break;
+
+ case 2:
+ matrixHelper.translate(letters[i].animatorJustifyOffset + documentData.justifyOffset + (documentData.boxWidth - documentData.lineWidths[letters[i].line]) / 2, 0, 0);
+ break;
+
+ default:
+ break;
+ }
+
+ matrixHelper.translate(0, -documentData.ls);
+ matrixHelper.translate(offf, 0, 0);
+ matrixHelper.translate(alignment[0] * letters[i].an * 0.005, alignment[1] * yOff * 0.01, 0);
+ xPos += letters[i].l + documentData.tr * 0.001 * documentData.finalSize;
+ }
+
+ if (renderType === 'html') {
+ letterM = matrixHelper.toCSS();
+ } else if (renderType === 'svg') {
+ letterM = matrixHelper.to2dCSS();
+ } else {
+ letterP = [matrixHelper.props[0], matrixHelper.props[1], matrixHelper.props[2], matrixHelper.props[3], matrixHelper.props[4], matrixHelper.props[5], matrixHelper.props[6], matrixHelper.props[7], matrixHelper.props[8], matrixHelper.props[9], matrixHelper.props[10], matrixHelper.props[11], matrixHelper.props[12], matrixHelper.props[13], matrixHelper.props[14], matrixHelper.props[15]];
+ }
+
+ letterO = elemOpacity;
+ }
+
+ if (renderedLettersCount <= i) {
+ letterValue = new LetterProps(letterO, letterSw, letterSc, letterFc, letterM, letterP);
+ this.renderedLetters.push(letterValue);
+ renderedLettersCount += 1;
+ this.lettersChangedFlag = true;
+ } else {
+ letterValue = this.renderedLetters[i];
+ this.lettersChangedFlag = letterValue.update(letterO, letterSw, letterSc, letterFc, letterM, letterP) || this.lettersChangedFlag;
+ }
+ }
+ };
+
+ TextAnimatorProperty.prototype.getValue = function () {
+ if (this._elem.globalData.frameId === this._frameId) {
+ return;
+ }
+
+ this._frameId = this._elem.globalData.frameId;
+ this.iterateDynamicProperties();
+ };
+
+ TextAnimatorProperty.prototype.mHelper = new Matrix();
+ TextAnimatorProperty.prototype.defaultPropsArray = [];
+ extendPrototype([DynamicPropertyContainer], TextAnimatorProperty);
+
+ function ITextElement() {}
+
+ ITextElement.prototype.initElement = function (data, globalData, comp) {
+ this.lettersChangedFlag = true;
+ this.initFrame();
+ this.initBaseData(data, globalData, comp);
+ this.textProperty = new TextProperty(this, data.t, this.dynamicProperties);
+ this.textAnimator = new TextAnimatorProperty(data.t, this.renderType, this);
+ this.initTransform(data, globalData, comp);
+ this.initHierarchy();
+ this.initRenderable();
+ this.initRendererElement();
+ this.createContainerElements();
+ this.createRenderableComponents();
+ this.createContent();
+ this.hide();
+ this.textAnimator.searchProperties(this.dynamicProperties);
+ };
+
+ ITextElement.prototype.prepareFrame = function (num) {
+ this._mdf = false;
+ this.prepareRenderableFrame(num);
+ this.prepareProperties(num, this.isInRange);
+ };
+
+ ITextElement.prototype.createPathShape = function (matrixHelper, shapes) {
+ var j;
+ var jLen = shapes.length;
+ var pathNodes;
+ var shapeStr = '';
+
+ for (j = 0; j < jLen; j += 1) {
+ if (shapes[j].ty === 'sh') {
+ pathNodes = shapes[j].ks.k;
+ shapeStr += buildShapeString(pathNodes, pathNodes.i.length, true, matrixHelper);
+ }
+ }
+
+ return shapeStr;
+ };
+
+ ITextElement.prototype.updateDocumentData = function (newData, index) {
+ this.textProperty.updateDocumentData(newData, index);
+ };
+
+ ITextElement.prototype.canResizeFont = function (_canResize) {
+ this.textProperty.canResizeFont(_canResize);
+ };
+
+ ITextElement.prototype.setMinimumFontSize = function (_fontSize) {
+ this.textProperty.setMinimumFontSize(_fontSize);
+ };
+
+ ITextElement.prototype.applyTextPropertiesToMatrix = function (documentData, matrixHelper, lineNumber, xPos, yPos) {
+ if (documentData.ps) {
+ matrixHelper.translate(documentData.ps[0], documentData.ps[1] + documentData.ascent, 0);
+ }
+
+ matrixHelper.translate(0, -documentData.ls, 0);
+
+ switch (documentData.j) {
+ case 1:
+ matrixHelper.translate(documentData.justifyOffset + (documentData.boxWidth - documentData.lineWidths[lineNumber]), 0, 0);
+ break;
+
+ case 2:
+ matrixHelper.translate(documentData.justifyOffset + (documentData.boxWidth - documentData.lineWidths[lineNumber]) / 2, 0, 0);
+ break;
+
+ default:
+ break;
+ }
+
+ matrixHelper.translate(xPos, yPos, 0);
+ };
+
+ ITextElement.prototype.buildColor = function (colorData) {
+ return 'rgb(' + Math.round(colorData[0] * 255) + ',' + Math.round(colorData[1] * 255) + ',' + Math.round(colorData[2] * 255) + ')';
+ };
+
+ ITextElement.prototype.emptyProp = new LetterProps();
+
+ ITextElement.prototype.destroy = function () {};
+
+ ITextElement.prototype.validateText = function () {
+ if (this.textProperty._mdf || this.textProperty._isFirstFrame) {
+ this.buildNewText();
+ this.textProperty._isFirstFrame = false;
+ this.textProperty._mdf = false;
+ }
+ };
+
+ var emptyShapeData = {
+ shapes: []
+ };
+
+ function SVGTextLottieElement(data, globalData, comp) {
+ this.textSpans = [];
+ this.renderType = 'svg';
+ this.initElement(data, globalData, comp);
+ }
+
+ extendPrototype([BaseElement, TransformElement, SVGBaseElement, HierarchyElement, FrameElement, RenderableDOMElement, ITextElement], SVGTextLottieElement);
+
+ SVGTextLottieElement.prototype.createContent = function () {
+ if (this.data.singleShape && !this.globalData.fontManager.chars) {
+ this.textContainer = createNS('text');
+ }
+ };
+
+ SVGTextLottieElement.prototype.buildTextContents = function (textArray) {
+ var i = 0;
+ var len = textArray.length;
+ var textContents = [];
+ var currentTextContent = '';
+
+ while (i < len) {
+ if (textArray[i] === String.fromCharCode(13) || textArray[i] === String.fromCharCode(3)) {
+ textContents.push(currentTextContent);
+ currentTextContent = '';
+ } else {
+ currentTextContent += textArray[i];
+ }
+
+ i += 1;
+ }
+
+ textContents.push(currentTextContent);
+ return textContents;
+ };
+
+ SVGTextLottieElement.prototype.buildShapeData = function (data, scale) {
+ // data should probably be cloned to apply scale separately to each instance of a text on different layers
+ // but since text internal content gets only rendered once and then it's never rerendered,
+ // it's probably safe not to clone data and reuse always the same instance even if the object is mutated.
+ // Avoiding cloning is preferred since cloning each character shape data is expensive
+ if (data.shapes && data.shapes.length) {
+ var shape = data.shapes[0];
+
+ if (shape.it) {
+ var shapeItem = shape.it[shape.it.length - 1];
+
+ if (shapeItem.s) {
+ shapeItem.s.k[0] = scale;
+ shapeItem.s.k[1] = scale;
+ }
+ }
+ }
+
+ return data;
+ };
+
+ SVGTextLottieElement.prototype.buildNewText = function () {
+ this.addDynamicProperty(this);
+ var i;
+ var len;
+ var documentData = this.textProperty.currentData;
+ this.renderedLetters = createSizedArray(documentData ? documentData.l.length : 0);
+
+ if (documentData.fc) {
+ this.layerElement.setAttribute('fill', this.buildColor(documentData.fc));
+ } else {
+ this.layerElement.setAttribute('fill', 'rgba(0,0,0,0)');
+ }
+
+ if (documentData.sc) {
+ this.layerElement.setAttribute('stroke', this.buildColor(documentData.sc));
+ this.layerElement.setAttribute('stroke-width', documentData.sw);
+ }
+
+ this.layerElement.setAttribute('font-size', documentData.finalSize);
+ var fontData = this.globalData.fontManager.getFontByName(documentData.f);
+
+ if (fontData.fClass) {
+ this.layerElement.setAttribute('class', fontData.fClass);
+ } else {
+ this.layerElement.setAttribute('font-family', fontData.fFamily);
+ var fWeight = documentData.fWeight;
+ var fStyle = documentData.fStyle;
+ this.layerElement.setAttribute('font-style', fStyle);
+ this.layerElement.setAttribute('font-weight', fWeight);
+ }
+
+ this.layerElement.setAttribute('aria-label', documentData.t);
+ var letters = documentData.l || [];
+ var usesGlyphs = !!this.globalData.fontManager.chars;
+ len = letters.length;
+ var tSpan;
+ var matrixHelper = this.mHelper;
+ var shapeStr = '';
+ var singleShape = this.data.singleShape;
+ var xPos = 0;
+ var yPos = 0;
+ var firstLine = true;
+ var trackingOffset = documentData.tr * 0.001 * documentData.finalSize;
+
+ if (singleShape && !usesGlyphs && !documentData.sz) {
+ var tElement = this.textContainer;
+ var justify = 'start';
+
+ switch (documentData.j) {
+ case 1:
+ justify = 'end';
+ break;
+
+ case 2:
+ justify = 'middle';
+ break;
+
+ default:
+ justify = 'start';
+ break;
+ }
+
+ tElement.setAttribute('text-anchor', justify);
+ tElement.setAttribute('letter-spacing', trackingOffset);
+ var textContent = this.buildTextContents(documentData.finalText);
+ len = textContent.length;
+ yPos = documentData.ps ? documentData.ps[1] + documentData.ascent : 0;
+
+ for (i = 0; i < len; i += 1) {
+ tSpan = this.textSpans[i].span || createNS('tspan');
+ tSpan.textContent = textContent[i];
+ tSpan.setAttribute('x', 0);
+ tSpan.setAttribute('y', yPos);
+ tSpan.style.display = 'inherit';
+ tElement.appendChild(tSpan);
+
+ if (!this.textSpans[i]) {
+ this.textSpans[i] = {
+ span: null,
+ glyph: null
+ };
+ }
+
+ this.textSpans[i].span = tSpan;
+ yPos += documentData.finalLineHeight;
+ }
+
+ this.layerElement.appendChild(tElement);
+ } else {
+ var cachedSpansLength = this.textSpans.length;
+ var charData;
+
+ for (i = 0; i < len; i += 1) {
+ if (!this.textSpans[i]) {
+ this.textSpans[i] = {
+ span: null,
+ childSpan: null,
+ glyph: null
+ };
+ }
+
+ if (!usesGlyphs || !singleShape || i === 0) {
+ tSpan = cachedSpansLength > i ? this.textSpans[i].span : createNS(usesGlyphs ? 'g' : 'text');
+
+ if (cachedSpansLength <= i) {
+ tSpan.setAttribute('stroke-linecap', 'butt');
+ tSpan.setAttribute('stroke-linejoin', 'round');
+ tSpan.setAttribute('stroke-miterlimit', '4');
+ this.textSpans[i].span = tSpan;
+
+ if (usesGlyphs) {
+ var childSpan = createNS('g');
+ tSpan.appendChild(childSpan);
+ this.textSpans[i].childSpan = childSpan;
+ }
+
+ this.textSpans[i].span = tSpan;
+ this.layerElement.appendChild(tSpan);
+ }
+
+ tSpan.style.display = 'inherit';
+ }
+
+ matrixHelper.reset();
+
+ if (singleShape) {
+ if (letters[i].n) {
+ xPos = -trackingOffset;
+ yPos += documentData.yOffset;
+ yPos += firstLine ? 1 : 0;
+ firstLine = false;
+ }
+
+ this.applyTextPropertiesToMatrix(documentData, matrixHelper, letters[i].line, xPos, yPos);
+ xPos += letters[i].l || 0; // xPos += letters[i].val === ' ' ? 0 : trackingOffset;
+
+ xPos += trackingOffset;
+ }
+
+ if (usesGlyphs) {
+ charData = this.globalData.fontManager.getCharData(documentData.finalText[i], fontData.fStyle, this.globalData.fontManager.getFontByName(documentData.f).fFamily);
+ var glyphElement; // t === 1 means the character has been replaced with an animated shaped
+
+ if (charData.t === 1) {
+ glyphElement = new SVGCompElement(charData.data, this.globalData, this);
+ } else {
+ var data = emptyShapeData;
+
+ if (charData.data && charData.data.shapes) {
+ data = this.buildShapeData(charData.data, documentData.finalSize);
+ }
+
+ glyphElement = new SVGShapeElement(data, this.globalData, this);
+ }
+
+ if (this.textSpans[i].glyph) {
+ var glyph = this.textSpans[i].glyph;
+ this.textSpans[i].childSpan.removeChild(glyph.layerElement);
+ glyph.destroy();
+ }
+
+ this.textSpans[i].glyph = glyphElement;
+ glyphElement._debug = true;
+ glyphElement.prepareFrame(0);
+ glyphElement.renderFrame();
+ this.textSpans[i].childSpan.appendChild(glyphElement.layerElement); // when using animated shapes, the layer will be scaled instead of replacing the internal scale
+ // this might have issues with strokes and might need a different solution
+
+ if (charData.t === 1) {
+ this.textSpans[i].childSpan.setAttribute('transform', 'scale(' + documentData.finalSize / 100 + ',' + documentData.finalSize / 100 + ')');
+ }
+ } else {
+ if (singleShape) {
+ tSpan.setAttribute('transform', 'translate(' + matrixHelper.props[12] + ',' + matrixHelper.props[13] + ')');
+ }
+
+ tSpan.textContent = letters[i].val;
+ tSpan.setAttributeNS('http://www.w3.org/XML/1998/namespace', 'xml:space', 'preserve');
+ } //
+
+ }
+
+ if (singleShape && tSpan) {
+ tSpan.setAttribute('d', shapeStr);
+ }
+ }
+
+ while (i < this.textSpans.length) {
+ this.textSpans[i].span.style.display = 'none';
+ i += 1;
+ }
+
+ this._sizeChanged = true;
+ };
+
+ SVGTextLottieElement.prototype.sourceRectAtTime = function () {
+ this.prepareFrame(this.comp.renderedFrame - this.data.st);
+ this.renderInnerContent();
+
+ if (this._sizeChanged) {
+ this._sizeChanged = false;
+ var textBox = this.layerElement.getBBox();
+ this.bbox = {
+ top: textBox.y,
+ left: textBox.x,
+ width: textBox.width,
+ height: textBox.height
+ };
+ }
+
+ return this.bbox;
+ };
+
+ SVGTextLottieElement.prototype.getValue = function () {
+ var i;
+ var len = this.textSpans.length;
+ var glyphElement;
+ this.renderedFrame = this.comp.renderedFrame;
+
+ for (i = 0; i < len; i += 1) {
+ glyphElement = this.textSpans[i].glyph;
+
+ if (glyphElement) {
+ glyphElement.prepareFrame(this.comp.renderedFrame - this.data.st);
+
+ if (glyphElement._mdf) {
+ this._mdf = true;
+ }
+ }
+ }
+ };
+
+ SVGTextLottieElement.prototype.renderInnerContent = function () {
+ this.validateText();
+
+ if (!this.data.singleShape || this._mdf) {
+ this.textAnimator.getMeasures(this.textProperty.currentData, this.lettersChangedFlag);
+
+ if (this.lettersChangedFlag || this.textAnimator.lettersChangedFlag) {
+ this._sizeChanged = true;
+ var i;
+ var len;
+ var renderedLetters = this.textAnimator.renderedLetters;
+ var letters = this.textProperty.currentData.l;
+ len = letters.length;
+ var renderedLetter;
+ var textSpan;
+ var glyphElement;
+
+ for (i = 0; i < len; i += 1) {
+ if (!letters[i].n) {
+ renderedLetter = renderedLetters[i];
+ textSpan = this.textSpans[i].span;
+ glyphElement = this.textSpans[i].glyph;
+
+ if (glyphElement) {
+ glyphElement.renderFrame();
+ }
+
+ if (renderedLetter._mdf.m) {
+ textSpan.setAttribute('transform', renderedLetter.m);
+ }
+
+ if (renderedLetter._mdf.o) {
+ textSpan.setAttribute('opacity', renderedLetter.o);
+ }
+
+ if (renderedLetter._mdf.sw) {
+ textSpan.setAttribute('stroke-width', renderedLetter.sw);
+ }
+
+ if (renderedLetter._mdf.sc) {
+ textSpan.setAttribute('stroke', renderedLetter.sc);
+ }
+
+ if (renderedLetter._mdf.fc) {
+ textSpan.setAttribute('fill', renderedLetter.fc);
+ }
+ }
+ }
+ }
+ }
+ };
+
+ function ISolidElement(data, globalData, comp) {
+ this.initElement(data, globalData, comp);
+ }
+
+ extendPrototype([IImageElement], ISolidElement);
+
+ ISolidElement.prototype.createContent = function () {
+ var rect = createNS('rect'); /// /rect.style.width = this.data.sw;
+ /// /rect.style.height = this.data.sh;
+ /// /rect.style.fill = this.data.sc;
+
+ rect.setAttribute('width', this.data.sw);
+ rect.setAttribute('height', this.data.sh);
+ rect.setAttribute('fill', this.data.sc);
+ this.layerElement.appendChild(rect);
+ };
+
+ function NullElement(data, globalData, comp) {
+ this.initFrame();
+ this.initBaseData(data, globalData, comp);
+ this.initFrame();
+ this.initTransform(data, globalData, comp);
+ this.initHierarchy();
+ }
+
+ NullElement.prototype.prepareFrame = function (num) {
+ this.prepareProperties(num, true);
+ };
+
+ NullElement.prototype.renderFrame = function () {};
+
+ NullElement.prototype.getBaseElement = function () {
+ return null;
+ };
+
+ NullElement.prototype.destroy = function () {};
+
+ NullElement.prototype.sourceRectAtTime = function () {};
+
+ NullElement.prototype.hide = function () {};
+
+ extendPrototype([BaseElement, TransformElement, HierarchyElement, FrameElement], NullElement);
+
+ function SVGRendererBase() {}
+
+ extendPrototype([BaseRenderer], SVGRendererBase);
+
+ SVGRendererBase.prototype.createNull = function (data) {
+ return new NullElement(data, this.globalData, this);
+ };
+
+ SVGRendererBase.prototype.createShape = function (data) {
+ return new SVGShapeElement(data, this.globalData, this);
+ };
+
+ SVGRendererBase.prototype.createText = function (data) {
+ return new SVGTextLottieElement(data, this.globalData, this);
+ };
+
+ SVGRendererBase.prototype.createImage = function (data) {
+ return new IImageElement(data, this.globalData, this);
+ };
+
+ SVGRendererBase.prototype.createSolid = function (data) {
+ return new ISolidElement(data, this.globalData, this);
+ };
+
+ SVGRendererBase.prototype.configAnimation = function (animData) {
+ this.svgElement.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
+ this.svgElement.setAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink');
+
+ if (this.renderConfig.viewBoxSize) {
+ this.svgElement.setAttribute('viewBox', this.renderConfig.viewBoxSize);
+ } else {
+ this.svgElement.setAttribute('viewBox', '0 0 ' + animData.w + ' ' + animData.h);
+ }
+
+ if (!this.renderConfig.viewBoxOnly) {
+ this.svgElement.setAttribute('width', animData.w);
+ this.svgElement.setAttribute('height', animData.h);
+ this.svgElement.style.width = '100%';
+ this.svgElement.style.height = '100%';
+ this.svgElement.style.transform = 'translate3d(0,0,0)';
+ this.svgElement.style.contentVisibility = this.renderConfig.contentVisibility;
+ }
+
+ if (this.renderConfig.width) {
+ this.svgElement.setAttribute('width', this.renderConfig.width);
+ }
+
+ if (this.renderConfig.height) {
+ this.svgElement.setAttribute('height', this.renderConfig.height);
+ }
+
+ if (this.renderConfig.className) {
+ this.svgElement.setAttribute('class', this.renderConfig.className);
+ }
+
+ if (this.renderConfig.id) {
+ this.svgElement.setAttribute('id', this.renderConfig.id);
+ }
+
+ if (this.renderConfig.focusable !== undefined) {
+ this.svgElement.setAttribute('focusable', this.renderConfig.focusable);
+ }
+
+ this.svgElement.setAttribute('preserveAspectRatio', this.renderConfig.preserveAspectRatio); // this.layerElement.style.transform = 'translate3d(0,0,0)';
+ // this.layerElement.style.transformOrigin = this.layerElement.style.mozTransformOrigin = this.layerElement.style.webkitTransformOrigin = this.layerElement.style['-webkit-transform'] = "0px 0px 0px";
+
+ this.animationItem.wrapper.appendChild(this.svgElement); // Mask animation
+
+ var defs = this.globalData.defs;
+ this.setupGlobalData(animData, defs);
+ this.globalData.progressiveLoad = this.renderConfig.progressiveLoad;
+ this.data = animData;
+ var maskElement = createNS('clipPath');
+ var rect = createNS('rect');
+ rect.setAttribute('width', animData.w);
+ rect.setAttribute('height', animData.h);
+ rect.setAttribute('x', 0);
+ rect.setAttribute('y', 0);
+ var maskId = createElementID();
+ maskElement.setAttribute('id', maskId);
+ maskElement.appendChild(rect);
+ this.layerElement.setAttribute('clip-path', 'url(' + getLocationHref() + '#' + maskId + ')');
+ defs.appendChild(maskElement);
+ this.layers = animData.layers;
+ this.elements = createSizedArray(animData.layers.length);
+ };
+
+ SVGRendererBase.prototype.destroy = function () {
+ if (this.animationItem.wrapper) {
+ this.animationItem.wrapper.innerText = '';
+ }
+
+ this.layerElement = null;
+ this.globalData.defs = null;
+ var i;
+ var len = this.layers ? this.layers.length : 0;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.elements[i] && this.elements[i].destroy) {
+ this.elements[i].destroy();
+ }
+ }
+
+ this.elements.length = 0;
+ this.destroyed = true;
+ this.animationItem = null;
+ };
+
+ SVGRendererBase.prototype.updateContainerSize = function () {};
+
+ SVGRendererBase.prototype.findIndexByInd = function (ind) {
+ var i = 0;
+ var len = this.layers.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.layers[i].ind === ind) {
+ return i;
+ }
+ }
+
+ return -1;
+ };
+
+ SVGRendererBase.prototype.buildItem = function (pos) {
+ var elements = this.elements;
+
+ if (elements[pos] || this.layers[pos].ty === 99) {
+ return;
+ }
+
+ elements[pos] = true;
+ var element = this.createItem(this.layers[pos]);
+ elements[pos] = element;
+
+ if (getExpressionsPlugin()) {
+ if (this.layers[pos].ty === 0) {
+ this.globalData.projectInterface.registerComposition(element);
+ }
+
+ element.initExpressions();
+ }
+
+ this.appendElementInPos(element, pos);
+
+ if (this.layers[pos].tt) {
+ var elementIndex = 'tp' in this.layers[pos] ? this.findIndexByInd(this.layers[pos].tp) : pos - 1;
+
+ if (elementIndex === -1) {
+ return;
+ }
+
+ if (!this.elements[elementIndex] || this.elements[elementIndex] === true) {
+ this.buildItem(elementIndex);
+ this.addPendingElement(element);
+ } else {
+ var matteElement = elements[elementIndex];
+ var matteMask = matteElement.getMatte(this.layers[pos].tt);
+ element.setMatte(matteMask);
+ }
+ }
+ };
+
+ SVGRendererBase.prototype.checkPendingElements = function () {
+ while (this.pendingElements.length) {
+ var element = this.pendingElements.pop();
+ element.checkParenting();
+
+ if (element.data.tt) {
+ var i = 0;
+ var len = this.elements.length;
+
+ while (i < len) {
+ if (this.elements[i] === element) {
+ var elementIndex = 'tp' in element.data ? this.findIndexByInd(element.data.tp) : i - 1;
+ var matteElement = this.elements[elementIndex];
+ var matteMask = matteElement.getMatte(this.layers[i].tt);
+ element.setMatte(matteMask);
+ break;
+ }
+
+ i += 1;
+ }
+ }
+ }
+ };
+
+ SVGRendererBase.prototype.renderFrame = function (num) {
+ if (this.renderedFrame === num || this.destroyed) {
+ return;
+ }
+
+ if (num === null) {
+ num = this.renderedFrame;
+ } else {
+ this.renderedFrame = num;
+ } // console.log('-------');
+ // console.log('FRAME ',num);
+
+
+ this.globalData.frameNum = num;
+ this.globalData.frameId += 1;
+ this.globalData.projectInterface.currentFrame = num;
+ this.globalData._mdf = false;
+ var i;
+ var len = this.layers.length;
+
+ if (!this.completeLayers) {
+ this.checkLayers(num);
+ }
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ if (this.completeLayers || this.elements[i]) {
+ this.elements[i].prepareFrame(num - this.layers[i].st);
+ }
+ }
+
+ if (this.globalData._mdf) {
+ for (i = 0; i < len; i += 1) {
+ if (this.completeLayers || this.elements[i]) {
+ this.elements[i].renderFrame();
+ }
+ }
+ }
+ };
+
+ SVGRendererBase.prototype.appendElementInPos = function (element, pos) {
+ var newElement = element.getBaseElement();
+
+ if (!newElement) {
+ return;
+ }
+
+ var i = 0;
+ var nextElement;
+
+ while (i < pos) {
+ if (this.elements[i] && this.elements[i] !== true && this.elements[i].getBaseElement()) {
+ nextElement = this.elements[i].getBaseElement();
+ }
+
+ i += 1;
+ }
+
+ if (nextElement) {
+ this.layerElement.insertBefore(newElement, nextElement);
+ } else {
+ this.layerElement.appendChild(newElement);
+ }
+ };
+
+ SVGRendererBase.prototype.hide = function () {
+ this.layerElement.style.display = 'none';
+ };
+
+ SVGRendererBase.prototype.show = function () {
+ this.layerElement.style.display = 'block';
+ };
+
+ function ICompElement() {}
+
+ extendPrototype([BaseElement, TransformElement, HierarchyElement, FrameElement, RenderableDOMElement], ICompElement);
+
+ ICompElement.prototype.initElement = function (data, globalData, comp) {
+ this.initFrame();
+ this.initBaseData(data, globalData, comp);
+ this.initTransform(data, globalData, comp);
+ this.initRenderable();
+ this.initHierarchy();
+ this.initRendererElement();
+ this.createContainerElements();
+ this.createRenderableComponents();
+
+ if (this.data.xt || !globalData.progressiveLoad) {
+ this.buildAllItems();
+ }
+
+ this.hide();
+ };
+ /* ICompElement.prototype.hide = function(){
+ if(!this.hidden){
+ this.hideElement();
+ var i,len = this.elements.length;
+ for( i = 0; i < len; i+=1 ){
+ if(this.elements[i]){
+ this.elements[i].hide();
+ }
+ }
+ }
+ }; */
+
+
+ ICompElement.prototype.prepareFrame = function (num) {
+ this._mdf = false;
+ this.prepareRenderableFrame(num);
+ this.prepareProperties(num, this.isInRange);
+
+ if (!this.isInRange && !this.data.xt) {
+ return;
+ }
+
+ if (!this.tm._placeholder) {
+ var timeRemapped = this.tm.v;
+
+ if (timeRemapped === this.data.op) {
+ timeRemapped = this.data.op - 1;
+ }
+
+ this.renderedFrame = timeRemapped;
+ } else {
+ this.renderedFrame = num / this.data.sr;
+ }
+
+ var i;
+ var len = this.elements.length;
+
+ if (!this.completeLayers) {
+ this.checkLayers(this.renderedFrame);
+ } // This iteration needs to be backwards because of how expressions connect between each other
+
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ if (this.completeLayers || this.elements[i]) {
+ this.elements[i].prepareFrame(this.renderedFrame - this.layers[i].st);
+
+ if (this.elements[i]._mdf) {
+ this._mdf = true;
+ }
+ }
+ }
+ };
+
+ ICompElement.prototype.renderInnerContent = function () {
+ var i;
+ var len = this.layers.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.completeLayers || this.elements[i]) {
+ this.elements[i].renderFrame();
+ }
+ }
+ };
+
+ ICompElement.prototype.setElements = function (elems) {
+ this.elements = elems;
+ };
+
+ ICompElement.prototype.getElements = function () {
+ return this.elements;
+ };
+
+ ICompElement.prototype.destroyElements = function () {
+ var i;
+ var len = this.layers.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.elements[i]) {
+ this.elements[i].destroy();
+ }
+ }
+ };
+
+ ICompElement.prototype.destroy = function () {
+ this.destroyElements();
+ this.destroyBaseElement();
+ };
+
+ function SVGCompElement(data, globalData, comp) {
+ this.layers = data.layers;
+ this.supports3d = true;
+ this.completeLayers = false;
+ this.pendingElements = [];
+ this.elements = this.layers ? createSizedArray(this.layers.length) : [];
+ this.initElement(data, globalData, comp);
+ this.tm = data.tm ? PropertyFactory.getProp(this, data.tm, 0, globalData.frameRate, this) : {
+ _placeholder: true
+ };
+ }
+
+ extendPrototype([SVGRendererBase, ICompElement, SVGBaseElement], SVGCompElement);
+
+ SVGCompElement.prototype.createComp = function (data) {
+ return new SVGCompElement(data, this.globalData, this);
+ };
+
+ function SVGRenderer(animationItem, config) {
+ this.animationItem = animationItem;
+ this.layers = null;
+ this.renderedFrame = -1;
+ this.svgElement = createNS('svg');
+ var ariaLabel = '';
+
+ if (config && config.title) {
+ var titleElement = createNS('title');
+ var titleId = createElementID();
+ titleElement.setAttribute('id', titleId);
+ titleElement.textContent = config.title;
+ this.svgElement.appendChild(titleElement);
+ ariaLabel += titleId;
+ }
+
+ if (config && config.description) {
+ var descElement = createNS('desc');
+ var descId = createElementID();
+ descElement.setAttribute('id', descId);
+ descElement.textContent = config.description;
+ this.svgElement.appendChild(descElement);
+ ariaLabel += ' ' + descId;
+ }
+
+ if (ariaLabel) {
+ this.svgElement.setAttribute('aria-labelledby', ariaLabel);
+ }
+
+ var defs = createNS('defs');
+ this.svgElement.appendChild(defs);
+ var maskElement = createNS('g');
+ this.svgElement.appendChild(maskElement);
+ this.layerElement = maskElement;
+ this.renderConfig = {
+ preserveAspectRatio: config && config.preserveAspectRatio || 'xMidYMid meet',
+ imagePreserveAspectRatio: config && config.imagePreserveAspectRatio || 'xMidYMid slice',
+ contentVisibility: config && config.contentVisibility || 'visible',
+ progressiveLoad: config && config.progressiveLoad || false,
+ hideOnTransparent: !(config && config.hideOnTransparent === false),
+ viewBoxOnly: config && config.viewBoxOnly || false,
+ viewBoxSize: config && config.viewBoxSize || false,
+ className: config && config.className || '',
+ id: config && config.id || '',
+ focusable: config && config.focusable,
+ filterSize: {
+ width: config && config.filterSize && config.filterSize.width || '100%',
+ height: config && config.filterSize && config.filterSize.height || '100%',
+ x: config && config.filterSize && config.filterSize.x || '0%',
+ y: config && config.filterSize && config.filterSize.y || '0%'
+ },
+ width: config && config.width,
+ height: config && config.height,
+ runExpressions: !config || config.runExpressions === undefined || config.runExpressions
+ };
+ this.globalData = {
+ _mdf: false,
+ frameNum: -1,
+ defs: defs,
+ renderConfig: this.renderConfig
+ };
+ this.elements = [];
+ this.pendingElements = [];
+ this.destroyed = false;
+ this.rendererType = 'svg';
+ }
+
+ extendPrototype([SVGRendererBase], SVGRenderer);
+
+ SVGRenderer.prototype.createComp = function (data) {
+ return new SVGCompElement(data, this.globalData, this);
+ };
+
+ function CVContextData() {
+ this.saved = [];
+ this.cArrPos = 0;
+ this.cTr = new Matrix();
+ this.cO = 1;
+ var i;
+ var len = 15;
+ this.savedOp = createTypedArray('float32', len);
+
+ for (i = 0; i < len; i += 1) {
+ this.saved[i] = createTypedArray('float32', 16);
+ }
+
+ this._length = len;
+ }
+
+ CVContextData.prototype.duplicate = function () {
+ var newLength = this._length * 2;
+ var currentSavedOp = this.savedOp;
+ this.savedOp = createTypedArray('float32', newLength);
+ this.savedOp.set(currentSavedOp);
+ var i = 0;
+
+ for (i = this._length; i < newLength; i += 1) {
+ this.saved[i] = createTypedArray('float32', 16);
+ }
+
+ this._length = newLength;
+ };
+
+ CVContextData.prototype.reset = function () {
+ this.cArrPos = 0;
+ this.cTr.reset();
+ this.cO = 1;
+ };
+
+ CVContextData.prototype.popTransform = function () {
+ var popped = this.saved[this.cArrPos];
+ var i;
+ var arr = this.cTr.props;
+
+ for (i = 0; i < 16; i += 1) {
+ arr[i] = popped[i];
+ }
+
+ return popped;
+ };
+
+ CVContextData.prototype.popOpacity = function () {
+ var popped = this.savedOp[this.cArrPos];
+ this.cO = popped;
+ return popped;
+ };
+
+ CVContextData.prototype.pop = function () {
+ this.cArrPos -= 1;
+ var transform = this.popTransform();
+ var opacity = this.popOpacity();
+ return {
+ transform: transform,
+ opacity: opacity
+ };
+ };
+
+ CVContextData.prototype.push = function () {
+ var props = this.cTr.props;
+
+ if (this._length <= this.cArrPos) {
+ this.duplicate();
+ }
+
+ var i;
+ var arr = this.saved[this.cArrPos];
+
+ for (i = 0; i < 16; i += 1) {
+ arr[i] = props[i];
+ }
+
+ this.savedOp[this.cArrPos] = this.cO;
+ this.cArrPos += 1;
+ };
+
+ CVContextData.prototype.getTransform = function () {
+ return this.cTr;
+ };
+
+ CVContextData.prototype.getOpacity = function () {
+ return this.cO;
+ };
+
+ CVContextData.prototype.setOpacity = function (value) {
+ this.cO = value;
+ };
+
+ function ShapeTransformManager() {
+ this.sequences = {};
+ this.sequenceList = [];
+ this.transform_key_count = 0;
+ }
+
+ ShapeTransformManager.prototype = {
+ addTransformSequence: function addTransformSequence(transforms) {
+ var i;
+ var len = transforms.length;
+ var key = '_';
+
+ for (i = 0; i < len; i += 1) {
+ key += transforms[i].transform.key + '_';
+ }
+
+ var sequence = this.sequences[key];
+
+ if (!sequence) {
+ sequence = {
+ transforms: [].concat(transforms),
+ finalTransform: new Matrix(),
+ _mdf: false
+ };
+ this.sequences[key] = sequence;
+ this.sequenceList.push(sequence);
+ }
+
+ return sequence;
+ },
+ processSequence: function processSequence(sequence, isFirstFrame) {
+ var i = 0;
+ var len = sequence.transforms.length;
+ var _mdf = isFirstFrame;
+
+ while (i < len && !isFirstFrame) {
+ if (sequence.transforms[i].transform.mProps._mdf) {
+ _mdf = true;
+ break;
+ }
+
+ i += 1;
+ }
+
+ if (_mdf) {
+ sequence.finalTransform.reset();
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ sequence.finalTransform.multiply(sequence.transforms[i].transform.mProps.v);
+ }
+ }
+
+ sequence._mdf = _mdf;
+ },
+ processSequences: function processSequences(isFirstFrame) {
+ var i;
+ var len = this.sequenceList.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.processSequence(this.sequenceList[i], isFirstFrame);
+ }
+ },
+ getNewKey: function getNewKey() {
+ this.transform_key_count += 1;
+ return '_' + this.transform_key_count;
+ }
+ };
+
+ var lumaLoader = function lumaLoader() {
+ var id = '__lottie_element_luma_buffer';
+ var lumaBuffer = null;
+ var lumaBufferCtx = null;
+ var svg = null; // This alternate solution has a slight delay before the filter is applied, resulting in a flicker on the first frame.
+ // Keeping this here for reference, and in the future, if offscreen canvas supports url filters, this can be used.
+ // For now, neither of them work for offscreen canvas, so canvas workers can't support the luma track matte mask.
+ // Naming it solution 2 to mark the extra comment lines.
+
+ /*
+ var svgString = [
+ '',
+ ].join('');
+ var blob = new Blob([svgString], { type: 'image/svg+xml' });
+ var url = URL.createObjectURL(blob);
+ */
+
+ function createLumaSvgFilter() {
+ var _svg = createNS('svg');
+
+ var fil = createNS('filter');
+ var matrix = createNS('feColorMatrix');
+ fil.setAttribute('id', id);
+ matrix.setAttribute('type', 'matrix');
+ matrix.setAttribute('color-interpolation-filters', 'sRGB');
+ matrix.setAttribute('values', '0.3, 0.3, 0.3, 0, 0, 0.3, 0.3, 0.3, 0, 0, 0.3, 0.3, 0.3, 0, 0, 0.3, 0.3, 0.3, 0, 0');
+ fil.appendChild(matrix);
+
+ _svg.appendChild(fil);
+
+ _svg.setAttribute('id', id + '_svg');
+
+ if (featureSupport.svgLumaHidden) {
+ _svg.style.display = 'none';
+ }
+
+ return _svg;
+ }
+
+ function loadLuma() {
+ if (!lumaBuffer) {
+ svg = createLumaSvgFilter();
+ document.body.appendChild(svg);
+ lumaBuffer = createTag('canvas');
+ lumaBufferCtx = lumaBuffer.getContext('2d'); // lumaBufferCtx.filter = `url('${url}#__lottie_element_luma_buffer')`; // part of solution 2
+
+ lumaBufferCtx.filter = 'url(#' + id + ')';
+ lumaBufferCtx.fillStyle = 'rgba(0,0,0,0)';
+ lumaBufferCtx.fillRect(0, 0, 1, 1);
+ }
+ }
+
+ function getLuma(canvas) {
+ if (!lumaBuffer) {
+ loadLuma();
+ }
+
+ lumaBuffer.width = canvas.width;
+ lumaBuffer.height = canvas.height; // lumaBufferCtx.filter = `url('${url}#__lottie_element_luma_buffer')`; // part of solution 2
+
+ lumaBufferCtx.filter = 'url(#' + id + ')';
+ return lumaBuffer;
+ }
+
+ return {
+ load: loadLuma,
+ get: getLuma
+ };
+ };
+
+ function createCanvas(width, height) {
+ if (featureSupport.offscreenCanvas) {
+ return new OffscreenCanvas(width, height);
+ }
+
+ var canvas = createTag('canvas');
+ canvas.width = width;
+ canvas.height = height;
+ return canvas;
+ }
+
+ var assetLoader = function () {
+ return {
+ loadLumaCanvas: lumaLoader.load,
+ getLumaCanvas: lumaLoader.get,
+ createCanvas: createCanvas
+ };
+ }();
+
+ var registeredEffects = {};
+
+ function CVEffects(elem) {
+ var i;
+ var len = elem.data.ef ? elem.data.ef.length : 0;
+ this.filters = [];
+ var filterManager;
+
+ for (i = 0; i < len; i += 1) {
+ filterManager = null;
+ var type = elem.data.ef[i].ty;
+
+ if (registeredEffects[type]) {
+ var Effect = registeredEffects[type].effect;
+ filterManager = new Effect(elem.effectsManager.effectElements[i], elem);
+ }
+
+ if (filterManager) {
+ this.filters.push(filterManager);
+ }
+ }
+
+ if (this.filters.length) {
+ elem.addRenderableComponent(this);
+ }
+ }
+
+ CVEffects.prototype.renderFrame = function (_isFirstFrame) {
+ var i;
+ var len = this.filters.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.filters[i].renderFrame(_isFirstFrame);
+ }
+ };
+
+ CVEffects.prototype.getEffects = function (type) {
+ var i;
+ var len = this.filters.length;
+ var effects = [];
+
+ for (i = 0; i < len; i += 1) {
+ if (this.filters[i].type === type) {
+ effects.push(this.filters[i]);
+ }
+ }
+
+ return effects;
+ };
+
+ function registerEffect(id, effect) {
+ registeredEffects[id] = {
+ effect: effect
+ };
+ }
+
+ function CVMaskElement(data, element) {
+ this.data = data;
+ this.element = element;
+ this.masksProperties = this.data.masksProperties || [];
+ this.viewData = createSizedArray(this.masksProperties.length);
+ var i;
+ var len = this.masksProperties.length;
+ var hasMasks = false;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.masksProperties[i].mode !== 'n') {
+ hasMasks = true;
+ }
+
+ this.viewData[i] = ShapePropertyFactory.getShapeProp(this.element, this.masksProperties[i], 3);
+ }
+
+ this.hasMasks = hasMasks;
+
+ if (hasMasks) {
+ this.element.addRenderableComponent(this);
+ }
+ }
+
+ CVMaskElement.prototype.renderFrame = function () {
+ if (!this.hasMasks) {
+ return;
+ }
+
+ var transform = this.element.finalTransform.mat;
+ var ctx = this.element.canvasContext;
+ var i;
+ var len = this.masksProperties.length;
+ var pt;
+ var pts;
+ var data;
+ ctx.beginPath();
+
+ for (i = 0; i < len; i += 1) {
+ if (this.masksProperties[i].mode !== 'n') {
+ if (this.masksProperties[i].inv) {
+ ctx.moveTo(0, 0);
+ ctx.lineTo(this.element.globalData.compSize.w, 0);
+ ctx.lineTo(this.element.globalData.compSize.w, this.element.globalData.compSize.h);
+ ctx.lineTo(0, this.element.globalData.compSize.h);
+ ctx.lineTo(0, 0);
+ }
+
+ data = this.viewData[i].v;
+ pt = transform.applyToPointArray(data.v[0][0], data.v[0][1], 0);
+ ctx.moveTo(pt[0], pt[1]);
+ var j;
+ var jLen = data._length;
+
+ for (j = 1; j < jLen; j += 1) {
+ pts = transform.applyToTriplePoints(data.o[j - 1], data.i[j], data.v[j]);
+ ctx.bezierCurveTo(pts[0], pts[1], pts[2], pts[3], pts[4], pts[5]);
+ }
+
+ pts = transform.applyToTriplePoints(data.o[j - 1], data.i[0], data.v[0]);
+ ctx.bezierCurveTo(pts[0], pts[1], pts[2], pts[3], pts[4], pts[5]);
+ }
+ }
+
+ this.element.globalData.renderer.save(true);
+ ctx.clip();
+ };
+
+ CVMaskElement.prototype.getMaskProperty = MaskElement.prototype.getMaskProperty;
+
+ CVMaskElement.prototype.destroy = function () {
+ this.element = null;
+ };
+
+ function CVBaseElement() {}
+
+ var operationsMap = {
+ 1: 'source-in',
+ 2: 'source-out',
+ 3: 'source-in',
+ 4: 'source-out'
+ };
+ CVBaseElement.prototype = {
+ createElements: function createElements() {},
+ initRendererElement: function initRendererElement() {},
+ createContainerElements: function createContainerElements() {
+ // If the layer is masked we will use two buffers to store each different states of the drawing
+ // This solution is not ideal for several reason. But unfortunately, because of the recursive
+ // nature of the render tree, it's the only simple way to make sure one inner mask doesn't override an outer mask.
+ // TODO: try to reduce the size of these buffers to the size of the composition contaning the layer
+ // It might be challenging because the layer most likely is transformed in some way
+ if (this.data.tt >= 1) {
+ this.buffers = [];
+ var canvasContext = this.globalData.canvasContext;
+ var bufferCanvas = assetLoader.createCanvas(canvasContext.canvas.width, canvasContext.canvas.height);
+ this.buffers.push(bufferCanvas);
+ var bufferCanvas2 = assetLoader.createCanvas(canvasContext.canvas.width, canvasContext.canvas.height);
+ this.buffers.push(bufferCanvas2);
+
+ if (this.data.tt >= 3 && !document._isProxy) {
+ assetLoader.loadLumaCanvas();
+ }
+ }
+
+ this.canvasContext = this.globalData.canvasContext;
+ this.transformCanvas = this.globalData.transformCanvas;
+ this.renderableEffectsManager = new CVEffects(this);
+ this.searchEffectTransforms();
+ },
+ createContent: function createContent() {},
+ setBlendMode: function setBlendMode() {
+ var globalData = this.globalData;
+
+ if (globalData.blendMode !== this.data.bm) {
+ globalData.blendMode = this.data.bm;
+ var blendModeValue = getBlendMode(this.data.bm);
+ globalData.canvasContext.globalCompositeOperation = blendModeValue;
+ }
+ },
+ createRenderableComponents: function createRenderableComponents() {
+ this.maskManager = new CVMaskElement(this.data, this);
+ this.transformEffects = this.renderableEffectsManager.getEffects(effectTypes.TRANSFORM_EFFECT);
+ },
+ hideElement: function hideElement() {
+ if (!this.hidden && (!this.isInRange || this.isTransparent)) {
+ this.hidden = true;
+ }
+ },
+ showElement: function showElement() {
+ if (this.isInRange && !this.isTransparent) {
+ this.hidden = false;
+ this._isFirstFrame = true;
+ this.maskManager._isFirstFrame = true;
+ }
+ },
+ clearCanvas: function clearCanvas(canvasContext) {
+ canvasContext.clearRect(this.transformCanvas.tx, this.transformCanvas.ty, this.transformCanvas.w * this.transformCanvas.sx, this.transformCanvas.h * this.transformCanvas.sy);
+ },
+ prepareLayer: function prepareLayer() {
+ if (this.data.tt >= 1) {
+ var buffer = this.buffers[0];
+ var bufferCtx = buffer.getContext('2d');
+ this.clearCanvas(bufferCtx); // on the first buffer we store the current state of the global drawing
+
+ bufferCtx.drawImage(this.canvasContext.canvas, 0, 0); // The next four lines are to clear the canvas
+ // TODO: Check if there is a way to clear the canvas without resetting the transform
+
+ this.currentTransform = this.canvasContext.getTransform();
+ this.canvasContext.setTransform(1, 0, 0, 1, 0, 0);
+ this.clearCanvas(this.canvasContext);
+ this.canvasContext.setTransform(this.currentTransform);
+ }
+ },
+ exitLayer: function exitLayer() {
+ if (this.data.tt >= 1) {
+ var buffer = this.buffers[1]; // On the second buffer we store the current state of the global drawing
+ // that only contains the content of this layer
+ // (if it is a composition, it also includes the nested layers)
+
+ var bufferCtx = buffer.getContext('2d');
+ this.clearCanvas(bufferCtx);
+ bufferCtx.drawImage(this.canvasContext.canvas, 0, 0); // We clear the canvas again
+
+ this.canvasContext.setTransform(1, 0, 0, 1, 0, 0);
+ this.clearCanvas(this.canvasContext);
+ this.canvasContext.setTransform(this.currentTransform); // We draw the mask
+
+ var mask = this.comp.getElementById('tp' in this.data ? this.data.tp : this.data.ind - 1);
+ mask.renderFrame(true); // We draw the second buffer (that contains the content of this layer)
+
+ this.canvasContext.setTransform(1, 0, 0, 1, 0, 0); // If the mask is a Luma matte, we need to do two extra painting operations
+ // the _isProxy check is to avoid drawing a fake canvas in workers that will throw an error
+
+ if (this.data.tt >= 3 && !document._isProxy) {
+ // We copy the painted mask to a buffer that has a color matrix filter applied to it
+ // that applies the rgb values to the alpha channel
+ var lumaBuffer = assetLoader.getLumaCanvas(this.canvasContext.canvas);
+ var lumaBufferCtx = lumaBuffer.getContext('2d');
+ lumaBufferCtx.drawImage(this.canvasContext.canvas, 0, 0);
+ this.clearCanvas(this.canvasContext); // we repaint the context with the mask applied to it
+
+ this.canvasContext.drawImage(lumaBuffer, 0, 0);
+ }
+
+ this.canvasContext.globalCompositeOperation = operationsMap[this.data.tt];
+ this.canvasContext.drawImage(buffer, 0, 0); // We finally draw the first buffer (that contains the content of the global drawing)
+ // We use destination-over to draw the global drawing below the current layer
+
+ this.canvasContext.globalCompositeOperation = 'destination-over';
+ this.canvasContext.drawImage(this.buffers[0], 0, 0);
+ this.canvasContext.setTransform(this.currentTransform); // We reset the globalCompositeOperation to source-over, the standard type of operation
+
+ this.canvasContext.globalCompositeOperation = 'source-over';
+ }
+ },
+ renderFrame: function renderFrame(forceRender) {
+ if (this.hidden || this.data.hd) {
+ return;
+ }
+
+ if (this.data.td === 1 && !forceRender) {
+ return;
+ }
+
+ this.renderTransform();
+ this.renderRenderable();
+ this.renderLocalTransform();
+ this.setBlendMode();
+ var forceRealStack = this.data.ty === 0;
+ this.prepareLayer();
+ this.globalData.renderer.save(forceRealStack);
+ this.globalData.renderer.ctxTransform(this.finalTransform.localMat.props);
+ this.globalData.renderer.ctxOpacity(this.finalTransform.localOpacity);
+ this.renderInnerContent();
+ this.globalData.renderer.restore(forceRealStack);
+ this.exitLayer();
+
+ if (this.maskManager.hasMasks) {
+ this.globalData.renderer.restore(true);
+ }
+
+ if (this._isFirstFrame) {
+ this._isFirstFrame = false;
+ }
+ },
+ destroy: function destroy() {
+ this.canvasContext = null;
+ this.data = null;
+ this.globalData = null;
+ this.maskManager.destroy();
+ },
+ mHelper: new Matrix()
+ };
+ CVBaseElement.prototype.hide = CVBaseElement.prototype.hideElement;
+ CVBaseElement.prototype.show = CVBaseElement.prototype.showElement;
+
+ function CVShapeData(element, data, styles, transformsManager) {
+ this.styledShapes = [];
+ this.tr = [0, 0, 0, 0, 0, 0];
+ var ty = 4;
+
+ if (data.ty === 'rc') {
+ ty = 5;
+ } else if (data.ty === 'el') {
+ ty = 6;
+ } else if (data.ty === 'sr') {
+ ty = 7;
+ }
+
+ this.sh = ShapePropertyFactory.getShapeProp(element, data, ty, element);
+ var i;
+ var len = styles.length;
+ var styledShape;
+
+ for (i = 0; i < len; i += 1) {
+ if (!styles[i].closed) {
+ styledShape = {
+ transforms: transformsManager.addTransformSequence(styles[i].transforms),
+ trNodes: []
+ };
+ this.styledShapes.push(styledShape);
+ styles[i].elements.push(styledShape);
+ }
+ }
+ }
+
+ CVShapeData.prototype.setAsAnimated = SVGShapeData.prototype.setAsAnimated;
+
+ function CVShapeElement(data, globalData, comp) {
+ this.shapes = [];
+ this.shapesData = data.shapes;
+ this.stylesList = [];
+ this.itemsData = [];
+ this.prevViewData = [];
+ this.shapeModifiers = [];
+ this.processedElements = [];
+ this.transformsManager = new ShapeTransformManager();
+ this.initElement(data, globalData, comp);
+ }
+
+ extendPrototype([BaseElement, TransformElement, CVBaseElement, IShapeElement, HierarchyElement, FrameElement, RenderableElement], CVShapeElement);
+ CVShapeElement.prototype.initElement = RenderableDOMElement.prototype.initElement;
+ CVShapeElement.prototype.transformHelper = {
+ opacity: 1,
+ _opMdf: false
+ };
+ CVShapeElement.prototype.dashResetter = [];
+
+ CVShapeElement.prototype.createContent = function () {
+ this.searchShapes(this.shapesData, this.itemsData, this.prevViewData, true, []);
+ };
+
+ CVShapeElement.prototype.createStyleElement = function (data, transforms) {
+ var styleElem = {
+ data: data,
+ type: data.ty,
+ preTransforms: this.transformsManager.addTransformSequence(transforms),
+ transforms: [],
+ elements: [],
+ closed: data.hd === true
+ };
+ var elementData = {};
+
+ if (data.ty === 'fl' || data.ty === 'st') {
+ elementData.c = PropertyFactory.getProp(this, data.c, 1, 255, this);
+
+ if (!elementData.c.k) {
+ styleElem.co = 'rgb(' + bmFloor(elementData.c.v[0]) + ',' + bmFloor(elementData.c.v[1]) + ',' + bmFloor(elementData.c.v[2]) + ')';
+ }
+ } else if (data.ty === 'gf' || data.ty === 'gs') {
+ elementData.s = PropertyFactory.getProp(this, data.s, 1, null, this);
+ elementData.e = PropertyFactory.getProp(this, data.e, 1, null, this);
+ elementData.h = PropertyFactory.getProp(this, data.h || {
+ k: 0
+ }, 0, 0.01, this);
+ elementData.a = PropertyFactory.getProp(this, data.a || {
+ k: 0
+ }, 0, degToRads, this);
+ elementData.g = new GradientProperty(this, data.g, this);
+ }
+
+ elementData.o = PropertyFactory.getProp(this, data.o, 0, 0.01, this);
+
+ if (data.ty === 'st' || data.ty === 'gs') {
+ styleElem.lc = lineCapEnum[data.lc || 2];
+ styleElem.lj = lineJoinEnum[data.lj || 2];
+
+ if (data.lj == 1) {
+ // eslint-disable-line eqeqeq
+ styleElem.ml = data.ml;
+ }
+
+ elementData.w = PropertyFactory.getProp(this, data.w, 0, null, this);
+
+ if (!elementData.w.k) {
+ styleElem.wi = elementData.w.v;
+ }
+
+ if (data.d) {
+ var d = new DashProperty(this, data.d, 'canvas', this);
+ elementData.d = d;
+
+ if (!elementData.d.k) {
+ styleElem.da = elementData.d.dashArray;
+ styleElem["do"] = elementData.d.dashoffset[0];
+ }
+ }
+ } else {
+ styleElem.r = data.r === 2 ? 'evenodd' : 'nonzero';
+ }
+
+ this.stylesList.push(styleElem);
+ elementData.style = styleElem;
+ return elementData;
+ };
+
+ CVShapeElement.prototype.createGroupElement = function () {
+ var elementData = {
+ it: [],
+ prevViewData: []
+ };
+ return elementData;
+ };
+
+ CVShapeElement.prototype.createTransformElement = function (data) {
+ var elementData = {
+ transform: {
+ opacity: 1,
+ _opMdf: false,
+ key: this.transformsManager.getNewKey(),
+ op: PropertyFactory.getProp(this, data.o, 0, 0.01, this),
+ mProps: TransformPropertyFactory.getTransformProperty(this, data, this)
+ }
+ };
+ return elementData;
+ };
+
+ CVShapeElement.prototype.createShapeElement = function (data) {
+ var elementData = new CVShapeData(this, data, this.stylesList, this.transformsManager);
+ this.shapes.push(elementData);
+ this.addShapeToModifiers(elementData);
+ return elementData;
+ };
+
+ CVShapeElement.prototype.reloadShapes = function () {
+ this._isFirstFrame = true;
+ var i;
+ var len = this.itemsData.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.prevViewData[i] = this.itemsData[i];
+ }
+
+ this.searchShapes(this.shapesData, this.itemsData, this.prevViewData, true, []);
+ len = this.dynamicProperties.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.dynamicProperties[i].getValue();
+ }
+
+ this.renderModifiers();
+ this.transformsManager.processSequences(this._isFirstFrame);
+ };
+
+ CVShapeElement.prototype.addTransformToStyleList = function (transform) {
+ var i;
+ var len = this.stylesList.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (!this.stylesList[i].closed) {
+ this.stylesList[i].transforms.push(transform);
+ }
+ }
+ };
+
+ CVShapeElement.prototype.removeTransformFromStyleList = function () {
+ var i;
+ var len = this.stylesList.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (!this.stylesList[i].closed) {
+ this.stylesList[i].transforms.pop();
+ }
+ }
+ };
+
+ CVShapeElement.prototype.closeStyles = function (styles) {
+ var i;
+ var len = styles.length;
+
+ for (i = 0; i < len; i += 1) {
+ styles[i].closed = true;
+ }
+ };
+
+ CVShapeElement.prototype.searchShapes = function (arr, itemsData, prevViewData, shouldRender, transforms) {
+ var i;
+ var len = arr.length - 1;
+ var j;
+ var jLen;
+ var ownStyles = [];
+ var ownModifiers = [];
+ var processedPos;
+ var modifier;
+ var currentTransform;
+ var ownTransforms = [].concat(transforms);
+
+ for (i = len; i >= 0; i -= 1) {
+ processedPos = this.searchProcessedElement(arr[i]);
+
+ if (!processedPos) {
+ arr[i]._shouldRender = shouldRender;
+ } else {
+ itemsData[i] = prevViewData[processedPos - 1];
+ }
+
+ if (arr[i].ty === 'fl' || arr[i].ty === 'st' || arr[i].ty === 'gf' || arr[i].ty === 'gs') {
+ if (!processedPos) {
+ itemsData[i] = this.createStyleElement(arr[i], ownTransforms);
+ } else {
+ itemsData[i].style.closed = false;
+ }
+
+ ownStyles.push(itemsData[i].style);
+ } else if (arr[i].ty === 'gr') {
+ if (!processedPos) {
+ itemsData[i] = this.createGroupElement(arr[i]);
+ } else {
+ jLen = itemsData[i].it.length;
+
+ for (j = 0; j < jLen; j += 1) {
+ itemsData[i].prevViewData[j] = itemsData[i].it[j];
+ }
+ }
+
+ this.searchShapes(arr[i].it, itemsData[i].it, itemsData[i].prevViewData, shouldRender, ownTransforms);
+ } else if (arr[i].ty === 'tr') {
+ if (!processedPos) {
+ currentTransform = this.createTransformElement(arr[i]);
+ itemsData[i] = currentTransform;
+ }
+
+ ownTransforms.push(itemsData[i]);
+ this.addTransformToStyleList(itemsData[i]);
+ } else if (arr[i].ty === 'sh' || arr[i].ty === 'rc' || arr[i].ty === 'el' || arr[i].ty === 'sr') {
+ if (!processedPos) {
+ itemsData[i] = this.createShapeElement(arr[i]);
+ }
+ } else if (arr[i].ty === 'tm' || arr[i].ty === 'rd' || arr[i].ty === 'pb' || arr[i].ty === 'zz' || arr[i].ty === 'op') {
+ if (!processedPos) {
+ modifier = ShapeModifiers.getModifier(arr[i].ty);
+ modifier.init(this, arr[i]);
+ itemsData[i] = modifier;
+ this.shapeModifiers.push(modifier);
+ } else {
+ modifier = itemsData[i];
+ modifier.closed = false;
+ }
+
+ ownModifiers.push(modifier);
+ } else if (arr[i].ty === 'rp') {
+ if (!processedPos) {
+ modifier = ShapeModifiers.getModifier(arr[i].ty);
+ itemsData[i] = modifier;
+ modifier.init(this, arr, i, itemsData);
+ this.shapeModifiers.push(modifier);
+ shouldRender = false;
+ } else {
+ modifier = itemsData[i];
+ modifier.closed = true;
+ }
+
+ ownModifiers.push(modifier);
+ }
+
+ this.addProcessedElement(arr[i], i + 1);
+ }
+
+ this.removeTransformFromStyleList();
+ this.closeStyles(ownStyles);
+ len = ownModifiers.length;
+
+ for (i = 0; i < len; i += 1) {
+ ownModifiers[i].closed = true;
+ }
+ };
+
+ CVShapeElement.prototype.renderInnerContent = function () {
+ this.transformHelper.opacity = 1;
+ this.transformHelper._opMdf = false;
+ this.renderModifiers();
+ this.transformsManager.processSequences(this._isFirstFrame);
+ this.renderShape(this.transformHelper, this.shapesData, this.itemsData, true);
+ };
+
+ CVShapeElement.prototype.renderShapeTransform = function (parentTransform, groupTransform) {
+ if (parentTransform._opMdf || groupTransform.op._mdf || this._isFirstFrame) {
+ groupTransform.opacity = parentTransform.opacity;
+ groupTransform.opacity *= groupTransform.op.v;
+ groupTransform._opMdf = true;
+ }
+ };
+
+ CVShapeElement.prototype.drawLayer = function () {
+ var i;
+ var len = this.stylesList.length;
+ var j;
+ var jLen;
+ var k;
+ var kLen;
+ var elems;
+ var nodes;
+ var renderer = this.globalData.renderer;
+ var ctx = this.globalData.canvasContext;
+ var type;
+ var currentStyle;
+
+ for (i = 0; i < len; i += 1) {
+ currentStyle = this.stylesList[i];
+ type = currentStyle.type; // Skipping style when
+ // Stroke width equals 0
+ // style should not be rendered (extra unused repeaters)
+ // current opacity equals 0
+ // global opacity equals 0
+
+ if (!((type === 'st' || type === 'gs') && currentStyle.wi === 0 || !currentStyle.data._shouldRender || currentStyle.coOp === 0 || this.globalData.currentGlobalAlpha === 0)) {
+ renderer.save();
+ elems = currentStyle.elements;
+
+ if (type === 'st' || type === 'gs') {
+ ctx.strokeStyle = type === 'st' ? currentStyle.co : currentStyle.grd;
+ ctx.lineWidth = currentStyle.wi;
+ ctx.lineCap = currentStyle.lc;
+ ctx.lineJoin = currentStyle.lj;
+ ctx.miterLimit = currentStyle.ml || 0;
+ } else {
+ ctx.fillStyle = type === 'fl' ? currentStyle.co : currentStyle.grd;
+ }
+
+ renderer.ctxOpacity(currentStyle.coOp);
+
+ if (type !== 'st' && type !== 'gs') {
+ ctx.beginPath();
+ }
+
+ renderer.ctxTransform(currentStyle.preTransforms.finalTransform.props);
+ jLen = elems.length;
+
+ for (j = 0; j < jLen; j += 1) {
+ if (type === 'st' || type === 'gs') {
+ ctx.beginPath();
+
+ if (currentStyle.da) {
+ ctx.setLineDash(currentStyle.da);
+ ctx.lineDashOffset = currentStyle["do"];
+ }
+ }
+
+ nodes = elems[j].trNodes;
+ kLen = nodes.length;
+
+ for (k = 0; k < kLen; k += 1) {
+ if (nodes[k].t === 'm') {
+ ctx.moveTo(nodes[k].p[0], nodes[k].p[1]);
+ } else if (nodes[k].t === 'c') {
+ ctx.bezierCurveTo(nodes[k].pts[0], nodes[k].pts[1], nodes[k].pts[2], nodes[k].pts[3], nodes[k].pts[4], nodes[k].pts[5]);
+ } else {
+ ctx.closePath();
+ }
+ }
+
+ if (type === 'st' || type === 'gs') {
+ ctx.stroke();
+
+ if (currentStyle.da) {
+ ctx.setLineDash(this.dashResetter);
+ }
+ }
+ }
+
+ if (type !== 'st' && type !== 'gs') {
+ ctx.fill(currentStyle.r);
+ }
+
+ renderer.restore();
+ }
+ }
+ };
+
+ CVShapeElement.prototype.renderShape = function (parentTransform, items, data, isMain) {
+ var i;
+ var len = items.length - 1;
+ var groupTransform;
+ groupTransform = parentTransform;
+
+ for (i = len; i >= 0; i -= 1) {
+ if (items[i].ty === 'tr') {
+ groupTransform = data[i].transform;
+ this.renderShapeTransform(parentTransform, groupTransform);
+ } else if (items[i].ty === 'sh' || items[i].ty === 'el' || items[i].ty === 'rc' || items[i].ty === 'sr') {
+ this.renderPath(items[i], data[i]);
+ } else if (items[i].ty === 'fl') {
+ this.renderFill(items[i], data[i], groupTransform);
+ } else if (items[i].ty === 'st') {
+ this.renderStroke(items[i], data[i], groupTransform);
+ } else if (items[i].ty === 'gf' || items[i].ty === 'gs') {
+ this.renderGradientFill(items[i], data[i], groupTransform);
+ } else if (items[i].ty === 'gr') {
+ this.renderShape(groupTransform, items[i].it, data[i].it);
+ } else if (items[i].ty === 'tm') {//
+ }
+ }
+
+ if (isMain) {
+ this.drawLayer();
+ }
+ };
+
+ CVShapeElement.prototype.renderStyledShape = function (styledShape, shape) {
+ if (this._isFirstFrame || shape._mdf || styledShape.transforms._mdf) {
+ var shapeNodes = styledShape.trNodes;
+ var paths = shape.paths;
+ var i;
+ var len;
+ var j;
+ var jLen = paths._length;
+ shapeNodes.length = 0;
+ var groupTransformMat = styledShape.transforms.finalTransform;
+
+ for (j = 0; j < jLen; j += 1) {
+ var pathNodes = paths.shapes[j];
+
+ if (pathNodes && pathNodes.v) {
+ len = pathNodes._length;
+
+ for (i = 1; i < len; i += 1) {
+ if (i === 1) {
+ shapeNodes.push({
+ t: 'm',
+ p: groupTransformMat.applyToPointArray(pathNodes.v[0][0], pathNodes.v[0][1], 0)
+ });
+ }
+
+ shapeNodes.push({
+ t: 'c',
+ pts: groupTransformMat.applyToTriplePoints(pathNodes.o[i - 1], pathNodes.i[i], pathNodes.v[i])
+ });
+ }
+
+ if (len === 1) {
+ shapeNodes.push({
+ t: 'm',
+ p: groupTransformMat.applyToPointArray(pathNodes.v[0][0], pathNodes.v[0][1], 0)
+ });
+ }
+
+ if (pathNodes.c && len) {
+ shapeNodes.push({
+ t: 'c',
+ pts: groupTransformMat.applyToTriplePoints(pathNodes.o[i - 1], pathNodes.i[0], pathNodes.v[0])
+ });
+ shapeNodes.push({
+ t: 'z'
+ });
+ }
+ }
+ }
+
+ styledShape.trNodes = shapeNodes;
+ }
+ };
+
+ CVShapeElement.prototype.renderPath = function (pathData, itemData) {
+ if (pathData.hd !== true && pathData._shouldRender) {
+ var i;
+ var len = itemData.styledShapes.length;
+
+ for (i = 0; i < len; i += 1) {
+ this.renderStyledShape(itemData.styledShapes[i], itemData.sh);
+ }
+ }
+ };
+
+ CVShapeElement.prototype.renderFill = function (styleData, itemData, groupTransform) {
+ var styleElem = itemData.style;
+
+ if (itemData.c._mdf || this._isFirstFrame) {
+ styleElem.co = 'rgb(' + bmFloor(itemData.c.v[0]) + ',' + bmFloor(itemData.c.v[1]) + ',' + bmFloor(itemData.c.v[2]) + ')';
+ }
+
+ if (itemData.o._mdf || groupTransform._opMdf || this._isFirstFrame) {
+ styleElem.coOp = itemData.o.v * groupTransform.opacity;
+ }
+ };
+
+ CVShapeElement.prototype.renderGradientFill = function (styleData, itemData, groupTransform) {
+ var styleElem = itemData.style;
+ var grd;
+
+ if (!styleElem.grd || itemData.g._mdf || itemData.s._mdf || itemData.e._mdf || styleData.t !== 1 && (itemData.h._mdf || itemData.a._mdf)) {
+ var ctx = this.globalData.canvasContext;
+ var pt1 = itemData.s.v;
+ var pt2 = itemData.e.v;
+
+ if (styleData.t === 1) {
+ grd = ctx.createLinearGradient(pt1[0], pt1[1], pt2[0], pt2[1]);
+ } else {
+ var rad = Math.sqrt(Math.pow(pt1[0] - pt2[0], 2) + Math.pow(pt1[1] - pt2[1], 2));
+ var ang = Math.atan2(pt2[1] - pt1[1], pt2[0] - pt1[0]);
+ var percent = itemData.h.v;
+
+ if (percent >= 1) {
+ percent = 0.99;
+ } else if (percent <= -1) {
+ percent = -0.99;
+ }
+
+ var dist = rad * percent;
+ var x = Math.cos(ang + itemData.a.v) * dist + pt1[0];
+ var y = Math.sin(ang + itemData.a.v) * dist + pt1[1];
+ grd = ctx.createRadialGradient(x, y, 0, pt1[0], pt1[1], rad);
+ }
+
+ var i;
+ var len = styleData.g.p;
+ var cValues = itemData.g.c;
+ var opacity = 1;
+
+ for (i = 0; i < len; i += 1) {
+ if (itemData.g._hasOpacity && itemData.g._collapsable) {
+ opacity = itemData.g.o[i * 2 + 1];
+ }
+
+ grd.addColorStop(cValues[i * 4] / 100, 'rgba(' + cValues[i * 4 + 1] + ',' + cValues[i * 4 + 2] + ',' + cValues[i * 4 + 3] + ',' + opacity + ')');
+ }
+
+ styleElem.grd = grd;
+ }
+
+ styleElem.coOp = itemData.o.v * groupTransform.opacity;
+ };
+
+ CVShapeElement.prototype.renderStroke = function (styleData, itemData, groupTransform) {
+ var styleElem = itemData.style;
+ var d = itemData.d;
+
+ if (d && (d._mdf || this._isFirstFrame)) {
+ styleElem.da = d.dashArray;
+ styleElem["do"] = d.dashoffset[0];
+ }
+
+ if (itemData.c._mdf || this._isFirstFrame) {
+ styleElem.co = 'rgb(' + bmFloor(itemData.c.v[0]) + ',' + bmFloor(itemData.c.v[1]) + ',' + bmFloor(itemData.c.v[2]) + ')';
+ }
+
+ if (itemData.o._mdf || groupTransform._opMdf || this._isFirstFrame) {
+ styleElem.coOp = itemData.o.v * groupTransform.opacity;
+ }
+
+ if (itemData.w._mdf || this._isFirstFrame) {
+ styleElem.wi = itemData.w.v;
+ }
+ };
+
+ CVShapeElement.prototype.destroy = function () {
+ this.shapesData = null;
+ this.globalData = null;
+ this.canvasContext = null;
+ this.stylesList.length = 0;
+ this.itemsData.length = 0;
+ };
+
+ function CVTextElement(data, globalData, comp) {
+ this.textSpans = [];
+ this.yOffset = 0;
+ this.fillColorAnim = false;
+ this.strokeColorAnim = false;
+ this.strokeWidthAnim = false;
+ this.stroke = false;
+ this.fill = false;
+ this.justifyOffset = 0;
+ this.currentRender = null;
+ this.renderType = 'canvas';
+ this.values = {
+ fill: 'rgba(0,0,0,0)',
+ stroke: 'rgba(0,0,0,0)',
+ sWidth: 0,
+ fValue: ''
+ };
+ this.initElement(data, globalData, comp);
+ }
+
+ extendPrototype([BaseElement, TransformElement, CVBaseElement, HierarchyElement, FrameElement, RenderableElement, ITextElement], CVTextElement);
+ CVTextElement.prototype.tHelper = createTag('canvas').getContext('2d');
+
+ CVTextElement.prototype.buildNewText = function () {
+ var documentData = this.textProperty.currentData;
+ this.renderedLetters = createSizedArray(documentData.l ? documentData.l.length : 0);
+ var hasFill = false;
+
+ if (documentData.fc) {
+ hasFill = true;
+ this.values.fill = this.buildColor(documentData.fc);
+ } else {
+ this.values.fill = 'rgba(0,0,0,0)';
+ }
+
+ this.fill = hasFill;
+ var hasStroke = false;
+
+ if (documentData.sc) {
+ hasStroke = true;
+ this.values.stroke = this.buildColor(documentData.sc);
+ this.values.sWidth = documentData.sw;
+ }
+
+ var fontData = this.globalData.fontManager.getFontByName(documentData.f);
+ var i;
+ var len;
+ var letters = documentData.l;
+ var matrixHelper = this.mHelper;
+ this.stroke = hasStroke;
+ this.values.fValue = documentData.finalSize + 'px ' + this.globalData.fontManager.getFontByName(documentData.f).fFamily;
+ len = documentData.finalText.length; // this.tHelper.font = this.values.fValue;
+
+ var charData;
+ var shapeData;
+ var k;
+ var kLen;
+ var shapes;
+ var j;
+ var jLen;
+ var pathNodes;
+ var commands;
+ var pathArr;
+ var singleShape = this.data.singleShape;
+ var trackingOffset = documentData.tr * 0.001 * documentData.finalSize;
+ var xPos = 0;
+ var yPos = 0;
+ var firstLine = true;
+ var cnt = 0;
+
+ for (i = 0; i < len; i += 1) {
+ charData = this.globalData.fontManager.getCharData(documentData.finalText[i], fontData.fStyle, this.globalData.fontManager.getFontByName(documentData.f).fFamily);
+ shapeData = charData && charData.data || {};
+ matrixHelper.reset();
+
+ if (singleShape && letters[i].n) {
+ xPos = -trackingOffset;
+ yPos += documentData.yOffset;
+ yPos += firstLine ? 1 : 0;
+ firstLine = false;
+ }
+
+ shapes = shapeData.shapes ? shapeData.shapes[0].it : [];
+ jLen = shapes.length;
+ matrixHelper.scale(documentData.finalSize / 100, documentData.finalSize / 100);
+
+ if (singleShape) {
+ this.applyTextPropertiesToMatrix(documentData, matrixHelper, letters[i].line, xPos, yPos);
+ }
+
+ commands = createSizedArray(jLen - 1);
+ var commandsCounter = 0;
+
+ for (j = 0; j < jLen; j += 1) {
+ if (shapes[j].ty === 'sh') {
+ kLen = shapes[j].ks.k.i.length;
+ pathNodes = shapes[j].ks.k;
+ pathArr = [];
+
+ for (k = 1; k < kLen; k += 1) {
+ if (k === 1) {
+ pathArr.push(matrixHelper.applyToX(pathNodes.v[0][0], pathNodes.v[0][1], 0), matrixHelper.applyToY(pathNodes.v[0][0], pathNodes.v[0][1], 0));
+ }
+
+ pathArr.push(matrixHelper.applyToX(pathNodes.o[k - 1][0], pathNodes.o[k - 1][1], 0), matrixHelper.applyToY(pathNodes.o[k - 1][0], pathNodes.o[k - 1][1], 0), matrixHelper.applyToX(pathNodes.i[k][0], pathNodes.i[k][1], 0), matrixHelper.applyToY(pathNodes.i[k][0], pathNodes.i[k][1], 0), matrixHelper.applyToX(pathNodes.v[k][0], pathNodes.v[k][1], 0), matrixHelper.applyToY(pathNodes.v[k][0], pathNodes.v[k][1], 0));
+ }
+
+ pathArr.push(matrixHelper.applyToX(pathNodes.o[k - 1][0], pathNodes.o[k - 1][1], 0), matrixHelper.applyToY(pathNodes.o[k - 1][0], pathNodes.o[k - 1][1], 0), matrixHelper.applyToX(pathNodes.i[0][0], pathNodes.i[0][1], 0), matrixHelper.applyToY(pathNodes.i[0][0], pathNodes.i[0][1], 0), matrixHelper.applyToX(pathNodes.v[0][0], pathNodes.v[0][1], 0), matrixHelper.applyToY(pathNodes.v[0][0], pathNodes.v[0][1], 0));
+ commands[commandsCounter] = pathArr;
+ commandsCounter += 1;
+ }
+ }
+
+ if (singleShape) {
+ xPos += letters[i].l;
+ xPos += trackingOffset;
+ }
+
+ if (this.textSpans[cnt]) {
+ this.textSpans[cnt].elem = commands;
+ } else {
+ this.textSpans[cnt] = {
+ elem: commands
+ };
+ }
+
+ cnt += 1;
+ }
+ };
+
+ CVTextElement.prototype.renderInnerContent = function () {
+ this.validateText();
+ var ctx = this.canvasContext;
+ ctx.font = this.values.fValue;
+ ctx.lineCap = 'butt';
+ ctx.lineJoin = 'miter';
+ ctx.miterLimit = 4;
+
+ if (!this.data.singleShape) {
+ this.textAnimator.getMeasures(this.textProperty.currentData, this.lettersChangedFlag);
+ }
+
+ var i;
+ var len;
+ var j;
+ var jLen;
+ var k;
+ var kLen;
+ var renderedLetters = this.textAnimator.renderedLetters;
+ var letters = this.textProperty.currentData.l;
+ len = letters.length;
+ var renderedLetter;
+ var lastFill = null;
+ var lastStroke = null;
+ var lastStrokeW = null;
+ var commands;
+ var pathArr;
+
+ for (i = 0; i < len; i += 1) {
+ if (!letters[i].n) {
+ renderedLetter = renderedLetters[i];
+
+ if (renderedLetter) {
+ this.globalData.renderer.save();
+ this.globalData.renderer.ctxTransform(renderedLetter.p);
+ this.globalData.renderer.ctxOpacity(renderedLetter.o);
+ }
+
+ if (this.fill) {
+ if (renderedLetter && renderedLetter.fc) {
+ if (lastFill !== renderedLetter.fc) {
+ lastFill = renderedLetter.fc;
+ ctx.fillStyle = renderedLetter.fc;
+ }
+ } else if (lastFill !== this.values.fill) {
+ lastFill = this.values.fill;
+ ctx.fillStyle = this.values.fill;
+ }
+
+ commands = this.textSpans[i].elem;
+ jLen = commands.length;
+ this.globalData.canvasContext.beginPath();
+
+ for (j = 0; j < jLen; j += 1) {
+ pathArr = commands[j];
+ kLen = pathArr.length;
+ this.globalData.canvasContext.moveTo(pathArr[0], pathArr[1]);
+
+ for (k = 2; k < kLen; k += 6) {
+ this.globalData.canvasContext.bezierCurveTo(pathArr[k], pathArr[k + 1], pathArr[k + 2], pathArr[k + 3], pathArr[k + 4], pathArr[k + 5]);
+ }
+ }
+
+ this.globalData.canvasContext.closePath();
+ this.globalData.canvasContext.fill(); /// ctx.fillText(this.textSpans[i].val,0,0);
+ }
+
+ if (this.stroke) {
+ if (renderedLetter && renderedLetter.sw) {
+ if (lastStrokeW !== renderedLetter.sw) {
+ lastStrokeW = renderedLetter.sw;
+ ctx.lineWidth = renderedLetter.sw;
+ }
+ } else if (lastStrokeW !== this.values.sWidth) {
+ lastStrokeW = this.values.sWidth;
+ ctx.lineWidth = this.values.sWidth;
+ }
+
+ if (renderedLetter && renderedLetter.sc) {
+ if (lastStroke !== renderedLetter.sc) {
+ lastStroke = renderedLetter.sc;
+ ctx.strokeStyle = renderedLetter.sc;
+ }
+ } else if (lastStroke !== this.values.stroke) {
+ lastStroke = this.values.stroke;
+ ctx.strokeStyle = this.values.stroke;
+ }
+
+ commands = this.textSpans[i].elem;
+ jLen = commands.length;
+ this.globalData.canvasContext.beginPath();
+
+ for (j = 0; j < jLen; j += 1) {
+ pathArr = commands[j];
+ kLen = pathArr.length;
+ this.globalData.canvasContext.moveTo(pathArr[0], pathArr[1]);
+
+ for (k = 2; k < kLen; k += 6) {
+ this.globalData.canvasContext.bezierCurveTo(pathArr[k], pathArr[k + 1], pathArr[k + 2], pathArr[k + 3], pathArr[k + 4], pathArr[k + 5]);
+ }
+ }
+
+ this.globalData.canvasContext.closePath();
+ this.globalData.canvasContext.stroke(); /// ctx.strokeText(letters[i].val,0,0);
+ }
+
+ if (renderedLetter) {
+ this.globalData.renderer.restore();
+ }
+ }
+ }
+ };
+
+ function CVImageElement(data, globalData, comp) {
+ this.assetData = globalData.getAssetData(data.refId);
+ this.img = globalData.imageLoader.getAsset(this.assetData);
+ this.initElement(data, globalData, comp);
+ }
+
+ extendPrototype([BaseElement, TransformElement, CVBaseElement, HierarchyElement, FrameElement, RenderableElement], CVImageElement);
+ CVImageElement.prototype.initElement = SVGShapeElement.prototype.initElement;
+ CVImageElement.prototype.prepareFrame = IImageElement.prototype.prepareFrame;
+
+ CVImageElement.prototype.createContent = function () {
+ if (this.img.width && (this.assetData.w !== this.img.width || this.assetData.h !== this.img.height)) {
+ var canvas = createTag('canvas');
+ canvas.width = this.assetData.w;
+ canvas.height = this.assetData.h;
+ var ctx = canvas.getContext('2d');
+ var imgW = this.img.width;
+ var imgH = this.img.height;
+ var imgRel = imgW / imgH;
+ var canvasRel = this.assetData.w / this.assetData.h;
+ var widthCrop;
+ var heightCrop;
+ var par = this.assetData.pr || this.globalData.renderConfig.imagePreserveAspectRatio;
+
+ if (imgRel > canvasRel && par === 'xMidYMid slice' || imgRel < canvasRel && par !== 'xMidYMid slice') {
+ heightCrop = imgH;
+ widthCrop = heightCrop * canvasRel;
+ } else {
+ widthCrop = imgW;
+ heightCrop = widthCrop / canvasRel;
+ }
+
+ ctx.drawImage(this.img, (imgW - widthCrop) / 2, (imgH - heightCrop) / 2, widthCrop, heightCrop, 0, 0, this.assetData.w, this.assetData.h);
+ this.img = canvas;
+ }
+ };
+
+ CVImageElement.prototype.renderInnerContent = function () {
+ this.canvasContext.drawImage(this.img, 0, 0);
+ };
+
+ CVImageElement.prototype.destroy = function () {
+ this.img = null;
+ };
+
+ function CVSolidElement(data, globalData, comp) {
+ this.initElement(data, globalData, comp);
+ }
+
+ extendPrototype([BaseElement, TransformElement, CVBaseElement, HierarchyElement, FrameElement, RenderableElement], CVSolidElement);
+ CVSolidElement.prototype.initElement = SVGShapeElement.prototype.initElement;
+ CVSolidElement.prototype.prepareFrame = IImageElement.prototype.prepareFrame;
+
+ CVSolidElement.prototype.renderInnerContent = function () {
+ var ctx = this.canvasContext;
+ ctx.fillStyle = this.data.sc;
+ ctx.fillRect(0, 0, this.data.sw, this.data.sh); //
+ };
+
+ function CanvasRendererBase(animationItem, config) {
+ this.animationItem = animationItem;
+ this.renderConfig = {
+ clearCanvas: config && config.clearCanvas !== undefined ? config.clearCanvas : true,
+ context: config && config.context || null,
+ progressiveLoad: config && config.progressiveLoad || false,
+ preserveAspectRatio: config && config.preserveAspectRatio || 'xMidYMid meet',
+ imagePreserveAspectRatio: config && config.imagePreserveAspectRatio || 'xMidYMid slice',
+ contentVisibility: config && config.contentVisibility || 'visible',
+ className: config && config.className || '',
+ id: config && config.id || ''
+ };
+ this.renderConfig.dpr = config && config.dpr || 1;
+
+ if (this.animationItem.wrapper) {
+ this.renderConfig.dpr = config && config.dpr || window.devicePixelRatio || 1;
+ }
+
+ this.renderedFrame = -1;
+ this.globalData = {
+ frameNum: -1,
+ _mdf: false,
+ renderConfig: this.renderConfig,
+ currentGlobalAlpha: -1
+ };
+ this.contextData = new CVContextData();
+ this.elements = [];
+ this.pendingElements = [];
+ this.transformMat = new Matrix();
+ this.completeLayers = false;
+ this.rendererType = 'canvas';
+ }
+
+ extendPrototype([BaseRenderer], CanvasRendererBase);
+
+ CanvasRendererBase.prototype.createShape = function (data) {
+ return new CVShapeElement(data, this.globalData, this);
+ };
+
+ CanvasRendererBase.prototype.createText = function (data) {
+ return new CVTextElement(data, this.globalData, this);
+ };
+
+ CanvasRendererBase.prototype.createImage = function (data) {
+ return new CVImageElement(data, this.globalData, this);
+ };
+
+ CanvasRendererBase.prototype.createSolid = function (data) {
+ return new CVSolidElement(data, this.globalData, this);
+ };
+
+ CanvasRendererBase.prototype.createNull = SVGRenderer.prototype.createNull;
+
+ CanvasRendererBase.prototype.ctxTransform = function (props) {
+ if (props[0] === 1 && props[1] === 0 && props[4] === 0 && props[5] === 1 && props[12] === 0 && props[13] === 0) {
+ return;
+ }
+
+ if (!this.renderConfig.clearCanvas) {
+ this.canvasContext.transform(props[0], props[1], props[4], props[5], props[12], props[13]);
+ return;
+ } // Resetting the canvas transform matrix to the new transform
+
+
+ this.transformMat.cloneFromProps(props); // Taking the last transform value from the stored stack of transforms
+
+ var currentTransform = this.contextData.getTransform(); // Applying the last transform value after the new transform to respect the order of transformations
+
+ this.transformMat.multiply(currentTransform); // Storing the new transformed value in the stored transform
+
+ currentTransform.cloneFromProps(this.transformMat.props);
+ var trProps = currentTransform.props; // Applying the new transform to the canvas
+
+ this.canvasContext.setTransform(trProps[0], trProps[1], trProps[4], trProps[5], trProps[12], trProps[13]);
+ };
+
+ CanvasRendererBase.prototype.ctxOpacity = function (op) {
+ /* if(op === 1){
+ return;
+ } */
+ var currentOpacity = this.contextData.getOpacity();
+
+ if (!this.renderConfig.clearCanvas) {
+ this.canvasContext.globalAlpha *= op < 0 ? 0 : op;
+ this.globalData.currentGlobalAlpha = currentOpacity;
+ return;
+ }
+
+ currentOpacity *= op < 0 ? 0 : op;
+ this.contextData.setOpacity(currentOpacity);
+
+ if (this.globalData.currentGlobalAlpha !== currentOpacity) {
+ this.canvasContext.globalAlpha = currentOpacity;
+ this.globalData.currentGlobalAlpha = currentOpacity;
+ }
+ };
+
+ CanvasRendererBase.prototype.reset = function () {
+ if (!this.renderConfig.clearCanvas) {
+ this.canvasContext.restore();
+ return;
+ }
+
+ this.contextData.reset();
+ };
+
+ CanvasRendererBase.prototype.save = function (actionFlag) {
+ if (!this.renderConfig.clearCanvas) {
+ this.canvasContext.save();
+ return;
+ }
+
+ if (actionFlag) {
+ this.canvasContext.save();
+ }
+
+ this.contextData.push();
+ };
+
+ CanvasRendererBase.prototype.restore = function (actionFlag) {
+ if (!this.renderConfig.clearCanvas) {
+ this.canvasContext.restore();
+ return;
+ }
+
+ if (actionFlag) {
+ this.canvasContext.restore();
+ this.globalData.blendMode = 'source-over';
+ }
+
+ var popped = this.contextData.pop();
+ var transform = popped.transform;
+ var opacity = popped.opacity;
+ this.canvasContext.setTransform(transform[0], transform[1], transform[4], transform[5], transform[12], transform[13]);
+
+ if (this.globalData.currentGlobalAlpha !== opacity) {
+ this.canvasContext.globalAlpha = opacity;
+ this.globalData.currentGlobalAlpha = opacity;
+ }
+ };
+
+ CanvasRendererBase.prototype.configAnimation = function (animData) {
+ if (this.animationItem.wrapper) {
+ this.animationItem.container = createTag('canvas');
+ var containerStyle = this.animationItem.container.style;
+ containerStyle.width = '100%';
+ containerStyle.height = '100%';
+ var origin = '0px 0px 0px';
+ containerStyle.transformOrigin = origin;
+ containerStyle.mozTransformOrigin = origin;
+ containerStyle.webkitTransformOrigin = origin;
+ containerStyle['-webkit-transform'] = origin;
+ containerStyle.contentVisibility = this.renderConfig.contentVisibility;
+ this.animationItem.wrapper.appendChild(this.animationItem.container);
+ this.canvasContext = this.animationItem.container.getContext('2d');
+
+ if (this.renderConfig.className) {
+ this.animationItem.container.setAttribute('class', this.renderConfig.className);
+ }
+
+ if (this.renderConfig.id) {
+ this.animationItem.container.setAttribute('id', this.renderConfig.id);
+ }
+ } else {
+ this.canvasContext = this.renderConfig.context;
+ }
+
+ this.data = animData;
+ this.layers = animData.layers;
+ this.transformCanvas = {
+ w: animData.w,
+ h: animData.h,
+ sx: 0,
+ sy: 0,
+ tx: 0,
+ ty: 0
+ };
+ this.setupGlobalData(animData, document.body);
+ this.globalData.canvasContext = this.canvasContext;
+ this.globalData.renderer = this;
+ this.globalData.isDashed = false;
+ this.globalData.progressiveLoad = this.renderConfig.progressiveLoad;
+ this.globalData.transformCanvas = this.transformCanvas;
+ this.elements = createSizedArray(animData.layers.length);
+ this.updateContainerSize();
+ };
+
+ CanvasRendererBase.prototype.updateContainerSize = function (width, height) {
+ this.reset();
+ var elementWidth;
+ var elementHeight;
+
+ if (width) {
+ elementWidth = width;
+ elementHeight = height;
+ this.canvasContext.canvas.width = elementWidth;
+ this.canvasContext.canvas.height = elementHeight;
+ } else {
+ if (this.animationItem.wrapper && this.animationItem.container) {
+ elementWidth = this.animationItem.wrapper.offsetWidth;
+ elementHeight = this.animationItem.wrapper.offsetHeight;
+ } else {
+ elementWidth = this.canvasContext.canvas.width;
+ elementHeight = this.canvasContext.canvas.height;
+ }
+
+ this.canvasContext.canvas.width = elementWidth * this.renderConfig.dpr;
+ this.canvasContext.canvas.height = elementHeight * this.renderConfig.dpr;
+ }
+
+ var elementRel;
+ var animationRel;
+
+ if (this.renderConfig.preserveAspectRatio.indexOf('meet') !== -1 || this.renderConfig.preserveAspectRatio.indexOf('slice') !== -1) {
+ var par = this.renderConfig.preserveAspectRatio.split(' ');
+ var fillType = par[1] || 'meet';
+ var pos = par[0] || 'xMidYMid';
+ var xPos = pos.substr(0, 4);
+ var yPos = pos.substr(4);
+ elementRel = elementWidth / elementHeight;
+ animationRel = this.transformCanvas.w / this.transformCanvas.h;
+
+ if (animationRel > elementRel && fillType === 'meet' || animationRel < elementRel && fillType === 'slice') {
+ this.transformCanvas.sx = elementWidth / (this.transformCanvas.w / this.renderConfig.dpr);
+ this.transformCanvas.sy = elementWidth / (this.transformCanvas.w / this.renderConfig.dpr);
+ } else {
+ this.transformCanvas.sx = elementHeight / (this.transformCanvas.h / this.renderConfig.dpr);
+ this.transformCanvas.sy = elementHeight / (this.transformCanvas.h / this.renderConfig.dpr);
+ }
+
+ if (xPos === 'xMid' && (animationRel < elementRel && fillType === 'meet' || animationRel > elementRel && fillType === 'slice')) {
+ this.transformCanvas.tx = (elementWidth - this.transformCanvas.w * (elementHeight / this.transformCanvas.h)) / 2 * this.renderConfig.dpr;
+ } else if (xPos === 'xMax' && (animationRel < elementRel && fillType === 'meet' || animationRel > elementRel && fillType === 'slice')) {
+ this.transformCanvas.tx = (elementWidth - this.transformCanvas.w * (elementHeight / this.transformCanvas.h)) * this.renderConfig.dpr;
+ } else {
+ this.transformCanvas.tx = 0;
+ }
+
+ if (yPos === 'YMid' && (animationRel > elementRel && fillType === 'meet' || animationRel < elementRel && fillType === 'slice')) {
+ this.transformCanvas.ty = (elementHeight - this.transformCanvas.h * (elementWidth / this.transformCanvas.w)) / 2 * this.renderConfig.dpr;
+ } else if (yPos === 'YMax' && (animationRel > elementRel && fillType === 'meet' || animationRel < elementRel && fillType === 'slice')) {
+ this.transformCanvas.ty = (elementHeight - this.transformCanvas.h * (elementWidth / this.transformCanvas.w)) * this.renderConfig.dpr;
+ } else {
+ this.transformCanvas.ty = 0;
+ }
+ } else if (this.renderConfig.preserveAspectRatio === 'none') {
+ this.transformCanvas.sx = elementWidth / (this.transformCanvas.w / this.renderConfig.dpr);
+ this.transformCanvas.sy = elementHeight / (this.transformCanvas.h / this.renderConfig.dpr);
+ this.transformCanvas.tx = 0;
+ this.transformCanvas.ty = 0;
+ } else {
+ this.transformCanvas.sx = this.renderConfig.dpr;
+ this.transformCanvas.sy = this.renderConfig.dpr;
+ this.transformCanvas.tx = 0;
+ this.transformCanvas.ty = 0;
+ }
+
+ this.transformCanvas.props = [this.transformCanvas.sx, 0, 0, 0, 0, this.transformCanvas.sy, 0, 0, 0, 0, 1, 0, this.transformCanvas.tx, this.transformCanvas.ty, 0, 1];
+ /* var i, len = this.elements.length;
+ for(i=0;i= 0; i -= 1) {
+ if (this.elements[i] && this.elements[i].destroy) {
+ this.elements[i].destroy();
+ }
+ }
+
+ this.elements.length = 0;
+ this.globalData.canvasContext = null;
+ this.animationItem.container = null;
+ this.destroyed = true;
+ };
+
+ CanvasRendererBase.prototype.renderFrame = function (num, forceRender) {
+ if (this.renderedFrame === num && this.renderConfig.clearCanvas === true && !forceRender || this.destroyed || num === -1) {
+ return;
+ }
+
+ this.renderedFrame = num;
+ this.globalData.frameNum = num - this.animationItem._isFirstFrame;
+ this.globalData.frameId += 1;
+ this.globalData._mdf = !this.renderConfig.clearCanvas || forceRender;
+ this.globalData.projectInterface.currentFrame = num; // console.log('--------');
+ // console.log('NEW: ',num);
+
+ var i;
+ var len = this.layers.length;
+
+ if (!this.completeLayers) {
+ this.checkLayers(num);
+ }
+
+ for (i = 0; i < len; i += 1) {
+ if (this.completeLayers || this.elements[i]) {
+ this.elements[i].prepareFrame(num - this.layers[i].st);
+ }
+ }
+
+ if (this.globalData._mdf) {
+ if (this.renderConfig.clearCanvas === true) {
+ this.canvasContext.clearRect(0, 0, this.transformCanvas.w, this.transformCanvas.h);
+ } else {
+ this.save();
+ }
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ if (this.completeLayers || this.elements[i]) {
+ this.elements[i].renderFrame();
+ }
+ }
+
+ if (this.renderConfig.clearCanvas !== true) {
+ this.restore();
+ }
+ }
+ };
+
+ CanvasRendererBase.prototype.buildItem = function (pos) {
+ var elements = this.elements;
+
+ if (elements[pos] || this.layers[pos].ty === 99) {
+ return;
+ }
+
+ var element = this.createItem(this.layers[pos], this, this.globalData);
+ elements[pos] = element;
+ element.initExpressions();
+ /* if(this.layers[pos].ty === 0){
+ element.resize(this.globalData.transformCanvas);
+ } */
+ };
+
+ CanvasRendererBase.prototype.checkPendingElements = function () {
+ while (this.pendingElements.length) {
+ var element = this.pendingElements.pop();
+ element.checkParenting();
+ }
+ };
+
+ CanvasRendererBase.prototype.hide = function () {
+ this.animationItem.container.style.display = 'none';
+ };
+
+ CanvasRendererBase.prototype.show = function () {
+ this.animationItem.container.style.display = 'block';
+ };
+
+ function CVCompElement(data, globalData, comp) {
+ this.completeLayers = false;
+ this.layers = data.layers;
+ this.pendingElements = [];
+ this.elements = createSizedArray(this.layers.length);
+ this.initElement(data, globalData, comp);
+ this.tm = data.tm ? PropertyFactory.getProp(this, data.tm, 0, globalData.frameRate, this) : {
+ _placeholder: true
+ };
+ }
+
+ extendPrototype([CanvasRendererBase, ICompElement, CVBaseElement], CVCompElement);
+
+ CVCompElement.prototype.renderInnerContent = function () {
+ var ctx = this.canvasContext;
+ ctx.beginPath();
+ ctx.moveTo(0, 0);
+ ctx.lineTo(this.data.w, 0);
+ ctx.lineTo(this.data.w, this.data.h);
+ ctx.lineTo(0, this.data.h);
+ ctx.lineTo(0, 0);
+ ctx.clip();
+ var i;
+ var len = this.layers.length;
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ if (this.completeLayers || this.elements[i]) {
+ this.elements[i].renderFrame();
+ }
+ }
+ };
+
+ CVCompElement.prototype.destroy = function () {
+ var i;
+ var len = this.layers.length;
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ if (this.elements[i]) {
+ this.elements[i].destroy();
+ }
+ }
+
+ this.layers = null;
+ this.elements = null;
+ };
+
+ CVCompElement.prototype.createComp = function (data) {
+ return new CVCompElement(data, this.globalData, this);
+ };
+
+ function CanvasRenderer(animationItem, config) {
+ this.animationItem = animationItem;
+ this.renderConfig = {
+ clearCanvas: config && config.clearCanvas !== undefined ? config.clearCanvas : true,
+ context: config && config.context || null,
+ progressiveLoad: config && config.progressiveLoad || false,
+ preserveAspectRatio: config && config.preserveAspectRatio || 'xMidYMid meet',
+ imagePreserveAspectRatio: config && config.imagePreserveAspectRatio || 'xMidYMid slice',
+ contentVisibility: config && config.contentVisibility || 'visible',
+ className: config && config.className || '',
+ id: config && config.id || '',
+ runExpressions: !config || config.runExpressions === undefined || config.runExpressions
+ };
+ this.renderConfig.dpr = config && config.dpr || 1;
+
+ if (this.animationItem.wrapper) {
+ this.renderConfig.dpr = config && config.dpr || window.devicePixelRatio || 1;
+ }
+
+ this.renderedFrame = -1;
+ this.globalData = {
+ frameNum: -1,
+ _mdf: false,
+ renderConfig: this.renderConfig,
+ currentGlobalAlpha: -1
+ };
+ this.contextData = new CVContextData();
+ this.elements = [];
+ this.pendingElements = [];
+ this.transformMat = new Matrix();
+ this.completeLayers = false;
+ this.rendererType = 'canvas';
+ }
+
+ extendPrototype([CanvasRendererBase], CanvasRenderer);
+
+ CanvasRenderer.prototype.createComp = function (data) {
+ return new CVCompElement(data, this.globalData, this);
+ };
+
+ function HBaseElement() {}
+
+ HBaseElement.prototype = {
+ checkBlendMode: function checkBlendMode() {},
+ initRendererElement: function initRendererElement() {
+ this.baseElement = createTag(this.data.tg || 'div');
+
+ if (this.data.hasMask) {
+ this.svgElement = createNS('svg');
+ this.layerElement = createNS('g');
+ this.maskedElement = this.layerElement;
+ this.svgElement.appendChild(this.layerElement);
+ this.baseElement.appendChild(this.svgElement);
+ } else {
+ this.layerElement = this.baseElement;
+ }
+
+ styleDiv(this.baseElement);
+ },
+ createContainerElements: function createContainerElements() {
+ this.renderableEffectsManager = new CVEffects(this);
+ this.transformedElement = this.baseElement;
+ this.maskedElement = this.layerElement;
+
+ if (this.data.ln) {
+ this.layerElement.setAttribute('id', this.data.ln);
+ }
+
+ if (this.data.cl) {
+ this.layerElement.setAttribute('class', this.data.cl);
+ }
+
+ if (this.data.bm !== 0) {
+ this.setBlendMode();
+ }
+ },
+ renderElement: function renderElement() {
+ var transformedElementStyle = this.transformedElement ? this.transformedElement.style : {};
+
+ if (this.finalTransform._matMdf) {
+ var matrixValue = this.finalTransform.mat.toCSS();
+ transformedElementStyle.transform = matrixValue;
+ transformedElementStyle.webkitTransform = matrixValue;
+ }
+
+ if (this.finalTransform._opMdf) {
+ transformedElementStyle.opacity = this.finalTransform.mProp.o.v;
+ }
+ },
+ renderFrame: function renderFrame() {
+ // If it is exported as hidden (data.hd === true) no need to render
+ // If it is not visible no need to render
+ if (this.data.hd || this.hidden) {
+ return;
+ }
+
+ this.renderTransform();
+ this.renderRenderable();
+ this.renderElement();
+ this.renderInnerContent();
+
+ if (this._isFirstFrame) {
+ this._isFirstFrame = false;
+ }
+ },
+ destroy: function destroy() {
+ this.layerElement = null;
+ this.transformedElement = null;
+
+ if (this.matteElement) {
+ this.matteElement = null;
+ }
+
+ if (this.maskManager) {
+ this.maskManager.destroy();
+ this.maskManager = null;
+ }
+ },
+ createRenderableComponents: function createRenderableComponents() {
+ this.maskManager = new MaskElement(this.data, this, this.globalData);
+ },
+ addEffects: function addEffects() {},
+ setMatte: function setMatte() {}
+ };
+ HBaseElement.prototype.getBaseElement = SVGBaseElement.prototype.getBaseElement;
+ HBaseElement.prototype.destroyBaseElement = HBaseElement.prototype.destroy;
+ HBaseElement.prototype.buildElementParenting = BaseRenderer.prototype.buildElementParenting;
+
+ function HSolidElement(data, globalData, comp) {
+ this.initElement(data, globalData, comp);
+ }
+
+ extendPrototype([BaseElement, TransformElement, HBaseElement, HierarchyElement, FrameElement, RenderableDOMElement], HSolidElement);
+
+ HSolidElement.prototype.createContent = function () {
+ var rect;
+
+ if (this.data.hasMask) {
+ rect = createNS('rect');
+ rect.setAttribute('width', this.data.sw);
+ rect.setAttribute('height', this.data.sh);
+ rect.setAttribute('fill', this.data.sc);
+ this.svgElement.setAttribute('width', this.data.sw);
+ this.svgElement.setAttribute('height', this.data.sh);
+ } else {
+ rect = createTag('div');
+ rect.style.width = this.data.sw + 'px';
+ rect.style.height = this.data.sh + 'px';
+ rect.style.backgroundColor = this.data.sc;
+ }
+
+ this.layerElement.appendChild(rect);
+ };
+
+ function HShapeElement(data, globalData, comp) {
+ // List of drawable elements
+ this.shapes = []; // Full shape data
+
+ this.shapesData = data.shapes; // List of styles that will be applied to shapes
+
+ this.stylesList = []; // List of modifiers that will be applied to shapes
+
+ this.shapeModifiers = []; // List of items in shape tree
+
+ this.itemsData = []; // List of items in previous shape tree
+
+ this.processedElements = []; // List of animated components
+
+ this.animatedContents = [];
+ this.shapesContainer = createNS('g');
+ this.initElement(data, globalData, comp); // Moving any property that doesn't get too much access after initialization because of v8 way of handling more than 10 properties.
+ // List of elements that have been created
+
+ this.prevViewData = [];
+ this.currentBBox = {
+ x: 999999,
+ y: -999999,
+ h: 0,
+ w: 0
+ };
+ }
+
+ extendPrototype([BaseElement, TransformElement, HSolidElement, SVGShapeElement, HBaseElement, HierarchyElement, FrameElement, RenderableElement], HShapeElement);
+ HShapeElement.prototype._renderShapeFrame = HShapeElement.prototype.renderInnerContent;
+
+ HShapeElement.prototype.createContent = function () {
+ var cont;
+ this.baseElement.style.fontSize = 0;
+
+ if (this.data.hasMask) {
+ this.layerElement.appendChild(this.shapesContainer);
+ cont = this.svgElement;
+ } else {
+ cont = createNS('svg');
+ var size = this.comp.data ? this.comp.data : this.globalData.compSize;
+ cont.setAttribute('width', size.w);
+ cont.setAttribute('height', size.h);
+ cont.appendChild(this.shapesContainer);
+ this.layerElement.appendChild(cont);
+ }
+
+ this.searchShapes(this.shapesData, this.itemsData, this.prevViewData, this.shapesContainer, 0, [], true);
+ this.filterUniqueShapes();
+ this.shapeCont = cont;
+ };
+
+ HShapeElement.prototype.getTransformedPoint = function (transformers, point) {
+ var i;
+ var len = transformers.length;
+
+ for (i = 0; i < len; i += 1) {
+ point = transformers[i].mProps.v.applyToPointArray(point[0], point[1], 0);
+ }
+
+ return point;
+ };
+
+ HShapeElement.prototype.calculateShapeBoundingBox = function (item, boundingBox) {
+ var shape = item.sh.v;
+ var transformers = item.transformers;
+ var i;
+ var len = shape._length;
+ var vPoint;
+ var oPoint;
+ var nextIPoint;
+ var nextVPoint;
+
+ if (len <= 1) {
+ return;
+ }
+
+ for (i = 0; i < len - 1; i += 1) {
+ vPoint = this.getTransformedPoint(transformers, shape.v[i]);
+ oPoint = this.getTransformedPoint(transformers, shape.o[i]);
+ nextIPoint = this.getTransformedPoint(transformers, shape.i[i + 1]);
+ nextVPoint = this.getTransformedPoint(transformers, shape.v[i + 1]);
+ this.checkBounds(vPoint, oPoint, nextIPoint, nextVPoint, boundingBox);
+ }
+
+ if (shape.c) {
+ vPoint = this.getTransformedPoint(transformers, shape.v[i]);
+ oPoint = this.getTransformedPoint(transformers, shape.o[i]);
+ nextIPoint = this.getTransformedPoint(transformers, shape.i[0]);
+ nextVPoint = this.getTransformedPoint(transformers, shape.v[0]);
+ this.checkBounds(vPoint, oPoint, nextIPoint, nextVPoint, boundingBox);
+ }
+ };
+
+ HShapeElement.prototype.checkBounds = function (vPoint, oPoint, nextIPoint, nextVPoint, boundingBox) {
+ this.getBoundsOfCurve(vPoint, oPoint, nextIPoint, nextVPoint);
+ var bounds = this.shapeBoundingBox;
+ boundingBox.x = bmMin(bounds.left, boundingBox.x);
+ boundingBox.xMax = bmMax(bounds.right, boundingBox.xMax);
+ boundingBox.y = bmMin(bounds.top, boundingBox.y);
+ boundingBox.yMax = bmMax(bounds.bottom, boundingBox.yMax);
+ };
+
+ HShapeElement.prototype.shapeBoundingBox = {
+ left: 0,
+ right: 0,
+ top: 0,
+ bottom: 0
+ };
+ HShapeElement.prototype.tempBoundingBox = {
+ x: 0,
+ xMax: 0,
+ y: 0,
+ yMax: 0,
+ width: 0,
+ height: 0
+ };
+
+ HShapeElement.prototype.getBoundsOfCurve = function (p0, p1, p2, p3) {
+ var bounds = [[p0[0], p3[0]], [p0[1], p3[1]]];
+
+ for (var a, b, c, t, b2ac, t1, t2, i = 0; i < 2; ++i) {
+ // eslint-disable-line no-plusplus
+ b = 6 * p0[i] - 12 * p1[i] + 6 * p2[i];
+ a = -3 * p0[i] + 9 * p1[i] - 9 * p2[i] + 3 * p3[i];
+ c = 3 * p1[i] - 3 * p0[i];
+ b |= 0; // eslint-disable-line no-bitwise
+
+ a |= 0; // eslint-disable-line no-bitwise
+
+ c |= 0; // eslint-disable-line no-bitwise
+
+ if (a === 0 && b === 0) {//
+ } else if (a === 0) {
+ t = -c / b;
+
+ if (t > 0 && t < 1) {
+ bounds[i].push(this.calculateF(t, p0, p1, p2, p3, i));
+ }
+ } else {
+ b2ac = b * b - 4 * c * a;
+
+ if (b2ac >= 0) {
+ t1 = (-b + bmSqrt(b2ac)) / (2 * a);
+ if (t1 > 0 && t1 < 1) bounds[i].push(this.calculateF(t1, p0, p1, p2, p3, i));
+ t2 = (-b - bmSqrt(b2ac)) / (2 * a);
+ if (t2 > 0 && t2 < 1) bounds[i].push(this.calculateF(t2, p0, p1, p2, p3, i));
+ }
+ }
+ }
+
+ this.shapeBoundingBox.left = bmMin.apply(null, bounds[0]);
+ this.shapeBoundingBox.top = bmMin.apply(null, bounds[1]);
+ this.shapeBoundingBox.right = bmMax.apply(null, bounds[0]);
+ this.shapeBoundingBox.bottom = bmMax.apply(null, bounds[1]);
+ };
+
+ HShapeElement.prototype.calculateF = function (t, p0, p1, p2, p3, i) {
+ return bmPow(1 - t, 3) * p0[i] + 3 * bmPow(1 - t, 2) * t * p1[i] + 3 * (1 - t) * bmPow(t, 2) * p2[i] + bmPow(t, 3) * p3[i];
+ };
+
+ HShapeElement.prototype.calculateBoundingBox = function (itemsData, boundingBox) {
+ var i;
+ var len = itemsData.length;
+
+ for (i = 0; i < len; i += 1) {
+ if (itemsData[i] && itemsData[i].sh) {
+ this.calculateShapeBoundingBox(itemsData[i], boundingBox);
+ } else if (itemsData[i] && itemsData[i].it) {
+ this.calculateBoundingBox(itemsData[i].it, boundingBox);
+ } else if (itemsData[i] && itemsData[i].style && itemsData[i].w) {
+ this.expandStrokeBoundingBox(itemsData[i].w, boundingBox);
+ }
+ }
+ };
+
+ HShapeElement.prototype.expandStrokeBoundingBox = function (widthProperty, boundingBox) {
+ var width = 0;
+
+ if (widthProperty.keyframes) {
+ for (var i = 0; i < widthProperty.keyframes.length; i += 1) {
+ var kfw = widthProperty.keyframes[i].s;
+
+ if (kfw > width) {
+ width = kfw;
+ }
+ }
+
+ width *= widthProperty.mult;
+ } else {
+ width = widthProperty.v * widthProperty.mult;
+ }
+
+ boundingBox.x -= width;
+ boundingBox.xMax += width;
+ boundingBox.y -= width;
+ boundingBox.yMax += width;
+ };
+
+ HShapeElement.prototype.currentBoxContains = function (box) {
+ return this.currentBBox.x <= box.x && this.currentBBox.y <= box.y && this.currentBBox.width + this.currentBBox.x >= box.x + box.width && this.currentBBox.height + this.currentBBox.y >= box.y + box.height;
+ };
+
+ HShapeElement.prototype.renderInnerContent = function () {
+ this._renderShapeFrame();
+
+ if (!this.hidden && (this._isFirstFrame || this._mdf)) {
+ var tempBoundingBox = this.tempBoundingBox;
+ var max = 999999;
+ tempBoundingBox.x = max;
+ tempBoundingBox.xMax = -max;
+ tempBoundingBox.y = max;
+ tempBoundingBox.yMax = -max;
+ this.calculateBoundingBox(this.itemsData, tempBoundingBox);
+ tempBoundingBox.width = tempBoundingBox.xMax < tempBoundingBox.x ? 0 : tempBoundingBox.xMax - tempBoundingBox.x;
+ tempBoundingBox.height = tempBoundingBox.yMax < tempBoundingBox.y ? 0 : tempBoundingBox.yMax - tempBoundingBox.y; // var tempBoundingBox = this.shapeCont.getBBox();
+
+ if (this.currentBoxContains(tempBoundingBox)) {
+ return;
+ }
+
+ var changed = false;
+
+ if (this.currentBBox.w !== tempBoundingBox.width) {
+ this.currentBBox.w = tempBoundingBox.width;
+ this.shapeCont.setAttribute('width', tempBoundingBox.width);
+ changed = true;
+ }
+
+ if (this.currentBBox.h !== tempBoundingBox.height) {
+ this.currentBBox.h = tempBoundingBox.height;
+ this.shapeCont.setAttribute('height', tempBoundingBox.height);
+ changed = true;
+ }
+
+ if (changed || this.currentBBox.x !== tempBoundingBox.x || this.currentBBox.y !== tempBoundingBox.y) {
+ this.currentBBox.w = tempBoundingBox.width;
+ this.currentBBox.h = tempBoundingBox.height;
+ this.currentBBox.x = tempBoundingBox.x;
+ this.currentBBox.y = tempBoundingBox.y;
+ this.shapeCont.setAttribute('viewBox', this.currentBBox.x + ' ' + this.currentBBox.y + ' ' + this.currentBBox.w + ' ' + this.currentBBox.h);
+ var shapeStyle = this.shapeCont.style;
+ var shapeTransform = 'translate(' + this.currentBBox.x + 'px,' + this.currentBBox.y + 'px)';
+ shapeStyle.transform = shapeTransform;
+ shapeStyle.webkitTransform = shapeTransform;
+ }
+ }
+ };
+
+ function HTextElement(data, globalData, comp) {
+ this.textSpans = [];
+ this.textPaths = [];
+ this.currentBBox = {
+ x: 999999,
+ y: -999999,
+ h: 0,
+ w: 0
+ };
+ this.renderType = 'svg';
+ this.isMasked = false;
+ this.initElement(data, globalData, comp);
+ }
+
+ extendPrototype([BaseElement, TransformElement, HBaseElement, HierarchyElement, FrameElement, RenderableDOMElement, ITextElement], HTextElement);
+
+ HTextElement.prototype.createContent = function () {
+ this.isMasked = this.checkMasks();
+
+ if (this.isMasked) {
+ this.renderType = 'svg';
+ this.compW = this.comp.data.w;
+ this.compH = this.comp.data.h;
+ this.svgElement.setAttribute('width', this.compW);
+ this.svgElement.setAttribute('height', this.compH);
+ var g = createNS('g');
+ this.maskedElement.appendChild(g);
+ this.innerElem = g;
+ } else {
+ this.renderType = 'html';
+ this.innerElem = this.layerElement;
+ }
+
+ this.checkParenting();
+ };
+
+ HTextElement.prototype.buildNewText = function () {
+ var documentData = this.textProperty.currentData;
+ this.renderedLetters = createSizedArray(documentData.l ? documentData.l.length : 0);
+ var innerElemStyle = this.innerElem.style;
+ var textColor = documentData.fc ? this.buildColor(documentData.fc) : 'rgba(0,0,0,0)';
+ innerElemStyle.fill = textColor;
+ innerElemStyle.color = textColor;
+
+ if (documentData.sc) {
+ innerElemStyle.stroke = this.buildColor(documentData.sc);
+ innerElemStyle.strokeWidth = documentData.sw + 'px';
+ }
+
+ var fontData = this.globalData.fontManager.getFontByName(documentData.f);
+
+ if (!this.globalData.fontManager.chars) {
+ innerElemStyle.fontSize = documentData.finalSize + 'px';
+ innerElemStyle.lineHeight = documentData.finalSize + 'px';
+
+ if (fontData.fClass) {
+ this.innerElem.className = fontData.fClass;
+ } else {
+ innerElemStyle.fontFamily = fontData.fFamily;
+ var fWeight = documentData.fWeight;
+ var fStyle = documentData.fStyle;
+ innerElemStyle.fontStyle = fStyle;
+ innerElemStyle.fontWeight = fWeight;
+ }
+ }
+
+ var i;
+ var len;
+ var letters = documentData.l;
+ len = letters.length;
+ var tSpan;
+ var tParent;
+ var tCont;
+ var matrixHelper = this.mHelper;
+ var shapes;
+ var shapeStr = '';
+ var cnt = 0;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.globalData.fontManager.chars) {
+ if (!this.textPaths[cnt]) {
+ tSpan = createNS('path');
+ tSpan.setAttribute('stroke-linecap', lineCapEnum[1]);
+ tSpan.setAttribute('stroke-linejoin', lineJoinEnum[2]);
+ tSpan.setAttribute('stroke-miterlimit', '4');
+ } else {
+ tSpan = this.textPaths[cnt];
+ }
+
+ if (!this.isMasked) {
+ if (this.textSpans[cnt]) {
+ tParent = this.textSpans[cnt];
+ tCont = tParent.children[0];
+ } else {
+ tParent = createTag('div');
+ tParent.style.lineHeight = 0;
+ tCont = createNS('svg');
+ tCont.appendChild(tSpan);
+ styleDiv(tParent);
+ }
+ }
+ } else if (!this.isMasked) {
+ if (this.textSpans[cnt]) {
+ tParent = this.textSpans[cnt];
+ tSpan = this.textPaths[cnt];
+ } else {
+ tParent = createTag('span');
+ styleDiv(tParent);
+ tSpan = createTag('span');
+ styleDiv(tSpan);
+ tParent.appendChild(tSpan);
+ }
+ } else {
+ tSpan = this.textPaths[cnt] ? this.textPaths[cnt] : createNS('text');
+ } // tSpan.setAttribute('visibility', 'hidden');
+
+
+ if (this.globalData.fontManager.chars) {
+ var charData = this.globalData.fontManager.getCharData(documentData.finalText[i], fontData.fStyle, this.globalData.fontManager.getFontByName(documentData.f).fFamily);
+ var shapeData;
+
+ if (charData) {
+ shapeData = charData.data;
+ } else {
+ shapeData = null;
+ }
+
+ matrixHelper.reset();
+
+ if (shapeData && shapeData.shapes && shapeData.shapes.length) {
+ shapes = shapeData.shapes[0].it;
+ matrixHelper.scale(documentData.finalSize / 100, documentData.finalSize / 100);
+ shapeStr = this.createPathShape(matrixHelper, shapes);
+ tSpan.setAttribute('d', shapeStr);
+ }
+
+ if (!this.isMasked) {
+ this.innerElem.appendChild(tParent);
+
+ if (shapeData && shapeData.shapes) {
+ // document.body.appendChild is needed to get exact measure of shape
+ document.body.appendChild(tCont);
+ var boundingBox = tCont.getBBox();
+ tCont.setAttribute('width', boundingBox.width + 2);
+ tCont.setAttribute('height', boundingBox.height + 2);
+ tCont.setAttribute('viewBox', boundingBox.x - 1 + ' ' + (boundingBox.y - 1) + ' ' + (boundingBox.width + 2) + ' ' + (boundingBox.height + 2));
+ var tContStyle = tCont.style;
+ var tContTranslation = 'translate(' + (boundingBox.x - 1) + 'px,' + (boundingBox.y - 1) + 'px)';
+ tContStyle.transform = tContTranslation;
+ tContStyle.webkitTransform = tContTranslation;
+ letters[i].yOffset = boundingBox.y - 1;
+ } else {
+ tCont.setAttribute('width', 1);
+ tCont.setAttribute('height', 1);
+ }
+
+ tParent.appendChild(tCont);
+ } else {
+ this.innerElem.appendChild(tSpan);
+ }
+ } else {
+ tSpan.textContent = letters[i].val;
+ tSpan.setAttributeNS('http://www.w3.org/XML/1998/namespace', 'xml:space', 'preserve');
+
+ if (!this.isMasked) {
+ this.innerElem.appendChild(tParent); //
+
+ var tStyle = tSpan.style;
+ var tSpanTranslation = 'translate3d(0,' + -documentData.finalSize / 1.2 + 'px,0)';
+ tStyle.transform = tSpanTranslation;
+ tStyle.webkitTransform = tSpanTranslation;
+ } else {
+ this.innerElem.appendChild(tSpan);
+ }
+ } //
+
+
+ if (!this.isMasked) {
+ this.textSpans[cnt] = tParent;
+ } else {
+ this.textSpans[cnt] = tSpan;
+ }
+
+ this.textSpans[cnt].style.display = 'block';
+ this.textPaths[cnt] = tSpan;
+ cnt += 1;
+ }
+
+ while (cnt < this.textSpans.length) {
+ this.textSpans[cnt].style.display = 'none';
+ cnt += 1;
+ }
+ };
+
+ HTextElement.prototype.renderInnerContent = function () {
+ this.validateText();
+ var svgStyle;
+
+ if (this.data.singleShape) {
+ if (!this._isFirstFrame && !this.lettersChangedFlag) {
+ return;
+ }
+
+ if (this.isMasked && this.finalTransform._matMdf) {
+ // Todo Benchmark if using this is better than getBBox
+ this.svgElement.setAttribute('viewBox', -this.finalTransform.mProp.p.v[0] + ' ' + -this.finalTransform.mProp.p.v[1] + ' ' + this.compW + ' ' + this.compH);
+ svgStyle = this.svgElement.style;
+ var translation = 'translate(' + -this.finalTransform.mProp.p.v[0] + 'px,' + -this.finalTransform.mProp.p.v[1] + 'px)';
+ svgStyle.transform = translation;
+ svgStyle.webkitTransform = translation;
+ }
+ }
+
+ this.textAnimator.getMeasures(this.textProperty.currentData, this.lettersChangedFlag);
+
+ if (!this.lettersChangedFlag && !this.textAnimator.lettersChangedFlag) {
+ return;
+ }
+
+ var i;
+ var len;
+ var count = 0;
+ var renderedLetters = this.textAnimator.renderedLetters;
+ var letters = this.textProperty.currentData.l;
+ len = letters.length;
+ var renderedLetter;
+ var textSpan;
+ var textPath;
+
+ for (i = 0; i < len; i += 1) {
+ if (letters[i].n) {
+ count += 1;
+ } else {
+ textSpan = this.textSpans[i];
+ textPath = this.textPaths[i];
+ renderedLetter = renderedLetters[count];
+ count += 1;
+
+ if (renderedLetter._mdf.m) {
+ if (!this.isMasked) {
+ textSpan.style.webkitTransform = renderedLetter.m;
+ textSpan.style.transform = renderedLetter.m;
+ } else {
+ textSpan.setAttribute('transform', renderedLetter.m);
+ }
+ } /// /textSpan.setAttribute('opacity',renderedLetter.o);
+
+
+ textSpan.style.opacity = renderedLetter.o;
+
+ if (renderedLetter.sw && renderedLetter._mdf.sw) {
+ textPath.setAttribute('stroke-width', renderedLetter.sw);
+ }
+
+ if (renderedLetter.sc && renderedLetter._mdf.sc) {
+ textPath.setAttribute('stroke', renderedLetter.sc);
+ }
+
+ if (renderedLetter.fc && renderedLetter._mdf.fc) {
+ textPath.setAttribute('fill', renderedLetter.fc);
+ textPath.style.color = renderedLetter.fc;
+ }
+ }
+ }
+
+ if (this.innerElem.getBBox && !this.hidden && (this._isFirstFrame || this._mdf)) {
+ var boundingBox = this.innerElem.getBBox();
+
+ if (this.currentBBox.w !== boundingBox.width) {
+ this.currentBBox.w = boundingBox.width;
+ this.svgElement.setAttribute('width', boundingBox.width);
+ }
+
+ if (this.currentBBox.h !== boundingBox.height) {
+ this.currentBBox.h = boundingBox.height;
+ this.svgElement.setAttribute('height', boundingBox.height);
+ }
+
+ var margin = 1;
+
+ if (this.currentBBox.w !== boundingBox.width + margin * 2 || this.currentBBox.h !== boundingBox.height + margin * 2 || this.currentBBox.x !== boundingBox.x - margin || this.currentBBox.y !== boundingBox.y - margin) {
+ this.currentBBox.w = boundingBox.width + margin * 2;
+ this.currentBBox.h = boundingBox.height + margin * 2;
+ this.currentBBox.x = boundingBox.x - margin;
+ this.currentBBox.y = boundingBox.y - margin;
+ this.svgElement.setAttribute('viewBox', this.currentBBox.x + ' ' + this.currentBBox.y + ' ' + this.currentBBox.w + ' ' + this.currentBBox.h);
+ svgStyle = this.svgElement.style;
+ var svgTransform = 'translate(' + this.currentBBox.x + 'px,' + this.currentBBox.y + 'px)';
+ svgStyle.transform = svgTransform;
+ svgStyle.webkitTransform = svgTransform;
+ }
+ }
+ };
+
+ function HCameraElement(data, globalData, comp) {
+ this.initFrame();
+ this.initBaseData(data, globalData, comp);
+ this.initHierarchy();
+ var getProp = PropertyFactory.getProp;
+ this.pe = getProp(this, data.pe, 0, 0, this);
+
+ if (data.ks.p.s) {
+ this.px = getProp(this, data.ks.p.x, 1, 0, this);
+ this.py = getProp(this, data.ks.p.y, 1, 0, this);
+ this.pz = getProp(this, data.ks.p.z, 1, 0, this);
+ } else {
+ this.p = getProp(this, data.ks.p, 1, 0, this);
+ }
+
+ if (data.ks.a) {
+ this.a = getProp(this, data.ks.a, 1, 0, this);
+ }
+
+ if (data.ks.or.k.length && data.ks.or.k[0].to) {
+ var i;
+ var len = data.ks.or.k.length;
+
+ for (i = 0; i < len; i += 1) {
+ data.ks.or.k[i].to = null;
+ data.ks.or.k[i].ti = null;
+ }
+ }
+
+ this.or = getProp(this, data.ks.or, 1, degToRads, this);
+ this.or.sh = true;
+ this.rx = getProp(this, data.ks.rx, 0, degToRads, this);
+ this.ry = getProp(this, data.ks.ry, 0, degToRads, this);
+ this.rz = getProp(this, data.ks.rz, 0, degToRads, this);
+ this.mat = new Matrix();
+ this._prevMat = new Matrix();
+ this._isFirstFrame = true; // TODO: find a better way to make the HCamera element to be compatible with the LayerInterface and TransformInterface.
+
+ this.finalTransform = {
+ mProp: this
+ };
+ }
+
+ extendPrototype([BaseElement, FrameElement, HierarchyElement], HCameraElement);
+
+ HCameraElement.prototype.setup = function () {
+ var i;
+ var len = this.comp.threeDElements.length;
+ var comp;
+ var perspectiveStyle;
+ var containerStyle;
+
+ for (i = 0; i < len; i += 1) {
+ // [perspectiveElem,container]
+ comp = this.comp.threeDElements[i];
+
+ if (comp.type === '3d') {
+ perspectiveStyle = comp.perspectiveElem.style;
+ containerStyle = comp.container.style;
+ var perspective = this.pe.v + 'px';
+ var origin = '0px 0px 0px';
+ var matrix = 'matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)';
+ perspectiveStyle.perspective = perspective;
+ perspectiveStyle.webkitPerspective = perspective;
+ containerStyle.transformOrigin = origin;
+ containerStyle.mozTransformOrigin = origin;
+ containerStyle.webkitTransformOrigin = origin;
+ perspectiveStyle.transform = matrix;
+ perspectiveStyle.webkitTransform = matrix;
+ }
+ }
+ };
+
+ HCameraElement.prototype.createElements = function () {};
+
+ HCameraElement.prototype.hide = function () {};
+
+ HCameraElement.prototype.renderFrame = function () {
+ var _mdf = this._isFirstFrame;
+ var i;
+ var len;
+
+ if (this.hierarchy) {
+ len = this.hierarchy.length;
+
+ for (i = 0; i < len; i += 1) {
+ _mdf = this.hierarchy[i].finalTransform.mProp._mdf || _mdf;
+ }
+ }
+
+ if (_mdf || this.pe._mdf || this.p && this.p._mdf || this.px && (this.px._mdf || this.py._mdf || this.pz._mdf) || this.rx._mdf || this.ry._mdf || this.rz._mdf || this.or._mdf || this.a && this.a._mdf) {
+ this.mat.reset();
+
+ if (this.hierarchy) {
+ len = this.hierarchy.length - 1;
+
+ for (i = len; i >= 0; i -= 1) {
+ var mTransf = this.hierarchy[i].finalTransform.mProp;
+ this.mat.translate(-mTransf.p.v[0], -mTransf.p.v[1], mTransf.p.v[2]);
+ this.mat.rotateX(-mTransf.or.v[0]).rotateY(-mTransf.or.v[1]).rotateZ(mTransf.or.v[2]);
+ this.mat.rotateX(-mTransf.rx.v).rotateY(-mTransf.ry.v).rotateZ(mTransf.rz.v);
+ this.mat.scale(1 / mTransf.s.v[0], 1 / mTransf.s.v[1], 1 / mTransf.s.v[2]);
+ this.mat.translate(mTransf.a.v[0], mTransf.a.v[1], mTransf.a.v[2]);
+ }
+ }
+
+ if (this.p) {
+ this.mat.translate(-this.p.v[0], -this.p.v[1], this.p.v[2]);
+ } else {
+ this.mat.translate(-this.px.v, -this.py.v, this.pz.v);
+ }
+
+ if (this.a) {
+ var diffVector;
+
+ if (this.p) {
+ diffVector = [this.p.v[0] - this.a.v[0], this.p.v[1] - this.a.v[1], this.p.v[2] - this.a.v[2]];
+ } else {
+ diffVector = [this.px.v - this.a.v[0], this.py.v - this.a.v[1], this.pz.v - this.a.v[2]];
+ }
+
+ var mag = Math.sqrt(Math.pow(diffVector[0], 2) + Math.pow(diffVector[1], 2) + Math.pow(diffVector[2], 2)); // var lookDir = getNormalizedPoint(getDiffVector(this.a.v,this.p.v));
+
+ var lookDir = [diffVector[0] / mag, diffVector[1] / mag, diffVector[2] / mag];
+ var lookLengthOnXZ = Math.sqrt(lookDir[2] * lookDir[2] + lookDir[0] * lookDir[0]);
+ var mRotationX = Math.atan2(lookDir[1], lookLengthOnXZ);
+ var mRotationY = Math.atan2(lookDir[0], -lookDir[2]);
+ this.mat.rotateY(mRotationY).rotateX(-mRotationX);
+ }
+
+ this.mat.rotateX(-this.rx.v).rotateY(-this.ry.v).rotateZ(this.rz.v);
+ this.mat.rotateX(-this.or.v[0]).rotateY(-this.or.v[1]).rotateZ(this.or.v[2]);
+ this.mat.translate(this.globalData.compSize.w / 2, this.globalData.compSize.h / 2, 0);
+ this.mat.translate(0, 0, this.pe.v);
+ var hasMatrixChanged = !this._prevMat.equals(this.mat);
+
+ if ((hasMatrixChanged || this.pe._mdf) && this.comp.threeDElements) {
+ len = this.comp.threeDElements.length;
+ var comp;
+ var perspectiveStyle;
+ var containerStyle;
+
+ for (i = 0; i < len; i += 1) {
+ comp = this.comp.threeDElements[i];
+
+ if (comp.type === '3d') {
+ if (hasMatrixChanged) {
+ var matValue = this.mat.toCSS();
+ containerStyle = comp.container.style;
+ containerStyle.transform = matValue;
+ containerStyle.webkitTransform = matValue;
+ }
+
+ if (this.pe._mdf) {
+ perspectiveStyle = comp.perspectiveElem.style;
+ perspectiveStyle.perspective = this.pe.v + 'px';
+ perspectiveStyle.webkitPerspective = this.pe.v + 'px';
+ }
+ }
+ }
+
+ this.mat.clone(this._prevMat);
+ }
+ }
+
+ this._isFirstFrame = false;
+ };
+
+ HCameraElement.prototype.prepareFrame = function (num) {
+ this.prepareProperties(num, true);
+ };
+
+ HCameraElement.prototype.destroy = function () {};
+
+ HCameraElement.prototype.getBaseElement = function () {
+ return null;
+ };
+
+ function HImageElement(data, globalData, comp) {
+ this.assetData = globalData.getAssetData(data.refId);
+ this.initElement(data, globalData, comp);
+ }
+
+ extendPrototype([BaseElement, TransformElement, HBaseElement, HSolidElement, HierarchyElement, FrameElement, RenderableElement], HImageElement);
+
+ HImageElement.prototype.createContent = function () {
+ var assetPath = this.globalData.getAssetsPath(this.assetData);
+ var img = new Image();
+
+ if (this.data.hasMask) {
+ this.imageElem = createNS('image');
+ this.imageElem.setAttribute('width', this.assetData.w + 'px');
+ this.imageElem.setAttribute('height', this.assetData.h + 'px');
+ this.imageElem.setAttributeNS('http://www.w3.org/1999/xlink', 'href', assetPath);
+ this.layerElement.appendChild(this.imageElem);
+ this.baseElement.setAttribute('width', this.assetData.w);
+ this.baseElement.setAttribute('height', this.assetData.h);
+ } else {
+ this.layerElement.appendChild(img);
+ }
+
+ img.crossOrigin = 'anonymous';
+ img.src = assetPath;
+
+ if (this.data.ln) {
+ this.baseElement.setAttribute('id', this.data.ln);
+ }
+ };
+
+ function HybridRendererBase(animationItem, config) {
+ this.animationItem = animationItem;
+ this.layers = null;
+ this.renderedFrame = -1;
+ this.renderConfig = {
+ className: config && config.className || '',
+ imagePreserveAspectRatio: config && config.imagePreserveAspectRatio || 'xMidYMid slice',
+ hideOnTransparent: !(config && config.hideOnTransparent === false),
+ filterSize: {
+ width: config && config.filterSize && config.filterSize.width || '400%',
+ height: config && config.filterSize && config.filterSize.height || '400%',
+ x: config && config.filterSize && config.filterSize.x || '-100%',
+ y: config && config.filterSize && config.filterSize.y || '-100%'
+ }
+ };
+ this.globalData = {
+ _mdf: false,
+ frameNum: -1,
+ renderConfig: this.renderConfig
+ };
+ this.pendingElements = [];
+ this.elements = [];
+ this.threeDElements = [];
+ this.destroyed = false;
+ this.camera = null;
+ this.supports3d = true;
+ this.rendererType = 'html';
+ }
+
+ extendPrototype([BaseRenderer], HybridRendererBase);
+ HybridRendererBase.prototype.buildItem = SVGRenderer.prototype.buildItem;
+
+ HybridRendererBase.prototype.checkPendingElements = function () {
+ while (this.pendingElements.length) {
+ var element = this.pendingElements.pop();
+ element.checkParenting();
+ }
+ };
+
+ HybridRendererBase.prototype.appendElementInPos = function (element, pos) {
+ var newDOMElement = element.getBaseElement();
+
+ if (!newDOMElement) {
+ return;
+ }
+
+ var layer = this.layers[pos];
+
+ if (!layer.ddd || !this.supports3d) {
+ if (this.threeDElements) {
+ this.addTo3dContainer(newDOMElement, pos);
+ } else {
+ var i = 0;
+ var nextDOMElement;
+ var nextLayer;
+ var tmpDOMElement;
+
+ while (i < pos) {
+ if (this.elements[i] && this.elements[i] !== true && this.elements[i].getBaseElement) {
+ nextLayer = this.elements[i];
+ tmpDOMElement = this.layers[i].ddd ? this.getThreeDContainerByPos(i) : nextLayer.getBaseElement();
+ nextDOMElement = tmpDOMElement || nextDOMElement;
+ }
+
+ i += 1;
+ }
+
+ if (nextDOMElement) {
+ if (!layer.ddd || !this.supports3d) {
+ this.layerElement.insertBefore(newDOMElement, nextDOMElement);
+ }
+ } else if (!layer.ddd || !this.supports3d) {
+ this.layerElement.appendChild(newDOMElement);
+ }
+ }
+ } else {
+ this.addTo3dContainer(newDOMElement, pos);
+ }
+ };
+
+ HybridRendererBase.prototype.createShape = function (data) {
+ if (!this.supports3d) {
+ return new SVGShapeElement(data, this.globalData, this);
+ }
+
+ return new HShapeElement(data, this.globalData, this);
+ };
+
+ HybridRendererBase.prototype.createText = function (data) {
+ if (!this.supports3d) {
+ return new SVGTextLottieElement(data, this.globalData, this);
+ }
+
+ return new HTextElement(data, this.globalData, this);
+ };
+
+ HybridRendererBase.prototype.createCamera = function (data) {
+ this.camera = new HCameraElement(data, this.globalData, this);
+ return this.camera;
+ };
+
+ HybridRendererBase.prototype.createImage = function (data) {
+ if (!this.supports3d) {
+ return new IImageElement(data, this.globalData, this);
+ }
+
+ return new HImageElement(data, this.globalData, this);
+ };
+
+ HybridRendererBase.prototype.createSolid = function (data) {
+ if (!this.supports3d) {
+ return new ISolidElement(data, this.globalData, this);
+ }
+
+ return new HSolidElement(data, this.globalData, this);
+ };
+
+ HybridRendererBase.prototype.createNull = SVGRenderer.prototype.createNull;
+
+ HybridRendererBase.prototype.getThreeDContainerByPos = function (pos) {
+ var i = 0;
+ var len = this.threeDElements.length;
+
+ while (i < len) {
+ if (this.threeDElements[i].startPos <= pos && this.threeDElements[i].endPos >= pos) {
+ return this.threeDElements[i].perspectiveElem;
+ }
+
+ i += 1;
+ }
+
+ return null;
+ };
+
+ HybridRendererBase.prototype.createThreeDContainer = function (pos, type) {
+ var perspectiveElem = createTag('div');
+ var style;
+ var containerStyle;
+ styleDiv(perspectiveElem);
+ var container = createTag('div');
+ styleDiv(container);
+
+ if (type === '3d') {
+ style = perspectiveElem.style;
+ style.width = this.globalData.compSize.w + 'px';
+ style.height = this.globalData.compSize.h + 'px';
+ var center = '50% 50%';
+ style.webkitTransformOrigin = center;
+ style.mozTransformOrigin = center;
+ style.transformOrigin = center;
+ containerStyle = container.style;
+ var matrix = 'matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)';
+ containerStyle.transform = matrix;
+ containerStyle.webkitTransform = matrix;
+ }
+
+ perspectiveElem.appendChild(container); // this.resizerElem.appendChild(perspectiveElem);
+
+ var threeDContainerData = {
+ container: container,
+ perspectiveElem: perspectiveElem,
+ startPos: pos,
+ endPos: pos,
+ type: type
+ };
+ this.threeDElements.push(threeDContainerData);
+ return threeDContainerData;
+ };
+
+ HybridRendererBase.prototype.build3dContainers = function () {
+ var i;
+ var len = this.layers.length;
+ var lastThreeDContainerData;
+ var currentContainer = '';
+
+ for (i = 0; i < len; i += 1) {
+ if (this.layers[i].ddd && this.layers[i].ty !== 3) {
+ if (currentContainer !== '3d') {
+ currentContainer = '3d';
+ lastThreeDContainerData = this.createThreeDContainer(i, '3d');
+ }
+
+ lastThreeDContainerData.endPos = Math.max(lastThreeDContainerData.endPos, i);
+ } else {
+ if (currentContainer !== '2d') {
+ currentContainer = '2d';
+ lastThreeDContainerData = this.createThreeDContainer(i, '2d');
+ }
+
+ lastThreeDContainerData.endPos = Math.max(lastThreeDContainerData.endPos, i);
+ }
+ }
+
+ len = this.threeDElements.length;
+
+ for (i = len - 1; i >= 0; i -= 1) {
+ this.resizerElem.appendChild(this.threeDElements[i].perspectiveElem);
+ }
+ };
+
+ HybridRendererBase.prototype.addTo3dContainer = function (elem, pos) {
+ var i = 0;
+ var len = this.threeDElements.length;
+
+ while (i < len) {
+ if (pos <= this.threeDElements[i].endPos) {
+ var j = this.threeDElements[i].startPos;
+ var nextElement;
+
+ while (j < pos) {
+ if (this.elements[j] && this.elements[j].getBaseElement) {
+ nextElement = this.elements[j].getBaseElement();
+ }
+
+ j += 1;
+ }
+
+ if (nextElement) {
+ this.threeDElements[i].container.insertBefore(elem, nextElement);
+ } else {
+ this.threeDElements[i].container.appendChild(elem);
+ }
+
+ break;
+ }
+
+ i += 1;
+ }
+ };
+
+ HybridRendererBase.prototype.configAnimation = function (animData) {
+ var resizerElem = createTag('div');
+ var wrapper = this.animationItem.wrapper;
+ var style = resizerElem.style;
+ style.width = animData.w + 'px';
+ style.height = animData.h + 'px';
+ this.resizerElem = resizerElem;
+ styleDiv(resizerElem);
+ style.transformStyle = 'flat';
+ style.mozTransformStyle = 'flat';
+ style.webkitTransformStyle = 'flat';
+
+ if (this.renderConfig.className) {
+ resizerElem.setAttribute('class', this.renderConfig.className);
+ }
+
+ wrapper.appendChild(resizerElem);
+ style.overflow = 'hidden';
+ var svg = createNS('svg');
+ svg.setAttribute('width', '1');
+ svg.setAttribute('height', '1');
+ styleDiv(svg);
+ this.resizerElem.appendChild(svg);
+ var defs = createNS('defs');
+ svg.appendChild(defs);
+ this.data = animData; // Mask animation
+
+ this.setupGlobalData(animData, svg);
+ this.globalData.defs = defs;
+ this.layers = animData.layers;
+ this.layerElement = this.resizerElem;
+ this.build3dContainers();
+ this.updateContainerSize();
+ };
+
+ HybridRendererBase.prototype.destroy = function () {
+ if (this.animationItem.wrapper) {
+ this.animationItem.wrapper.innerText = '';
+ }
+
+ this.animationItem.container = null;
+ this.globalData.defs = null;
+ var i;
+ var len = this.layers ? this.layers.length : 0;
+
+ for (i = 0; i < len; i += 1) {
+ if (this.elements[i] && this.elements[i].destroy) {
+ this.elements[i].destroy();
+ }
+ }
+
+ this.elements.length = 0;
+ this.destroyed = true;
+ this.animationItem = null;
+ };
+
+ HybridRendererBase.prototype.updateContainerSize = function () {
+ var elementWidth = this.animationItem.wrapper.offsetWidth;
+ var elementHeight = this.animationItem.wrapper.offsetHeight;
+ var elementRel = elementWidth / elementHeight;
+ var animationRel = this.globalData.compSize.w / this.globalData.compSize.h;
+ var sx;
+ var sy;
+ var tx;
+ var ty;
+
+ if (animationRel > elementRel) {
+ sx = elementWidth / this.globalData.compSize.w;
+ sy = elementWidth / this.globalData.compSize.w;
+ tx = 0;
+ ty = (elementHeight - this.globalData.compSize.h * (elementWidth / this.globalData.compSize.w)) / 2;
+ } else {
+ sx = elementHeight / this.globalData.compSize.h;
+ sy = elementHeight / this.globalData.compSize.h;
+ tx = (elementWidth - this.globalData.compSize.w * (elementHeight / this.globalData.compSize.h)) / 2;
+ ty = 0;
+ }
+
+ var style = this.resizerElem.style;
+ style.webkitTransform = 'matrix3d(' + sx + ',0,0,0,0,' + sy + ',0,0,0,0,1,0,' + tx + ',' + ty + ',0,1)';
+ style.transform = style.webkitTransform;
+ };
+
+ HybridRendererBase.prototype.renderFrame = SVGRenderer.prototype.renderFrame;
+
+ HybridRendererBase.prototype.hide = function () {
+ this.resizerElem.style.display = 'none';
+ };
+
+ HybridRendererBase.prototype.show = function () {
+ this.resizerElem.style.display = 'block';
+ };
+
+ HybridRendererBase.prototype.initItems = function () {
+ this.buildAllItems();
+
+ if (this.camera) {
+ this.camera.setup();
+ } else {
+ var cWidth = this.globalData.compSize.w;
+ var cHeight = this.globalData.compSize.h;
+ var i;
+ var len = this.threeDElements.length;
+
+ for (i = 0; i < len; i += 1) {
+ var style = this.threeDElements[i].perspectiveElem.style;
+ style.webkitPerspective = Math.sqrt(Math.pow(cWidth, 2) + Math.pow(cHeight, 2)) + 'px';
+ style.perspective = style.webkitPerspective;
+ }
+ }
+ };
+
+ HybridRendererBase.prototype.searchExtraCompositions = function (assets) {
+ var i;
+ var len = assets.length;
+ var floatingContainer = createTag('div');
+
+ for (i = 0; i < len; i += 1) {
+ if (assets[i].xt) {
+ var comp = this.createComp(assets[i], floatingContainer, this.globalData.comp, null);
+ comp.initExpressions();
+ this.globalData.projectInterface.registerComposition(comp);
+ }
+ }
+ };
+
+ function HCompElement(data, globalData, comp) {
+ this.layers = data.layers;
+ this.supports3d = !data.hasMask;
+ this.completeLayers = false;
+ this.pendingElements = [];
+ this.elements = this.layers ? createSizedArray(this.layers.length) : [];
+ this.initElement(data, globalData, comp);
+ this.tm = data.tm ? PropertyFactory.getProp(this, data.tm, 0, globalData.frameRate, this) : {
+ _placeholder: true
+ };
+ }
+
+ extendPrototype([HybridRendererBase, ICompElement, HBaseElement], HCompElement);
+ HCompElement.prototype._createBaseContainerElements = HCompElement.prototype.createContainerElements;
+
+ HCompElement.prototype.createContainerElements = function () {
+ this._createBaseContainerElements(); // divElement.style.clip = 'rect(0px, '+this.data.w+'px, '+this.data.h+'px, 0px)';
+
+
+ if (this.data.hasMask) {
+ this.svgElement.setAttribute('width', this.data.w);
+ this.svgElement.setAttribute('height', this.data.h);
+ this.transformedElement = this.baseElement;
+ } else {
+ this.transformedElement = this.layerElement;
+ }
+ };
+
+ HCompElement.prototype.addTo3dContainer = function (elem, pos) {
+ var j = 0;
+ var nextElement;
+
+ while (j < pos) {
+ if (this.elements[j] && this.elements[j].getBaseElement) {
+ nextElement = this.elements[j].getBaseElement();
+ }
+
+ j += 1;
+ }
+
+ if (nextElement) {
+ this.layerElement.insertBefore(elem, nextElement);
+ } else {
+ this.layerElement.appendChild(elem);
+ }
+ };
+
+ HCompElement.prototype.createComp = function (data) {
+ if (!this.supports3d) {
+ return new SVGCompElement(data, this.globalData, this);
+ }
+
+ return new HCompElement(data, this.globalData, this);
+ };
+
+ function HybridRenderer(animationItem, config) {
+ this.animationItem = animationItem;
+ this.layers = null;
+ this.renderedFrame = -1;
+ this.renderConfig = {
+ className: config && config.className || '',
+ imagePreserveAspectRatio: config && config.imagePreserveAspectRatio || 'xMidYMid slice',
+ hideOnTransparent: !(config && config.hideOnTransparent === false),
+ filterSize: {
+ width: config && config.filterSize && config.filterSize.width || '400%',
+ height: config && config.filterSize && config.filterSize.height || '400%',
+ x: config && config.filterSize && config.filterSize.x || '-100%',
+ y: config && config.filterSize && config.filterSize.y || '-100%'
+ },
+ runExpressions: !config || config.runExpressions === undefined || config.runExpressions
+ };
+ this.globalData = {
+ _mdf: false,
+ frameNum: -1,
+ renderConfig: this.renderConfig
+ };
+ this.pendingElements = [];
+ this.elements = [];
+ this.threeDElements = [];
+ this.destroyed = false;
+ this.camera = null;
+ this.supports3d = true;
+ this.rendererType = 'html';
+ }
+
+ extendPrototype([HybridRendererBase], HybridRenderer);
+
+ HybridRenderer.prototype.createComp = function (data) {
+ if (!this.supports3d) {
+ return new SVGCompElement(data, this.globalData, this);
+ }
+
+ return new HCompElement(data, this.globalData, this);
+ };
+
+ var CompExpressionInterface = function () {
+ return function (comp) {
+ function _thisLayerFunction(name) {
+ var i = 0;
+ var len = comp.layers.length;
+
+ while (i < len) {
+ if (comp.layers[i].nm === name || comp.layers[i].ind === name) {
+ return comp.elements[i].layerInterface;
+ }
+
+ i += 1;
+ }
+
+ return null; // return {active:false};
+ }
+
+ Object.defineProperty(_thisLayerFunction, '_name', {
+ value: comp.data.nm
+ });
+ _thisLayerFunction.layer = _thisLayerFunction;
+ _thisLayerFunction.pixelAspect = 1;
+ _thisLayerFunction.height = comp.data.h || comp.globalData.compSize.h;
+ _thisLayerFunction.width = comp.data.w || comp.globalData.compSize.w;
+ _thisLayerFunction.pixelAspect = 1;
+ _thisLayerFunction.frameDuration = 1 / comp.globalData.frameRate;
+ _thisLayerFunction.displayStartTime = 0;
+ _thisLayerFunction.numLayers = comp.layers.length;
+ return _thisLayerFunction;
+ };
+ }();
+
+ function _typeof$2(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof$2 = function _typeof(obj) { return typeof obj; }; } else { _typeof$2 = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof$2(obj); }
+
+ /* eslint-disable */
+
+ /*
+ Copyright 2014 David Bau.
+
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+ */
+ function seedRandom(pool, math) {
+ //
+ // The following constants are related to IEEE 754 limits.
+ //
+ var global = this,
+ width = 256,
+ // each RC4 output is 0 <= x < 256
+ chunks = 6,
+ // at least six RC4 outputs for each double
+ digits = 52,
+ // there are 52 significant digits in a double
+ rngname = 'random',
+ // rngname: name for Math.random and Math.seedrandom
+ startdenom = math.pow(width, chunks),
+ significance = math.pow(2, digits),
+ overflow = significance * 2,
+ mask = width - 1,
+ nodecrypto; // node.js crypto module, initialized at the bottom.
+ //
+ // seedrandom()
+ // This is the seedrandom function described above.
+ //
+
+ function seedrandom(seed, options, callback) {
+ var key = [];
+ options = options === true ? {
+ entropy: true
+ } : options || {}; // Flatten the seed string or build one from local entropy if needed.
+
+ var shortseed = mixkey(flatten(options.entropy ? [seed, tostring(pool)] : seed === null ? autoseed() : seed, 3), key); // Use the seed to initialize an ARC4 generator.
+
+ var arc4 = new ARC4(key); // This function returns a random double in [0, 1) that contains
+ // randomness in every bit of the mantissa of the IEEE 754 value.
+
+ var prng = function prng() {
+ var n = arc4.g(chunks),
+ // Start with a numerator n < 2 ^ 48
+ d = startdenom,
+ // and denominator d = 2 ^ 48.
+ x = 0; // and no 'extra last byte'.
+
+ while (n < significance) {
+ // Fill up all significant digits by
+ n = (n + x) * width; // shifting numerator and
+
+ d *= width; // denominator and generating a
+
+ x = arc4.g(1); // new least-significant-byte.
+ }
+
+ while (n >= overflow) {
+ // To avoid rounding up, before adding
+ n /= 2; // last byte, shift everything
+
+ d /= 2; // right using integer math until
+
+ x >>>= 1; // we have exactly the desired bits.
+ }
+
+ return (n + x) / d; // Form the number within [0, 1).
+ };
+
+ prng.int32 = function () {
+ return arc4.g(4) | 0;
+ };
+
+ prng.quick = function () {
+ return arc4.g(4) / 0x100000000;
+ };
+
+ prng["double"] = prng; // Mix the randomness into accumulated entropy.
+
+ mixkey(tostring(arc4.S), pool); // Calling convention: what to return as a function of prng, seed, is_math.
+
+ return (options.pass || callback || function (prng, seed, is_math_call, state) {
+ if (state) {
+ // Load the arc4 state from the given state if it has an S array.
+ if (state.S) {
+ copy(state, arc4);
+ } // Only provide the .state method if requested via options.state.
+
+
+ prng.state = function () {
+ return copy(arc4, {});
+ };
+ } // If called as a method of Math (Math.seedrandom()), mutate
+ // Math.random because that is how seedrandom.js has worked since v1.0.
+
+
+ if (is_math_call) {
+ math[rngname] = prng;
+ return seed;
+ } // Otherwise, it is a newer calling convention, so return the
+ // prng directly.
+ else return prng;
+ })(prng, shortseed, 'global' in options ? options.global : this == math, options.state);
+ }
+
+ math['seed' + rngname] = seedrandom; //
+ // ARC4
+ //
+ // An ARC4 implementation. The constructor takes a key in the form of
+ // an array of at most (width) integers that should be 0 <= x < (width).
+ //
+ // The g(count) method returns a pseudorandom integer that concatenates
+ // the next (count) outputs from ARC4. Its return value is a number x
+ // that is in the range 0 <= x < (width ^ count).
+ //
+
+ function ARC4(key) {
+ var t,
+ keylen = key.length,
+ me = this,
+ i = 0,
+ j = me.i = me.j = 0,
+ s = me.S = []; // The empty key [] is treated as [0].
+
+ if (!keylen) {
+ key = [keylen++];
+ } // Set up S using the standard key scheduling algorithm.
+
+
+ while (i < width) {
+ s[i] = i++;
+ }
+
+ for (i = 0; i < width; i++) {
+ s[i] = s[j = mask & j + key[i % keylen] + (t = s[i])];
+ s[j] = t;
+ } // The "g" method returns the next (count) outputs as one number.
+
+
+ me.g = function (count) {
+ // Using instance members instead of closure state nearly doubles speed.
+ var t,
+ r = 0,
+ i = me.i,
+ j = me.j,
+ s = me.S;
+
+ while (count--) {
+ t = s[i = mask & i + 1];
+ r = r * width + s[mask & (s[i] = s[j = mask & j + t]) + (s[j] = t)];
+ }
+
+ me.i = i;
+ me.j = j;
+ return r; // For robust unpredictability, the function call below automatically
+ // discards an initial batch of values. This is called RC4-drop[256].
+ // See http://google.com/search?q=rsa+fluhrer+response&btnI
+ };
+ } //
+ // copy()
+ // Copies internal state of ARC4 to or from a plain object.
+ //
+
+
+ function copy(f, t) {
+ t.i = f.i;
+ t.j = f.j;
+ t.S = f.S.slice();
+ return t;
+ } //
+ // flatten()
+ // Converts an object tree to nested arrays of strings.
+ //
+
+
+ function flatten(obj, depth) {
+ var result = [],
+ typ = _typeof$2(obj),
+ prop;
+
+ if (depth && typ == 'object') {
+ for (prop in obj) {
+ try {
+ result.push(flatten(obj[prop], depth - 1));
+ } catch (e) {}
+ }
+ }
+
+ return result.length ? result : typ == 'string' ? obj : obj + '\0';
+ } //
+ // mixkey()
+ // Mixes a string seed into a key that is an array of integers, and
+ // returns a shortened string seed that is equivalent to the result key.
+ //
+
+
+ function mixkey(seed, key) {
+ var stringseed = seed + '',
+ smear,
+ j = 0;
+
+ while (j < stringseed.length) {
+ key[mask & j] = mask & (smear ^= key[mask & j] * 19) + stringseed.charCodeAt(j++);
+ }
+
+ return tostring(key);
+ } //
+ // autoseed()
+ // Returns an object for autoseeding, using window.crypto and Node crypto
+ // module if available.
+ //
+
+
+ function autoseed() {
+ try {
+ if (nodecrypto) {
+ return tostring(nodecrypto.randomBytes(width));
+ }
+
+ var out = new Uint8Array(width);
+ (global.crypto || global.msCrypto).getRandomValues(out);
+ return tostring(out);
+ } catch (e) {
+ var browser = global.navigator,
+ plugins = browser && browser.plugins;
+ return [+new Date(), global, plugins, global.screen, tostring(pool)];
+ }
+ } //
+ // tostring()
+ // Converts an array of charcodes to a string
+ //
+
-ITextElement.prototype.canResizeFont = function(_canResize) {
- this.textProperty.canResizeFont(_canResize);
-};
+ function tostring(a) {
+ return String.fromCharCode.apply(0, a);
+ } //
+ // When seedrandom.js is loaded, we immediately mix a few bits
+ // from the built-in RNG into the entropy pool. Because we do
+ // not want to interfere with deterministic PRNG state later,
+ // seedrandom will not call math.random on its own again after
+ // initialization.
+ //
-ITextElement.prototype.setMinimumFontSize = function(_fontSize) {
- this.textProperty.setMinimumFontSize(_fontSize);
-};
-ITextElement.prototype.applyTextPropertiesToMatrix = function(documentData, matrixHelper, lineNumber, xPos, yPos) {
- if(documentData.ps){
- matrixHelper.translate(documentData.ps[0],documentData.ps[1] + documentData.ascent,0);
- }
- matrixHelper.translate(0,-documentData.ls,0);
- switch(documentData.j){
- case 1:
- matrixHelper.translate(documentData.justifyOffset + (documentData.boxWidth - documentData.lineWidths[lineNumber]),0,0);
- break;
- case 2:
- matrixHelper.translate(documentData.justifyOffset + (documentData.boxWidth - documentData.lineWidths[lineNumber] )/2,0,0);
- break;
- }
- matrixHelper.translate(xPos, yPos, 0);
-};
+ mixkey(math.random(), pool); //
+ // Nodejs and AMD support: export the implementation as a module using
+ // either convention.
+ //
+ // End anonymous scope, and pass initial values.
+ }
+ ;
-ITextElement.prototype.buildColor = function(colorData) {
- return 'rgb(' + Math.round(colorData[0]*255) + ',' + Math.round(colorData[1]*255) + ',' + Math.round(colorData[2]*255) + ')';
-};
+ function initialize$2(BMMath) {
+ seedRandom([], BMMath);
+ }
-ITextElement.prototype.emptyProp = new LetterProps();
+ var propTypes = {
+ SHAPE: 'shape'
+ };
-ITextElement.prototype.destroy = function(){
-
-};
-function ICompElement(){}
+ function _typeof$1(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof$1 = function _typeof(obj) { return typeof obj; }; } else { _typeof$1 = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof$1(obj); }
-extendPrototype([BaseElement, TransformElement, HierarchyElement, FrameElement, RenderableDOMElement], ICompElement);
+ var ExpressionManager = function () {
+ 'use strict';
-ICompElement.prototype.initElement = function(data,globalData,comp) {
- this.initFrame();
- this.initBaseData(data, globalData, comp);
- this.initTransform(data, globalData, comp);
- this.initRenderable();
- this.initHierarchy();
- this.initRendererElement();
- this.createContainerElements();
- this.createRenderableComponents();
- if(this.data.xt || !globalData.progressiveLoad){
- this.buildAllItems();
- }
- this.hide();
-};
-
-/*ICompElement.prototype.hide = function(){
- if(!this.hidden){
- this.hideElement();
- var i,len = this.elements.length;
- for( i = 0; i < len; i+=1 ){
- if(this.elements[i]){
- this.elements[i].hide();
- }
- }
- }
-};*/
+ var ob = {};
+ var Math = BMMath;
+ var window = null;
+ var document = null;
+ var XMLHttpRequest = null;
+ var fetch = null;
+ var frames = null;
+ var _lottieGlobal = {};
+ initialize$2(BMMath);
-ICompElement.prototype.prepareFrame = function(num){
- this._mdf = false;
- this.prepareRenderableFrame(num);
- this.prepareProperties(num, this.isInRange);
- if(!this.isInRange && !this.data.xt){
- return;
+ function resetFrame() {
+ _lottieGlobal = {};
}
- if (!this.tm._placeholder) {
- var timeRemapped = this.tm.v;
- if(timeRemapped === this.data.op){
- timeRemapped = this.data.op - 1;
- }
- this.renderedFrame = timeRemapped;
- } else {
- this.renderedFrame = num/this.data.sr;
- }
- var i,len = this.elements.length;
- if(!this.completeLayers){
- this.checkLayers(this.renderedFrame);
- }
- //This iteration needs to be backwards because of how expressions connect between each other
- for( i = len - 1; i >= 0; i -= 1 ){
- if(this.completeLayers || this.elements[i]){
- this.elements[i].prepareFrame(this.renderedFrame - this.layers[i].st);
- if(this.elements[i]._mdf) {
- this._mdf = true;
- }
- }
+ function $bm_isInstanceOfArray(arr) {
+ return arr.constructor === Array || arr.constructor === Float32Array;
}
-};
-ICompElement.prototype.renderInnerContent = function() {
- var i,len = this.layers.length;
- for( i = 0; i < len; i += 1 ){
- if(this.completeLayers || this.elements[i]){
- this.elements[i].renderFrame();
- }
+ function isNumerable(tOfV, v) {
+ return tOfV === 'number' || tOfV === 'boolean' || tOfV === 'string' || v instanceof Number;
}
-};
-ICompElement.prototype.setElements = function(elems){
- this.elements = elems;
-};
+ function $bm_neg(a) {
+ var tOfA = _typeof$1(a);
-ICompElement.prototype.getElements = function(){
- return this.elements;
-};
+ if (tOfA === 'number' || tOfA === 'boolean' || a instanceof Number) {
+ return -a;
+ }
-ICompElement.prototype.destroyElements = function(){
- var i,len = this.layers.length;
- for( i = 0; i < len; i+=1 ){
- if(this.elements[i]){
- this.elements[i].destroy();
- }
- }
-};
+ if ($bm_isInstanceOfArray(a)) {
+ var i;
+ var lenA = a.length;
+ var retArr = [];
-ICompElement.prototype.destroy = function(){
- this.destroyElements();
- this.destroyBaseElement();
-};
+ for (i = 0; i < lenA; i += 1) {
+ retArr[i] = -a[i];
+ }
-function IImageElement(data,globalData,comp){
- this.assetData = globalData.getAssetData(data.refId);
- this.initElement(data,globalData,comp);
- this.sourceRect = {top:0,left:0,width:this.assetData.w,height:this.assetData.h};
-}
+ return retArr;
+ }
-extendPrototype([BaseElement,TransformElement,SVGBaseElement,HierarchyElement,FrameElement,RenderableDOMElement], IImageElement);
+ if (a.propType) {
+ return a.v;
+ }
-IImageElement.prototype.createContent = function(){
+ return -a;
+ }
- var assetPath = this.globalData.getAssetsPath(this.assetData);
+ var easeInBez = BezierFactory.getBezierEasing(0.333, 0, 0.833, 0.833, 'easeIn').get;
+ var easeOutBez = BezierFactory.getBezierEasing(0.167, 0.167, 0.667, 1, 'easeOut').get;
+ var easeInOutBez = BezierFactory.getBezierEasing(0.33, 0, 0.667, 1, 'easeInOut').get;
- this.innerElem = createNS('image');
- this.innerElem.setAttribute('width',this.assetData.w+"px");
- this.innerElem.setAttribute('height',this.assetData.h+"px");
- this.innerElem.setAttribute('preserveAspectRatio',this.assetData.pr || this.globalData.renderConfig.imagePreserveAspectRatio);
- this.innerElem.setAttributeNS('http://www.w3.org/1999/xlink','href',assetPath);
-
- this.layerElement.appendChild(this.innerElem);
-};
+ function sum(a, b) {
+ var tOfA = _typeof$1(a);
-IImageElement.prototype.sourceRectAtTime = function() {
- return this.sourceRect;
-}
-function ISolidElement(data,globalData,comp){
- this.initElement(data,globalData,comp);
-}
-extendPrototype([IImageElement], ISolidElement);
+ var tOfB = _typeof$1(b);
-ISolidElement.prototype.createContent = function(){
+ if (tOfA === 'string' || tOfB === 'string') {
+ return a + b;
+ }
- var rect = createNS('rect');
- ////rect.style.width = this.data.sw;
- ////rect.style.height = this.data.sh;
- ////rect.style.fill = this.data.sc;
- rect.setAttribute('width',this.data.sw);
- rect.setAttribute('height',this.data.sh);
- rect.setAttribute('fill',this.data.sc);
- this.layerElement.appendChild(rect);
-};
-function SVGCompElement(data,globalData,comp){
- this.layers = data.layers;
- this.supports3d = true;
- this.completeLayers = false;
- this.pendingElements = [];
- this.elements = this.layers ? createSizedArray(this.layers.length) : [];
- //this.layerElement = createNS('g');
- this.initElement(data,globalData,comp);
- this.tm = data.tm ? PropertyFactory.getProp(this,data.tm,0,globalData.frameRate,this) : {_placeholder:true};
-}
+ if (isNumerable(tOfA, a) && isNumerable(tOfB, b)) {
+ return a + b;
+ }
-extendPrototype([SVGRenderer, ICompElement, SVGBaseElement], SVGCompElement);
-function SVGTextElement(data,globalData,comp){
- this.textSpans = [];
- this.renderType = 'svg';
- this.initElement(data,globalData,comp);
-}
+ if ($bm_isInstanceOfArray(a) && isNumerable(tOfB, b)) {
+ a = a.slice(0);
+ a[0] += b;
+ return a;
+ }
-extendPrototype([BaseElement,TransformElement,SVGBaseElement,HierarchyElement,FrameElement,RenderableDOMElement,ITextElement], SVGTextElement);
+ if (isNumerable(tOfA, a) && $bm_isInstanceOfArray(b)) {
+ b = b.slice(0);
+ b[0] = a + b[0];
+ return b;
+ }
-SVGTextElement.prototype.createContent = function(){
+ if ($bm_isInstanceOfArray(a) && $bm_isInstanceOfArray(b)) {
+ var i = 0;
+ var lenA = a.length;
+ var lenB = b.length;
+ var retArr = [];
- if (this.data.singleShape && !this.globalData.fontManager.chars) {
- this.textContainer = createNS('text');
- }
-};
+ while (i < lenA || i < lenB) {
+ if ((typeof a[i] === 'number' || a[i] instanceof Number) && (typeof b[i] === 'number' || b[i] instanceof Number)) {
+ retArr[i] = a[i] + b[i];
+ } else {
+ retArr[i] = b[i] === undefined ? a[i] : a[i] || b[i];
+ }
-SVGTextElement.prototype.buildTextContents = function(textArray) {
- var i = 0, len = textArray.length;
- var textContents = [], currentTextContent = '';
- while (i < len) {
- if(textArray[i] === String.fromCharCode(13) || textArray[i] === String.fromCharCode(3)) {
- textContents.push(currentTextContent);
- currentTextContent = '';
- } else {
- currentTextContent += textArray[i];
+ i += 1;
}
- i += 1;
- }
- textContents.push(currentTextContent);
- return textContents;
-}
-SVGTextElement.prototype.buildNewText = function(){
- var i, len;
+ return retArr;
+ }
- var documentData = this.textProperty.currentData;
- this.renderedLetters = createSizedArray(documentData ? documentData.l.length : 0);
- if(documentData.fc) {
- this.layerElement.setAttribute('fill', this.buildColor(documentData.fc));
- }else{
- this.layerElement.setAttribute('fill', 'rgba(0,0,0,0)');
- }
- if(documentData.sc){
- this.layerElement.setAttribute('stroke', this.buildColor(documentData.sc));
- this.layerElement.setAttribute('stroke-width', documentData.sw);
- }
- this.layerElement.setAttribute('font-size', documentData.finalSize);
- var fontData = this.globalData.fontManager.getFontByName(documentData.f);
- if(fontData.fClass){
- this.layerElement.setAttribute('class',fontData.fClass);
- } else {
- this.layerElement.setAttribute('font-family', fontData.fFamily);
- var fWeight = documentData.fWeight, fStyle = documentData.fStyle;
- this.layerElement.setAttribute('font-style', fStyle);
- this.layerElement.setAttribute('font-weight', fWeight);
+ return 0;
}
- this.layerElement.setAttribute('arial-label', documentData.t);
- var letters = documentData.l || [];
- var usesGlyphs = !!this.globalData.fontManager.chars;
- len = letters.length;
+ var add = sum;
- var tSpan;
- var matrixHelper = this.mHelper;
- var shapes, shapeStr = '', singleShape = this.data.singleShape;
- var xPos = 0, yPos = 0, firstLine = true;
- var trackingOffset = documentData.tr/1000*documentData.finalSize;
- if(singleShape && !usesGlyphs && !documentData.sz) {
- var tElement = this.textContainer;
- var justify = 'start';
- switch(documentData.j) {
- case 1:
- justify = 'end';
- break;
- case 2:
- justify = 'middle';
- break;
- }
- tElement.setAttribute('text-anchor',justify);
- tElement.setAttribute('letter-spacing',trackingOffset);
- var textContent = this.buildTextContents(documentData.finalText);
- len = textContent.length;
- yPos = documentData.ps ? documentData.ps[1] + documentData.ascent : 0;
- for ( i = 0; i < len; i += 1) {
- tSpan = this.textSpans[i] || createNS('tspan');
- tSpan.textContent = textContent[i];
- tSpan.setAttribute('x', 0);
- tSpan.setAttribute('y', yPos);
- tSpan.style.display = 'inherit';
- tElement.appendChild(tSpan);
- this.textSpans[i] = tSpan;
- yPos += documentData.finalLineHeight;
- }
-
- this.layerElement.appendChild(tElement);
- } else {
- var cachedSpansLength = this.textSpans.length;
- var shapeData, charData;
- for (i = 0; i < len; i += 1) {
- if(!usesGlyphs || !singleShape || i === 0){
- tSpan = cachedSpansLength > i ? this.textSpans[i] : createNS(usesGlyphs?'path':'text');
- if (cachedSpansLength <= i) {
- tSpan.setAttribute('stroke-linecap', 'butt');
- tSpan.setAttribute('stroke-linejoin','round');
- tSpan.setAttribute('stroke-miterlimit','4');
- this.textSpans[i] = tSpan;
- this.layerElement.appendChild(tSpan);
- }
- tSpan.style.display = 'inherit';
- }
-
- matrixHelper.reset();
- matrixHelper.scale(documentData.finalSize / 100, documentData.finalSize / 100);
- if (singleShape) {
- if(letters[i].n) {
- xPos = -trackingOffset;
- yPos += documentData.yOffset;
- yPos += firstLine ? 1 : 0;
- firstLine = false;
- }
- this.applyTextPropertiesToMatrix(documentData, matrixHelper, letters[i].line, xPos, yPos);
- xPos += letters[i].l || 0;
- //xPos += letters[i].val === ' ' ? 0 : trackingOffset;
- xPos += trackingOffset;
- }
- if(usesGlyphs) {
- charData = this.globalData.fontManager.getCharData(documentData.finalText[i], fontData.fStyle, this.globalData.fontManager.getFontByName(documentData.f).fFamily);
- shapeData = charData && charData.data || {};
- shapes = shapeData.shapes ? shapeData.shapes[0].it : [];
- if(!singleShape){
- tSpan.setAttribute('d',this.createPathShape(matrixHelper,shapes));
- } else {
- shapeStr += this.createPathShape(matrixHelper,shapes);
- }
- } else {
- if(singleShape) {
- tSpan.setAttribute("transform", "translate(" + matrixHelper.props[12] + "," + matrixHelper.props[13] + ")");
- }
- tSpan.textContent = letters[i].val;
- tSpan.setAttributeNS("http://www.w3.org/XML/1998/namespace", "xml:space","preserve");
- }
- //
+ function sub(a, b) {
+ var tOfA = _typeof$1(a);
+
+ var tOfB = _typeof$1(b);
+
+ if (isNumerable(tOfA, a) && isNumerable(tOfB, b)) {
+ if (tOfA === 'string') {
+ a = parseInt(a, 10);
}
- if (singleShape && tSpan) {
- tSpan.setAttribute('d',shapeStr);
+
+ if (tOfB === 'string') {
+ b = parseInt(b, 10);
}
- }
- while (i < this.textSpans.length){
- this.textSpans[i].style.display = 'none';
- i += 1;
- }
-
- this._sizeChanged = true;
-};
-SVGTextElement.prototype.sourceRectAtTime = function(time){
- this.prepareFrame(this.comp.renderedFrame - this.data.st);
- this.renderInnerContent();
- if(this._sizeChanged){
- this._sizeChanged = false;
- var textBox = this.layerElement.getBBox();
- this.bbox = {
- top: textBox.y,
- left: textBox.x,
- width: textBox.width,
- height: textBox.height
- };
- }
- return this.bbox;
-};
+ return a - b;
+ }
-SVGTextElement.prototype.renderInnerContent = function(){
+ if ($bm_isInstanceOfArray(a) && isNumerable(tOfB, b)) {
+ a = a.slice(0);
+ a[0] -= b;
+ return a;
+ }
- if(!this.data.singleShape){
- this.textAnimator.getMeasures(this.textProperty.currentData, this.lettersChangedFlag);
- if(this.lettersChangedFlag || this.textAnimator.lettersChangedFlag){
- this._sizeChanged = true;
- var i,len;
- var renderedLetters = this.textAnimator.renderedLetters;
+ if (isNumerable(tOfA, a) && $bm_isInstanceOfArray(b)) {
+ b = b.slice(0);
+ b[0] = a - b[0];
+ return b;
+ }
- var letters = this.textProperty.currentData.l;
+ if ($bm_isInstanceOfArray(a) && $bm_isInstanceOfArray(b)) {
+ var i = 0;
+ var lenA = a.length;
+ var lenB = b.length;
+ var retArr = [];
- len = letters.length;
- var renderedLetter, textSpan;
- for(i=0;i 1 && areAnimated) {
- this.setShapesAsAnimated(tempShapes);
+ var i;
+ var len;
+
+ if ($bm_isInstanceOfArray(a) && isNumerable(tOfB, b)) {
+ len = a.length;
+ arr = createTypedArray('float32', len);
+
+ for (i = 0; i < len; i += 1) {
+ arr[i] = a[i] * b;
}
- }
-}
-SVGShapeElement.prototype.setShapesAsAnimated = function(shapes){
- var i, len = shapes.length;
- for(i = 0; i < len; i += 1) {
- shapes[i].setAsAnimated();
- }
-}
+ return arr;
+ }
-SVGShapeElement.prototype.createStyleElement = function(data, level){
- //TODO: prevent drawing of hidden styles
- var elementData;
- var styleOb = new SVGStyleData(data, level);
+ if (isNumerable(tOfA, a) && $bm_isInstanceOfArray(b)) {
+ len = b.length;
+ arr = createTypedArray('float32', len);
- var pathElement = styleOb.pElem;
- if(data.ty === 'st') {
- elementData = new SVGStrokeStyleData(this, data, styleOb);
- } else if(data.ty === 'fl') {
- elementData = new SVGFillStyleData(this, data, styleOb);
- } else if(data.ty === 'gf' || data.ty === 'gs') {
- var gradientConstructor = data.ty === 'gf' ? SVGGradientFillStyleData : SVGGradientStrokeStyleData;
- elementData = new gradientConstructor(this, data, styleOb);
- this.globalData.defs.appendChild(elementData.gf);
- if (elementData.maskId) {
- this.globalData.defs.appendChild(elementData.ms);
- this.globalData.defs.appendChild(elementData.of);
- pathElement.setAttribute('mask','url(' + locationHref + '#' + elementData.maskId + ')');
- }
- }
-
- if(data.ty === 'st' || data.ty === 'gs') {
- pathElement.setAttribute('stroke-linecap', this.lcEnum[data.lc] || 'round');
- pathElement.setAttribute('stroke-linejoin',this.ljEnum[data.lj] || 'round');
- pathElement.setAttribute('fill-opacity','0');
- if(data.lj === 1) {
- pathElement.setAttribute('stroke-miterlimit',data.ml);
+ for (i = 0; i < len; i += 1) {
+ arr[i] = a * b[i];
}
- }
- if(data.r === 2) {
- pathElement.setAttribute('fill-rule', 'evenodd');
- }
+ return arr;
+ }
- if(data.ln){
- pathElement.setAttribute('id',data.ln);
- }
- if(data.cl){
- pathElement.setAttribute('class',data.cl);
+ return 0;
}
- if(data.bm){
- pathElement.style['mix-blend-mode'] = getBlendMode(data.bm);
- }
- this.stylesList.push(styleOb);
- this.addToAnimatedContents(data, elementData);
- return elementData;
-};
-SVGShapeElement.prototype.createGroupElement = function(data) {
- var elementData = new ShapeGroupData();
- if(data.ln){
- elementData.gr.setAttribute('id',data.ln);
- }
- if(data.cl){
- elementData.gr.setAttribute('class',data.cl);
- }
- if(data.bm){
- elementData.gr.style['mix-blend-mode'] = getBlendMode(data.bm);
- }
- return elementData;
-};
+ function div(a, b) {
+ var tOfA = _typeof$1(a);
-SVGShapeElement.prototype.createTransformElement = function(data, container) {
- var transformProperty = TransformPropertyFactory.getTransformProperty(this,data,this);
- var elementData = new SVGTransformData(transformProperty, transformProperty.o, container);
- this.addToAnimatedContents(data, elementData);
- return elementData;
-};
+ var tOfB = _typeof$1(b);
-SVGShapeElement.prototype.createShapeElement = function(data, ownTransformers, level) {
- var ty = 4;
- if(data.ty === 'rc'){
- ty = 5;
- }else if(data.ty === 'el'){
- ty = 6;
- }else if(data.ty === 'sr'){
- ty = 7;
- }
- var shapeProperty = ShapePropertyFactory.getShapeProp(this,data,ty,this);
- var elementData = new SVGShapeData(ownTransformers, level, shapeProperty);
- this.shapes.push(elementData);
- this.addShapeToModifiers(elementData);
- this.addToAnimatedContents(data, elementData);
- return elementData;
-};
+ var arr;
-SVGShapeElement.prototype.addToAnimatedContents = function(data, element) {
- var i = 0, len = this.animatedContents.length;
- while(i < len) {
- if(this.animatedContents[i].element === element) {
- return;
- }
- i += 1;
- }
- this.animatedContents.push({
- fn: SVGElementsRenderer.createRenderFunction(data),
- element: element,
- data: data
- });
-};
+ if (isNumerable(tOfA, a) && isNumerable(tOfB, b)) {
+ return a / b;
+ }
-SVGShapeElement.prototype.setElementStyles = function(elementData){
- var arr = elementData.styles;
- var j, jLen = this.stylesList.length;
- for (j = 0; j < jLen; j += 1) {
- if (!this.stylesList[j].closed) {
- arr.push(this.stylesList[j]);
- }
- }
-};
+ var i;
+ var len;
-SVGShapeElement.prototype.reloadShapes = function(){
- this._isFirstFrame = true;
- var i, len = this.itemsData.length;
- for( i = 0; i < len; i += 1) {
- this.prevViewData[i] = this.itemsData[i];
- }
- this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.layerElement, 0, [], true);
- this.filterUniqueShapes();
- len = this.dynamicProperties.length;
- for(i = 0; i < len; i += 1) {
- this.dynamicProperties[i].getValue();
- }
- this.renderModifiers();
-};
+ if ($bm_isInstanceOfArray(a) && isNumerable(tOfB, b)) {
+ len = a.length;
+ arr = createTypedArray('float32', len);
-SVGShapeElement.prototype.searchShapes = function(arr,itemsData,prevViewData,container, level, transformers, render){
- var ownTransformers = [].concat(transformers);
- var i, len = arr.length - 1;
- var j, jLen;
- var ownStyles = [], ownModifiers = [], styleOb, currentTransform, modifier, processedPos;
- for(i=len;i>=0;i-=1){
- processedPos = this.searchProcessedElement(arr[i]);
- if(!processedPos){
- arr[i]._render = render;
- } else {
- itemsData[i] = prevViewData[processedPos - 1];
+ for (i = 0; i < len; i += 1) {
+ arr[i] = a[i] / b;
}
- if(arr[i].ty == 'fl' || arr[i].ty == 'st' || arr[i].ty == 'gf' || arr[i].ty == 'gs'){
- if(!processedPos){
- itemsData[i] = this.createStyleElement(arr[i], level);
- } else {
- itemsData[i].style.closed = false;
- }
- if(arr[i]._render){
- container.appendChild(itemsData[i].style.pElem);
- }
- ownStyles.push(itemsData[i].style);
- }else if(arr[i].ty == 'gr'){
- if(!processedPos){
- itemsData[i] = this.createGroupElement(arr[i]);
- } else {
- jLen = itemsData[i].it.length;
- for(j=0;j max) {
+ var mm = max;
+ max = min;
+ min = mm;
+ }
+
+ return Math.min(Math.max(num, min), max);
}
-};
-SVGShapeElement.prototype.renderShape = function() {
- var i, len = this.animatedContents.length;
- var animatedContent;
- for(i = 0; i < len; i += 1) {
- animatedContent = this.animatedContents[i];
- if((this._isFirstFrame || animatedContent.element._isAnimated) && animatedContent.data !== true) {
- animatedContent.fn(animatedContent.data, animatedContent.element, this._isFirstFrame);
- }
+ function radiansToDegrees(val) {
+ return val / degToRads;
}
-}
-SVGShapeElement.prototype.destroy = function(){
- this.destroyBaseElement();
- this.shapesData = null;
- this.itemsData = null;
-};
+ var radians_to_degrees = radiansToDegrees;
-function SVGTintFilter(filter, filterManager){
- this.filterManager = filterManager;
- var feColorMatrix = createNS('feColorMatrix');
- feColorMatrix.setAttribute('type','matrix');
- feColorMatrix.setAttribute('color-interpolation-filters','linearRGB');
- feColorMatrix.setAttribute('values','0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0');
- feColorMatrix.setAttribute('result','f1');
- filter.appendChild(feColorMatrix);
- feColorMatrix = createNS('feColorMatrix');
- feColorMatrix.setAttribute('type','matrix');
- feColorMatrix.setAttribute('color-interpolation-filters','sRGB');
- feColorMatrix.setAttribute('values','1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0');
- feColorMatrix.setAttribute('result','f2');
- filter.appendChild(feColorMatrix);
- this.matrixFilter = feColorMatrix;
- if(filterManager.effectElements[2].p.v !== 100 || filterManager.effectElements[2].p.k){
- var feMerge = createNS('feMerge');
- filter.appendChild(feMerge);
- var feMergeNode;
- feMergeNode = createNS('feMergeNode');
- feMergeNode.setAttribute('in','SourceGraphic');
- feMerge.appendChild(feMergeNode);
- feMergeNode = createNS('feMergeNode');
- feMergeNode.setAttribute('in','f2');
- feMerge.appendChild(feMergeNode);
+ function degreesToRadians(val) {
+ return val * degToRads;
}
-}
-SVGTintFilter.prototype.renderFrame = function(forceRender){
- if(forceRender || this.filterManager._mdf){
- var colorBlack = this.filterManager.effectElements[0].p.v;
- var colorWhite = this.filterManager.effectElements[1].p.v;
- var opacity = this.filterManager.effectElements[2].p.v/100;
- this.matrixFilter.setAttribute('values',(colorWhite[0]- colorBlack[0])+' 0 0 0 '+ colorBlack[0] +' '+ (colorWhite[1]- colorBlack[1]) +' 0 0 0 '+ colorBlack[1] +' '+ (colorWhite[2]- colorBlack[2]) +' 0 0 0 '+ colorBlack[2] +' 0 0 0 ' + opacity + ' 0');
- }
-};
-function SVGFillFilter(filter, filterManager){
- this.filterManager = filterManager;
- var feColorMatrix = createNS('feColorMatrix');
- feColorMatrix.setAttribute('type','matrix');
- feColorMatrix.setAttribute('color-interpolation-filters','sRGB');
- feColorMatrix.setAttribute('values','1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0');
- filter.appendChild(feColorMatrix);
- this.matrixFilter = feColorMatrix;
-}
-SVGFillFilter.prototype.renderFrame = function(forceRender){
- if(forceRender || this.filterManager._mdf){
- var color = this.filterManager.effectElements[2].p.v;
- var opacity = this.filterManager.effectElements[6].p.v;
- this.matrixFilter.setAttribute('values','0 0 0 0 '+color[0]+' 0 0 0 0 '+color[1]+' 0 0 0 0 '+color[2]+' 0 0 0 '+opacity+' 0');
- }
-};
-function SVGStrokeEffect(elem, filterManager){
- this.initialized = false;
- this.filterManager = filterManager;
- this.elem = elem;
- this.paths = [];
-}
+ var degrees_to_radians = radiansToDegrees;
+ var helperLengthArray = [0, 0, 0, 0, 0, 0];
+
+ function length(arr1, arr2) {
+ if (typeof arr1 === 'number' || arr1 instanceof Number) {
+ arr2 = arr2 || 0;
+ return Math.abs(arr1 - arr2);
+ }
-SVGStrokeEffect.prototype.initialize = function(){
+ if (!arr2) {
+ arr2 = helperLengthArray;
+ }
- var elemChildren = this.elem.layerElement.children || this.elem.layerElement.childNodes;
- var path,groupPath, i, len;
- if(this.filterManager.effectElements[1].p.v === 1){
- len = this.elem.maskManager.masksProperties.length;
- i = 0;
- } else {
- i = this.filterManager.effectElements[0].p.v - 1;
- len = i + 1;
- }
- groupPath = createNS('g');
- groupPath.setAttribute('fill','none');
- groupPath.setAttribute('stroke-linecap','round');
- groupPath.setAttribute('stroke-dashoffset',1);
- for(i;i 0.5 ? d / (2 - max - min) : d / (max + min);
+
+ switch (max) {
+ case r:
+ h = (g - b) / d + (g < b ? 6 : 0);
+ break;
+
+ case g:
+ h = (b - r) / d + 2;
+ break;
+
+ case b:
+ h = (r - g) / d + 4;
+ break;
+
+ default:
+ break;
}
+
+ h /= 6;
+ }
+
+ return [h, s, l, val[3]];
}
-};
-function SVGTritoneFilter(filter, filterManager){
- this.filterManager = filterManager;
- var feColorMatrix = createNS('feColorMatrix');
- feColorMatrix.setAttribute('type','matrix');
- feColorMatrix.setAttribute('color-interpolation-filters','linearRGB');
- feColorMatrix.setAttribute('values','0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0');
- feColorMatrix.setAttribute('result','f1');
- filter.appendChild(feColorMatrix);
- var feComponentTransfer = createNS('feComponentTransfer');
- feComponentTransfer.setAttribute('color-interpolation-filters','sRGB');
- filter.appendChild(feComponentTransfer);
- this.matrixFilter = feComponentTransfer;
- var feFuncR = createNS('feFuncR');
- feFuncR.setAttribute('type','table');
- feComponentTransfer.appendChild(feFuncR);
- this.feFuncR = feFuncR;
- var feFuncG = createNS('feFuncG');
- feFuncG.setAttribute('type','table');
- feComponentTransfer.appendChild(feFuncG);
- this.feFuncG = feFuncG;
- var feFuncB = createNS('feFuncB');
- feFuncB.setAttribute('type','table');
- feComponentTransfer.appendChild(feFuncB);
- this.feFuncB = feFuncB;
-}
-
-SVGTritoneFilter.prototype.renderFrame = function(forceRender){
- if(forceRender || this.filterManager._mdf){
- var color1 = this.filterManager.effectElements[0].p.v;
- var color2 = this.filterManager.effectElements[1].p.v;
- var color3 = this.filterManager.effectElements[2].p.v;
- var tableR = color3[0] + ' ' + color2[0] + ' ' + color1[0];
- var tableG = color3[1] + ' ' + color2[1] + ' ' + color1[1];
- var tableB = color3[2] + ' ' + color2[2] + ' ' + color1[2];
- this.feFuncR.setAttribute('tableValues', tableR);
- this.feFuncG.setAttribute('tableValues', tableG);
- this.feFuncB.setAttribute('tableValues', tableB);
- //var opacity = this.filterManager.effectElements[2].p.v/100;
- //this.matrixFilter.setAttribute('values',(colorWhite[0]- colorBlack[0])+' 0 0 0 '+ colorBlack[0] +' '+ (colorWhite[1]- colorBlack[1]) +' 0 0 0 '+ colorBlack[1] +' '+ (colorWhite[2]- colorBlack[2]) +' 0 0 0 '+ colorBlack[2] +' 0 0 0 ' + opacity + ' 0');
- }
-};
-function SVGProLevelsFilter(filter, filterManager){
- this.filterManager = filterManager;
- var effectElements = this.filterManager.effectElements;
- var feComponentTransfer = createNS('feComponentTransfer');
- var feFuncR, feFuncG, feFuncB;
-
- if(effectElements[10].p.k || effectElements[10].p.v !== 0 || effectElements[11].p.k || effectElements[11].p.v !== 1 || effectElements[12].p.k || effectElements[12].p.v !== 1 || effectElements[13].p.k || effectElements[13].p.v !== 0 || effectElements[14].p.k || effectElements[14].p.v !== 1){
- this.feFuncR = this.createFeFunc('feFuncR', feComponentTransfer);
- }
- if(effectElements[17].p.k || effectElements[17].p.v !== 0 || effectElements[18].p.k || effectElements[18].p.v !== 1 || effectElements[19].p.k || effectElements[19].p.v !== 1 || effectElements[20].p.k || effectElements[20].p.v !== 0 || effectElements[21].p.k || effectElements[21].p.v !== 1){
- this.feFuncG = this.createFeFunc('feFuncG', feComponentTransfer);
- }
- if(effectElements[24].p.k || effectElements[24].p.v !== 0 || effectElements[25].p.k || effectElements[25].p.v !== 1 || effectElements[26].p.k || effectElements[26].p.v !== 1 || effectElements[27].p.k || effectElements[27].p.v !== 0 || effectElements[28].p.k || effectElements[28].p.v !== 1){
- this.feFuncB = this.createFeFunc('feFuncB', feComponentTransfer);
- }
- if(effectElements[31].p.k || effectElements[31].p.v !== 0 || effectElements[32].p.k || effectElements[32].p.v !== 1 || effectElements[33].p.k || effectElements[33].p.v !== 1 || effectElements[34].p.k || effectElements[34].p.v !== 0 || effectElements[35].p.k || effectElements[35].p.v !== 1){
- this.feFuncA = this.createFeFunc('feFuncA', feComponentTransfer);
- }
-
- if(this.feFuncR || this.feFuncG || this.feFuncB || this.feFuncA){
- feComponentTransfer.setAttribute('color-interpolation-filters','sRGB');
- filter.appendChild(feComponentTransfer);
- feComponentTransfer = createNS('feComponentTransfer');
+
+ function hue2rgb(p, q, t) {
+ if (t < 0) t += 1;
+ if (t > 1) t -= 1;
+ if (t < 1 / 6) return p + (q - p) * 6 * t;
+ if (t < 1 / 2) return q;
+ if (t < 2 / 3) return p + (q - p) * (2 / 3 - t) * 6;
+ return p;
}
- if(effectElements[3].p.k || effectElements[3].p.v !== 0 || effectElements[4].p.k || effectElements[4].p.v !== 1 || effectElements[5].p.k || effectElements[5].p.v !== 1 || effectElements[6].p.k || effectElements[6].p.v !== 0 || effectElements[7].p.k || effectElements[7].p.v !== 1){
+ function hslToRgb(val) {
+ var h = val[0];
+ var s = val[1];
+ var l = val[2];
+ var r;
+ var g;
+ var b;
+
+ if (s === 0) {
+ r = l; // achromatic
+
+ b = l; // achromatic
+
+ g = l; // achromatic
+ } else {
+ var q = l < 0.5 ? l * (1 + s) : l + s - l * s;
+ var p = 2 * l - q;
+ r = hue2rgb(p, q, h + 1 / 3);
+ g = hue2rgb(p, q, h);
+ b = hue2rgb(p, q, h - 1 / 3);
+ }
- feComponentTransfer.setAttribute('color-interpolation-filters','sRGB');
- filter.appendChild(feComponentTransfer);
- this.feFuncRComposed = this.createFeFunc('feFuncR', feComponentTransfer);
- this.feFuncGComposed = this.createFeFunc('feFuncG', feComponentTransfer);
- this.feFuncBComposed = this.createFeFunc('feFuncB', feComponentTransfer);
+ return [r, g, b, val[3]];
}
-}
-SVGProLevelsFilter.prototype.createFeFunc = function(type, feComponentTransfer) {
- var feFunc = createNS(type);
- feFunc.setAttribute('type','table');
- feComponentTransfer.appendChild(feFunc);
- return feFunc;
-};
+ function linear(t, tMin, tMax, value1, value2) {
+ if (value1 === undefined || value2 === undefined) {
+ value1 = tMin;
+ value2 = tMax;
+ tMin = 0;
+ tMax = 1;
+ }
-SVGProLevelsFilter.prototype.getTableValue = function(inputBlack, inputWhite, gamma, outputBlack, outputWhite) {
- var cnt = 0;
- var segments = 256;
- var perc;
- var min = Math.min(inputBlack, inputWhite);
- var max = Math.max(inputBlack, inputWhite);
- var table = Array.call(null,{length:segments});
- var colorValue;
- var pos = 0;
- var outputDelta = outputWhite - outputBlack;
- var inputDelta = inputWhite - inputBlack;
- while(cnt <= 256) {
- perc = cnt/256;
- if(perc <= min){
- colorValue = inputDelta < 0 ? outputWhite : outputBlack;
- } else if(perc >= max){
- colorValue = inputDelta < 0 ? outputBlack : outputWhite;
- } else {
- colorValue = (outputBlack + outputDelta * Math.pow((perc - inputBlack) / inputDelta, 1 / gamma));
- }
- table[pos++] = colorValue;
- cnt += 256/(segments-1);
+ if (tMax < tMin) {
+ var _tMin = tMax;
+ tMax = tMin;
+ tMin = _tMin;
+ }
+
+ if (t <= tMin) {
+ return value1;
+ }
+
+ if (t >= tMax) {
+ return value2;
+ }
+
+ var perc = tMax === tMin ? 0 : (t - tMin) / (tMax - tMin);
+
+ if (!value1.length) {
+ return value1 + (value2 - value1) * perc;
+ }
+
+ var i;
+ var len = value1.length;
+ var arr = createTypedArray('float32', len);
+
+ for (i = 0; i < len; i += 1) {
+ arr[i] = value1[i] + (value2[i] - value1[i]) * perc;
+ }
+
+ return arr;
}
- return table.join(' ');
-};
-SVGProLevelsFilter.prototype.renderFrame = function(forceRender){
- if(forceRender || this.filterManager._mdf){
- var val, cnt, perc, bezier;
- var effectElements = this.filterManager.effectElements;
- if(this.feFuncRComposed && (forceRender || effectElements[3].p._mdf || effectElements[4].p._mdf || effectElements[5].p._mdf || effectElements[6].p._mdf || effectElements[7].p._mdf)){
- val = this.getTableValue(effectElements[3].p.v,effectElements[4].p.v,effectElements[5].p.v,effectElements[6].p.v,effectElements[7].p.v);
- this.feFuncRComposed.setAttribute('tableValues',val);
- this.feFuncGComposed.setAttribute('tableValues',val);
- this.feFuncBComposed.setAttribute('tableValues',val);
+ function random(min, max) {
+ if (max === undefined) {
+ if (min === undefined) {
+ min = 0;
+ max = 1;
+ } else {
+ max = min;
+ min = undefined;
}
+ }
+ if (max.length) {
+ var i;
+ var len = max.length;
- if(this.feFuncR && (forceRender || effectElements[10].p._mdf || effectElements[11].p._mdf || effectElements[12].p._mdf || effectElements[13].p._mdf || effectElements[14].p._mdf)){
- val = this.getTableValue(effectElements[10].p.v,effectElements[11].p.v,effectElements[12].p.v,effectElements[13].p.v,effectElements[14].p.v);
- this.feFuncR.setAttribute('tableValues',val);
+ if (!min) {
+ min = createTypedArray('float32', len);
}
- if(this.feFuncG && (forceRender || effectElements[17].p._mdf || effectElements[18].p._mdf || effectElements[19].p._mdf || effectElements[20].p._mdf || effectElements[21].p._mdf)){
- val = this.getTableValue(effectElements[17].p.v,effectElements[18].p.v,effectElements[19].p.v,effectElements[20].p.v,effectElements[21].p.v);
- this.feFuncG.setAttribute('tableValues',val);
- }
+ var arr = createTypedArray('float32', len);
+ var rnd = BMMath.random();
- if(this.feFuncB && (forceRender || effectElements[24].p._mdf || effectElements[25].p._mdf || effectElements[26].p._mdf || effectElements[27].p._mdf || effectElements[28].p._mdf)){
- val = this.getTableValue(effectElements[24].p.v,effectElements[25].p.v,effectElements[26].p.v,effectElements[27].p.v,effectElements[28].p.v);
- this.feFuncB.setAttribute('tableValues',val);
+ for (i = 0; i < len; i += 1) {
+ arr[i] = min[i] + rnd * (max[i] - min[i]);
}
- if(this.feFuncA && (forceRender || effectElements[31].p._mdf || effectElements[32].p._mdf || effectElements[33].p._mdf || effectElements[34].p._mdf || effectElements[35].p._mdf)){
- val = this.getTableValue(effectElements[31].p.v,effectElements[32].p.v,effectElements[33].p.v,effectElements[34].p.v,effectElements[35].p.v);
- this.feFuncA.setAttribute('tableValues',val);
- }
-
+ return arr;
+ }
+
+ if (min === undefined) {
+ min = 0;
+ }
+
+ var rndm = BMMath.random();
+ return min + rndm * (max - min);
}
-};
-function SVGDropShadowEffect(filter, filterManager){
- filter.setAttribute('x','-100%');
- filter.setAttribute('y','-100%');
- filter.setAttribute('width','400%');
- filter.setAttribute('height','400%');
- this.filterManager = filterManager;
- var feGaussianBlur = createNS('feGaussianBlur');
- feGaussianBlur.setAttribute('in','SourceAlpha');
- feGaussianBlur.setAttribute('result','drop_shadow_1');
- feGaussianBlur.setAttribute('stdDeviation','0');
- this.feGaussianBlur = feGaussianBlur;
- filter.appendChild(feGaussianBlur);
+ function createPath(points, inTangents, outTangents, closed) {
+ var i;
+ var len = points.length;
+ var path = shapePool.newElement();
+ path.setPathData(!!closed, len);
+ var arrPlaceholder = [0, 0];
+ var inVertexPoint;
+ var outVertexPoint;
+
+ for (i = 0; i < len; i += 1) {
+ inVertexPoint = inTangents && inTangents[i] ? inTangents[i] : arrPlaceholder;
+ outVertexPoint = outTangents && outTangents[i] ? outTangents[i] : arrPlaceholder;
+ path.setTripleAt(points[i][0], points[i][1], outVertexPoint[0] + points[i][0], outVertexPoint[1] + points[i][1], inVertexPoint[0] + points[i][0], inVertexPoint[1] + points[i][1], i, true);
+ }
- var feOffset = createNS('feOffset');
- feOffset.setAttribute('dx','25');
- feOffset.setAttribute('dy','0');
- feOffset.setAttribute('in','drop_shadow_1');
- feOffset.setAttribute('result','drop_shadow_2');
- this.feOffset = feOffset;
- filter.appendChild(feOffset);
- var feFlood = createNS('feFlood');
- feFlood.setAttribute('flood-color','#00ff00');
- feFlood.setAttribute('flood-opacity','1');
- feFlood.setAttribute('result','drop_shadow_3');
- this.feFlood = feFlood;
- filter.appendChild(feFlood);
+ return path;
+ }
- var feComposite = createNS('feComposite');
- feComposite.setAttribute('in','drop_shadow_3');
- feComposite.setAttribute('in2','drop_shadow_2');
- feComposite.setAttribute('operator','in');
- feComposite.setAttribute('result','drop_shadow_4');
- filter.appendChild(feComposite);
+ function initiateExpression(elem, data, property) {
+ // Bail out if we don't want expressions
+ function noOp(_value) {
+ return _value;
+ }
+ if (!elem.globalData.renderConfig.runExpressions) {
+ return noOp;
+ }
- var feMerge = createNS('feMerge');
- filter.appendChild(feMerge);
- var feMergeNode;
- feMergeNode = createNS('feMergeNode');
- feMerge.appendChild(feMergeNode);
- feMergeNode = createNS('feMergeNode');
- feMergeNode.setAttribute('in','SourceGraphic');
- this.feMergeNode = feMergeNode;
- this.feMerge = feMerge;
- this.originalNodeAdded = false;
- feMerge.appendChild(feMergeNode);
-}
-
-SVGDropShadowEffect.prototype.renderFrame = function(forceRender){
- if(forceRender || this.filterManager._mdf){
- if(forceRender || this.filterManager.effectElements[4].p._mdf){
- this.feGaussianBlur.setAttribute('stdDeviation', this.filterManager.effectElements[4].p.v / 4);
- }
- if(forceRender || this.filterManager.effectElements[0].p._mdf){
- var col = this.filterManager.effectElements[0].p.v;
- this.feFlood.setAttribute('flood-color',rgbToHex(Math.round(col[0]*255),Math.round(col[1]*255),Math.round(col[2]*255)));
- }
- if(forceRender || this.filterManager.effectElements[1].p._mdf){
- this.feFlood.setAttribute('flood-opacity',this.filterManager.effectElements[1].p.v/255);
- }
- if(forceRender || this.filterManager.effectElements[2].p._mdf || this.filterManager.effectElements[3].p._mdf){
- var distance = this.filterManager.effectElements[3].p.v;
- var angle = (this.filterManager.effectElements[2].p.v - 90) * degToRads;
- var x = distance * Math.cos(angle);
- var y = distance * Math.sin(angle);
- this.feOffset.setAttribute('dx', x);
- this.feOffset.setAttribute('dy', y);
- }
- /*if(forceRender || this.filterManager.effectElements[5].p._mdf){
- if(this.filterManager.effectElements[5].p.v === 1 && this.originalNodeAdded) {
- this.feMerge.removeChild(this.feMergeNode);
- this.originalNodeAdded = false;
- } else if(this.filterManager.effectElements[5].p.v === 0 && !this.originalNodeAdded) {
- this.feMerge.appendChild(this.feMergeNode);
- this.originalNodeAdded = true;
- }
- }*/
- }
-};
-var _svgMatteSymbols = [];
+ var val = data.x;
+ var needsVelocity = /velocity(?![\w\d])/.test(val);
+
+ var _needsRandom = val.indexOf('random') !== -1;
+
+ var elemType = elem.data.ty;
+ var transform;
+ var $bm_transform;
+ var content;
+ var effect;
+ var thisProperty = property;
+ thisProperty.valueAtTime = thisProperty.getValueAtTime;
+ Object.defineProperty(thisProperty, 'value', {
+ get: function get() {
+ return thisProperty.v;
+ }
+ });
+ elem.comp.frameDuration = 1 / elem.comp.globalData.frameRate;
+ elem.comp.displayStartTime = 0;
+ var inPoint = elem.data.ip / elem.comp.globalData.frameRate;
+ var outPoint = elem.data.op / elem.comp.globalData.frameRate;
+ var width = elem.data.sw ? elem.data.sw : 0;
+ var height = elem.data.sh ? elem.data.sh : 0;
+ var name = elem.data.nm;
+ var loopIn;
+ var loop_in;
+ var loopOut;
+ var loop_out;
+ var smooth;
+ var toWorld;
+ var fromWorld;
+ var fromComp;
+ var toComp;
+ var fromCompToSurface;
+ var position;
+ var rotation;
+ var anchorPoint;
+ var scale;
+ var thisLayer;
+ var thisComp;
+ var mask;
+ var valueAtTime;
+ var velocityAtTime;
+ var scoped_bm_rt; // val = val.replace(/(\\?"|')((http)(s)?(:\/))?\/.*?(\\?"|')/g, "\"\""); // deter potential network calls
+
+ var expression_function = eval('[function _expression_function(){' + val + ';scoped_bm_rt=$bm_rt}]')[0]; // eslint-disable-line no-eval
+
+ var numKeys = property.kf ? data.k.length : 0;
+ var active = !this.data || this.data.hd !== true;
+
+ var wiggle = function wiggle(freq, amp) {
+ var iWiggle;
+ var j;
+ var lenWiggle = this.pv.length ? this.pv.length : 1;
+ var addedAmps = createTypedArray('float32', lenWiggle);
+ freq = 5;
+ var iterations = Math.floor(time * freq);
+ iWiggle = 0;
+ j = 0;
-function SVGMatte3Effect(filterElem, filterManager, elem){
- this.initialized = false;
- this.filterManager = filterManager;
- this.filterElem = filterElem;
- this.elem = elem;
- elem.matteElement = createNS('g');
- elem.matteElement.appendChild(elem.layerElement);
- elem.matteElement.appendChild(elem.transformedElement);
- elem.baseElement = elem.matteElement;
-}
+ while (iWiggle < iterations) {
+ // var rnd = BMMath.random();
+ for (j = 0; j < lenWiggle; j += 1) {
+ addedAmps[j] += -amp + amp * 2 * BMMath.random(); // addedAmps[j] += -amp + amp*2*rnd;
+ }
-SVGMatte3Effect.prototype.findSymbol = function(mask) {
- var i = 0, len = _svgMatteSymbols.length;
- while(i < len) {
- if(_svgMatteSymbols[i] === mask) {
- return _svgMatteSymbols[i];
- }
- i += 1;
- }
- return null;
-};
+ iWiggle += 1;
+ } // var rnd2 = BMMath.random();
-SVGMatte3Effect.prototype.replaceInParent = function(mask, symbolId) {
- var parentNode = mask.layerElement.parentNode;
- if(!parentNode) {
- return;
- }
- var children = parentNode.children;
- var i = 0, len = children.length;
- while (i < len) {
- if (children[i] === mask.layerElement) {
- break;
+
+ var periods = time * freq;
+ var perc = periods - Math.floor(periods);
+ var arr = createTypedArray('float32', lenWiggle);
+
+ if (lenWiggle > 1) {
+ for (j = 0; j < lenWiggle; j += 1) {
+ arr[j] = this.pv[j] + addedAmps[j] + (-amp + amp * 2 * BMMath.random()) * perc; // arr[j] = this.pv[j] + addedAmps[j] + (-amp + amp*2*rnd)*perc;
+ // arr[i] = this.pv[i] + addedAmp + amp1*perc + amp2*(1-perc);
+ }
+
+ return arr;
}
- i += 1;
- }
- var nextChild;
- if (i <= len - 2) {
- nextChild = children[i + 1];
- }
- var useElem = createNS('use');
- useElem.setAttribute('href', '#' + symbolId);
- if(nextChild) {
- parentNode.insertBefore(useElem, nextChild);
- } else {
- parentNode.appendChild(useElem);
- }
-};
-
-SVGMatte3Effect.prototype.setElementAsMask = function(elem, mask) {
- if(!this.findSymbol(mask)) {
- var symbolId = createElementID();
- var masker = createNS('mask');
- masker.setAttribute('id', mask.layerId);
- masker.setAttribute('mask-type', 'alpha');
- _svgMatteSymbols.push(mask);
- var defs = elem.globalData.defs;
- defs.appendChild(masker);
- var symbol = createNS('symbol');
- symbol.setAttribute('id', symbolId);
- this.replaceInParent(mask, symbolId);
- symbol.appendChild(mask.layerElement);
- defs.appendChild(symbol);
- var useElem = createNS('use');
- useElem.setAttribute('href', '#' + symbolId);
- masker.appendChild(useElem);
- mask.data.hd = false;
- mask.show();
- }
- elem.setMatte(mask.layerId);
-};
-SVGMatte3Effect.prototype.initialize = function() {
- var ind = this.filterManager.effectElements[0].p.v;
- var elements = this.elem.comp.elements;
- var i = 0, len = elements.length;
- while (i < len) {
- if (elements[i] && elements[i].data.ind === ind) {
- this.setElementAsMask(this.elem, elements[i]);
- }
- i += 1;
- }
- this.initialized = true;
-};
-
-SVGMatte3Effect.prototype.renderFrame = function() {
- if(!this.initialized) {
- this.initialize();
- }
-};
-function SVGEffects(elem){
- var i, len = elem.data.ef ? elem.data.ef.length : 0;
- var filId = createElementID();
- var fil = filtersFactory.createFilter(filId);
- var count = 0;
- this.filters = [];
- var filterManager;
- for(i=0;i 1) {
+ t = 1;
+ } else if (t < 0) {
+ t = 0;
}
- },
- destroy: function(){
- this.canvasContext = null;
- this.data = null;
- this.globalData = null;
- this.maskManager.destroy();
- },
- mHelper: new Matrix()
-};
-CVBaseElement.prototype.hide = CVBaseElement.prototype.hideElement;
-CVBaseElement.prototype.show = CVBaseElement.prototype.showElement;
-function CVImageElement(data, globalData, comp){
- this.failed = false;
- this.assetData = globalData.getAssetData(data.refId);
- this.img = globalData.imageLoader.getImage(this.assetData);
- this.initElement(data,globalData,comp);
-}
-extendPrototype([BaseElement, TransformElement, CVBaseElement, HierarchyElement, FrameElement, RenderableElement], CVImageElement);
+ var mult = fn(t);
+
+ if ($bm_isInstanceOfArray(val1)) {
+ var iKey;
+ var lenKey = val1.length;
+ var arr = createTypedArray('float32', lenKey);
+
+ for (iKey = 0; iKey < lenKey; iKey += 1) {
+ arr[iKey] = (val2[iKey] - val1[iKey]) * mult + val1[iKey];
+ }
-CVImageElement.prototype.initElement = SVGShapeElement.prototype.initElement;
-CVImageElement.prototype.prepareFrame = IImageElement.prototype.prepareFrame;
+ return arr;
+ }
-CVImageElement.prototype.createContent = function(){
+ return (val2 - val1) * mult + val1;
+ }
- if (this.img.width && (this.assetData.w !== this.img.width || this.assetData.h !== this.img.height)) {
- var canvas = createTag('canvas');
- canvas.width = this.assetData.w;
- canvas.height = this.assetData.h;
- var ctx = canvas.getContext('2d');
-
- var imgW = this.img.width;
- var imgH = this.img.height;
- var imgRel = imgW / imgH;
- var canvasRel = this.assetData.w/this.assetData.h;
- var widthCrop, heightCrop;
- var par = this.assetData.pr || this.globalData.renderConfig.imagePreserveAspectRatio;
- if((imgRel > canvasRel && par === 'xMidYMid slice') || (imgRel < canvasRel && par !== 'xMidYMid slice')) {
- heightCrop = imgH;
- widthCrop = heightCrop*canvasRel;
+ function nearestKey(time) {
+ var iKey;
+ var lenKey = data.k.length;
+ var index;
+ var keyTime;
+
+ if (!data.k.length || typeof data.k[0] === 'number') {
+ index = 0;
+ keyTime = 0;
} else {
- widthCrop = imgW;
- heightCrop = widthCrop/canvasRel;
+ index = -1;
+ time *= elem.comp.globalData.frameRate;
+
+ if (time < data.k[0].t) {
+ index = 1;
+ keyTime = data.k[0].t;
+ } else {
+ for (iKey = 0; iKey < lenKey - 1; iKey += 1) {
+ if (time === data.k[iKey].t) {
+ index = iKey + 1;
+ keyTime = data.k[iKey].t;
+ break;
+ } else if (time > data.k[iKey].t && time < data.k[iKey + 1].t) {
+ if (time - data.k[iKey].t > data.k[iKey + 1].t - time) {
+ index = iKey + 2;
+ keyTime = data.k[iKey + 1].t;
+ } else {
+ index = iKey + 1;
+ keyTime = data.k[iKey].t;
+ }
+
+ break;
+ }
+ }
+
+ if (index === -1) {
+ index = iKey + 1;
+ keyTime = data.k[iKey].t;
+ }
+ }
}
- ctx.drawImage(this.img,(imgW-widthCrop)/2,(imgH-heightCrop)/2,widthCrop,heightCrop,0,0,this.assetData.w,this.assetData.h);
- this.img = canvas;
- }
-};
+ var obKey = {};
+ obKey.index = index;
+ obKey.time = keyTime / elem.comp.globalData.frameRate;
+ return obKey;
+ }
-CVImageElement.prototype.renderInnerContent = function(parentMatrix){
- if (this.failed) {
- return;
- }
- this.canvasContext.drawImage(this.img, 0, 0);
-};
+ function key(ind) {
+ var obKey;
+ var iKey;
+ var lenKey;
-CVImageElement.prototype.destroy = function(){
- this.img = null;
-};
-function CVCompElement(data, globalData, comp) {
- this.completeLayers = false;
- this.layers = data.layers;
- this.pendingElements = [];
- this.elements = createSizedArray(this.layers.length);
- this.initElement(data, globalData, comp);
- this.tm = data.tm ? PropertyFactory.getProp(this,data.tm,0,globalData.frameRate, this) : {_placeholder:true};
-}
+ if (!data.k.length || typeof data.k[0] === 'number') {
+ throw new Error('The property has no keyframe at index ' + ind);
+ }
-extendPrototype([CanvasRenderer, ICompElement, CVBaseElement], CVCompElement);
+ ind -= 1;
+ obKey = {
+ time: data.k[ind].t / elem.comp.globalData.frameRate,
+ value: []
+ };
+ var arr = Object.prototype.hasOwnProperty.call(data.k[ind], 's') ? data.k[ind].s : data.k[ind - 1].e;
+ lenKey = arr.length;
-CVCompElement.prototype.renderInnerContent = function() {
- var i,len = this.layers.length;
- for( i = len - 1; i >= 0; i -= 1 ){
- if(this.completeLayers || this.elements[i]){
- this.elements[i].renderFrame();
+ for (iKey = 0; iKey < lenKey; iKey += 1) {
+ obKey[iKey] = arr[iKey];
+ obKey.value[iKey] = arr[iKey];
}
- }
-};
-CVCompElement.prototype.destroy = function(){
- var i,len = this.layers.length;
- for( i = len - 1; i >= 0; i -= 1 ){
- if(this.elements[i]) {
- this.elements[i].destroy();
+ return obKey;
+ }
+
+ function framesToTime(fr, fps) {
+ if (!fps) {
+ fps = elem.comp.globalData.frameRate;
}
- }
- this.layers = null;
- this.elements = null;
-};
-function CVMaskElement(data,element){
- this.data = data;
- this.element = element;
- this.masksProperties = this.data.masksProperties || [];
- this.viewData = createSizedArray(this.masksProperties.length);
- var i, len = this.masksProperties.length, hasMasks = false;
- for (i = 0; i < len; i++) {
- if(this.masksProperties[i].mode !== 'n'){
- hasMasks = true;
+ return fr / fps;
+ }
+
+ function timeToFrames(t, fps) {
+ if (!t && t !== 0) {
+ t = time;
}
- this.viewData[i] = ShapePropertyFactory.getShapeProp(this.element,this.masksProperties[i],3);
- }
- this.hasMasks = hasMasks;
- if(hasMasks) {
- this.element.addRenderableComponent(this);
- }
-}
-CVMaskElement.prototype.renderFrame = function () {
- if(!this.hasMasks){
- return;
- }
- var transform = this.element.finalTransform.mat;
- var ctx = this.element.canvasContext;
- var i, len = this.masksProperties.length;
- var pt,pts,data;
- ctx.beginPath();
- for (i = 0; i < len; i++) {
- if(this.masksProperties[i].mode !== 'n'){
- if (this.masksProperties[i].inv) {
- ctx.moveTo(0, 0);
- ctx.lineTo(this.element.globalData.compSize.w, 0);
- ctx.lineTo(this.element.globalData.compSize.w, this.element.globalData.compSize.h);
- ctx.lineTo(0, this.element.globalData.compSize.h);
- ctx.lineTo(0, 0);
- }
- data = this.viewData[i].v;
- pt = transform.applyToPointArray(data.v[0][0],data.v[0][1],0);
- ctx.moveTo(pt[0], pt[1]);
- var j, jLen = data._length;
- for (j = 1; j < jLen; j++) {
- pts = transform.applyToTriplePoints(data.o[j - 1], data.i[j], data.v[j]);
- ctx.bezierCurveTo(pts[0], pts[1], pts[2], pts[3], pts[4], pts[5]);
- }
- pts = transform.applyToTriplePoints(data.o[j - 1], data.i[0], data.v[0]);
- ctx.bezierCurveTo(pts[0], pts[1], pts[2], pts[3], pts[4], pts[5]);
+ if (!fps) {
+ fps = elem.comp.globalData.frameRate;
}
- }
- this.element.globalData.renderer.save(true);
- ctx.clip();
-};
-CVMaskElement.prototype.getMaskProperty = MaskElement.prototype.getMaskProperty;
+ return t * fps;
+ }
-CVMaskElement.prototype.destroy = function(){
- this.element = null;
-};
-function CVShapeElement(data, globalData, comp) {
- this.shapes = [];
- this.shapesData = data.shapes;
- this.stylesList = [];
- this.itemsData = [];
- this.prevViewData = [];
- this.shapeModifiers = [];
- this.processedElements = [];
- this.transformsManager = new ShapeTransformManager();
- this.initElement(data, globalData, comp);
-}
+ function seedRandom(seed) {
+ BMMath.seedrandom(randSeed + seed);
+ }
-extendPrototype([BaseElement,TransformElement,CVBaseElement,IShapeElement,HierarchyElement,FrameElement,RenderableElement], CVShapeElement);
+ function sourceRectAtTime() {
+ return elem.sourceRectAtTime();
+ }
-CVShapeElement.prototype.initElement = RenderableDOMElement.prototype.initElement;
+ function substring(init, end) {
+ if (typeof value === 'string') {
+ if (end === undefined) {
+ return value.substring(init);
+ }
-CVShapeElement.prototype.transformHelper = {opacity:1,_opMdf:false};
+ return value.substring(init, end);
+ }
-CVShapeElement.prototype.dashResetter = [];
+ return '';
+ }
-CVShapeElement.prototype.createContent = function(){
- this.searchShapes(this.shapesData,this.itemsData,this.prevViewData, true, []);
-};
+ function substr(init, end) {
+ if (typeof value === 'string') {
+ if (end === undefined) {
+ return value.substr(init);
+ }
-CVShapeElement.prototype.createStyleElement = function(data, transforms) {
- var styleElem = {
- data: data,
- type: data.ty,
- preTransforms: this.transformsManager.addTransformSequence(transforms),
- transforms: [],
- elements: [],
- closed: data.hd === true
- };
- var elementData = {};
- if(data.ty == 'fl' || data.ty == 'st'){
- elementData.c = PropertyFactory.getProp(this,data.c,1,255,this);
- if(!elementData.c.k){
- styleElem.co = 'rgb('+bm_floor(elementData.c.v[0])+','+bm_floor(elementData.c.v[1])+','+bm_floor(elementData.c.v[2])+')';
+ return value.substr(init, end);
}
- } else if (data.ty === 'gf' || data.ty === 'gs') {
- elementData.s = PropertyFactory.getProp(this,data.s,1,null,this);
- elementData.e = PropertyFactory.getProp(this,data.e,1,null,this);
- elementData.h = PropertyFactory.getProp(this,data.h||{k:0},0,0.01,this);
- elementData.a = PropertyFactory.getProp(this,data.a||{k:0},0,degToRads,this);
- elementData.g = new GradientProperty(this,data.g,this);
- }
- elementData.o = PropertyFactory.getProp(this,data.o,0,0.01,this);
- if(data.ty == 'st' || data.ty == 'gs') {
- styleElem.lc = this.lcEnum[data.lc] || 'round';
- styleElem.lj = this.ljEnum[data.lj] || 'round';
- if(data.lj == 1) {
- styleElem.ml = data.ml;
- }
- elementData.w = PropertyFactory.getProp(this,data.w,0,null,this);
- if(!elementData.w.k){
- styleElem.wi = elementData.w.v;
- }
- if(data.d){
- var d = new DashProperty(this,data.d,'canvas', this);
- elementData.d = d;
- if(!elementData.d.k){
- styleElem.da = elementData.d.dashArray;
- styleElem.do = elementData.d.dashoffset[0];
- }
- }
- } else {
- styleElem.r = data.r === 2 ? 'evenodd' : 'nonzero';
- }
- this.stylesList.push(styleElem);
- elementData.style = styleElem;
- return elementData;
-};
-CVShapeElement.prototype.createGroupElement = function(data) {
- var elementData = {
- it: [],
- prevViewData: []
- };
- return elementData;
-};
+ return '';
+ }
-CVShapeElement.prototype.createTransformElement = function(data) {
- var elementData = {
- transform : {
- opacity: 1,
- _opMdf:false,
- key: this.transformsManager.getNewKey(),
- op: PropertyFactory.getProp(this,data.o,0,0.01,this),
- mProps: TransformPropertyFactory.getTransformProperty(this,data,this)
- }
- };
- return elementData;
-};
+ function posterizeTime(framesPerSecond) {
+ time = framesPerSecond === 0 ? 0 : Math.floor(time * framesPerSecond) / framesPerSecond;
+ value = valueAtTime(time);
+ }
-CVShapeElement.prototype.createShapeElement = function(data) {
- var elementData = new CVShapeData(this, data, this.stylesList, this.transformsManager);
-
- this.shapes.push(elementData);
- this.addShapeToModifiers(elementData);
- return elementData;
-};
+ var time;
+ var velocity;
+ var value;
+ var text;
+ var textIndex;
+ var textTotal;
+ var selectorValue;
+ var index = elem.data.ind;
+ var hasParent = !!(elem.hierarchy && elem.hierarchy.length);
+ var parent;
+ var randSeed = Math.floor(Math.random() * 1000000);
+ var globalData = elem.globalData;
-CVShapeElement.prototype.reloadShapes = function() {
- this._isFirstFrame = true;
- var i, len = this.itemsData.length;
- for (i = 0; i < len; i += 1) {
- this.prevViewData[i] = this.itemsData[i];
- }
- this.searchShapes(this.shapesData,this.itemsData,this.prevViewData, true, []);
- len = this.dynamicProperties.length;
- for (i = 0; i < len; i += 1) {
- this.dynamicProperties[i].getValue();
- }
- this.renderModifiers();
- this.transformsManager.processSequences(this._isFirstFrame);
-};
+ function executeExpression(_value) {
+ // globalData.pushExpression();
+ value = _value;
-CVShapeElement.prototype.addTransformToStyleList = function(transform) {
- var i, len = this.stylesList.length;
- for (i = 0; i < len; i += 1) {
- if(!this.stylesList[i].closed) {
- this.stylesList[i].transforms.push(transform);
+ if (this.frameExpressionId === elem.globalData.frameId && this.propType !== 'textSelector') {
+ return value;
}
- }
-}
-CVShapeElement.prototype.removeTransformFromStyleList = function() {
- var i, len = this.stylesList.length;
- for (i = 0; i < len; i += 1) {
- if(!this.stylesList[i].closed) {
- this.stylesList[i].transforms.pop();
+ if (this.propType === 'textSelector') {
+ textIndex = this.textIndex;
+ textTotal = this.textTotal;
+ selectorValue = this.selectorValue;
}
- }
-}
-
-CVShapeElement.prototype.closeStyles = function(styles) {
- var i, len = styles.length, j, jLen;
- for (i = 0; i < len; i += 1) {
- styles[i].closed = true;
- }
-}
-CVShapeElement.prototype.searchShapes = function(arr,itemsData, prevViewData, shouldRender, transforms){
- var i, len = arr.length - 1;
- var j, jLen;
- var ownStyles = [], ownModifiers = [], processedPos, modifier, currentTransform;
- var ownTransforms = [].concat(transforms);
- for(i=len;i>=0;i-=1){
- processedPos = this.searchProcessedElement(arr[i]);
- if(!processedPos){
- arr[i]._shouldRender = shouldRender;
- } else {
- itemsData[i] = prevViewData[processedPos - 1];
+ if (!thisLayer) {
+ text = elem.layerInterface.text;
+ thisLayer = elem.layerInterface;
+ thisComp = elem.comp.compInterface;
+ toWorld = thisLayer.toWorld.bind(thisLayer);
+ fromWorld = thisLayer.fromWorld.bind(thisLayer);
+ fromComp = thisLayer.fromComp.bind(thisLayer);
+ toComp = thisLayer.toComp.bind(thisLayer);
+ mask = thisLayer.mask ? thisLayer.mask.bind(thisLayer) : null;
+ fromCompToSurface = fromComp;
}
- if(arr[i].ty == 'fl' || arr[i].ty == 'st'|| arr[i].ty == 'gf'|| arr[i].ty == 'gs'){
- if(!processedPos){
- itemsData[i] = this.createStyleElement(arr[i], ownTransforms);
- } else {
- itemsData[i].style.closed = false;
- }
-
- ownStyles.push(itemsData[i].style);
- }else if(arr[i].ty == 'gr'){
- if(!processedPos){
- itemsData[i] = this.createGroupElement(arr[i]);
- } else {
- jLen = itemsData[i].it.length;
- for(j=0;j=0;i-=1){
- if(items[i].ty == 'tr'){
- groupTransform = data[i].transform;
- this.renderShapeTransform(parentTransform, groupTransform);
- }else if(items[i].ty == 'sh' || items[i].ty == 'el' || items[i].ty == 'rc' || items[i].ty == 'sr'){
- this.renderPath(items[i],data[i]);
- }else if(items[i].ty == 'fl'){
- this.renderFill(items[i],data[i],groupTransform);
- }else if(items[i].ty == 'st'){
- this.renderStroke(items[i],data[i],groupTransform);
- }else if(items[i].ty == 'gf' || items[i].ty == 'gs'){
- this.renderGradientFill(items[i],data[i],groupTransform);
- }else if(items[i].ty == 'gr'){
- this.renderShape(groupTransform,items[i].it,data[i].it);
- }else if(items[i].ty == 'tm'){
- //
- }
- }
- if(isMain){
- this.drawLayer();
- }
-
-};
-
-CVShapeElement.prototype.renderStyledShape = function(styledShape, shape){
- if(this._isFirstFrame || shape._mdf || styledShape.transforms._mdf) {
- var shapeNodes = styledShape.trNodes;
- var paths = shape.paths;
- var i, len, j, jLen = paths._length;
- shapeNodes.length = 0;
- var groupTransformMat = styledShape.transforms.finalTransform;
- for (j = 0; j < jLen; j += 1) {
- var pathNodes = paths.shapes[j];
- if(pathNodes && pathNodes.v){
- len = pathNodes._length;
- for (i = 1; i < len; i += 1) {
- if (i === 1) {
- shapeNodes.push({
- t: 'm',
- p: groupTransformMat.applyToPointArray(pathNodes.v[0][0], pathNodes.v[0][1], 0)
- });
- }
- shapeNodes.push({
- t: 'c',
- pts: groupTransformMat.applyToTriplePoints(pathNodes.o[i - 1], pathNodes.i[i], pathNodes.v[i])
- });
- }
- if (len === 1) {
- shapeNodes.push({
- t: 'm',
- p: groupTransformMat.applyToPointArray(pathNodes.v[0][0], pathNodes.v[0][1], 0)
- });
- }
- if (pathNodes.c && len) {
- shapeNodes.push({
- t: 'c',
- pts: groupTransformMat.applyToTriplePoints(pathNodes.o[i - 1], pathNodes.i[0], pathNodes.v[0])
- });
- shapeNodes.push({
- t: 'z'
- });
- }
- }
+ ob.initiateExpression = initiateExpression;
+ ob.__preventDeadCodeRemoval = [window, document, XMLHttpRequest, fetch, frames, $bm_neg, add, $bm_sum, $bm_sub, $bm_mul, $bm_div, $bm_mod, clamp, radians_to_degrees, degreesToRadians, degrees_to_radians, normalize, rgbToHsl, hslToRgb, linear, random, createPath, _lottieGlobal];
+ ob.resetFrame = resetFrame;
+ return ob;
+ }();
+
+ var Expressions = function () {
+ var ob = {};
+ ob.initExpressions = initExpressions;
+ ob.resetFrame = ExpressionManager.resetFrame;
+
+ function initExpressions(animation) {
+ var stackCount = 0;
+ var registers = [];
+
+ function pushExpression() {
+ stackCount += 1;
+ }
+
+ function popExpression() {
+ stackCount -= 1;
+
+ if (stackCount === 0) {
+ releaseInstances();
}
- styledShape.trNodes = shapeNodes;
- }
-}
+ }
+
+ function registerExpressionProperty(expression) {
+ if (registers.indexOf(expression) === -1) {
+ registers.push(expression);
+ }
+ }
+
+ function releaseInstances() {
+ var i;
+ var len = registers.length;
-CVShapeElement.prototype.renderPath = function(pathData,itemData){
- if(pathData.hd !== true && pathData._shouldRender) {
- var i, len = itemData.styledShapes.length;
for (i = 0; i < len; i += 1) {
- this.renderStyledShape(itemData.styledShapes[i], itemData.sh);
+ registers[i].release();
}
- }
-};
-CVShapeElement.prototype.renderFill = function(styleData,itemData, groupTransform){
- var styleElem = itemData.style;
+ registers.length = 0;
+ }
- if (itemData.c._mdf || this._isFirstFrame) {
- styleElem.co = 'rgb('
- + bm_floor(itemData.c.v[0]) + ','
- + bm_floor(itemData.c.v[1]) + ','
- + bm_floor(itemData.c.v[2]) + ')';
+ animation.renderer.compInterface = CompExpressionInterface(animation.renderer);
+ animation.renderer.globalData.projectInterface.registerComposition(animation.renderer);
+ animation.renderer.globalData.pushExpression = pushExpression;
+ animation.renderer.globalData.popExpression = popExpression;
+ animation.renderer.globalData.registerExpressionProperty = registerExpressionProperty;
}
- if (itemData.o._mdf || groupTransform._opMdf || this._isFirstFrame) {
- styleElem.coOp = itemData.o.v * groupTransform.opacity;
+
+ return ob;
+ }();
+
+ var MaskManagerInterface = function () {
+ function MaskInterface(mask, data) {
+ this._mask = mask;
+ this._data = data;
}
-};
-CVShapeElement.prototype.renderGradientFill = function(styleData,itemData, groupTransform){
- var styleElem = itemData.style;
- if(!styleElem.grd || itemData.g._mdf || itemData.s._mdf || itemData.e._mdf || (styleData.t !== 1 && (itemData.h._mdf || itemData.a._mdf))) {
- var ctx = this.globalData.canvasContext;
- var grd;
- var pt1 = itemData.s.v, pt2 = itemData.e.v;
- if (styleData.t === 1) {
- grd = ctx.createLinearGradient(pt1[0], pt1[1], pt2[0], pt2[1]);
- } else {
- var rad = Math.sqrt(Math.pow(pt1[0] - pt2[0], 2) + Math.pow(pt1[1] - pt2[1], 2));
- var ang = Math.atan2(pt2[1] - pt1[1], pt2[0] - pt1[0]);
+ Object.defineProperty(MaskInterface.prototype, 'maskPath', {
+ get: function get() {
+ if (this._mask.prop.k) {
+ this._mask.prop.getValue();
+ }
- var percent = itemData.h.v >= 1 ? 0.99 : itemData.h.v <= -1 ? -0.99: itemData.h.v;
- var dist = rad * percent;
- var x = Math.cos(ang + itemData.a.v) * dist + pt1[0];
- var y = Math.sin(ang + itemData.a.v) * dist + pt1[1];
- var grd = ctx.createRadialGradient(x, y, 0, pt1[0], pt1[1], rad);
+ return this._mask.prop;
+ }
+ });
+ Object.defineProperty(MaskInterface.prototype, 'maskOpacity', {
+ get: function get() {
+ if (this._mask.op.k) {
+ this._mask.op.getValue();
}
- var i, len = styleData.g.p;
- var cValues = itemData.g.c;
- var opacity = 1;
+ return this._mask.op.v * 100;
+ }
+ });
- for (i = 0; i < len; i += 1){
- if(itemData.g._hasOpacity && itemData.g._collapsable) {
- opacity = itemData.g.o[i*2 + 1];
- }
- grd.addColorStop(cValues[i * 4] / 100,'rgba('+ cValues[i * 4 + 1] + ',' + cValues[i * 4 + 2] + ','+cValues[i * 4 + 3] + ',' + opacity + ')');
- }
- styleElem.grd = grd;
- }
- styleElem.coOp = itemData.o.v*groupTransform.opacity;
-
-};
+ var MaskManager = function MaskManager(maskManager) {
+ var _masksInterfaces = createSizedArray(maskManager.viewData.length);
-CVShapeElement.prototype.renderStroke = function(styleData,itemData, groupTransform){
- var styleElem = itemData.style;
- var d = itemData.d;
- if(d && (d._mdf || this._isFirstFrame)){
- styleElem.da = d.dashArray;
- styleElem.do = d.dashoffset[0];
- }
- if(itemData.c._mdf || this._isFirstFrame){
- styleElem.co = 'rgb('+bm_floor(itemData.c.v[0])+','+bm_floor(itemData.c.v[1])+','+bm_floor(itemData.c.v[2])+')';
- }
- if(itemData.o._mdf || groupTransform._opMdf || this._isFirstFrame){
- styleElem.coOp = itemData.o.v*groupTransform.opacity;
- }
- if(itemData.w._mdf || this._isFirstFrame){
- styleElem.wi = itemData.w.v;
- }
-};
+ var i;
+ var len = maskManager.viewData.length;
+ for (i = 0; i < len; i += 1) {
+ _masksInterfaces[i] = new MaskInterface(maskManager.viewData[i], maskManager.masksProperties[i]);
+ }
-CVShapeElement.prototype.destroy = function(){
- this.shapesData = null;
- this.globalData = null;
- this.canvasContext = null;
- this.stylesList.length = 0;
- this.itemsData.length = 0;
-};
+ var maskFunction = function maskFunction(name) {
+ i = 0;
+ while (i < len) {
+ if (maskManager.masksProperties[i].nm === name) {
+ return _masksInterfaces[i];
+ }
-function CVSolidElement(data, globalData, comp) {
- this.initElement(data,globalData,comp);
-}
-extendPrototype([BaseElement, TransformElement, CVBaseElement, HierarchyElement, FrameElement, RenderableElement], CVSolidElement);
+ i += 1;
+ }
-CVSolidElement.prototype.initElement = SVGShapeElement.prototype.initElement;
-CVSolidElement.prototype.prepareFrame = IImageElement.prototype.prepareFrame;
+ return null;
+ };
-CVSolidElement.prototype.renderInnerContent = function() {
- var ctx = this.canvasContext;
- ctx.fillStyle = this.data.sc;
- ctx.fillRect(0, 0, this.data.sw, this.data.sh);
- //
-};
-function CVTextElement(data, globalData, comp){
- this.textSpans = [];
- this.yOffset = 0;
- this.fillColorAnim = false;
- this.strokeColorAnim = false;
- this.strokeWidthAnim = false;
- this.stroke = false;
- this.fill = false;
- this.justifyOffset = 0;
- this.currentRender = null;
- this.renderType = 'canvas';
- this.values = {
- fill: 'rgba(0,0,0,0)',
- stroke: 'rgba(0,0,0,0)',
- sWidth: 0,
- fValue: ''
+ return maskFunction;
};
- this.initElement(data,globalData,comp);
-}
-extendPrototype([BaseElement,TransformElement,CVBaseElement,HierarchyElement,FrameElement,RenderableElement,ITextElement], CVTextElement);
-CVTextElement.prototype.tHelper = createTag('canvas').getContext('2d');
-
-CVTextElement.prototype.buildNewText = function(){
- var documentData = this.textProperty.currentData;
- this.renderedLetters = createSizedArray(documentData.l ? documentData.l.length : 0);
+ return MaskManager;
+ }();
- var hasFill = false;
- if(documentData.fc) {
- hasFill = true;
- this.values.fill = this.buildColor(documentData.fc);
- }else{
- this.values.fill = 'rgba(0,0,0,0)';
- }
- this.fill = hasFill;
- var hasStroke = false;
- if(documentData.sc){
- hasStroke = true;
- this.values.stroke = this.buildColor(documentData.sc);
- this.values.sWidth = documentData.sw;
- }
- var fontData = this.globalData.fontManager.getFontByName(documentData.f);
- var i, len;
- var letters = documentData.l;
- var matrixHelper = this.mHelper;
- this.stroke = hasStroke;
- this.values.fValue = documentData.finalSize + 'px '+ this.globalData.fontManager.getFontByName(documentData.f).fFamily;
- len = documentData.finalText.length;
- //this.tHelper.font = this.values.fValue;
- var charData, shapeData, k, kLen, shapes, j, jLen, pathNodes, commands, pathArr, singleShape = this.data.singleShape;
- var trackingOffset = documentData.tr/1000*documentData.finalSize;
- var xPos = 0, yPos = 0, firstLine = true;
- var cnt = 0;
- for (i = 0; i < len; i += 1) {
- charData = this.globalData.fontManager.getCharData(documentData.finalText[i], fontData.fStyle, this.globalData.fontManager.getFontByName(documentData.f).fFamily);
- shapeData = charData && charData.data || {};
- matrixHelper.reset();
- if(singleShape && letters[i].n) {
- xPos = -trackingOffset;
- yPos += documentData.yOffset;
- yPos += firstLine ? 1 : 0;
- firstLine = false;
- }
+ var ExpressionPropertyInterface = function () {
+ var defaultUnidimensionalValue = {
+ pv: 0,
+ v: 0,
+ mult: 1
+ };
+ var defaultMultidimensionalValue = {
+ pv: [0, 0, 0],
+ v: [0, 0, 0],
+ mult: 1
+ };
- shapes = shapeData.shapes ? shapeData.shapes[0].it : [];
- jLen = shapes.length;
- matrixHelper.scale(documentData.finalSize/100,documentData.finalSize/100);
- if(singleShape){
- this.applyTextPropertiesToMatrix(documentData, matrixHelper, letters[i].line, xPos, yPos);
- }
- commands = createSizedArray(jLen);
- for(j=0;j= box.x + box.width
- && this.currentBBox.height + this.currentBBox.y >= box.y + box.height
-}
+ function fromWorld(arr, time) {
+ var toWorldMat = this.getMatrix(time);
+ return this.invertPoint(toWorldMat, arr);
+ }
-HShapeElement.prototype.renderInnerContent = function() {
- this._renderShapeFrame();
+ function applyPoint(matrix, arr) {
+ if (this._elem.hierarchy && this._elem.hierarchy.length) {
+ var i;
+ var len = this._elem.hierarchy.length;
- if(!this.hidden && (this._isFirstFrame || this._mdf)) {
- var tempBoundingBox = this.tempBoundingBox;
- var max = 999999;
- tempBoundingBox.x = max;
- tempBoundingBox.xMax = -max;
- tempBoundingBox.y = max;
- tempBoundingBox.yMax = -max;
- this.calculateBoundingBox(this.itemsData, tempBoundingBox);
- tempBoundingBox.width = tempBoundingBox.xMax < tempBoundingBox.x ? 0 : tempBoundingBox.xMax - tempBoundingBox.x;
- tempBoundingBox.height = tempBoundingBox.yMax < tempBoundingBox.y ? 0 : tempBoundingBox.yMax - tempBoundingBox.y;
- //var tempBoundingBox = this.shapeCont.getBBox();
- if(this.currentBoxContains(tempBoundingBox)) {
- return;
- }
- var changed = false;
- if(this.currentBBox.w !== tempBoundingBox.width){
- this.currentBBox.w = tempBoundingBox.width;
- this.shapeCont.setAttribute('width',tempBoundingBox.width);
- changed = true;
- }
- if(this.currentBBox.h !== tempBoundingBox.height){
- this.currentBBox.h = tempBoundingBox.height;
- this.shapeCont.setAttribute('height',tempBoundingBox.height);
- changed = true;
+ for (i = 0; i < len; i += 1) {
+ this._elem.hierarchy[i].finalTransform.mProp.applyToMatrix(matrix);
}
- if(changed || this.currentBBox.x !== tempBoundingBox.x || this.currentBBox.y !== tempBoundingBox.y){
- this.currentBBox.w = tempBoundingBox.width;
- this.currentBBox.h = tempBoundingBox.height;
- this.currentBBox.x = tempBoundingBox.x;
- this.currentBBox.y = tempBoundingBox.y;
+ }
- this.shapeCont.setAttribute('viewBox',this.currentBBox.x+' '+this.currentBBox.y+' '+this.currentBBox.w+' '+this.currentBBox.h);
- this.shapeCont.style.transform = this.shapeCont.style.webkitTransform = 'translate(' + this.currentBBox.x + 'px,' + this.currentBBox.y + 'px)';
- }
+ return matrix.applyToPointArray(arr[0], arr[1], arr[2] || 0);
}
-};
-function HTextElement(data,globalData,comp){
- this.textSpans = [];
- this.textPaths = [];
- this.currentBBox = {
- x:999999,
- y: -999999,
- h: 0,
- w: 0
- };
- this.renderType = 'svg';
- this.isMasked = false;
- this.initElement(data,globalData,comp);
+ function invertPoint(matrix, arr) {
+ if (this._elem.hierarchy && this._elem.hierarchy.length) {
+ var i;
+ var len = this._elem.hierarchy.length;
-}
-extendPrototype([BaseElement,TransformElement,HBaseElement,HierarchyElement,FrameElement,RenderableDOMElement,ITextElement], HTextElement);
+ for (i = 0; i < len; i += 1) {
+ this._elem.hierarchy[i].finalTransform.mProp.applyToMatrix(matrix);
+ }
+ }
-HTextElement.prototype.createContent = function(){
- this.isMasked = this.checkMasks();
- if(this.isMasked){
- this.renderType = 'svg';
- this.compW = this.comp.data.w;
- this.compH = this.comp.data.h;
- this.svgElement.setAttribute('width',this.compW);
- this.svgElement.setAttribute('height',this.compH);
- var g = createNS('g');
- this.maskedElement.appendChild(g);
- this.innerElem = g;
- } else {
- this.renderType = 'html';
- this.innerElem = this.layerElement;
+ return matrix.inversePoint(arr);
}
- this.checkParenting();
+ function fromComp(arr) {
+ var toWorldMat = new Matrix();
+ toWorldMat.reset();
-};
+ this._elem.finalTransform.mProp.applyToMatrix(toWorldMat);
-HTextElement.prototype.buildNewText = function(){
- var documentData = this.textProperty.currentData;
- this.renderedLetters = createSizedArray(documentData.l ? documentData.l.length : 0);
- var innerElemStyle = this.innerElem.style;
- innerElemStyle.color = innerElemStyle.fill = documentData.fc ? this.buildColor(documentData.fc) : 'rgba(0,0,0,0)';
- if(documentData.sc){
- innerElemStyle.stroke = this.buildColor(documentData.sc);
- innerElemStyle.strokeWidth = documentData.sw+'px';
- }
- var fontData = this.globalData.fontManager.getFontByName(documentData.f);
- if(!this.globalData.fontManager.chars){
- innerElemStyle.fontSize = documentData.finalSize+'px';
- innerElemStyle.lineHeight = documentData.finalSize+'px';
- if(fontData.fClass){
- this.innerElem.className = fontData.fClass;
- } else {
- innerElemStyle.fontFamily = fontData.fFamily;
- var fWeight = documentData.fWeight, fStyle = documentData.fStyle;
- innerElemStyle.fontStyle = fStyle;
- innerElemStyle.fontWeight = fWeight;
+ if (this._elem.hierarchy && this._elem.hierarchy.length) {
+ var i;
+ var len = this._elem.hierarchy.length;
+
+ for (i = 0; i < len; i += 1) {
+ this._elem.hierarchy[i].finalTransform.mProp.applyToMatrix(toWorldMat);
}
+
+ return toWorldMat.inversePoint(arr);
+ }
+
+ return toWorldMat.inversePoint(arr);
}
- var i, len;
- var letters = documentData.l;
- len = letters.length;
- var tSpan,tParent,tCont;
- var matrixHelper = this.mHelper;
- var shapes, shapeStr = '';
- var cnt = 0;
- for (i = 0;i < len ;i += 1) {
- if(this.globalData.fontManager.chars){
- if(!this.textPaths[cnt]){
- tSpan = createNS('path');
- tSpan.setAttribute('stroke-linecap', 'butt');
- tSpan.setAttribute('stroke-linejoin','round');
- tSpan.setAttribute('stroke-miterlimit','4');
- } else {
- tSpan = this.textPaths[cnt];
- }
- if(!this.isMasked){
- if(this.textSpans[cnt]){
- tParent = this.textSpans[cnt];
- tCont = tParent.children[0];
- } else {
+ function sampleImage() {
+ return [1, 1, 1, 1];
+ }
- tParent = createTag('div');
- tCont = createNS('svg');
- tCont.appendChild(tSpan);
- styleDiv(tParent);
- }
- }
- }else{
- if(!this.isMasked){
- if(this.textSpans[cnt]){
- tParent = this.textSpans[cnt];
- tSpan = this.textPaths[cnt];
- } else {
- tParent = createTag('span');
- styleDiv(tParent);
- tSpan = createTag('span');
- styleDiv(tSpan);
- tParent.appendChild(tSpan);
- }
- } else {
- tSpan = this.textPaths[cnt] ? this.textPaths[cnt] : createNS('text');
- }
+ return function (elem) {
+ var transformInterface;
+
+ function _registerMaskInterface(maskManager) {
+ _thisLayerFunction.mask = new MaskManagerInterface(maskManager, elem);
+ }
+
+ function _registerEffectsInterface(effects) {
+ _thisLayerFunction.effect = effects;
+ }
+
+ function _thisLayerFunction(name) {
+ switch (name) {
+ case 'ADBE Root Vectors Group':
+ case 'Contents':
+ case 2:
+ return _thisLayerFunction.shapeInterface;
+
+ case 1:
+ case 6:
+ case 'Transform':
+ case 'transform':
+ case 'ADBE Transform Group':
+ return transformInterface;
+
+ case 4:
+ case 'ADBE Effect Parade':
+ case 'effects':
+ case 'Effects':
+ return _thisLayerFunction.effect;
+
+ case 'ADBE Text Properties':
+ return _thisLayerFunction.textInterface;
+
+ default:
+ return null;
}
- //tSpan.setAttribute('visibility', 'hidden');
- if(this.globalData.fontManager.chars){
- var charData = this.globalData.fontManager.getCharData(documentData.finalText[i], fontData.fStyle, this.globalData.fontManager.getFontByName(documentData.f).fFamily);
- var shapeData;
- if(charData){
- shapeData = charData.data;
- } else {
- shapeData = null;
- }
- matrixHelper.reset();
- if(shapeData && shapeData.shapes){
- shapes = shapeData.shapes[0].it;
- matrixHelper.scale(documentData.finalSize/100,documentData.finalSize/100);
- shapeStr = this.createPathShape(matrixHelper,shapes);
- tSpan.setAttribute('d',shapeStr);
- }
- if(!this.isMasked){
- this.innerElem.appendChild(tParent);
- if(shapeData && shapeData.shapes){
-
- //document.body.appendChild is needed to get exact measure of shape
- document.body.appendChild(tCont);
- var boundingBox = tCont.getBBox();
- tCont.setAttribute('width',boundingBox.width + 2);
- tCont.setAttribute('height',boundingBox.height + 2);
- tCont.setAttribute('viewBox',(boundingBox.x-1)+' '+ (boundingBox.y-1)+' '+ (boundingBox.width+2)+' '+ (boundingBox.height+2));
- tCont.style.transform = tCont.style.webkitTransform = 'translate(' + (boundingBox.x-1) + 'px,' + (boundingBox.y-1) + 'px)';
-
- letters[i].yOffset = boundingBox.y-1;
-
- } else{
- tCont.setAttribute('width',1);
- tCont.setAttribute('height',1);
- }
- tParent.appendChild(tCont);
- }else{
- this.innerElem.appendChild(tSpan);
- }
- }else{
- tSpan.textContent = letters[i].val;
- tSpan.setAttributeNS("http://www.w3.org/XML/1998/namespace", "xml:space","preserve");
- if(!this.isMasked){
- this.innerElem.appendChild(tParent);
- //
- tSpan.style.transform = tSpan.style.webkitTransform = 'translate3d(0,'+ -documentData.finalSize/1.2+'px,0)';
- } else {
- this.innerElem.appendChild(tSpan);
- }
+ }
+
+ _thisLayerFunction.getMatrix = getMatrix;
+ _thisLayerFunction.invertPoint = invertPoint;
+ _thisLayerFunction.applyPoint = applyPoint;
+ _thisLayerFunction.toWorld = toWorld;
+ _thisLayerFunction.toWorldVec = toWorldVec;
+ _thisLayerFunction.fromWorld = fromWorld;
+ _thisLayerFunction.fromWorldVec = fromWorldVec;
+ _thisLayerFunction.toComp = toWorld;
+ _thisLayerFunction.fromComp = fromComp;
+ _thisLayerFunction.sampleImage = sampleImage;
+ _thisLayerFunction.sourceRectAtTime = elem.sourceRectAtTime.bind(elem);
+ _thisLayerFunction._elem = elem;
+ transformInterface = TransformExpressionInterface(elem.finalTransform.mProp);
+ var anchorPointDescriptor = getDescriptor(transformInterface, 'anchorPoint');
+ Object.defineProperties(_thisLayerFunction, {
+ hasParent: {
+ get: function get() {
+ return elem.hierarchy.length;
+ }
+ },
+ parent: {
+ get: function get() {
+ return elem.hierarchy[0].layerInterface;
+ }
+ },
+ rotation: getDescriptor(transformInterface, 'rotation'),
+ scale: getDescriptor(transformInterface, 'scale'),
+ position: getDescriptor(transformInterface, 'position'),
+ opacity: getDescriptor(transformInterface, 'opacity'),
+ anchorPoint: anchorPointDescriptor,
+ anchor_point: anchorPointDescriptor,
+ transform: {
+ get: function get() {
+ return transformInterface;
+ }
+ },
+ active: {
+ get: function get() {
+ return elem.isInRange;
+ }
+ }
+ });
+ _thisLayerFunction.startTime = elem.data.st;
+ _thisLayerFunction.index = elem.data.ind;
+ _thisLayerFunction.source = elem.data.refId;
+ _thisLayerFunction.height = elem.data.ty === 0 ? elem.data.h : 100;
+ _thisLayerFunction.width = elem.data.ty === 0 ? elem.data.w : 100;
+ _thisLayerFunction.inPoint = elem.data.ip / elem.comp.globalData.frameRate;
+ _thisLayerFunction.outPoint = elem.data.op / elem.comp.globalData.frameRate;
+ _thisLayerFunction._name = elem.data.nm;
+ _thisLayerFunction.registerMaskInterface = _registerMaskInterface;
+ _thisLayerFunction.registerEffectsInterface = _registerEffectsInterface;
+ return _thisLayerFunction;
+ };
+ }();
+
+ var propertyGroupFactory = function () {
+ return function (interfaceFunction, parentPropertyGroup) {
+ return function (val) {
+ val = val === undefined ? 1 : val;
+
+ if (val <= 0) {
+ return interfaceFunction;
}
- //
- if(!this.isMasked){
- this.textSpans[cnt] = tParent;
- }else{
- this.textSpans[cnt] = tSpan;
+
+ return parentPropertyGroup(val - 1);
+ };
+ };
+ }();
+
+ var PropertyInterface = function () {
+ return function (propertyName, propertyGroup) {
+ var interfaceFunction = {
+ _name: propertyName
+ };
+
+ function _propertyGroup(val) {
+ val = val === undefined ? 1 : val;
+
+ if (val <= 0) {
+ return interfaceFunction;
}
- this.textSpans[cnt].style.display = 'block';
- this.textPaths[cnt] = tSpan;
- cnt += 1;
- }
- while(cnt < this.textSpans.length){
- this.textSpans[cnt].style.display = 'none';
- cnt += 1;
- }
-};
-HTextElement.prototype.renderInnerContent = function() {
+ return propertyGroup(val - 1);
+ }
- if(this.data.singleShape){
- if(!this._isFirstFrame && !this.lettersChangedFlag){
- return;
- } else {
- // Todo Benchmark if using this is better than getBBox
- if(this.isMasked && this.finalTransform._matMdf){
- this.svgElement.setAttribute('viewBox',-this.finalTransform.mProp.p.v[0]+' '+ -this.finalTransform.mProp.p.v[1]+' '+this.compW+' '+this.compH);
- this.svgElement.style.transform = this.svgElement.style.webkitTransform = 'translate(' + -this.finalTransform.mProp.p.v[0] + 'px,' + -this.finalTransform.mProp.p.v[1] + 'px)';
- }
+ return _propertyGroup;
+ };
+ }();
+
+ var EffectsExpressionInterface = function () {
+ var ob = {
+ createEffectsInterface: createEffectsInterface
+ };
+
+ function createEffectsInterface(elem, propertyGroup) {
+ if (elem.effectsManager) {
+ var effectElements = [];
+ var effectsData = elem.data.ef;
+ var i;
+ var len = elem.effectsManager.effectElements.length;
+
+ for (i = 0; i < len; i += 1) {
+ effectElements.push(createGroupInterface(effectsData[i], elem.effectsManager.effectElements[i], propertyGroup, elem));
}
- }
- this.textAnimator.getMeasures(this.textProperty.currentData, this.lettersChangedFlag);
- if(!this.lettersChangedFlag && !this.textAnimator.lettersChangedFlag){
- return;
+ var effects = elem.data.ef || [];
+
+ var groupInterface = function groupInterface(name) {
+ i = 0;
+ len = effects.length;
+
+ while (i < len) {
+ if (name === effects[i].nm || name === effects[i].mn || name === effects[i].ix) {
+ return effectElements[i];
+ }
+
+ i += 1;
+ }
+
+ return null;
+ };
+
+ Object.defineProperty(groupInterface, 'numProperties', {
+ get: function get() {
+ return effects.length;
+ }
+ });
+ return groupInterface;
+ }
+
+ return null;
}
- var i,len, count = 0;
- var renderedLetters = this.textAnimator.renderedLetters;
- var letters = this.textProperty.currentData.l;
+ function createGroupInterface(data, elements, propertyGroup, elem) {
+ function groupInterface(name) {
+ var effects = data.ef;
+ var i = 0;
+ var len = effects.length;
- len = letters.length;
- var renderedLetter, textSpan, textPath;
- for(i=0;i= 0; i -= 1) {
- /*mat = this.hierarchy[i].finalTransform.mProp.v.props;
- console.log(mat)
- this.mat.transform(-mat[0],-mat[1],-mat[2],-mat[3],-mat[4],-mat[5],-mat[6],-mat[7],-mat[8],-mat[9],-mat[10],-mat[11],-mat[12],-mat[13],-mat[14],mat[15]);
- console.log(this.mat.props)*/
- var mTransf = this.hierarchy[i].finalTransform.mProp;
- this.mat.translate(-mTransf.p.v[0],-mTransf.p.v[1],mTransf.p.v[2]);
- this.mat.rotateX(-mTransf.or.v[0]).rotateY(-mTransf.or.v[1]).rotateZ(mTransf.or.v[2]);
- this.mat.rotateX(-mTransf.rx.v).rotateY(-mTransf.ry.v).rotateZ(mTransf.rz.v);
- this.mat.scale(1/mTransf.s.v[0],1/mTransf.s.v[1],1/mTransf.s.v[2]);
- this.mat.translate(mTransf.a.v[0],mTransf.a.v[1],mTransf.a.v[2]);
- }
- }
+ var ShapePathInterface = function () {
+ return function pathInterfaceFactory(shape, view, propertyGroup) {
+ var prop = view.sh;
- if(this.p){
- this.mat.translate(-this.p.v[0],-this.p.v[1],this.p.v[2]);
- }else{
- this.mat.translate(-this.px.v,-this.py.v,this.pz.v);
+ function interfaceFunction(val) {
+ if (val === 'Shape' || val === 'shape' || val === 'Path' || val === 'path' || val === 'ADBE Vector Shape' || val === 2) {
+ return interfaceFunction.path;
}
- if(this.a){
- var diffVector = [this.p.v[0]-this.a.v[0],this.p.v[1]-this.a.v[1],this.p.v[2]-this.a.v[2]];
- var mag = Math.sqrt(Math.pow(diffVector[0],2)+Math.pow(diffVector[1],2)+Math.pow(diffVector[2],2));
- //var lookDir = getNormalizedPoint(getDiffVector(this.a.v,this.p.v));
- var lookDir = [diffVector[0]/mag,diffVector[1]/mag,diffVector[2]/mag];
- var lookLengthOnXZ = Math.sqrt( lookDir[2]*lookDir[2] + lookDir[0]*lookDir[0] );
- var m_rotationX = (Math.atan2( lookDir[1], lookLengthOnXZ ));
- var m_rotationY = (Math.atan2( lookDir[0], -lookDir[2]));
- this.mat.rotateY(m_rotationY).rotateX(-m_rotationX);
- }
- this.mat.rotateX(-this.rx.v).rotateY(-this.ry.v).rotateZ(this.rz.v);
- this.mat.rotateX(-this.or.v[0]).rotateY(-this.or.v[1]).rotateZ(this.or.v[2]);
- this.mat.translate(this.globalData.compSize.w/2,this.globalData.compSize.h/2,0);
- this.mat.translate(0,0,this.pe.v);
+ return null;
+ }
+ var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);
-
+ prop.setGroupProperty(PropertyInterface('Path', _propertyGroup));
+ Object.defineProperties(interfaceFunction, {
+ path: {
+ get: function get() {
+ if (prop.k) {
+ prop.getValue();
+ }
- var hasMatrixChanged = !this._prevMat.equals(this.mat);
- if((hasMatrixChanged || this.pe._mdf) && this.comp.threeDElements) {
- len = this.comp.threeDElements.length;
- var comp;
- for(i=0;i=0;i-=1){
- registeredAnimations[i].animation.destroy(animation);
+ return null;
+ }
+
+ Object.defineProperties(interfaceFunction, {
+ color: {
+ get: ExpressionPropertyInterface(view.c)
+ },
+ opacity: {
+ get: ExpressionPropertyInterface(view.o)
+ },
+ strokeWidth: {
+ get: ExpressionPropertyInterface(view.w)
+ },
+ dash: {
+ get: function get() {
+ return dashOb;
+ }
+ },
+ _name: {
+ value: shape.nm
+ },
+ mn: {
+ value: shape.mn
}
+ });
+ view.c.setGroupProperty(PropertyInterface('Color', _propertyGroup));
+ view.o.setGroupProperty(PropertyInterface('Opacity', _propertyGroup));
+ view.w.setGroupProperty(PropertyInterface('Stroke Width', _propertyGroup));
+ return interfaceFunction;
}
- function searchAnimations(animationData, standalone, renderer){
- var animElements = [].concat([].slice.call(document.getElementsByClassName('lottie')),
- [].slice.call(document.getElementsByClassName('bodymovin')));
- var i, len = animElements.length;
- for(i=0;i this.animationData.op){
- this.animationData.op = data.op;
- this.totalFrames = Math.floor(data.op - this.animationData.ip);
- }
- var layers = this.animationData.layers;
- var i, len = layers.length;
- var newLayers = data.layers;
- var j, jLen = newLayers.length;
- for(j=0;j this.timeCompleted){
- this.currentFrame = this.timeCompleted;
- }
- this.trigger('enterFrame');
- this.renderFrame();
-};
+ return null;
+ }
-AnimationItem.prototype.renderFrame = function () {
- if(this.isLoaded === false){
- return;
- }
- this.renderer.renderFrame(this.currentFrame + this.firstFrame);
-};
+ var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);
-AnimationItem.prototype.play = function (name) {
- if(name && this.name != name){
- return;
- }
- if(this.isPaused === true){
- this.isPaused = false;
- if(this._idle){
- this._idle = false;
- this.trigger('_active');
+ var prop = view.sh.ty === 'tm' ? view.sh.prop : view.sh;
+ interfaceFunction.propertyIndex = shape.ix;
+ prop.or.setGroupProperty(PropertyInterface('Outer Radius', _propertyGroup));
+ prop.os.setGroupProperty(PropertyInterface('Outer Roundness', _propertyGroup));
+ prop.pt.setGroupProperty(PropertyInterface('Points', _propertyGroup));
+ prop.p.setGroupProperty(PropertyInterface('Position', _propertyGroup));
+ prop.r.setGroupProperty(PropertyInterface('Rotation', _propertyGroup));
+
+ if (shape.ir) {
+ prop.ir.setGroupProperty(PropertyInterface('Inner Radius', _propertyGroup));
+ prop.is.setGroupProperty(PropertyInterface('Inner Roundness', _propertyGroup));
+ }
+
+ Object.defineProperties(interfaceFunction, {
+ position: {
+ get: ExpressionPropertyInterface(prop.p)
+ },
+ rotation: {
+ get: ExpressionPropertyInterface(prop.r)
+ },
+ points: {
+ get: ExpressionPropertyInterface(prop.pt)
+ },
+ outerRadius: {
+ get: ExpressionPropertyInterface(prop.or)
+ },
+ outerRoundness: {
+ get: ExpressionPropertyInterface(prop.os)
+ },
+ innerRadius: {
+ get: ExpressionPropertyInterface(prop.ir)
+ },
+ innerRoundness: {
+ get: ExpressionPropertyInterface(prop.is)
+ },
+ _name: {
+ value: shape.nm
}
+ });
+ interfaceFunction.mn = shape.mn;
+ return interfaceFunction;
}
-};
-AnimationItem.prototype.pause = function (name) {
- if(name && this.name != name){
- return;
- }
- if(this.isPaused === false){
- this.isPaused = true;
- this._idle = true;
- this.trigger('_idle');
- }
-};
+ function rectInterfaceFactory(shape, view, propertyGroup) {
+ function interfaceFunction(value) {
+ if (shape.p.ix === value) {
+ return interfaceFunction.position;
+ }
-AnimationItem.prototype.togglePause = function (name) {
- if(name && this.name != name){
- return;
- }
- if(this.isPaused === true){
- this.play();
- }else{
- this.pause();
- }
-};
+ if (shape.r.ix === value) {
+ return interfaceFunction.roundness;
+ }
-AnimationItem.prototype.stop = function (name) {
- if(name && this.name != name){
- return;
- }
- this.pause();
- this.playCount = 0;
- this._completedLoop = false;
- this.setCurrentRawFrameValue(0);
-};
+ if (shape.s.ix === value || value === 'Size' || value === 'ADBE Vector Rect Size') {
+ return interfaceFunction.size;
+ }
-AnimationItem.prototype.goToAndStop = function (value, isFrame, name) {
- if(name && this.name != name){
- return;
- }
- if(isFrame){
- this.setCurrentRawFrameValue(value);
- }else{
- this.setCurrentRawFrameValue(value * this.frameModifier);
- }
- this.pause();
-};
+ return null;
+ }
-AnimationItem.prototype.goToAndPlay = function (value, isFrame, name) {
- this.goToAndStop(value, isFrame, name);
- this.play();
-};
+ var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);
-AnimationItem.prototype.advanceTime = function (value) {
- if (this.isPaused === true || this.isLoaded === false) {
- return;
- }
- var nextValue = this.currentRawFrame + value * this.frameModifier;
- var _isComplete = false;
- // Checking if nextValue > totalFrames - 1 for addressing non looping and looping animations.
- // If animation won't loop, it should stop at totalFrames - 1. If it will loop it should complete the last frame and then loop.
- if (nextValue >= this.totalFrames - 1 && this.frameModifier > 0) {
- if (!this.loop || this.playCount === this.loop) {
- if (!this.checkSegments(nextValue > this.totalFrames ? nextValue % this.totalFrames : 0)) {
- _isComplete = true;
- nextValue = this.totalFrames - 1;
- }
- } else if (nextValue >= this.totalFrames) {
- this.playCount += 1;
- if (!this.checkSegments(nextValue % this.totalFrames)) {
- this.setCurrentRawFrameValue(nextValue % this.totalFrames);
- this._completedLoop = true;
- this.trigger('loopComplete');
- }
- } else {
- this.setCurrentRawFrameValue(nextValue);
- }
- } else if(nextValue < 0) {
- if (!this.checkSegments(nextValue % this.totalFrames)) {
- if (this.loop && !(this.playCount-- <= 0 && this.loop !== true)) {
- this.setCurrentRawFrameValue(this.totalFrames + (nextValue % this.totalFrames));
- if(!this._completedLoop) {
- this._completedLoop = true;
- } else {
- this.trigger('loopComplete');
- }
- } else {
- _isComplete = true;
- nextValue = 0;
- }
+ var prop = view.sh.ty === 'tm' ? view.sh.prop : view.sh;
+ interfaceFunction.propertyIndex = shape.ix;
+ prop.p.setGroupProperty(PropertyInterface('Position', _propertyGroup));
+ prop.s.setGroupProperty(PropertyInterface('Size', _propertyGroup));
+ prop.r.setGroupProperty(PropertyInterface('Rotation', _propertyGroup));
+ Object.defineProperties(interfaceFunction, {
+ position: {
+ get: ExpressionPropertyInterface(prop.p)
+ },
+ roundness: {
+ get: ExpressionPropertyInterface(prop.r)
+ },
+ size: {
+ get: ExpressionPropertyInterface(prop.s)
+ },
+ _name: {
+ value: shape.nm
}
- } else {
- this.setCurrentRawFrameValue(nextValue);
+ });
+ interfaceFunction.mn = shape.mn;
+ return interfaceFunction;
}
- if (_isComplete) {
- this.setCurrentRawFrameValue(nextValue);
- this.pause();
- this.trigger('complete');
- }
-};
-AnimationItem.prototype.adjustSegment = function(arr, offset){
- this.playCount = 0;
- if(arr[1] < arr[0]){
- if(this.frameModifier > 0){
- if(this.playSpeed < 0){
- this.setSpeed(-this.playSpeed);
- } else {
- this.setDirection(-1);
- }
- }
- this.timeCompleted = this.totalFrames = arr[0] - arr[1];
- this.firstFrame = arr[1];
- this.setCurrentRawFrameValue(this.totalFrames - 0.001 - offset);
- } else if(arr[1] > arr[0]){
- if(this.frameModifier < 0){
- if(this.playSpeed < 0){
- this.setSpeed(-this.playSpeed);
- } else {
- this.setDirection(1);
- }
+ function roundedInterfaceFactory(shape, view, propertyGroup) {
+ function interfaceFunction(value) {
+ if (shape.r.ix === value || value === 'Round Corners 1') {
+ return interfaceFunction.radius;
}
- this.timeCompleted = this.totalFrames = arr[1] - arr[0];
- this.firstFrame = arr[0];
- this.setCurrentRawFrameValue(0.001 + offset);
- }
- this.trigger('segmentStart');
-};
-AnimationItem.prototype.setSegment = function (init,end) {
- var pendingFrame = -1;
- if(this.isPaused) {
- if (this.currentRawFrame + this.firstFrame < init) {
- pendingFrame = init;
- } else if (this.currentRawFrame + this.firstFrame > end) {
- pendingFrame = end - init;
+
+ return null;
+ }
+
+ var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);
+
+ var prop = view;
+ interfaceFunction.propertyIndex = shape.ix;
+ prop.rd.setGroupProperty(PropertyInterface('Radius', _propertyGroup));
+ Object.defineProperties(interfaceFunction, {
+ radius: {
+ get: ExpressionPropertyInterface(prop.rd)
+ },
+ _name: {
+ value: shape.nm
}
+ });
+ interfaceFunction.mn = shape.mn;
+ return interfaceFunction;
}
- this.firstFrame = init;
- this.timeCompleted = this.totalFrames = end - init;
- if(pendingFrame !== -1) {
- this.goToAndStop(pendingFrame,true);
- }
-};
+ function repeaterInterfaceFactory(shape, view, propertyGroup) {
+ function interfaceFunction(value) {
+ if (shape.c.ix === value || value === 'Copies') {
+ return interfaceFunction.copies;
+ }
-AnimationItem.prototype.playSegments = function (arr, forceFlag) {
- if (forceFlag) {
- this.segments.length = 0;
- }
- if (typeof arr[0] === 'object') {
- var i, len = arr.length;
- for (i = 0; i < len; i += 1) {
- this.segments.push(arr[i]);
+ if (shape.o.ix === value || value === 'Offset') {
+ return interfaceFunction.offset;
}
- } else {
- this.segments.push(arr);
- }
- if (this.segments.length && forceFlag) {
- this.adjustSegment(this.segments.shift(), 0);
- }
- if (this.isPaused) {
- this.play();
- }
-};
-AnimationItem.prototype.resetSegments = function (forceFlag) {
- this.segments.length = 0;
- this.segments.push([this.animationData.ip,this.animationData.op]);
- //this.segments.push([this.animationData.ip*this.frameRate,Math.floor(this.animationData.op - this.animationData.ip+this.animationData.ip*this.frameRate)]);
- if (forceFlag) {
- this.checkSegments(0);
- }
-};
-AnimationItem.prototype.checkSegments = function(offset) {
- if (this.segments.length) {
- this.adjustSegment(this.segments.shift(), offset);
- return true;
- }
- return false;
-};
+ return null;
+ }
-AnimationItem.prototype.destroy = function (name) {
- if ((name && this.name != name) || !this.renderer) {
- return;
+ var _propertyGroup = propertyGroupFactory(interfaceFunction, propertyGroup);
+
+ var prop = view;
+ interfaceFunction.propertyIndex = shape.ix;
+ prop.c.setGroupProperty(PropertyInterface('Copies', _propertyGroup));
+ prop.o.setGroupProperty(PropertyInterface('Offset', _propertyGroup));
+ Object.defineProperties(interfaceFunction, {
+ copies: {
+ get: ExpressionPropertyInterface(prop.c)
+ },
+ offset: {
+ get: ExpressionPropertyInterface(prop.o)
+ },
+ _name: {
+ value: shape.nm
+ }
+ });
+ interfaceFunction.mn = shape.mn;
+ return interfaceFunction;
}
- this.renderer.destroy();
- this.imagePreloader.destroy();
- this.trigger('destroy');
- this._cbs = null;
- this.onEnterFrame = this.onLoopComplete = this.onComplete = this.onSegmentStart = this.onDestroy = null;
- this.renderer = null;
-};
-AnimationItem.prototype.setCurrentRawFrameValue = function(value){
- this.currentRawFrame = value;
- this.gotoFrame();
-};
+ return function (shapes, view, propertyGroup) {
+ var interfaces;
-AnimationItem.prototype.setSpeed = function (val) {
- this.playSpeed = val;
- this.updaFrameModifier();
-};
+ function _interfaceFunction(value) {
+ if (typeof value === 'number') {
+ value = value === undefined ? 1 : value;
-AnimationItem.prototype.setDirection = function (val) {
- this.playDirection = val < 0 ? -1 : 1;
- this.updaFrameModifier();
-};
+ if (value === 0) {
+ return propertyGroup;
+ }
-AnimationItem.prototype.updaFrameModifier = function () {
- this.frameModifier = this.frameMult * this.playSpeed * this.playDirection;
-};
+ return interfaces[value - 1];
+ }
-AnimationItem.prototype.getPath = function () {
- return this.path;
-};
+ var i = 0;
+ var len = interfaces.length;
-AnimationItem.prototype.getAssetsPath = function (assetData) {
- var path = '';
- if(assetData.e) {
- path = assetData.p;
- } else if(this.assetsPath){
- var imagePath = assetData.p;
- if(imagePath.indexOf('images/') !== -1){
- imagePath = imagePath.split('/')[1];
- }
- path = this.assetsPath + imagePath;
- } else {
- path = this.path;
- path += assetData.u ? assetData.u : '';
- path += assetData.p;
- }
- return path;
-};
+ while (i < len) {
+ if (interfaces[i]._name === value) {
+ return interfaces[i];
+ }
-AnimationItem.prototype.getAssetData = function (id) {
- var i = 0, len = this.assets.length;
- while (i < len) {
- if(id == this.assets[i].id){
- return this.assets[i];
+ i += 1;
}
- i += 1;
- }
-};
-AnimationItem.prototype.hide = function () {
- this.renderer.hide();
-};
+ return null;
+ }
-AnimationItem.prototype.show = function () {
- this.renderer.show();
-};
+ function parentGroupWrapper() {
+ return propertyGroup;
+ }
-AnimationItem.prototype.getDuration = function (isFrame) {
- return isFrame ? this.totalFrames : this.totalFrames / this.frameRate;
-};
+ _interfaceFunction.propertyGroup = propertyGroupFactory(_interfaceFunction, parentGroupWrapper);
+ interfaces = iterateElements(shapes, view, _interfaceFunction.propertyGroup);
+ _interfaceFunction.numProperties = interfaces.length;
+ _interfaceFunction._name = 'Contents';
+ return _interfaceFunction;
+ };
+ }();
-AnimationItem.prototype.trigger = function(name){
- if(this._cbs && this._cbs[name]){
- switch(name){
- case 'enterFrame':
- this.triggerEvent(name,new BMEnterFrameEvent(name,this.currentFrame,this.totalFrames,this.frameModifier));
- break;
- case 'loopComplete':
- this.triggerEvent(name,new BMCompleteLoopEvent(name,this.loop,this.playCount,this.frameMult));
- break;
- case 'complete':
- this.triggerEvent(name,new BMCompleteEvent(name,this.frameMult));
- break;
- case 'segmentStart':
- this.triggerEvent(name,new BMSegmentStartEvent(name,this.firstFrame,this.totalFrames));
- break;
- case 'destroy':
- this.triggerEvent(name,new BMDestroyEvent(name,this));
- break;
- default:
- this.triggerEvent(name);
+ var TextExpressionInterface = function () {
+ return function (elem) {
+ var _sourceText;
+
+ function _thisLayerFunction(name) {
+ switch (name) {
+ case 'ADBE Text Document':
+ return _thisLayerFunction.sourceText;
+
+ default:
+ return null;
}
- }
- if(name === 'enterFrame' && this.onEnterFrame){
- this.onEnterFrame.call(this,new BMEnterFrameEvent(name,this.currentFrame,this.totalFrames,this.frameMult));
- }
- if(name === 'loopComplete' && this.onLoopComplete){
- this.onLoopComplete.call(this,new BMCompleteLoopEvent(name,this.loop,this.playCount,this.frameMult));
- }
- if(name === 'complete' && this.onComplete){
- this.onComplete.call(this,new BMCompleteEvent(name,this.frameMult));
- }
- if(name === 'segmentStart' && this.onSegmentStart){
- this.onSegmentStart.call(this,new BMSegmentStartEvent(name,this.firstFrame,this.totalFrames));
- }
- if(name === 'destroy' && this.onDestroy){
- this.onDestroy.call(this,new BMDestroyEvent(name,this));
- }
-};
+ }
-var Expressions = (function(){
- var ob = {};
- ob.initExpressions = initExpressions;
+ Object.defineProperty(_thisLayerFunction, 'sourceText', {
+ get: function get() {
+ elem.textProperty.getValue();
+ var stringValue = elem.textProperty.currentData.t;
+ if (!_sourceText || stringValue !== _sourceText.value) {
+ _sourceText = new String(stringValue); // eslint-disable-line no-new-wrappers
+ // If stringValue is an empty string, eval returns undefined, so it has to be returned as a String primitive
- function initExpressions(animation){
+ _sourceText.value = stringValue || new String(stringValue); // eslint-disable-line no-new-wrappers
- var stackCount = 0;
- var registers = [];
+ Object.defineProperty(_sourceText, 'style', {
+ get: function get() {
+ return {
+ fillColor: elem.textProperty.currentData.fc
+ };
+ }
+ });
+ }
- function pushExpression() {
- stackCount += 1;
- }
+ return _sourceText;
+ }
+ });
+ return _thisLayerFunction;
+ };
+ }();
- function popExpression() {
- stackCount -= 1;
- if (stackCount === 0) {
- releaseInstances();
- }
- }
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
- function registerExpressionProperty(expression) {
- if (registers.indexOf(expression) === -1) {
- registers.push(expression)
- }
- }
+ var FootageInterface = function () {
+ var outlineInterfaceFactory = function outlineInterfaceFactory(elem) {
+ var currentPropertyName = '';
+ var currentProperty = elem.getFootageData();
- function releaseInstances() {
- var i, len = registers.length;
- for (i = 0; i < len; i += 1) {
- registers[i].release();
- }
- registers.length = 0;
- }
+ function init() {
+ currentPropertyName = '';
+ currentProperty = elem.getFootageData();
+ return searchProperty;
+ }
- animation.renderer.compInterface = CompExpressionInterface(animation.renderer);
- animation.renderer.globalData.projectInterface.registerComposition(animation.renderer);
- animation.renderer.globalData.pushExpression = pushExpression;
- animation.renderer.globalData.popExpression = popExpression;
- animation.renderer.globalData.registerExpressionProperty = registerExpressionProperty;
- }
- return ob;
-}());
+ function searchProperty(value) {
+ if (currentProperty[value]) {
+ currentPropertyName = value;
+ currentProperty = currentProperty[value];
-expressionsPlugin = Expressions;
+ if (_typeof(currentProperty) === 'object') {
+ return searchProperty;
+ }
-var ExpressionManager = (function(){
- 'use strict';
- var ob = {};
- var Math = BMMath;
- var window = null;
- var document = null;
+ return currentProperty;
+ }
- function $bm_isInstanceOfArray(arr) {
- return arr.constructor === Array || arr.constructor === Float32Array;
- }
+ var propertyNameIndex = value.indexOf(currentPropertyName);
- function isNumerable(tOfV, v) {
- return tOfV === 'number' || tOfV === 'boolean' || tOfV === 'string' || v instanceof Number;
- }
+ if (propertyNameIndex !== -1) {
+ var index = parseInt(value.substr(propertyNameIndex + currentPropertyName.length), 10);
+ currentProperty = currentProperty[index];
- function $bm_neg(a){
- var tOfA = typeof a;
- if(tOfA === 'number' || tOfA === 'boolean' || a instanceof Number ){
- return -a;
- }
- if($bm_isInstanceOfArray(a)){
- var i, lenA = a.length;
- var retArr = [];
- for(i=0;i max){
- var mm = max;
- max = min;
- min = mm;
+ function getSpeedAtTime(frameNum) {
+ var delta = -0.01;
+ var v1 = this.getValueAtTime(frameNum);
+ var v2 = this.getValueAtTime(frameNum + delta);
+ var speed = 0;
+
+ if (v1.length) {
+ var i;
+
+ for (i = 0; i < v1.length; i += 1) {
+ speed += Math.pow(v2[i] - v1[i], 2);
}
- return Math.min(Math.max(num, min), max);
- }
- function radiansToDegrees(val) {
- return val/degToRads;
- }
- var radians_to_degrees = radiansToDegrees;
+ speed = Math.sqrt(speed) * 100;
+ } else {
+ speed = 0;
+ }
- function degreesToRadians(val) {
- return val*degToRads;
+ return speed;
}
- var degrees_to_radians = radiansToDegrees;
- var helperLengthArray = [0,0,0,0,0,0];
+ function getVelocityAtTime(frameNum) {
+ if (this.vel !== undefined) {
+ return this.vel;
+ }
- function length(arr1, arr2) {
- if (typeof arr1 === 'number' || arr1 instanceof Number) {
- arr2 = arr2 || 0;
- return Math.abs(arr1 - arr2);
- }
- if(!arr2) {
- arr2 = helperLengthArray;
- }
- var i, len = Math.min(arr1.length, arr2.length);
- var addedLength = 0;
- for (i = 0; i < len; i += 1) {
- addedLength += Math.pow(arr2[i] - arr1[i], 2);
- }
- return Math.sqrt(addedLength);
- }
+ var delta = -0.001; // frameNum += this.elem.data.st;
- function normalize(vec) {
- return div(vec, length(vec));
- }
+ var v1 = this.getValueAtTime(frameNum);
+ var v2 = this.getValueAtTime(frameNum + delta);
+ var velocity;
- function rgbToHsl(val) {
- var r = val[0]; var g = val[1]; var b = val[2];
- var max = Math.max(r, g, b), min = Math.min(r, g, b);
- var h, s, l = (max + min) / 2;
-
- if(max == min){
- h = s = 0; // achromatic
- }else{
- var d = max - min;
- s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
- switch(max){
- case r: h = (g - b) / d + (g < b ? 6 : 0); break;
- case g: h = (b - r) / d + 2; break;
- case b: h = (r - g) / d + 4; break;
- }
- h /= 6;
+ if (v1.length) {
+ velocity = createTypedArray('float32', v1.length);
+ var i;
+
+ for (i = 0; i < v1.length; i += 1) {
+ // removing frameRate
+ // if needed, don't add it here
+ // velocity[i] = this.elem.globalData.frameRate*((v2[i] - v1[i])/delta);
+ velocity[i] = (v2[i] - v1[i]) / delta;
}
+ } else {
+ velocity = (v2 - v1) / delta;
+ }
- return [h, s, l,val[3]];
+ return velocity;
}
- function hue2rgb(p, q, t){
- if(t < 0) t += 1;
- if(t > 1) t -= 1;
- if(t < 1/6) return p + (q - p) * 6 * t;
- if(t < 1/2) return q;
- if(t < 2/3) return p + (q - p) * (2/3 - t) * 6;
- return p;
+ function getStaticValueAtTime() {
+ return this.pv;
}
- function hslToRgb(val){
- var h = val[0];
- var s = val[1];
- var l = val[2];
+ function setGroupProperty(propertyGroup) {
+ this.propertyGroup = propertyGroup;
+ }
- var r, g, b;
+ return {
+ searchExpressions: searchExpressions,
+ getSpeedAtTime: getSpeedAtTime,
+ getVelocityAtTime: getVelocityAtTime,
+ getValueAtTime: getValueAtTime,
+ getStaticValueAtTime: getStaticValueAtTime,
+ setGroupProperty: setGroupProperty
+ };
+ }();
- if(s === 0){
- r = g = b = l; // achromatic
- }else{
+ function addPropertyDecorator() {
+ function loopOut(type, duration, durationFlag) {
+ if (!this.k || !this.keyframes) {
+ return this.pv;
+ }
- var q = l < 0.5 ? l * (1 + s) : l + s - l * s;
- var p = 2 * l - q;
- r = hue2rgb(p, q, h + 1/3);
- g = hue2rgb(p, q, h);
- b = hue2rgb(p, q, h - 1/3);
- }
+ type = type ? type.toLowerCase() : '';
+ var currentFrame = this.comp.renderedFrame;
+ var keyframes = this.keyframes;
+ var lastKeyFrame = keyframes[keyframes.length - 1].t;
- return [r, g , b, val[3]];
- }
+ if (currentFrame <= lastKeyFrame) {
+ return this.pv;
+ }
- function linear(t, tMin, tMax, value1, value2){
- if(value1 === undefined || value2 === undefined){
- value1 = tMin;
- value2 = tMax;
- tMin = 0;
- tMax = 1;
- }
- if(tMax < tMin) {
- var _tMin = tMax;
- tMax = tMin;
- tMin = _tMin;
- }
- if(t <= tMin) {
- return value1;
- }else if(t >= tMax){
- return value2;
- }
- var perc = tMax === tMin ? 0 : (t-tMin)/(tMax-tMin);
- if(!value1.length){
- return value1 + (value2-value1)*perc;
- }
- var i, len = value1.length;
- var arr = createTypedArray('float32', len);
- for(i=0;i keyframes.length - 1) {
+ duration = keyframes.length - 1;
}
- var rndm = BMMath.random();
- return min + rndm*(max-min);
- }
- function createPath(points, inTangents, outTangents, closed) {
- var i, len = points.length;
- var path = shape_pool.newElement();
- path.setPathData(!!closed, len);
- var arrPlaceholder = [0,0], inVertexPoint, outVertexPoint;
- for(i = 0; i < len; i += 1) {
- inVertexPoint = (inTangents && inTangents[i]) ? inTangents[i] : arrPlaceholder;
- outVertexPoint = (outTangents && outTangents[i]) ? outTangents[i] : arrPlaceholder;
- path.setTripleAt(points[i][0],points[i][1],outVertexPoint[0] + points[i][0],outVertexPoint[1] + points[i][1],inVertexPoint[0] + points[i][0],inVertexPoint[1] + points[i][1],i,true);
- }
- return path;
- }
-
- function initiateExpression(elem,data,property){
- var val = data.x;
- var needsVelocity = /velocity(?![\w\d])/.test(val);
- var _needsRandom = val.indexOf('random') !== -1;
- var elemType = elem.data.ty;
- var transform,$bm_transform,content,effect;
- var thisProperty = property;
- thisProperty.valueAtTime = thisProperty.getValueAtTime;
- Object.defineProperty(thisProperty, 'value', {
- get: function() {
- return thisProperty.v
- }
- })
- elem.comp.frameDuration = 1/elem.comp.globalData.frameRate;
- elem.comp.displayStartTime = 0;
- var inPoint = elem.data.ip/elem.comp.globalData.frameRate;
- var outPoint = elem.data.op/elem.comp.globalData.frameRate;
- var width = elem.data.sw ? elem.data.sw : 0;
- var height = elem.data.sh ? elem.data.sh : 0;
- var name = elem.data.nm;
- var loopIn, loop_in, loopOut, loop_out, smooth;
- var toWorld,fromWorld,fromComp,toComp,fromCompToSurface, position, rotation, anchorPoint, scale, thisLayer,thisComp,mask,valueAtTime,velocityAtTime;
- var __expression_functions = [];
- if(data.xf) {
- var i, len = data.xf.length;
- for(i = 0; i < len; i += 1) {
- __expression_functions[i] = eval('(function(){ return ' + data.xf[i] + '}())');
- }
+ firstKeyFrame = keyframes[keyframes.length - 1 - duration].t;
+ cycleDuration = lastKeyFrame - firstKeyFrame;
+ } else {
+ if (!duration) {
+ cycleDuration = Math.max(0, lastKeyFrame - this.elem.data.ip);
+ } else {
+ cycleDuration = Math.abs(lastKeyFrame - this.elem.comp.globalData.frameRate * duration);
}
- var scoped_bm_rt;
- var expression_function = eval('[function _expression_function(){' + val+';scoped_bm_rt=$bm_rt}' + ']')[0];
- var numKeys = property.kf ? data.k.length : 0;
-
- var active = !this.data || this.data.hd !== true;
-
- var wiggle = function wiggle(freq,amp){
- var i,j, len = this.pv.length ? this.pv.length : 1;
- var addedAmps = createTypedArray('float32', len);
- freq = 5;
- var iterations = Math.floor(time*freq);
- i = 0;
- j = 0;
- while(i1){
- for(j=0;j 1 ? 1 : t < 0 ? 0 : t;
- var mult = fn(t);
- if($bm_isInstanceOfArray(val1)) {
- var i, len = val1.length;
- var arr = createTypedArray('float32', len);
- for (i = 0; i < len; i += 1) {
- arr[i] = (val2[i] - val1[i]) * mult + val1[i];
- }
- return arr;
- } else {
- return (val2 - val1) * mult + val1;
- }
- }
+ return this.getValueAtTime(((currentFrame - firstKeyFrame) % cycleDuration + firstKeyFrame) / this.comp.globalData.frameRate, 0); // eslint-disable-line
+ }
- function nearestKey(time){
- var i, len = data.k.length,index,keyTime;
- if(!data.k.length || typeof(data.k[0]) === 'number'){
- index = 0;
- keyTime = 0;
- } else {
- index = -1;
- time *= elem.comp.globalData.frameRate;
- if (time < data.k[0].t) {
- index = 1;
- keyTime = data.k[0].t;
- } else {
- for(i=0;idata.k[i].t && time data.k[i+1].t - time){
- index = i + 2;
- keyTime = data.k[i+1].t;
- } else {
- index = i + 1;
- keyTime = data.k[i].t;
- }
- break;
- }
- }
- if(index === -1){
- index = i + 1;
- keyTime = data.k[i].t;
- }
- }
-
- }
- var ob = {};
- ob.index = index;
- ob.time = keyTime/elem.comp.globalData.frameRate;
- return ob;
- }
+ function loopIn(type, duration, durationFlag) {
+ if (!this.k) {
+ return this.pv;
+ }
- function key(ind){
- var ob, i, len;
- if(!data.k.length || typeof(data.k[0]) === 'number'){
- throw new Error('The property has no keyframe at index ' + ind);
- }
- ind -= 1;
- ob = {
- time: data.k[ind].t/elem.comp.globalData.frameRate,
- value: []
- };
- var arr;
- if(ind === data.k.length - 1 && !data.k[ind].h){
- arr = (data.k[ind].s || data.k[ind].s === 0) ? data.k[ind-1].s : data.k[ind].e;
- }else{
- arr = data.k[ind].s;
- }
- len = arr.length;
- for(i=0;i= firstKeyFrame) {
+ return this.pv;
+ }
- function timeToFrames(t, fps) {
- if (!t && t !== 0) {
- t = time;
- }
- if (!fps) {
- fps = elem.comp.globalData.frameRate;
- }
- return t * fps;
- }
+ var cycleDuration;
+ var lastKeyFrame;
- function seedRandom(seed){
- BMMath.seedrandom(randSeed + seed);
+ if (!durationFlag) {
+ if (!duration || duration > keyframes.length - 1) {
+ duration = keyframes.length - 1;
}
- function sourceRectAtTime() {
- return elem.sourceRectAtTime();
+ lastKeyFrame = keyframes[duration].t;
+ cycleDuration = lastKeyFrame - firstKeyFrame;
+ } else {
+ if (!duration) {
+ cycleDuration = Math.max(0, this.elem.data.op - firstKeyFrame);
+ } else {
+ cycleDuration = Math.abs(this.elem.comp.globalData.frameRate * duration);
}
- function substring(init, end) {
- if(typeof value === 'string') {
- if(end === undefined) {
- return value.substring(init)
- }
- return value.substring(init, end)
- }
- return '';
- }
+ lastKeyFrame = firstKeyFrame + cycleDuration;
+ }
- function substr(init, end) {
- if(typeof value === 'string') {
- if(end === undefined) {
- return value.substr(init)
- }
- return value.substr(init, end)
- }
- return '';
- }
-
- var time, velocity, value, text, textIndex, textTotal, selectorValue;
- var index = elem.data.ind;
- var hasParent = !!(elem.hierarchy && elem.hierarchy.length);
- var parent;
- var randSeed = Math.floor(Math.random()*1000000);
- var globalData = elem.globalData;
- function executeExpression(_value) {
- // globalData.pushExpression();
- value = _value;
- if (_needsRandom) {
- seedRandom(randSeed);
- }
- if (this.frameExpressionId === elem.globalData.frameId && this.propType !== 'textSelector') {
- return value;
- }
- if(this.propType === 'textSelector'){
- textIndex = this.textIndex;
- textTotal = this.textTotal;
- selectorValue = this.selectorValue;
- }
- if (!thisLayer) {
- text = elem.layerInterface.text;
- thisLayer = elem.layerInterface;
- thisComp = elem.comp.compInterface;
- toWorld = thisLayer.toWorld.bind(thisLayer);
- fromWorld = thisLayer.fromWorld.bind(thisLayer);
- fromComp = thisLayer.fromComp.bind(thisLayer);
- toComp = thisLayer.toComp.bind(thisLayer);
- mask = thisLayer.mask ? thisLayer.mask.bind(thisLayer) : null;
- fromCompToSurface = fromComp;
- }
- if (!transform) {
- transform = elem.layerInterface("ADBE Transform Group");
- $bm_transform = transform;
- if(transform) {
- anchorPoint = transform.anchorPoint;
- /*position = transform.position;
- rotation = transform.rotation;
- scale = transform.scale;*/
- }
- }
-
- if (elemType === 4 && !content) {
- content = thisLayer("ADBE Root Vectors Group");
- }
- if (!effect) {
- effect = thisLayer(4);
- }
- hasParent = !!(elem.hierarchy && elem.hierarchy.length);
- if (hasParent && !parent) {
- parent = elem.hierarchy[0].layerInterface;
- }
- time = this.comp.renderedFrame/this.comp.globalData.frameRate;
- if (needsVelocity) {
- velocity = velocityAtTime(time);
- }
- expression_function();
- this.frameExpressionId = elem.globalData.frameId;
+ var i;
+ var len;
+ var ret;
+ if (type === 'pingpong') {
+ var iterations = Math.floor((firstKeyFrame - currentFrame) / cycleDuration);
- //TODO: Check if it's possible to return on ShapeInterface the .v value
- if (scoped_bm_rt.propType === "shape") {
- scoped_bm_rt = scoped_bm_rt.v;
- }
- // globalData.popExpression();
- return scoped_bm_rt;
+ if (iterations % 2 === 0) {
+ return this.getValueAtTime(((firstKeyFrame - currentFrame) % cycleDuration + firstKeyFrame) / this.comp.globalData.frameRate, 0); // eslint-disable-line
}
- return executeExpression;
- }
+ } else if (type === 'offset') {
+ var initV = this.getValueAtTime(firstKeyFrame / this.comp.globalData.frameRate, 0);
+ var endV = this.getValueAtTime(lastKeyFrame / this.comp.globalData.frameRate, 0);
+ var current = this.getValueAtTime((cycleDuration - (firstKeyFrame - currentFrame) % cycleDuration + firstKeyFrame) / this.comp.globalData.frameRate, 0);
+ var repeats = Math.floor((firstKeyFrame - currentFrame) / cycleDuration) + 1;
- ob.initiateExpression = initiateExpression;
- return ob;
-}());
-var expressionHelpers = (function(){
+ if (this.pv.length) {
+ ret = new Array(initV.length);
+ len = ret.length;
- function searchExpressions(elem,data,prop){
- if(data.x){
- prop.k = true;
- prop.x = true;
- prop.initiateExpression = ExpressionManager.initiateExpression;
- prop.effectsSequence.push(prop.initiateExpression(elem,data,prop).bind(prop));
- }
- }
+ for (i = 0; i < len; i += 1) {
+ ret[i] = current[i] - (endV[i] - initV[i]) * repeats;
+ }
- function getValueAtTime(frameNum) {
- frameNum *= this.elem.globalData.frameRate;
- frameNum -= this.offsetTime;
- if(frameNum !== this._cachingAtTime.lastFrame) {
- this._cachingAtTime.lastIndex = this._cachingAtTime.lastFrame < frameNum ? this._cachingAtTime.lastIndex : 0;
- this._cachingAtTime.value = this.interpolateValue(frameNum, this._cachingAtTime);
- this._cachingAtTime.lastFrame = frameNum;
+ return ret;
}
- return this._cachingAtTime.value;
- }
+ return current - (endV - initV) * repeats;
+ } else if (type === 'continue') {
+ var firstValue = this.getValueAtTime(firstKeyFrame / this.comp.globalData.frameRate, 0);
+ var nextFirstValue = this.getValueAtTime((firstKeyFrame + 0.001) / this.comp.globalData.frameRate, 0);
- function getSpeedAtTime(frameNum) {
- var delta = -0.01;
- var v1 = this.getValueAtTime(frameNum);
- var v2 = this.getValueAtTime(frameNum + delta);
- var speed = 0;
- if(v1.length){
- var i;
- for(i=0;i keyframes.length - 1){
- duration = keyframes.length - 1;
- }
- firstKeyFrame = keyframes[keyframes.length - 1 - duration].t;
- cycleDuration = lastKeyFrame - firstKeyFrame;
- } else {
- if(!duration){
- cycleDuration = Math.max(0,lastKeyFrame - this.elem.data.ip);
- } else {
- cycleDuration = Math.abs(lastKeyFrame - elem.comp.globalData.frameRate*duration);
- }
- firstKeyFrame = lastKeyFrame - cycleDuration;
- }
- var i, len, ret;
- if(type === 'pingpong') {
- var iterations = Math.floor((currentFrame - firstKeyFrame)/cycleDuration);
- if(iterations % 2 !== 0){
- return this.getValueAtTime(((cycleDuration - (currentFrame - firstKeyFrame) % cycleDuration + firstKeyFrame)) / this.comp.globalData.frameRate, 0);
- }
- } else if(type === 'offset'){
- var initV = this.getValueAtTime(firstKeyFrame / this.comp.globalData.frameRate, 0);
- var endV = this.getValueAtTime(lastKeyFrame / this.comp.globalData.frameRate, 0);
- var current = this.getValueAtTime(((currentFrame - firstKeyFrame) % cycleDuration + firstKeyFrame) / this.comp.globalData.frameRate, 0);
- var repeats = Math.floor((currentFrame - firstKeyFrame)/cycleDuration);
- if(this.pv.length){
- ret = new Array(initV.length);
- len = ret.length;
- for(i=0;i=firstKeyFrame){
- return this.pv;
- }else{
- var cycleDuration, lastKeyFrame;
- if(!durationFlag){
- if(!duration || duration > keyframes.length - 1){
- duration = keyframes.length - 1;
- }
- lastKeyFrame = keyframes[duration].t;
- cycleDuration = lastKeyFrame - firstKeyFrame;
- } else {
- if(!duration){
- cycleDuration = Math.max(0,this.elem.data.op - firstKeyFrame);
- } else {
- cycleDuration = Math.abs(elem.comp.globalData.frameRate*duration);
- }
- lastKeyFrame = firstKeyFrame + cycleDuration;
- }
- var i, len, ret;
- if(type === 'pingpong') {
- var iterations = Math.floor((firstKeyFrame - currentFrame)/cycleDuration);
- if(iterations % 2 === 0){
- return this.getValueAtTime((((firstKeyFrame - currentFrame)%cycleDuration + firstKeyFrame)) / this.comp.globalData.frameRate, 0);
- }
- } else if(type === 'offset'){
- var initV = this.getValueAtTime(firstKeyFrame / this.comp.globalData.frameRate, 0);
- var endV = this.getValueAtTime(lastKeyFrame / this.comp.globalData.frameRate, 0);
- var current = this.getValueAtTime((cycleDuration - (firstKeyFrame - currentFrame)%cycleDuration + firstKeyFrame) / this.comp.globalData.frameRate, 0);
- var repeats = Math.floor((firstKeyFrame - currentFrame)/cycleDuration)+1;
- if(this.pv.length){
- ret = new Array(initV.length);
- len = ret.length;
- for(i=0;i 1 ? (endFrame - initFrame) / (samples - 1) : 1;
+ var i = 0;
+ var j = 0;
+ var value;
+
+ if (this.pv.length) {
+ value = createTypedArray('float32', this.pv.length);
+ } else {
+ value = 0;
+ }
+
+ var sampleValue;
+
+ while (i < samples) {
+ sampleValue = this.getValueAtTime(initFrame + i * sampleFrequency);
- function smooth(width, samples) {
- if (!this.k){
- return this.pv;
- }
- width = (width || 0.4) * 0.5;
- samples = Math.floor(samples || 5);
- if (samples <= 1) {
- return this.pv;
- }
- var currentTime = this.comp.renderedFrame / this.comp.globalData.frameRate;
- var initFrame = currentTime - width;
- var endFrame = currentTime + width;
- var sampleFrequency = samples > 1 ? (endFrame - initFrame) / (samples - 1) : 1;
- var i = 0, j = 0;
- var value;
if (this.pv.length) {
- value = createTypedArray('float32', this.pv.length);
- } else {
- value = 0;
- }
- var sampleValue;
- while (i < samples) {
- sampleValue = this.getValueAtTime(initFrame + i * sampleFrequency);
- if(this.pv.length) {
- for (j = 0; j < this.pv.length; j += 1) {
- value[j] += sampleValue[j];
- }
- } else {
- value += sampleValue;
- }
- i += 1;
- }
- if(this.pv.length) {
- for (j = 0; j < this.pv.length; j += 1) {
- value[j] /= samples;
- }
+ for (j = 0; j < this.pv.length; j += 1) {
+ value[j] += sampleValue[j];
+ }
} else {
- value /= samples;
+ value += sampleValue;
}
- return value;
- }
- function getValueAtTime(frameNum) {
- frameNum *= this.elem.globalData.frameRate;
- frameNum -= this.offsetTime;
- if(frameNum !== this._cachingAtTime.lastFrame) {
- this._cachingAtTime.lastIndex = this._cachingAtTime.lastFrame < frameNum ? this._cachingAtTime.lastIndex : 0;
- this._cachingAtTime.value = this.interpolateValue(frameNum, this._cachingAtTime);
- this._cachingAtTime.lastFrame = frameNum;
+ i += 1;
+ }
+
+ if (this.pv.length) {
+ for (j = 0; j < this.pv.length; j += 1) {
+ value[j] /= samples;
}
- return this._cachingAtTime.value;
+ } else {
+ value /= samples;
+ }
+ return value;
}
function getTransformValueAtTime(time) {
- console.warn('Transform at time not supported');
- }
+ if (!this._transformCachingAtTime) {
+ this._transformCachingAtTime = {
+ v: new Matrix()
+ };
+ } /// /
- function getTransformStaticValueAtTime(time) {
- }
+ var matrix = this._transformCachingAtTime.v;
+ matrix.cloneFromProps(this.pre.props);
- var getTransformProperty = TransformPropertyFactory.getTransformProperty;
- TransformPropertyFactory.getTransformProperty = function(elem, data, container) {
- var prop = getTransformProperty(elem, data, container);
- if(prop.dynamicProperties.length) {
- prop.getValueAtTime = getTransformValueAtTime.bind(prop);
+ if (this.appliedTransformations < 1) {
+ var anchor = this.a.getValueAtTime(time);
+ matrix.translate(-anchor[0] * this.a.mult, -anchor[1] * this.a.mult, anchor[2] * this.a.mult);
+ }
+
+ if (this.appliedTransformations < 2) {
+ var scale = this.s.getValueAtTime(time);
+ matrix.scale(scale[0] * this.s.mult, scale[1] * this.s.mult, scale[2] * this.s.mult);
+ }
+
+ if (this.sk && this.appliedTransformations < 3) {
+ var skew = this.sk.getValueAtTime(time);
+ var skewAxis = this.sa.getValueAtTime(time);
+ matrix.skewFromAxis(-skew * this.sk.mult, skewAxis * this.sa.mult);
+ }
+
+ if (this.r && this.appliedTransformations < 4) {
+ var rotation = this.r.getValueAtTime(time);
+ matrix.rotate(-rotation * this.r.mult);
+ } else if (!this.r && this.appliedTransformations < 4) {
+ var rotationZ = this.rz.getValueAtTime(time);
+ var rotationY = this.ry.getValueAtTime(time);
+ var rotationX = this.rx.getValueAtTime(time);
+ var orientation = this.or.getValueAtTime(time);
+ matrix.rotateZ(-rotationZ * this.rz.mult).rotateY(rotationY * this.ry.mult).rotateX(rotationX * this.rx.mult).rotateZ(-orientation[2] * this.or.mult).rotateY(orientation[1] * this.or.mult).rotateX(orientation[0] * this.or.mult);
+ }
+
+ if (this.data.p && this.data.p.s) {
+ var positionX = this.px.getValueAtTime(time);
+ var positionY = this.py.getValueAtTime(time);
+
+ if (this.data.p.z) {
+ var positionZ = this.pz.getValueAtTime(time);
+ matrix.translate(positionX * this.px.mult, positionY * this.py.mult, -positionZ * this.pz.mult);
} else {
- prop.getValueAtTime = getTransformStaticValueAtTime.bind(prop);
+ matrix.translate(positionX * this.px.mult, positionY * this.py.mult, 0);
}
- prop.setGroupProperty = expressionHelpers.setGroupProperty;
- return prop;
+ } else {
+ var position = this.p.getValueAtTime(time);
+ matrix.translate(position[0] * this.p.mult, position[1] * this.p.mult, -position[2] * this.p.mult);
+ }
+
+ return matrix; /// /
+ }
+
+ function getTransformStaticValueAtTime() {
+ return this.v.clone(new Matrix());
+ }
+
+ var getTransformProperty = TransformPropertyFactory.getTransformProperty;
+
+ TransformPropertyFactory.getTransformProperty = function (elem, data, container) {
+ var prop = getTransformProperty(elem, data, container);
+
+ if (prop.dynamicProperties.length) {
+ prop.getValueAtTime = getTransformValueAtTime.bind(prop);
+ } else {
+ prop.getValueAtTime = getTransformStaticValueAtTime.bind(prop);
+ }
+
+ prop.setGroupProperty = expressionHelpers.setGroupProperty;
+ return prop;
};
var propertyGetProp = PropertyFactory.getProp;
- PropertyFactory.getProp = function(elem,data,type, mult, container){
- var prop = propertyGetProp(elem,data,type, mult, container);
- //prop.getVelocityAtTime = getVelocityAtTime;
- //prop.loopOut = loopOut;
- //prop.loopIn = loopIn;
- if(prop.kf){
- prop.getValueAtTime = expressionHelpers.getValueAtTime.bind(prop);
- } else {
- prop.getValueAtTime = expressionHelpers.getStaticValueAtTime.bind(prop);
- }
- prop.setGroupProperty = expressionHelpers.setGroupProperty;
- prop.loopOut = loopOut;
- prop.loopIn = loopIn;
- prop.smooth = smooth;
- prop.getVelocityAtTime = expressionHelpers.getVelocityAtTime.bind(prop);
- prop.getSpeedAtTime = expressionHelpers.getSpeedAtTime.bind(prop);
- prop.numKeys = data.a === 1 ? data.k.length : 0;
- prop.propertyIndex = data.ix;
- var value = 0;
- if(type !== 0) {
- value = createTypedArray('float32', data.a === 1 ? data.k[0].s.length : data.k.length);
- }
- prop._cachingAtTime = {
- lastFrame: initialDefaultFrame,
- lastIndex: 0,
- value: value
- };
- expressionHelpers.searchExpressions(elem,data,prop);
- if(prop.k){
- container.addDynamicProperty(prop);
- }
- return prop;
+ PropertyFactory.getProp = function (elem, data, type, mult, container) {
+ var prop = propertyGetProp(elem, data, type, mult, container); // prop.getVelocityAtTime = getVelocityAtTime;
+ // prop.loopOut = loopOut;
+ // prop.loopIn = loopIn;
+
+ if (prop.kf) {
+ prop.getValueAtTime = expressionHelpers.getValueAtTime.bind(prop);
+ } else {
+ prop.getValueAtTime = expressionHelpers.getStaticValueAtTime.bind(prop);
+ }
+
+ prop.setGroupProperty = expressionHelpers.setGroupProperty;
+ prop.loopOut = loopOut;
+ prop.loopIn = loopIn;
+ prop.smooth = smooth;
+ prop.getVelocityAtTime = expressionHelpers.getVelocityAtTime.bind(prop);
+ prop.getSpeedAtTime = expressionHelpers.getSpeedAtTime.bind(prop);
+ prop.numKeys = data.a === 1 ? data.k.length : 0;
+ prop.propertyIndex = data.ix;
+ var value = 0;
+
+ if (type !== 0) {
+ value = createTypedArray('float32', data.a === 1 ? data.k[0].s.length : data.k.length);
+ }
+
+ prop._cachingAtTime = {
+ lastFrame: initialDefaultFrame,
+ lastIndex: 0,
+ value: value
+ };
+ expressionHelpers.searchExpressions(elem, data, prop);
+
+ if (prop.k) {
+ container.addDynamicProperty(prop);
+ }
+
+ return prop;
};
function getShapeValueAtTime(frameNum) {
- //For now this caching object is created only when needed instead of creating it when the shape is initialized.
- if (!this._cachingAtTime) {
- this._cachingAtTime = {
- shapeValue: shape_pool.clone(this.pv),
- lastIndex: 0,
- lastTime: initialDefaultFrame
- };
- }
-
- frameNum *= this.elem.globalData.frameRate;
- frameNum -= this.offsetTime;
- if(frameNum !== this._cachingAtTime.lastTime) {
- this._cachingAtTime.lastIndex = this._cachingAtTime.lastTime < frameNum ? this._caching.lastIndex : 0;
- this._cachingAtTime.lastTime = frameNum;
- this.interpolateShape(frameNum, this._cachingAtTime.shapeValue, this._cachingAtTime);
- }
- return this._cachingAtTime.shapeValue;
+ // For now this caching object is created only when needed instead of creating it when the shape is initialized.
+ if (!this._cachingAtTime) {
+ this._cachingAtTime = {
+ shapeValue: shapePool.clone(this.pv),
+ lastIndex: 0,
+ lastTime: initialDefaultFrame
+ };
+ }
+
+ frameNum *= this.elem.globalData.frameRate;
+ frameNum -= this.offsetTime;
+
+ if (frameNum !== this._cachingAtTime.lastTime) {
+ this._cachingAtTime.lastIndex = this._cachingAtTime.lastTime < frameNum ? this._caching.lastIndex : 0;
+ this._cachingAtTime.lastTime = frameNum;
+ this.interpolateShape(frameNum, this._cachingAtTime.shapeValue, this._cachingAtTime);
+ }
+
+ return this._cachingAtTime.shapeValue;
}
var ShapePropertyConstructorFunction = ShapePropertyFactory.getConstructorFunction();
var KeyframedShapePropertyConstructorFunction = ShapePropertyFactory.getKeyframedConstructorFunction();
- function ShapeExpressions(){}
+ function ShapeExpressions() {}
+
ShapeExpressions.prototype = {
- vertices: function(prop, time){
- if (this.k) {
- this.getValue();
- }
- var shapePath = this.v;
- if(time !== undefined) {
- shapePath = this.getValueAtTime(time, 0);
- }
- var i, len = shapePath._length;
- var vertices = shapePath[prop];
- var points = shapePath.v;
- var arr = createSizedArray(len);
- for(i = 0; i < len; i += 1) {
- if(prop === 'i' || prop === 'o') {
- arr[i] = [vertices[i][0] - points[i][0], vertices[i][1] - points[i][1]];
- } else {
- arr[i] = [vertices[i][0], vertices[i][1]];
- }
-
- }
- return arr;
- },
- points: function(time){
- return this.vertices('v', time);
- },
- inTangents: function(time){
- return this.vertices('i', time);
- },
- outTangents: function(time){
- return this.vertices('o', time);
- },
- isClosed: function(){
- return this.v.c;
- },
- pointOnPath: function(perc, time){
- var shapePath = this.v;
- if(time !== undefined) {
- shapePath = this.getValueAtTime(time, 0);
- }
- if(!this._segmentsLength) {
- this._segmentsLength = bez.getSegmentsLength(shapePath);
- }
+ vertices: function vertices(prop, time) {
+ if (this.k) {
+ this.getValue();
+ }
+
+ var shapePath = this.v;
+
+ if (time !== undefined) {
+ shapePath = this.getValueAtTime(time, 0);
+ }
+
+ var i;
+ var len = shapePath._length;
+ var vertices = shapePath[prop];
+ var points = shapePath.v;
+ var arr = createSizedArray(len);
+
+ for (i = 0; i < len; i += 1) {
+ if (prop === 'i' || prop === 'o') {
+ arr[i] = [vertices[i][0] - points[i][0], vertices[i][1] - points[i][1]];
+ } else {
+ arr[i] = [vertices[i][0], vertices[i][1]];
+ }
+ }
- var segmentsLength = this._segmentsLength;
- var lengths = segmentsLength.lengths;
- var lengthPos = segmentsLength.totalLength * perc;
- var i = 0, len = lengths.length;
- var j = 0, jLen;
- var accumulatedLength = 0, pt;
- while(i < len) {
- if(accumulatedLength + lengths[i].addedLength > lengthPos) {
- var initIndex = i;
- var endIndex = (shapePath.c && i === len - 1) ? 0 : i + 1;
- var segmentPerc = (lengthPos - accumulatedLength)/lengths[i].addedLength;
- pt = bez.getPointInSegment(shapePath.v[initIndex], shapePath.v[endIndex], shapePath.o[initIndex], shapePath.i[endIndex], segmentPerc, lengths[i]);
- break;
- } else {
- accumulatedLength += lengths[i].addedLength;
- }
- i += 1;
- }
- if(!pt){
- pt = shapePath.c ? [shapePath.v[0][0],shapePath.v[0][1]]:[shapePath.v[shapePath._length-1][0],shapePath.v[shapePath._length-1][1]];
- }
- return pt;
- },
- vectorOnPath: function(perc, time, vectorType){
- //perc doesn't use triple equality because it can be a Number object as well as a primitive.
- perc = perc == 1 ? this.v.c ? 0 : 0.999 : perc;
- var pt1 = this.pointOnPath(perc, time);
- var pt2 = this.pointOnPath(perc + 0.001, time);
- var xLength = pt2[0] - pt1[0];
- var yLength = pt2[1] - pt1[1];
- var magnitude = Math.sqrt(Math.pow(xLength,2) + Math.pow(yLength,2));
- var unitVector = vectorType === 'tangent' ? [xLength/magnitude, yLength/magnitude] : [-yLength/magnitude, xLength/magnitude];
- return unitVector;
- },
- tangentOnPath: function(perc, time){
- return this.vectorOnPath(perc, time, 'tangent');
- },
- normalOnPath: function(perc, time){
- return this.vectorOnPath(perc, time, 'normal');
- },
- setGroupProperty: expressionHelpers.setGroupProperty,
- getValueAtTime: expressionHelpers.getStaticValueAtTime
+ return arr;
+ },
+ points: function points(time) {
+ return this.vertices('v', time);
+ },
+ inTangents: function inTangents(time) {
+ return this.vertices('i', time);
+ },
+ outTangents: function outTangents(time) {
+ return this.vertices('o', time);
+ },
+ isClosed: function isClosed() {
+ return this.v.c;
+ },
+ pointOnPath: function pointOnPath(perc, time) {
+ var shapePath = this.v;
+
+ if (time !== undefined) {
+ shapePath = this.getValueAtTime(time, 0);
+ }
+
+ if (!this._segmentsLength) {
+ this._segmentsLength = bez.getSegmentsLength(shapePath);
+ }
+
+ var segmentsLength = this._segmentsLength;
+ var lengths = segmentsLength.lengths;
+ var lengthPos = segmentsLength.totalLength * perc;
+ var i = 0;
+ var len = lengths.length;
+ var accumulatedLength = 0;
+ var pt;
+
+ while (i < len) {
+ if (accumulatedLength + lengths[i].addedLength > lengthPos) {
+ var initIndex = i;
+ var endIndex = shapePath.c && i === len - 1 ? 0 : i + 1;
+ var segmentPerc = (lengthPos - accumulatedLength) / lengths[i].addedLength;
+ pt = bez.getPointInSegment(shapePath.v[initIndex], shapePath.v[endIndex], shapePath.o[initIndex], shapePath.i[endIndex], segmentPerc, lengths[i]);
+ break;
+ } else {
+ accumulatedLength += lengths[i].addedLength;
+ }
+
+ i += 1;
+ }
+
+ if (!pt) {
+ pt = shapePath.c ? [shapePath.v[0][0], shapePath.v[0][1]] : [shapePath.v[shapePath._length - 1][0], shapePath.v[shapePath._length - 1][1]];
+ }
+
+ return pt;
+ },
+ vectorOnPath: function vectorOnPath(perc, time, vectorType) {
+ // perc doesn't use triple equality because it can be a Number object as well as a primitive.
+ if (perc == 1) {
+ // eslint-disable-line eqeqeq
+ perc = this.v.c;
+ } else if (perc == 0) {
+ // eslint-disable-line eqeqeq
+ perc = 0.999;
+ }
+
+ var pt1 = this.pointOnPath(perc, time);
+ var pt2 = this.pointOnPath(perc + 0.001, time);
+ var xLength = pt2[0] - pt1[0];
+ var yLength = pt2[1] - pt1[1];
+ var magnitude = Math.sqrt(Math.pow(xLength, 2) + Math.pow(yLength, 2));
+
+ if (magnitude === 0) {
+ return [0, 0];
+ }
+
+ var unitVector = vectorType === 'tangent' ? [xLength / magnitude, yLength / magnitude] : [-yLength / magnitude, xLength / magnitude];
+ return unitVector;
+ },
+ tangentOnPath: function tangentOnPath(perc, time) {
+ return this.vectorOnPath(perc, time, 'tangent');
+ },
+ normalOnPath: function normalOnPath(perc, time) {
+ return this.vectorOnPath(perc, time, 'normal');
+ },
+ setGroupProperty: expressionHelpers.setGroupProperty,
+ getValueAtTime: expressionHelpers.getStaticValueAtTime
};
extendPrototype([ShapeExpressions], ShapePropertyConstructorFunction);
extendPrototype([ShapeExpressions], KeyframedShapePropertyConstructorFunction);
KeyframedShapePropertyConstructorFunction.prototype.getValueAtTime = getShapeValueAtTime;
KeyframedShapePropertyConstructorFunction.prototype.initiateExpression = ExpressionManager.initiateExpression;
-
var propertyGetShapeProp = ShapePropertyFactory.getShapeProp;
- ShapePropertyFactory.getShapeProp = function(elem,data,type, arr, trims){
- var prop = propertyGetShapeProp(elem,data,type, arr, trims);
- prop.propertyIndex = data.ix;
- prop.lock = false;
- if(type === 3){
- expressionHelpers.searchExpressions(elem,data.pt,prop);
- } else if(type === 4){
- expressionHelpers.searchExpressions(elem,data.ks,prop);
- }
- if(prop.k){
- elem.addDynamicProperty(prop);
- }
- return prop;
+
+ ShapePropertyFactory.getShapeProp = function (elem, data, type, arr, trims) {
+ var prop = propertyGetShapeProp(elem, data, type, arr, trims);
+ prop.propertyIndex = data.ix;
+ prop.lock = false;
+
+ if (type === 3) {
+ expressionHelpers.searchExpressions(elem, data.pt, prop);
+ } else if (type === 4) {
+ expressionHelpers.searchExpressions(elem, data.ks, prop);
+ }
+
+ if (prop.k) {
+ elem.addDynamicProperty(prop);
+ }
+
+ return prop;
};
-}());
-(function addDecorator() {
+ }
- function searchExpressions(){
- if(this.data.d.x){
- this.calculateExpression = ExpressionManager.initiateExpression.bind(this)(this.elem,this.data.d,this);
- this.addEffect(this.getExpressionValue.bind(this));
- return true;
- }
- }
+ function initialize$1() {
+ addPropertyDecorator();
+ }
- TextProperty.prototype.getExpressionValue = function(currentValue, text) {
- var newValue = this.calculateExpression(text);
- if(currentValue.t !== newValue) {
- var newData = {};
- this.copyData(newData, currentValue);
- newData.t = newValue.toString();
- newData.__complete = false;
- return newData;
- }
- return currentValue;
+ function addDecorator() {
+ function searchExpressions() {
+ if (this.data.d.x) {
+ this.calculateExpression = ExpressionManager.initiateExpression.bind(this)(this.elem, this.data.d, this);
+ this.addEffect(this.getExpressionValue.bind(this));
+ return true;
+ }
+
+ return null;
}
- TextProperty.prototype.searchProperty = function(){
+ TextProperty.prototype.getExpressionValue = function (currentValue, text) {
+ var newValue = this.calculateExpression(text);
+
+ if (currentValue.t !== newValue) {
+ var newData = {};
+ this.copyData(newData, currentValue);
+ newData.t = newValue.toString();
+ newData.__complete = false;
+ return newData;
+ }
+
+ return currentValue;
+ };
- var isKeyframed = this.searchKeyframes();
- var hasExpressions = this.searchExpressions();
- this.kf = isKeyframed || hasExpressions;
- return this.kf;
+ TextProperty.prototype.searchProperty = function () {
+ var isKeyframed = this.searchKeyframes();
+ var hasExpressions = this.searchExpressions();
+ this.kf = isKeyframed || hasExpressions;
+ return this.kf;
};
TextProperty.prototype.searchExpressions = searchExpressions;
-
-}());
-var ShapeExpressionInterface = (function(){
-
- function iterateElements(shapes,view, propertyGroup){
- var arr = [];
- var i, len = shapes ? shapes.length : 0;
- for(i=0;i= max) {
+ colorValue = inputDelta < 0 ? outputBlack : outputWhite;
+ } else {
+ colorValue = outputBlack + outputDelta * Math.pow((perc - inputBlack) / inputDelta, 1 / gamma);
+ }
- Object.defineProperty(_thisFunction, "zPosition", {
- get: ExpressionPropertyInterface(transform.pz)
- });
+ table[pos] = colorValue;
+ pos += 1;
+ cnt += 256 / (segments - 1);
+ }
- Object.defineProperty(_thisFunction, "anchorPoint", {
- get: ExpressionPropertyInterface(transform.a)
- });
+ return table.join(' ');
+ };
- Object.defineProperty(_thisFunction, "opacity", {
- get: ExpressionPropertyInterface(transform.o)
- });
+ SVGProLevelsFilter.prototype.renderFrame = function (forceRender) {
+ if (forceRender || this.filterManager._mdf) {
+ var val;
+ var effectElements = this.filterManager.effectElements;
- Object.defineProperty(_thisFunction, "skew", {
- get: ExpressionPropertyInterface(transform.sk)
- });
+ if (this.feFuncRComposed && (forceRender || effectElements[3].p._mdf || effectElements[4].p._mdf || effectElements[5].p._mdf || effectElements[6].p._mdf || effectElements[7].p._mdf)) {
+ val = this.getTableValue(effectElements[3].p.v, effectElements[4].p.v, effectElements[5].p.v, effectElements[6].p.v, effectElements[7].p.v);
+ this.feFuncRComposed.setAttribute('tableValues', val);
+ this.feFuncGComposed.setAttribute('tableValues', val);
+ this.feFuncBComposed.setAttribute('tableValues', val);
+ }
- Object.defineProperty(_thisFunction, "skewAxis", {
- get: ExpressionPropertyInterface(transform.sa)
- });
+ if (this.feFuncR && (forceRender || effectElements[10].p._mdf || effectElements[11].p._mdf || effectElements[12].p._mdf || effectElements[13].p._mdf || effectElements[14].p._mdf)) {
+ val = this.getTableValue(effectElements[10].p.v, effectElements[11].p.v, effectElements[12].p.v, effectElements[13].p.v, effectElements[14].p.v);
+ this.feFuncR.setAttribute('tableValues', val);
+ }
- Object.defineProperty(_thisFunction, "orientation", {
- get: ExpressionPropertyInterface(transform.or)
- });
+ if (this.feFuncG && (forceRender || effectElements[17].p._mdf || effectElements[18].p._mdf || effectElements[19].p._mdf || effectElements[20].p._mdf || effectElements[21].p._mdf)) {
+ val = this.getTableValue(effectElements[17].p.v, effectElements[18].p.v, effectElements[19].p.v, effectElements[20].p.v, effectElements[21].p.v);
+ this.feFuncG.setAttribute('tableValues', val);
+ }
- return _thisFunction;
- };
-}());
-var ProjectInterface = (function (){
+ if (this.feFuncB && (forceRender || effectElements[24].p._mdf || effectElements[25].p._mdf || effectElements[26].p._mdf || effectElements[27].p._mdf || effectElements[28].p._mdf)) {
+ val = this.getTableValue(effectElements[24].p.v, effectElements[25].p.v, effectElements[26].p.v, effectElements[27].p.v, effectElements[28].p.v);
+ this.feFuncB.setAttribute('tableValues', val);
+ }
- function registerComposition(comp){
- this.compositions.push(comp);
+ if (this.feFuncA && (forceRender || effectElements[31].p._mdf || effectElements[32].p._mdf || effectElements[33].p._mdf || effectElements[34].p._mdf || effectElements[35].p._mdf)) {
+ val = this.getTableValue(effectElements[31].p.v, effectElements[32].p.v, effectElements[33].p.v, effectElements[34].p.v, effectElements[35].p.v);
+ this.feFuncA.setAttribute('tableValues', val);
+ }
}
+ };
- return function(){
- function _thisProjectFunction(name){
- var i = 0, len = this.compositions.length;
- while(i horizontal & vertical
+ // 2 -> horizontal only
+ // 3 -> vertical only
+ //
-GroupEffect.prototype.getValue = GroupEffect.prototype.iterateDynamicProperties;
+ var dimensions = this.filterManager.effectElements[1].p.v;
+ var sigmaX = dimensions == 3 ? 0 : sigma; // eslint-disable-line eqeqeq
-GroupEffect.prototype.init = function(data,element){
- this.data = data;
- this.effectElements = [];
- this.initDynamicPropertyContainer(element);
- var i, len = this.data.ef.length;
- var eff, effects = this.data.ef;
- for(i=0;i off -> duplicate
+ // 1 -> on -> wrap
- var _isFrozen = false;
+ var edgeMode = this.filterManager.effectElements[2].p.v == 1 ? 'wrap' : 'duplicate'; // eslint-disable-line eqeqeq
- function setLocationHref (href) {
- locationHref = href;
+ this.feGaussianBlur.setAttribute('edgeMode', edgeMode);
}
+ };
- function searchAnimations() {
- if (standalone === true) {
- animationManager.searchAnimations(animationData, standalone, renderer);
- } else {
- animationManager.searchAnimations();
- }
- }
+ function TransformEffect() {}
- function setSubframeRendering(flag) {
- subframeEnabled = flag;
- }
+ TransformEffect.prototype.init = function (effectsManager) {
+ this.effectsManager = effectsManager;
+ this.type = effectTypes.TRANSFORM_EFFECT;
+ this.matrix = new Matrix();
+ this.opacity = -1;
+ this._mdf = false;
+ this._opMdf = false;
+ };
- function loadAnimation(params) {
- if (standalone === true) {
- params.animationData = JSON.parse(animationData);
- }
- return animationManager.loadAnimation(params);
- }
+ TransformEffect.prototype.renderFrame = function (forceFrame) {
+ this._opMdf = false;
+ this._mdf = false;
- function setQuality(value) {
- if (typeof value === 'string') {
- switch (value) {
- case 'high':
- defaultCurveSegments = 200;
- break;
- case 'medium':
- defaultCurveSegments = 50;
- break;
- case 'low':
- defaultCurveSegments = 10;
- break;
- }
- } else if (!isNaN(value) && value > 1) {
- defaultCurveSegments = value;
- }
- if (defaultCurveSegments >= 50) {
- roundValues(false);
- } else {
- roundValues(true);
- }
+ if (forceFrame || this.effectsManager._mdf) {
+ var effectElements = this.effectsManager.effectElements;
+ var anchor = effectElements[0].p.v;
+ var position = effectElements[1].p.v;
+ var scaleHeight = effectElements[3].p.v;
+ var scaleWidth = effectElements[4].p.v;
+ var skew = effectElements[5].p.v;
+ var skewAxis = effectElements[6].p.v;
+ var rotation = effectElements[7].p.v;
+ this.matrix.reset();
+ this.matrix.translate(-anchor[0], -anchor[1], anchor[2]);
+ this.matrix.scale(scaleWidth * 0.01, scaleHeight * 0.01, 1);
+ this.matrix.rotate(-rotation * degToRads);
+ this.matrix.skewFromAxis(-skew * degToRads, (skewAxis + 90) * degToRads);
+ this.matrix.translate(position[0], position[1], 0);
+ this._mdf = true;
+
+ if (this.opacity !== effectElements[8].p.v) {
+ this.opacity = effectElements[8].p.v;
+ this._opMdf = true;
+ }
}
+ };
- function inBrowser() {
- return typeof navigator !== 'undefined';
- }
+ function SVGTransformEffect(_, filterManager) {
+ this.init(filterManager);
+ }
- function installPlugin(type, plugin) {
- if (type === 'expressions') {
- expressionsPlugin = plugin;
- }
- }
+ extendPrototype([TransformEffect], SVGTransformEffect);
+
+ function CVTransformEffect(effectsManager) {
+ this.init(effectsManager);
+ }
+
+ extendPrototype([TransformEffect], CVTransformEffect);
+
+ registerRenderer('canvas', CanvasRenderer);
+ registerRenderer('html', HybridRenderer);
+ registerRenderer('svg', SVGRenderer); // Registering shape modifiers
+
+ ShapeModifiers.registerModifier('tm', TrimModifier);
+ ShapeModifiers.registerModifier('pb', PuckerAndBloatModifier);
+ ShapeModifiers.registerModifier('rp', RepeaterModifier);
+ ShapeModifiers.registerModifier('rd', RoundCornersModifier);
+ ShapeModifiers.registerModifier('zz', ZigZagModifier);
+ ShapeModifiers.registerModifier('op', OffsetPathModifier); // Registering expression plugin
+
+ setExpressionsPlugin(Expressions);
+ setExpressionInterfaces(getInterface);
+ initialize$1();
+ initialize(); // Registering svg effects
+
+ registerEffect$1(20, SVGTintFilter, true);
+ registerEffect$1(21, SVGFillFilter, true);
+ registerEffect$1(22, SVGStrokeEffect, false);
+ registerEffect$1(23, SVGTritoneFilter, true);
+ registerEffect$1(24, SVGProLevelsFilter, true);
+ registerEffect$1(25, SVGDropShadowEffect, true);
+ registerEffect$1(28, SVGMatte3Effect, false);
+ registerEffect$1(29, SVGGaussianBlurEffect, true);
+ registerEffect$1(35, SVGTransformEffect, false);
+ registerEffect(35, CVTransformEffect);
+
+ return lottie;
- function getFactory(name) {
- switch (name) {
- case "propertyFactory":
- return PropertyFactory;
- case "shapePropertyFactory":
- return ShapePropertyFactory;
- case "matrix":
- return Matrix;
- }
- }
-
- lottiejs.play = animationManager.play;
- lottiejs.pause = animationManager.pause;
- lottiejs.setLocationHref = setLocationHref;
- lottiejs.togglePause = animationManager.togglePause;
- lottiejs.setSpeed = animationManager.setSpeed;
- lottiejs.setDirection = animationManager.setDirection;
- lottiejs.stop = animationManager.stop;
- lottiejs.searchAnimations = searchAnimations;
- lottiejs.registerAnimation = animationManager.registerAnimation;
- lottiejs.loadAnimation = loadAnimation;
- lottiejs.setSubframeRendering = setSubframeRendering;
- lottiejs.resize = animationManager.resize;
- //lottiejs.start = start;
- lottiejs.goToAndStop = animationManager.goToAndStop;
- lottiejs.destroy = animationManager.destroy;
- lottiejs.setQuality = setQuality;
- lottiejs.inBrowser = inBrowser;
- lottiejs.installPlugin = installPlugin;
- lottiejs.freeze = animationManager.freeze;
- lottiejs.unfreeze = animationManager.unfreeze;
- lottiejs.getRegisteredAnimations = animationManager.getRegisteredAnimations;
- lottiejs.__getFactory = getFactory;
- lottiejs.version = '5.5.2';
-
- function checkReady() {
- if (document.readyState === "complete") {
- clearInterval(readyStateCheckInterval);
- searchAnimations();
- }
- }
-
- function getQueryVariable(variable) {
- var vars = queryString.split('&');
- for (var i = 0; i < vars.length; i++) {
- var pair = vars[i].split('=');
- if (decodeURIComponent(pair[0]) == variable) {
- return decodeURIComponent(pair[1]);
- }
- }
- }
- var standalone = '__[STANDALONE]__';
- var animationData = '__[ANIMATIONDATA]__';
- var renderer = '';
- if (standalone) {
- var scripts = document.getElementsByTagName('script');
- var index = scripts.length - 1;
- var myScript = scripts[index] || {
- src: ''
- };
- var queryString = myScript.src.replace(/^[^\?]+\??/, '');
- renderer = getQueryVariable('renderer');
- }
- var readyStateCheckInterval = setInterval(checkReady, 100);
- return lottiejs;
}));
diff --git a/src/redux/actions/actionTypes.js b/src/redux/actions/actionTypes.js
index b80da3f7..bd8e7e9c 100644
--- a/src/redux/actions/actionTypes.js
+++ b/src/redux/actions/actionTypes.js
@@ -1,4 +1,16 @@
export default {
+ ANNOTATIONS_LIST_FETCHED: 'ANNOTATIONS/LIST_FETCHED',
+ ANNOTATIONS_FINALIZE: 'ANNOTATIONS/FINALIZE',
+ ANNOTATIONS_INITIALIZE: 'ANNOTATIONS/INITIALIZE',
+ ANNOTATIONS_LAYERS_LIST_FETCHED: 'ANNOTATIONS/LAYERS_LIST_FETCHED',
+ ANNOTATIONS_LAYER_ACTIVATE_ANNOTATIONS: 'ANNOTATIONS/LAYER/ACTIVATE_ANNOTATIONS',
+ APP_CLEAR_CACHE: 'APP/CLEAR_CACHE',
+ APP_CLEAR_CACHE_CONFIRMED: 'APP/CLEAR_CACHE_CONFIRMED',
+ APP_CLEAR_CACHE_CANCELLED: 'APP/CLEAR_CACHE_CANCELLED',
+ APP_CLEAR_CACHE_PROJECTS: 'APP/APP_CLEAR_CACHE',
+ APP_FOCUSED: 'APP/FOCUSED',
+ APP_INITIALIZED: 'APP/INITIALIZED',
+ CAT_FACT_LOADED: 'CAT_FACT/LOADED',
COMPOSITION_DISPLAY_SETTINGS: 'COMPOSITIONS/DISPLAY_SETTINGS',
COMPOSITIONS_FILTER_CHANGE: 'COMPOSITIONS/FILTER_CHANGE',
COMPOSITIONS_GET_COMPS: 'COMPOSITIONS/GET_COMPS',
@@ -7,23 +19,53 @@ export default {
COMPOSITIONS_TOGGLE_ITEM: 'COMPOSITIONS/TOGGLE_ITEM',
COMPOSITIONS_UPDATED: 'COMPOSITIONS/UPDATED',
COMPOSITIONS_SET_CURRENT_COMP_ID: 'COMPOSITIONS/SET_CURRENT_COMP_ID',
+ COMPOSITIONS_SELECT_ALL: 'COMPOSITIONS_SELECT_ALL',
+ COMPOSITIONS_UNSELECT_ALL: 'COMPOSITIONS_UNSELECT_ALL',
+ RIVE_SAVE_DATA: 'RIVE/SAVE_DATA',
+ RIVE_SAVE_DATA_FAILED: 'RIVE/SAVE_DATA_FAILED',
+ RIVE_SAVE_DATA_SUCCESS: 'RIVE/SAVE_DATA_SUCCESS',
+ GOTO_ANNOTATIONS: 'GOTO/ANNOTATIONS',
+ GOTO_IMPORT: 'GOTO/IMPORT',
GOTO_PREVIEW: 'GOTO/PREVIEW',
GOTO_PLAYER: 'GOTO/PLAYER',
GOTO_COMPS: 'GOTO/COMPS',
GOTO_SETTINGS: 'GOTO/SETTINGS',
+ GOTO_REPORTS: 'GOTO/REPORTS',
+ GOTO_SUPPORTED_FEATURES: 'GOTO/SUPPORTED_FEATURES',
GENERAL_LOG: 'GENERAL/LOG',
+ IMPORT_LEAVE: 'IMPORT/LEAVE',
+ IMPORT_LOTTIE_IMPORT_FILE: 'IMPORT/LOTTIE/IMPORT_FILE',
+ IMPORT_LOTTIE_IMPORT_FILE_FAILED: 'IMPORT/LOTTIE/IMPORT_FILE_FAILED',
+ IMPORT_LOTTIE_IMPORT_FILE_SUCCESS: 'IMPORT/LOTTIE/IMPORT_FILE_SUCCESS',
+ IMPORT_LOTTIE_LOAD_URL: 'IMPORT/LOTTIE/LOAD_URL',
+ IMPORT_LOTTIE_PROCESS_CANCEL: 'IMPORT/LOTTIE/PROCESS_CANCEL',
+ IMPORT_LOTTIE_PROCESS_END: 'IMPORT/LOTTIE/PROCESS_END',
+ IMPORT_LOTTIE_PROCESS_FAILED: 'IMPORT/LOTTIE/PROCESS_FAILED',
+ IMPORT_LOTTIE_PROCESS_START: 'IMPORT/LOTTIE/PROCESS_START',
+ IMPORT_LOTTIE_PROCESS_UPDATE: 'IMPORT/LOTTIE/PROCESS_UPDATE',
+ NASA_IMAGE_LOADED: 'NASA/IMAGE_LOADED',
PREVIEW_BROWSE_FILE: 'PREVIEW/BROWSE_FILE',
PREVIEW_FILE_BROWSED: 'PREVIEW/FILE_BROWSED',
+ PREVIEW_ANIMATION: 'PREVIEW/ANIMATION',
PREVIEW_ANIMATION_LOADED: 'PREVIEW/ANIMATION_LOADED',
PREVIEW_ANIMATION_LOAD_FAILED: 'PREVIEW/ANIMATION_LOAD_FAILED',
PREVIEW_ANIMATION_PROGRESS: 'PREVIEW/ANIMATION_PROGRESS',
+ PREVIEW_COLOR_UPDATE: 'PREVIEW/COLOR_UPDATE',
PREVIEW_FROM_PATH: 'PREVIEW/FROM_PATH',
+ PREVIEW_INITIALIZE: 'PREVIEW/INITIALIZE',
+ PREVIEW_FINALIZE: 'PREVIEW/FINALIZE',
+ PREVIEW_LOCK_TIMELINE_TOGGLE: 'PREVIEW/LOCK_TIMELINE_TOGGLE',
+ PREVIEW_LOOP_TOGGLE: 'PREVIEW/LOOP_TOGGLE',
+ PREVIEW_TIMELINE_UPDATED: 'PREVIEW/TIMELINE_UPDATED',
PREVIEW_TOTAL_FRAMES: 'PREVIEW/TOTAL_FRAMES',
PREVIEW_NO_CURRENT_RENDERS: 'PREVIEW/NO_CURRENT_RENDERS',
RENDER_PROCESS_IMAGE: 'RENDER/PROCESS_IMAGE',
PROJECT_SET_ID: 'PROJECT/SET_ID',
+ PROJECT_SET_TEMP_ID: 'PROJECT/SET_TEMP_ID',
+ PROJECT_SET_PATH: 'PROJECT/SET_PATH',
PROJECT_STORED_DATA: 'PROJECT/STORED_DATA',
RENDER_CREATE_AVD: 'RENDER/CREATE_AVD',
+ RENDER_CREATE_SMIL: 'RENDER/CREATE_SMIL',
RENDER_BLOCK: 'RENDER/BLOCK',
RENDER_FONTS: 'RENDER/FONTS',
RENDER_SET_FONTS: 'RENDER/SET_FONTS',
@@ -32,21 +74,76 @@ export default {
RENDER_STORED_FONTS_FETCHED: 'RENDER/STORED_FONTS_FETCHED',
RENDER_COMPLETE: 'RENDER/COMPLETE',
RENDER_FINISHED: 'RENDER/FINISHED',
+ RENDER_TEMPLATE_ERROR: 'RENDER/TEMPLATE_ERROR',
+ RENDER_PROCESS_EXPRESSION: 'RENDER/PROCESS_EXPRESSION',
+ RENDER_TOGGLE_BUNDLE_FONT: 'RENDER/TOGGLE_BUNDLE_FONT',
RENDER_UPDATE: 'RENDER/UPDATE',
RENDER_UPDATE_FONT_ORIGIN: 'RENDER/UPDATE_FONT_ORIGIN',
+ RENDER_UPDATE_FONT_EXTRA_CHARS: 'RENDER/UPDATE_FONT_EXTRA_CHARS',
RENDER_UPDATE_INPUT: 'RENDER/UPDATE_INPUT',
+ REPORTS_ALERT_DISMISSED: 'REPORTS/ALERT_DISMISSED',
+ REPORTS_BUILDERS_UPDATED: 'REPORTS/BUILDERS_UPDATED',
+ REPORTS_IMPORT_SELECTED: 'REPORTS/IMPORT_SELECTED',
+ REPORTS_LAYER_NAVIGATION: 'REPORTS/LAYER_NAVIGATION',
+ REPORTS_LOAD_FAILED: 'REPORTS/LOAD_FAILED',
+ REPORTS_LOAD_SUCCESS: 'REPORTS/LOAD_SUCCESS',
+ REPORTS_MESSAGES_UPDATED: 'REPORTS/MESSAGES_UPDATED',
+ REPORTS_RENDERERS_UPDATED: 'REPORTS/RENDERERS_UPDATED',
+ REPORTS_SAVED: 'REPORTS/SAVED',
+ SERVER_PING_FAIL: 'SERVER/PING_FAIL',
+ SETTINGS_BANNER_CLICK_TAG_UPDATED: 'SETTINGS/BANNER/CLICK_TAG_UPDATED',
+ SETTINGS_BANNER_CUSTOM_SIZE_UPDATED: 'SETTINGS/BANNER/CUSTOM_SIZE_UPDATED',
+ SETTINGS_BANNER_LOOP_TOGGLE: 'SETTINGS/BANNER/LOOP_TOGGLE',
+ SETTINGS_BANNER_LOOP_COUNT_CHANGE: 'SETTINGS/BANNER/LOOP_COUNT_CHANGE',
+ SETTINGS_BANNER_WIDTH_UPDATED: 'SETTINGS/BANNER/WIDTH_UPDATED',
+ SETTINGS_BANNER_HEIGHT_UPDATED: 'SETTINGS/BANNER/HEIGHT_UPDATED',
+ SETTINGS_BANNER_INCLUDE_DATA_IN_TEMPLATE_UPDATED: 'SETTINGS/BANNER/INCLUDE_DATA_IN_TEMPLATE_UPDATED',
+ SETTINGS_BANNER_ORIGIN_UPDATED: 'SETTINGS/BANNER/ORIGIN_UPDATED',
+ SETTINGS_BANNER_VERSION_UPDATED: 'SETTINGS/BANNER/VERSION_UPDATED',
+ SETTINGS_BANNER_LIBRARY_FILE_UPDATE: 'SETTINGS/BANNER/LIBRARY_FILE_UPDATE',
+ SETTINGS_BANNER_LIBRARY_FILE_SELECTED: 'SETTINGS/BANNER/LIBRARY_FILE_SELECTED',
+ SETTINGS_BANNER_LIBRARY_PATH_UPDATED: 'SETTINGS/BANNER/LIBRARY_PATH_UPDATED',
+ SETTINGS_BANNER_RENDERER_UPDATED: 'SETTINGS/BANNER/RENDERER_UPDATED',
+ SETTINGS_BANNER_ZIP_FILES_UPDATED: 'SETTINGS/BANNER/ZIP_FILES_UPDATED',
SETTINGS_CANCEL: 'SETTINGS/CANCEL',
+ SETTINGS_COMP_NAME_AS_DEFAULT_TOGGLE: 'SETTINGS/COMP_NAME_AS_DEFAULT_TOGGLE',
+ SETTINGS_INCLUDE_COMP_NAME_AS_FOLDER_TOGGLE: 'SETTINGS/INCLUDE_COMP_NAME_AS_FOLDER_TOGGLE',
+ SETTINGS_AE_AS_PATH_TOGGLE: 'SETTINGS/AE_AS_PATH_TOGGLE',
+ SETTINGS_PATH_AS_DEFAULT_FOLDER: 'SETTINGS/PATH_AS_DEFAULT_FOLDER',
+ SETTINGS_DEFAULT_FOLDER_PATH_UPDATE: 'SETTINGS/DEFAULT_FOLDER_PATH_UPDATE',
+ SETTINGS_DEFAULT_FOLDER_PATH_SELECTED: 'SETTINGS/DEFAULT_FOLDER_PATH_SELECTED',
+ SETTINGS_DEMO_BACKGROUND_COLOR_CHANGE: 'SETTINGS/DEMO/BACKGROUND_COLOR_CHANGE',
+ SETTINGS_PROJECT_SETTINGS_COPY: 'SETTINGS/PROJECT_SETTINGS_COPY',
+ SETTINGS_COPY_PATH_UPDATE: 'SETTINGS/COPY_PATH_UPDATE',
+ SETTINGS_COPY_PATH_SELECTED: 'SETTINGS/COPY_PATH_SELECTED',
SETTINGS_APPLY: 'SETTINGS/APPLY',
SETTINGS_APPLY_FROM_CACHE: 'SETTINGS/APPLY_FROM_CACHE',
+ SETTINGS_LOAD: 'SETTINGS/LOAD',
+ SETTINGS_LOADED: 'SETTINGS/LOADED',
+ SETTINGS_MODE_TOGGLE: 'SETTINGS/MODE_TOGGLE',
SETTINGS_REMEMBER: 'SETTINGS/REMEMBER',
SETTINGS_TOGGLE_VALUE: 'SETTINGS/TOGGLE_VALUE',
+ SETTINGS_METADATA_CUSTOM_PROP_ADD: 'SETTINGS/METADATA_CUSTOM_PROP/ADD',
+ SETTINGS_METADATA_CUSTOM_PROP_DELETE: 'SETTINGS/METADATA_CUSTOM_PROP/DELETE',
+ SETTINGS_METADATA_CUSTOM_PROP_TITLE_CHANGE: 'SETTINGS/METADATA_CUSTOM_PROP/TITLE_CHANGE',
+ SETTINGS_METADATA_CUSTOM_PROP_VALUE_CHANGE: 'SETTINGS/METADATA_CUSTOM_PROP/VALUE_CHANGE',
+ SETTINGS_SAVE_IN_PROJECT_FILE: 'SETTINGS/SAVE_IN_PROJECT_FILE',
+ SETTINGS_REUSE_FONT_DATA: 'SETTINGS/REUSE_FONT_DATA',
+ SETTINGS_TEMPLATES_DELETE: 'SETTINGS/TEMPLATES/DELETE',
+ SETTINGS_TEMPLATES_LOAD: 'SETTINGS/TEMPLATES/LOAD',
+ SETTINGS_TEMPLATES_LOADED: 'SETTINGS/TEMPLATES/LOADED',
+ SETTINGS_SKIP_DONE_VIEW: 'SETTINGS/SKIP_DONE_VIEW',
SETTINGS_TOGGLE_EXTRA_COMP: 'SETTINGS/TOGGLE_EXTRA_COMP',
SETTINGS_UPDATE_VALUE: 'SETTINGS/UPDATE_VALUE',
SETTINGS_TOGGLE_SELECTED: 'SETTINGS/TOGGLE_SELECTED',
+ SETTINGS_SAVE_FAILED: 'SETTINGS/SAVE_FAILED',
+ SUPPORTED_FEATURES_INITIALIZE: 'SUPPORTED_FEATURES/INITIALIZE',
+ SUPPORTED_FEATURES_LOAD_FAILED: 'SUPPORTED_FEATURES/LOAD_FAILED',
+ SUPPORTED_FEATURES_LOAD_SUCCESS: 'SUPPORTED_FEATURES/LOAD_SUCCESS',
+ SUPPORTED_FEATURES_SELECTION_UPDATED: 'SUPPORTED_FEATURES/SELECTION_UPDATED',
+ SUPPORTED_FEATURES_FINALIZE: 'SUPPORTED_FEATURES/FINALIZE',
ALERT_HIDE: 'ALERT/HIDE',
- PATHS_GET: 'PATHS/GET',
PATHS_FETCHED: 'PATHS/FETCHED',
- VERSION_GET: 'VERSION/GET',
VERSION_FETCHED: 'VERSION/FETCHED',
APP_VERSION_FETCHED: 'APP_VERSION/FETCHED',
WRITE_ERROR: 'WRITE/ERROR'
diff --git a/src/redux/actions/annotationActions.js b/src/redux/actions/annotationActions.js
new file mode 100644
index 00000000..3a13aa80
--- /dev/null
+++ b/src/redux/actions/annotationActions.js
@@ -0,0 +1,43 @@
+import actionTypes from './actionTypes'
+
+function initialize() {
+ return {
+ type: actionTypes.ANNOTATIONS_INITIALIZE
+ }
+}
+
+function finalize() {
+ return {
+ type: actionTypes.ANNOTATIONS_FINALIZE
+ }
+}
+
+function layersListFetched(layers) {
+ return {
+ type: actionTypes.ANNOTATIONS_LAYERS_LIST_FETCHED,
+ layers,
+ }
+}
+
+function annotationsListFetched(annotations) {
+ return {
+ type: actionTypes.ANNOTATIONS_LIST_FETCHED,
+ annotations,
+ }
+}
+
+function activateAnnotations(layerId, annotationId) {
+ return {
+ type: actionTypes.ANNOTATIONS_LAYER_ACTIVATE_ANNOTATIONS,
+ layerId,
+ annotationId,
+ }
+}
+
+export {
+ initialize,
+ finalize,
+ layersListFetched,
+ activateAnnotations,
+ annotationsListFetched,
+}
\ No newline at end of file
diff --git a/src/redux/actions/compositionActions.js b/src/redux/actions/compositionActions.js
index 14e6c80b..ab4e1810 100644
--- a/src/redux/actions/compositionActions.js
+++ b/src/redux/actions/compositionActions.js
@@ -58,7 +58,37 @@ function cancelSettings(storedSettings) {
function toggleSettingsValue(name) {
return {
type: actionTypes.SETTINGS_TOGGLE_VALUE,
- name: name
+ name: name,
+ }
+}
+
+function addMetadataCustomProp(name) {
+ return {
+ type: actionTypes.SETTINGS_METADATA_CUSTOM_PROP_ADD,
+ name: name,
+ }
+}
+
+function deleteMetadataCustomProp(id) {
+ return {
+ type: actionTypes.SETTINGS_METADATA_CUSTOM_PROP_DELETE,
+ id,
+ }
+}
+
+function metadataCustomPropTitleChange(value, id) {
+ return {
+ type: actionTypes.SETTINGS_METADATA_CUSTOM_PROP_TITLE_CHANGE,
+ id,
+ value,
+ }
+}
+
+function metadataCustomPropValueChange(value, id) {
+ return {
+ type: actionTypes.SETTINGS_METADATA_CUSTOM_PROP_VALUE_CHANGE,
+ id,
+ value,
}
}
@@ -95,6 +125,31 @@ function goToComps() {
}
}
+function clearCache() {
+ return {
+ type: actionTypes.APP_CLEAR_CACHE,
+ }
+}
+
+function clearCacheConfirmed() {
+ return {
+ type: actionTypes.APP_CLEAR_CACHE_CONFIRMED,
+ }
+}
+
+function clearCacheCancelled() {
+ return {
+ type: actionTypes.APP_CLEAR_CACHE_CANCELLED,
+ }
+}
+
+function clearProjectsFromCache(ids) {
+ return {
+ type: actionTypes.APP_CLEAR_CACHE_PROJECTS,
+ ids: ids,
+ }
+}
+
function toggleShowSelected() {
return {
type: actionTypes.SETTINGS_TOGGLE_SELECTED,
@@ -122,14 +177,267 @@ function applySettingsToSelectedComps(settings) {
}
}
-function applySettingsFromCache(settings, allComps) {
+function applySettingsFromCache(comp, allComps) {
return {
type: actionTypes.SETTINGS_APPLY_FROM_CACHE,
- settings,
+ comp,
allComps
}
}
+function handleBannerWidthChange(value) {
+ return {
+ type: actionTypes.SETTINGS_BANNER_WIDTH_UPDATED,
+ value,
+ }
+}
+
+function handleBannerHeightChange(value) {
+ return {
+ type: actionTypes.SETTINGS_BANNER_HEIGHT_UPDATED,
+ value,
+ }
+}
+
+function handleBannerVersionChange(value) {
+ return {
+ type: actionTypes.SETTINGS_BANNER_VERSION_UPDATED,
+ value,
+ }
+}
+
+function handleBannerOriginChange(value) {
+ return {
+ type: actionTypes.SETTINGS_BANNER_ORIGIN_UPDATED,
+ value,
+ }
+}
+
+function handleBannerLibraryPathChange(value) {
+ return {
+ type: actionTypes.SETTINGS_BANNER_LIBRARY_PATH_UPDATED,
+ value,
+ }
+}
+
+function handleBannerLibraryFileChange(value) {
+ return {
+ type: actionTypes.SETTINGS_BANNER_LIBRARY_FILE_UPDATE,
+ value,
+ }
+}
+
+function handleModeToggle(value) {
+ return {
+ type: actionTypes.SETTINGS_MODE_TOGGLE,
+ value,
+ }
+}
+
+function lottieBannerRendererUpdated(value) {
+ return {
+ type: actionTypes.SETTINGS_BANNER_RENDERER_UPDATED,
+ value,
+ }
+}
+
+function lottieBannerClickTagUpdated(value) {
+ return {
+ type: actionTypes.SETTINGS_BANNER_CLICK_TAG_UPDATED,
+ value,
+ }
+}
+
+function lottieBannerZipFilesUpdated() {
+ return {
+ type: actionTypes.SETTINGS_BANNER_ZIP_FILES_UPDATED,
+ }
+}
+
+function lottieBannerCustomSizeFlagUpdated() {
+ return {
+ type: actionTypes.SETTINGS_BANNER_CUSTOM_SIZE_UPDATED,
+ }
+}
+
+function lottieIncludeDataInTemplateUpdated() {
+ return {
+ type: actionTypes.SETTINGS_BANNER_INCLUDE_DATA_IN_TEMPLATE_UPDATED,
+ }
+}
+
+function lottieHandleLoopToggleChange() {
+ return {
+ type: actionTypes.SETTINGS_BANNER_LOOP_TOGGLE,
+ }
+}
+
+function lottieHandleLoopCountChange(value) {
+ return {
+ type: actionTypes.SETTINGS_BANNER_LOOP_COUNT_CHANGE,
+ value
+ }
+}
+
+function goToImportFile() {
+ return {
+ type: actionTypes.GOTO_IMPORT,
+ }
+}
+
+function toggleCompNameAsDefault() {
+ return {
+ type: actionTypes.SETTINGS_COMP_NAME_AS_DEFAULT_TOGGLE,
+ }
+}
+
+function toggleCompNameAsFolder() {
+ return {
+ type: actionTypes.SETTINGS_INCLUDE_COMP_NAME_AS_FOLDER_TOGGLE,
+ }
+}
+
+function toggleAEAsPath() {
+ return {
+ type: actionTypes.SETTINGS_AE_AS_PATH_TOGGLE,
+ }
+}
+
+function toggleCopySettings() {
+ return {
+ type: actionTypes.SETTINGS_PROJECT_SETTINGS_COPY,
+ }
+}
+
+function toggleDefaultPathAsFolder() {
+ return {
+ type: actionTypes.SETTINGS_PATH_AS_DEFAULT_FOLDER,
+ }
+}
+
+function defaultFolderFileChange(value) {
+ return {
+ type: actionTypes.SETTINGS_DEFAULT_FOLDER_PATH_UPDATE,
+ value,
+ }
+}
+
+function settingsCopyPathChange(value) {
+ return {
+ type: actionTypes.SETTINGS_COPY_PATH_UPDATE,
+ value,
+ }
+}
+
+function settingsCopyPathPathSelected(value) {
+ return {
+ type: actionTypes.SETTINGS_COPY_PATH_SELECTED,
+ value,
+ }
+}
+
+function settingsBannerLibraryFileSelected(value) {
+ return {
+ type: actionTypes.SETTINGS_BANNER_LIBRARY_FILE_SELECTED,
+ value,
+ }
+}
+
+function settingsDefaultFolderPathSelected(value) {
+ return {
+ type: actionTypes.SETTINGS_DEFAULT_FOLDER_PATH_SELECTED,
+ value,
+ }
+}
+
+function goToAnnotations(value) {
+ return {
+ type: actionTypes.GOTO_ANNOTATIONS,
+ }
+}
+function handleDemoBackgroundColorChange(value) {
+ return {
+ type: actionTypes.SETTINGS_DEMO_BACKGROUND_COLOR_CHANGE,
+ value,
+ }
+}
+
+function goToReports(path) {
+ return {
+ type: actionTypes.GOTO_REPORTS,
+ path,
+ }
+}
+
+function goToSupportedFeatures() {
+ return {
+ type: actionTypes.GOTO_SUPPORTED_FEATURES,
+ }
+}
+
+function selectAllComps() {
+ return {
+ type: actionTypes.COMPOSITIONS_SELECT_ALL,
+ }
+}
+
+function unselectAllComps() {
+ return {
+ type: actionTypes.COMPOSITIONS_UNSELECT_ALL,
+ }
+}
+
+function loadSettings() {
+ return {
+ type: actionTypes.SETTINGS_LOAD,
+ }
+}
+
+function settingsLoaded(projectData) {
+ return {
+ type: actionTypes.SETTINGS_LOADED,
+ projectData,
+ }
+}
+
+function toggleSaveInProjectFile() {
+ return {
+ type: actionTypes.SETTINGS_SAVE_IN_PROJECT_FILE,
+ }
+}
+
+function toggleSkipDoneView() {
+ return {
+ type: actionTypes.SETTINGS_SKIP_DONE_VIEW,
+ }
+}
+
+function toggleReuseFontData() {
+ return {
+ type: actionTypes.SETTINGS_REUSE_FONT_DATA,
+ }
+}
+
+function deleteTemplate(value) {
+ return {
+ type: actionTypes.SETTINGS_TEMPLATES_DELETE,
+ value,
+ }
+}
+
+function templateLoaded(templateData) {
+ return {
+ type: actionTypes.SETTINGS_TEMPLATES_LOADED,
+ templateData,
+ }
+}
+
+function loadTemplate() {
+ return {
+ type: actionTypes.SETTINGS_TEMPLATES_LOAD,
+ }
+}
+
export {
filterChange,
toggleShowSelected,
@@ -146,8 +454,55 @@ export {
goToPreview,
goToPlayer,
goToComps,
+ goToImportFile,
rememberSettings,
applySettings,
applySettingsFromCache,
applySettingsToSelectedComps,
+ handleBannerWidthChange,
+ handleBannerHeightChange,
+ handleBannerVersionChange,
+ handleModeToggle,
+ handleBannerOriginChange,
+ handleBannerLibraryPathChange,
+ handleBannerLibraryFileChange,
+ lottieBannerRendererUpdated,
+ lottieBannerClickTagUpdated,
+ lottieBannerZipFilesUpdated,
+ lottieBannerCustomSizeFlagUpdated,
+ lottieIncludeDataInTemplateUpdated,
+ lottieHandleLoopToggleChange,
+ lottieHandleLoopCountChange,
+ toggleCompNameAsDefault,
+ toggleCompNameAsFolder,
+ toggleAEAsPath,
+ toggleDefaultPathAsFolder,
+ settingsDefaultFolderPathSelected,
+ defaultFolderFileChange,
+ settingsBannerLibraryFileSelected,
+ goToAnnotations,
+ goToReports,
+ handleDemoBackgroundColorChange,
+ addMetadataCustomProp,
+ deleteMetadataCustomProp,
+ metadataCustomPropTitleChange,
+ metadataCustomPropValueChange,
+ selectAllComps,
+ unselectAllComps,
+ clearCache,
+ clearCacheConfirmed,
+ clearCacheCancelled,
+ toggleCopySettings,
+ settingsCopyPathChange,
+ settingsCopyPathPathSelected,
+ loadSettings,
+ settingsLoaded,
+ toggleSaveInProjectFile,
+ clearProjectsFromCache,
+ goToSupportedFeatures,
+ toggleSkipDoneView,
+ toggleReuseFontData,
+ deleteTemplate,
+ loadTemplate,
+ templateLoaded,
}
\ No newline at end of file
diff --git a/src/redux/actions/generalActions.js b/src/redux/actions/generalActions.js
index e59bec31..18f8e436 100644
--- a/src/redux/actions/generalActions.js
+++ b/src/redux/actions/generalActions.js
@@ -5,36 +5,37 @@ function hideAlert() {
type: actionTypes.ALERT_HIDE
}
}
-function getPaths() {
+
+function versionFetched(version) {
return {
- type: actionTypes.PATHS_GET
+ type: actionTypes.VERSION_FETCHED,
+ version: version
}
}
-function getVersion() {
+function appVersionFetched(version) {
return {
- type: actionTypes.VERSION_GET
+ type: actionTypes.APP_VERSION_FETCHED,
+ version: version
}
}
-function versionFetched(version) {
+function appInitialized() {
return {
- type: actionTypes.VERSION_FETCHED,
- version: version
+ type: actionTypes.APP_INITIALIZED,
}
}
-function appVersionFetched(version) {
+function appFocused() {
return {
- type: actionTypes.APP_VERSION_FETCHED,
- version: version
+ type: actionTypes.APP_FOCUSED,
}
}
export {
hideAlert,
- getPaths,
- getVersion,
versionFetched,
- appVersionFetched
+ appVersionFetched,
+ appInitialized,
+ appFocused,
}
\ No newline at end of file
diff --git a/src/redux/actions/importActions.js b/src/redux/actions/importActions.js
new file mode 100644
index 00000000..55178e29
--- /dev/null
+++ b/src/redux/actions/importActions.js
@@ -0,0 +1,95 @@
+import actionTypes from './actionTypes'
+
+function importLottieFile() {
+ return {
+ type: actionTypes.IMPORT_LOTTIE_IMPORT_FILE
+ }
+}
+
+function importLottieFileFromUrl(path) {
+ return {
+ type: actionTypes.IMPORT_LOTTIE_LOAD_URL,
+ path
+ }
+}
+
+function importLeave() {
+ return {
+ type: actionTypes.IMPORT_LEAVE
+ }
+}
+
+function lottieProcessStart() {
+ return {
+ type: actionTypes.IMPORT_LOTTIE_PROCESS_START
+ }
+}
+
+function lottieProcessUpdate(data) {
+ return {
+ type: actionTypes.IMPORT_LOTTIE_PROCESS_UPDATE,
+ data,
+ }
+}
+
+function lottieProcessEnd(data) {
+ return {
+ type: actionTypes.IMPORT_LOTTIE_PROCESS_END,
+ data,
+ }
+}
+
+function lottieProcessFailed(error) {
+ return {
+ type: actionTypes.IMPORT_LOTTIE_PROCESS_FAILED,
+ error,
+ }
+}
+
+function lottieProcessCancel() {
+ return {
+ type: actionTypes.IMPORT_LOTTIE_PROCESS_CANCEL
+ }
+}
+
+function lottieImportFileSuccess(path) {
+ return {
+ type: actionTypes.IMPORT_LOTTIE_IMPORT_FILE_SUCCESS,
+ path
+ }
+}
+
+function lottieImportFileFailed() {
+ return {
+ type: actionTypes.IMPORT_LOTTIE_IMPORT_FILE_FAILED,
+ }
+}
+
+function nasaImageLoaded(data) {
+ return {
+ type: actionTypes.NASA_IMAGE_LOADED,
+ data,
+ }
+}
+
+function catFactLoaded(data) {
+ return {
+ type: actionTypes.CAT_FACT_LOADED,
+ data,
+ }
+}
+
+export {
+ importLottieFile,
+ importLottieFileFromUrl,
+ importLeave,
+ lottieProcessStart,
+ lottieProcessUpdate,
+ lottieProcessEnd,
+ lottieProcessCancel,
+ lottieProcessFailed,
+ lottieImportFileSuccess,
+ lottieImportFileFailed,
+ nasaImageLoaded,
+ catFactLoaded,
+}
\ No newline at end of file
diff --git a/src/redux/actions/previewActions.js b/src/redux/actions/previewActions.js
index a8b25342..a71f03c9 100644
--- a/src/redux/actions/previewActions.js
+++ b/src/redux/actions/previewActions.js
@@ -39,11 +39,55 @@ function previewFromPath(path) {
}
}
+function updateColor(color) {
+ return {
+ type: actionTypes.PREVIEW_COLOR_UPDATE,
+ color
+ }
+}
+
+function toggleLockTimeline() {
+ return {
+ type: actionTypes.PREVIEW_LOCK_TIMELINE_TOGGLE,
+ }
+}
+
+function toggleLoop() {
+ return {
+ type: actionTypes.PREVIEW_LOOP_TOGGLE,
+ }
+}
+
+function timelineUpdated(timeline) {
+ return {
+ type: actionTypes.PREVIEW_TIMELINE_UPDATED,
+ timeline,
+ }
+}
+
+function initialize() {
+ return {
+ type: actionTypes.PREVIEW_INITIALIZE,
+ }
+}
+
+function finalize() {
+ return {
+ type: actionTypes.PREVIEW_FINALIZE,
+ }
+}
+
export {
browsePreviewFile,
previewFileBrowsed,
updateProgress,
setTotalFrames,
showNoCurrentRenders,
- previewFromPath
+ previewFromPath,
+ updateColor,
+ toggleLockTimeline,
+ toggleLoop,
+ timelineUpdated,
+ initialize,
+ finalize,
}
\ No newline at end of file
diff --git a/src/redux/actions/renderActions.js b/src/redux/actions/renderActions.js
index 4056b674..e6e97470 100644
--- a/src/redux/actions/renderActions.js
+++ b/src/redux/actions/renderActions.js
@@ -42,11 +42,34 @@ function showRenderBlock(pars) {
}
}
+function previewAnimation(path) {
+ return {
+ type: actionTypes.PREVIEW_ANIMATION,
+ path,
+ }
+}
+
+function toggleBundleFont() {
+ return {
+ type: actionTypes.RENDER_TOGGLE_BUNDLE_FONT,
+ }
+}
+
+function processExpression(data) {
+ return {
+ type: actionTypes.RENDER_PROCESS_EXPRESSION,
+ data,
+ }
+}
+
export {
startRender,
stopRender,
updateFontOrigin,
updateInput,
setFonts,
- showRenderBlock
+ showRenderBlock,
+ previewAnimation,
+ toggleBundleFont,
+ processExpression,
}
\ No newline at end of file
diff --git a/src/redux/actions/reportsActions.js b/src/redux/actions/reportsActions.js
new file mode 100644
index 00000000..2c894f2e
--- /dev/null
+++ b/src/redux/actions/reportsActions.js
@@ -0,0 +1,76 @@
+import actionTypes from './actionTypes'
+
+function navigateToLayer(layerIndex, compId) {
+ return {
+ type: actionTypes.REPORTS_LAYER_NAVIGATION,
+ compId,
+ layerIndex,
+ }
+}
+
+function reportsSaved(compId, reportPath) {
+ return {
+ type: actionTypes.REPORTS_SAVED,
+ compId,
+ reportPath,
+ }
+}
+
+function reportsLoaded(data) {
+ return {
+ type: actionTypes.REPORTS_LOAD_SUCCESS,
+ data,
+ }
+}
+
+function reportsLoadFailed(error) {
+ return {
+ type: actionTypes.REPORTS_LOAD_FAILED,
+ error,
+ }
+}
+
+function renderersUpdated(renderers) {
+ return {
+ type: actionTypes.REPORTS_RENDERERS_UPDATED,
+ renderers,
+ }
+}
+
+function messagesUpdated(messageTypes) {
+ return {
+ type: actionTypes.REPORTS_MESSAGES_UPDATED,
+ messageTypes,
+ }
+}
+
+function buildersUpdated(builders) {
+ return {
+ type: actionTypes.REPORTS_BUILDERS_UPDATED,
+ builders,
+ }
+}
+
+function importSelected() {
+ return {
+ type: actionTypes.REPORTS_IMPORT_SELECTED,
+ }
+}
+
+function alertDismissed() {
+ return {
+ type: actionTypes.REPORTS_ALERT_DISMISSED,
+ }
+}
+
+export {
+ navigateToLayer,
+ reportsSaved,
+ reportsLoaded,
+ reportsLoadFailed,
+ renderersUpdated,
+ messagesUpdated,
+ importSelected,
+ alertDismissed,
+ buildersUpdated,
+}
\ No newline at end of file
diff --git a/src/redux/actions/supportedFeaturesActions.js b/src/redux/actions/supportedFeaturesActions.js
new file mode 100644
index 00000000..cc5c5357
--- /dev/null
+++ b/src/redux/actions/supportedFeaturesActions.js
@@ -0,0 +1,42 @@
+import actionTypes from './actionTypes'
+
+function initialize() {
+ return {
+ type: actionTypes.SUPPORTED_FEATURES_INITIALIZE
+ }
+}
+
+function finalize() {
+ return {
+ type: actionTypes.SUPPORTED_FEATURES_FINALIZE,
+ }
+}
+
+function featuresLoaded(features) {
+ return {
+ type: actionTypes.SUPPORTED_FEATURES_LOAD_SUCCESS,
+ features,
+ }
+}
+
+function featuresLoadFailed(features) {
+ return {
+ type: actionTypes.SUPPORTED_FEATURES_LOAD_FAILED,
+ features,
+ }
+}
+
+function featuresSelectionUpdated(features) {
+ return {
+ type: actionTypes.SUPPORTED_FEATURES_SELECTION_UPDATED,
+ features,
+ }
+}
+
+export {
+ initialize,
+ finalize,
+ featuresLoaded,
+ featuresLoadFailed,
+ featuresSelectionUpdated,
+}
\ No newline at end of file
diff --git a/src/redux/middlewares/extendScriptMiddleware.js b/src/redux/middlewares/extendScriptMiddleware.js
new file mode 100644
index 00000000..78951d06
--- /dev/null
+++ b/src/redux/middlewares/extendScriptMiddleware.js
@@ -0,0 +1,68 @@
+import actionTypes from '../actions/actionTypes'
+import {
+ lottieProcessUpdate,
+ lottieProcessEnd,
+ lottieProcessFailed,
+} from '../actions/importActions'
+import {
+ convertFromPath as convertLottieFileFromPath,
+ convertFromUrl as convertLottieFileFromURL,
+ cancelImport as cancelLottieImport,
+} from '../../helpers/importers/lottie/importer'
+
+function handleImportLottieSuccess(action, store) {
+
+ const onUpdate = (data) => {
+ store.dispatch(lottieProcessUpdate(data))
+ }
+ const onEnd = (data) => {
+ store.dispatch(lottieProcessEnd(data))
+ }
+ const onFailed = (error) => {
+ store.dispatch(lottieProcessFailed(error))
+ }
+
+ convertLottieFileFromPath(action.path, onUpdate, onEnd, onFailed);
+}
+
+function handleImportLottieLoadUrl(action, store) {
+
+ const onUpdate = (data) => {
+ store.dispatch(lottieProcessUpdate(data))
+ }
+ const onEnd = (data) => {
+ store.dispatch(lottieProcessEnd(data))
+ }
+ const onFailed = (error) => {
+ store.dispatch(lottieProcessFailed(error))
+ }
+
+ convertLottieFileFromURL(action.path, onUpdate, onEnd, onFailed);
+}
+
+function handleImportLeave(action, store) {
+ cancelLottieImport();
+}
+
+function handleImportCancel(action, store) {
+ cancelLottieImport();
+}
+
+const actionHandlers = {}
+actionHandlers[actionTypes.IMPORT_LOTTIE_IMPORT_FILE_SUCCESS] = handleImportLottieSuccess
+actionHandlers[actionTypes.IMPORT_LOTTIE_LOAD_URL] = handleImportLottieLoadUrl
+actionHandlers[actionTypes.IMPORT_LEAVE] = handleImportLeave
+actionHandlers[actionTypes.IMPORT_LOTTIE_PROCESS_CANCEL] = handleImportCancel
+
+const extendScriptMiddleware = function(store) {
+ return function(next) {
+ return function(action) {
+ next(action)
+ if(actionHandlers[action.type]) {
+ actionHandlers[action.type](action, store)
+ }
+ }
+ }
+}
+
+export default extendScriptMiddleware
diff --git a/src/redux/middlewares/generalMiddleware.js b/src/redux/middlewares/generalMiddleware.js
new file mode 100644
index 00000000..c37aa53e
--- /dev/null
+++ b/src/redux/middlewares/generalMiddleware.js
@@ -0,0 +1,46 @@
+import actionTypes from '../actions/actionTypes'
+import {
+ setLocalPath,
+ setTempId,
+} from '../../helpers/FileLoader'
+import {
+ activateAnnotations
+} from '../../helpers/AnnotationsBridge'
+import {
+ navigateToLayer
+} from '../../helpers/CompositionsProvider'
+
+function handleProjectPath(action, store) {
+ setLocalPath('Project', action.path);
+}
+
+function handleAnnotationsActivate(action, store) {
+ activateAnnotations(action.layerId, action.annotationId);
+}
+
+function handleLayerNavigation(action, store) {
+ navigateToLayer(action.compId, action.layerIndex);
+}
+
+function handleTempId(action) {
+ setTempId(action.id);
+}
+
+const actionHandlers = {}
+actionHandlers[actionTypes.PROJECT_SET_PATH] = handleProjectPath
+actionHandlers[actionTypes.ANNOTATIONS_LAYER_ACTIVATE_ANNOTATIONS] = handleAnnotationsActivate
+actionHandlers[actionTypes.REPORTS_LAYER_NAVIGATION] = handleLayerNavigation
+actionHandlers[actionTypes.PROJECT_SET_TEMP_ID] = handleTempId
+
+const extendScriptMiddleware = function(store) {
+ return function(next) {
+ return function(action) {
+ if(actionHandlers[action.type]) {
+ actionHandlers[action.type](action, store)
+ }
+ next(action)
+ }
+ }
+}
+
+export default extendScriptMiddleware
diff --git a/src/redux/reducers/alerts.js b/src/redux/reducers/alerts.js
index 8d976f42..4c883a2a 100644
--- a/src/redux/reducers/alerts.js
+++ b/src/redux/reducers/alerts.js
@@ -15,9 +15,16 @@ export default function project(state = initialState, action) {
return {...state, ...{show: true, pars:['You have no current renders to preview','Try browsing your files to select a .json file']}}
case actionTypes.PREVIEW_ANIMATION_LOAD_FAILED:
return {...state, ...{show: true, pars:['The animation could not be loaded']}}
+ case actionTypes.APP_CLEAR_CACHE:
+ return {...state, ...{show: true, type: 'cache'}}
+ case actionTypes.SETTINGS_SAVE_FAILED:
+ return {...state, ...{show: true, type: 'storage', projects: action.projects}}
/*case actionTypes.GENERAL_LOG:
return {...state, ...{show: true, pars:[action.data]}}*/
case actionTypes.ALERT_HIDE:
+ case actionTypes.APP_CLEAR_CACHE_CONFIRMED:
+ case actionTypes.APP_CLEAR_CACHE_CANCELLED:
+ case actionTypes.APP_CLEAR_CACHE_PROJECTS:
return {...state, ...{show: false}}
default:
return state
diff --git a/src/redux/reducers/annotations.js b/src/redux/reducers/annotations.js
new file mode 100644
index 00000000..389bb940
--- /dev/null
+++ b/src/redux/reducers/annotations.js
@@ -0,0 +1,35 @@
+import actionTypes from '../actions/actionTypes'
+
+let initialState = {
+ layers: [],
+ annotations: [],
+}
+
+function updateLayers(state, action) {
+ if (JSON.stringify(action.layers) !== JSON.stringify(state.layers)) {
+ return {
+ ...state,
+ layers: action.layers,
+ }
+ } else {
+ return state
+ }
+}
+
+function updateAnnotations(state, action) {
+ return {
+ ...state,
+ annotations: action.annotations,
+ }
+}
+
+export default function project(state = initialState, action) {
+ switch (action.type) {
+ case actionTypes.ANNOTATIONS_LAYERS_LIST_FETCHED:
+ return updateLayers(state, action);
+ case actionTypes.ANNOTATIONS_LIST_FETCHED:
+ return updateAnnotations(state, action);
+ default:
+ return state
+ }
+}
\ No newline at end of file
diff --git a/src/redux/reducers/compositions.js b/src/redux/reducers/compositions.js
index 69e8885b..02fb8062 100644
--- a/src/redux/reducers/compositions.js
+++ b/src/redux/reducers/compositions.js
@@ -1,4 +1,13 @@
import actionTypes from '../actions/actionTypes'
+import ExportModes from '../../helpers/ExportModes'
+import LottieVersions, {findLottieVersion} from '../../helpers/LottieVersions'
+import LottieLibraryOrigins from '../../helpers/LottieLibraryOrigins'
+import audioBitOptions from '../../helpers/enums/audioBitOptions'
+import Variables from '../../helpers/styles/variables'
+import random from '../../helpers/randomGenerator'
+import {getSimpleSeparator} from '../../helpers/osHelper'
+import deepmerge from 'deepmerge'
+import { v4 as uuidv4 } from 'uuid';
let initialState = {
list: [],
@@ -6,6 +15,21 @@ let initialState = {
items:{},
current: 0,
show_only_selected: false,
+ shouldUseCompNameAsDefault: false,
+ shouldUseAEPathAsDestinationFolder: false,
+ shouldUsePathAsDefaultFolder: false,
+ shouldIncludeCompNameAsFolder: false,
+ defaultFolderPath: '',
+ shouldKeepCopyOfSettings: false,
+ settingsDestinationCopy: null,
+ shouldSaveInProjectFile: false,
+ shouldSkipDoneView: false,
+ shouldReuseFontData: false,
+ templates: {
+ active: true,
+ list: [
+ ]
+ }
}
let extensionReplacer = /\.\w*$/g
@@ -20,14 +44,19 @@ let defaultComposition = {
segmented: false,
segmentedTime: 10,
standalone: false,
- demo: false,
avd: false,
glyphs: true,
+ includeExtraChars: false,
+ bundleFonts: false,
+ inlineFonts: false,
hiddens: false,
+ original_assets: false,
original_names: false,
should_encode_images: false,
- should_compress: false,
+ should_compress: true,
should_skip_images: false,
+ should_reuse_images: false,
+ should_include_av_assets: false,
compression_rate: 80,
extraComps: {
active: false,
@@ -36,8 +65,68 @@ let defaultComposition = {
guideds: false,
ignore_expression_properties: false,
export_old_format: false,
+ use_source_names: false,
+ shouldTrimData: false,
skip_default_properties: false,
not_supported_properties: false,
+ pretty_print: false,
+ useCompNamesAsIds: false,
+ export_mode: ExportModes.STANDARD,
+ export_modes: {
+ standard: true,
+ demo: false,
+ standalone: false,
+ banner: false,
+ avd: false,
+ smil: false,
+ rive: false,
+ reports: false,
+ },
+ demoData: {
+ backgroundColor: Variables.colors.white,
+ },
+ banner: {
+ lottie_origin: LottieLibraryOrigins.LOCAL,
+ lottie_path: 'https://',
+ lottie_library: LottieVersions[0].value,
+ lottie_renderer: 'svg',
+ width: 500,
+ height: 500,
+ use_original_sizes: true,
+ original_width: 500,
+ original_height: 500,
+ click_tag: 'https://',
+ zip_files: true,
+ shouldIncludeAnimationDataInTemplate: false,
+ shouldLoop: false,
+ loopCount: 0,
+ localPath: null,
+ },
+ expressions: {
+ shouldBake: false,
+ shouldCacheExport: false,
+ shouldBakeBeyondWorkArea: false,
+ sampleSize: 1,
+ },
+ audio: {
+ isEnabled: true,
+ shouldRaterizeWaveform: true,
+ bitrate: audioBitOptions[0].value,
+ },
+ metadata: {
+ includeFileName: false,
+ customProps: [],
+ },
+ template: {
+ active: false,
+ id: 0,
+ errors: [],
+ },
+ essentialProperties: {
+ active: true,
+ useSlots: false,
+ skipExternalComp: false,
+ }
}
}
@@ -58,20 +147,53 @@ function toggleComposition(state, action) {
}
function createComp(comp) {
- return {...defaultComposition, id:comp.id, name: comp.name, settings: {...defaultComposition.settings}}
+ return {
+ ...defaultComposition,
+ id: comp.id,
+ uid: uuidv4(),
+ name: comp.name,
+ settings: {
+ ...defaultComposition.settings,
+ banner: {
+ ...defaultComposition.settings.banner,
+ width: comp.width || 500,
+ height: comp.height || 500,
+ original_width: comp.width || 500,
+ original_height: comp.height || 500,
+ },
+ demoData: {
+ ...defaultComposition.settings.demoData,
+ }
+ }
+ }
}
+const overwriteMerge = (_, destinationArray) => destinationArray
+
function setStoredData(state, action) {
let compositions = action.projectData.compositions
var item
for(var comp in compositions) {
if(compositions.hasOwnProperty(comp)){
item = compositions[comp]
- compositions[comp] = {...item, settings:{...defaultComposition.settings, ...item.settings}}
+ if (!item.uid) {
+ item.uid = uuidv4();
+ }
+ compositions[comp] = deepmerge(defaultComposition, item, { arrayMerge: overwriteMerge })
}
}
+ console.log('compositions', compositions);
let newState = {...state}
- newState.items = compositions
+ newState.items = {
+ ...newState.items,
+ ...compositions,
+ }
+ if (action.projectData.extraState) {
+ newState = {
+ ...newState,
+ ...action.projectData.extraState,
+ }
+ }
return newState
}
@@ -134,9 +256,25 @@ function searchRemovedExtraComps(settings, compositions) {
return newSettings
}
+function updateCompsSize(settings, composition) {
+ if(settings.banner.original_width !== composition.width
+ || settings.banner.original_height !== composition.height) {
+ return {
+ ...settings,
+ banner: {
+ ...settings.banner,
+ original_width: composition.width,
+ original_height: composition.height,
+ }
+ }
+ }
+ return settings
+}
+
function addCompositions(state, action) {
- let newItems = {...state.items}
- let listChanged: false
+ const currentItems = state.items;
+ let newItems = {}
+ let listChanged = false
let itemsChanged = false
let newList = []
let i, len = action.compositions.length
@@ -144,23 +282,23 @@ function addCompositions(state, action) {
for(i = 0; i < len; i += 1) {
item = action.compositions[i]
index = i
- if(!newItems[item.id]) {
+ if(!currentItems[item.id]) {
newItems[item.id] = createComp(item)
itemsChanged = true
} else{
- let itemData = newItems[item.id]
- if(newItems[item.id].name !== item.name) {
- itemData = {...state.items[item.id], ...{name: item.name}}
- newItems[item.id] = itemData
+ let itemData = currentItems[item.id]
+ if(currentItems[item.id].name !== item.name) {
+ itemData = {...currentItems[item.id], ...{name: item.name}}
//newItems[item.id].name = item.name
itemsChanged = true
}
let settings = searchRemovedExtraComps(itemData.settings, action.compositions)
+ settings = updateCompsSize(itemData.settings, item)
if(settings !== itemData.settings){
- itemData = {...state.items[item.id], ...{settings: settings}}
- newItems[item.id] = itemData
+ itemData = {...currentItems[item.id], ...{settings: settings}}
itemsChanged = true
}
+ newItems[item.id] = itemData;
}
newList.push(item.id)
if(state.list[index] !== item.id) {
@@ -265,39 +403,65 @@ function cancelSettings(state, action) {
let newItems = {...state.items}
let newItem = {...state.items[state.current]}
newItem.settings = action.storedSettings
- if(newItem.settings.standalone){
+ if (newItem.settings.export_mode === ExportModes.STANDALONE){
newItem.destination = newItem.destination.replace(extensionReplacer,'.js')
newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.js')
- } else {
+ } else if (newItem.settings.export_mode === ExportModes.STANDARD){
newItem.destination = newItem.destination.replace(extensionReplacer,'.json')
newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.json')
+ } else {
+ if (newItem.settings.banner.zip_files) {
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.zip')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.zip')
+ } else {
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.json')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.json')
+ }
}
newItems[state.current] = newItem
newState.items = newItems
return newState
}
+function toggleCustomProps(props, nameArray) {
+ return props.map(prop => {
+ if(prop.id === nameArray[0]) {
+ return {
+ ...prop,
+ active: !prop.active,
+ }
+ }
+ return prop
+ })
+}
+
function toggleSettingsValue(state, action) {
let newItem = {...state.items[state.current]}
let newSettings = {...newItem.settings}
- if(action.name === 'extraComps') {
+ if (action.name === 'extraComps') {
+
let newExtraComps = {...newSettings.extraComps}
newExtraComps.active = !newExtraComps.active
newSettings.extraComps = newExtraComps
} else {
- newSettings[action.name] = !newSettings[action.name]
- if(action.name === 'standalone') {
- if(newItem.destination) {
- if(newSettings.standalone){
- newItem.destination = newItem.destination.replace(extensionReplacer,'.js')
- newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.js')
- } else {
- newItem.destination = newItem.destination.replace(extensionReplacer,'.json')
- newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.json')
- }
+ var nameArray = action.name.split(':');
+ var object = newSettings;
+ while (nameArray.length) {
+ var name = nameArray.shift();
+ if (name === '[CUSTOM_PROP]') {
+ object.customProps = toggleCustomProps(object.customProps, nameArray)
+ break;
+ }
+ if (nameArray.length) {
+ object[name] = {
+ ...object[name],
+ };
+ object = object[name];
+ } else {
+ object[name] = !object[name];
}
}
- }
+ }
newItem.settings = newSettings
let newItems = {...state.items}
newItems[state.current] = newItem
@@ -333,7 +497,20 @@ function toggleExtraComp(state, action) {
function updateSettingsValue(state, action) {
let newItem = {...state.items[state.current]}
let newSettings = {...newItem.settings}
- newSettings[action.name] = action.value
+ var nameArray = action.name.split(':');
+ var object = newSettings;
+ while (nameArray.length) {
+ var name = nameArray.shift();
+ if (nameArray.length) {
+ object[name] = {
+ ...object[name],
+ };
+ object = object[name];
+ } else {
+ object[name] = action.value;
+ }
+ }
+
newItem.settings = newSettings
let newItems = {...state.items}
newItems[state.current] = newItem
@@ -353,7 +530,10 @@ function applySettingsToAllComps(state, action) {
const items = state.items
const itemKeys = Object.keys(items)
const newItems = itemKeys.reduce((accumulator, key) => {
- const settingsClone = JSON.parse(JSON.stringify(action.settings))
+ // checking for the id field to identify old versions of this data stored in local storage
+ const settings = action.comp.id ? action.comp.settings : action.comp
+ const comp = action.comp.id ? action.comp : {}
+ const settingsClone = JSON.parse(JSON.stringify(settings))
const item = items[key]
if (item.selected) {
const itemSettings = {
@@ -362,6 +542,8 @@ function applySettingsToAllComps(state, action) {
}
accumulator[key] = {
...item,
+ destination: setFilePath(state, item.destination, comp.destination, item.name, getSimpleSeparator()),
+ absoluteURI: setFilePath(state, item.absoluteURI, comp.absoluteURI, item.name, '/'),
settings: itemSettings
}
} else {
@@ -375,13 +557,30 @@ function applySettingsToAllComps(state, action) {
}
}
+function setFilePath(state, originalPath, suggestedPath, name, separator) {
+ if (originalPath) {
+ return originalPath;
+ }
+ if (!state.shouldUseCompNameAsDefault) {
+ return suggestedPath;
+ }
+ if(!suggestedPath) {
+ return '';
+ }
+ const lastFolderIndex = suggestedPath.lastIndexOf(separator)
+ return suggestedPath.substr(0, lastFolderIndex) + separator + name + '.json'
+}
+
function applySettingsFromCache(state, action) {
if(action.allComps) {
return applySettingsToAllComps(state, action)
}
- const settingsClone = JSON.parse(JSON.stringify(action.settings))
+ // checking for the id field to identify old versions of this data stored in local storage
+ const settings = action.comp.id ? action.comp.settings : action.comp
+ const comp = action.comp.id ? action.comp : {}
+ const settingsClone = JSON.parse(JSON.stringify(settings))
let item = state.items[state.current]
const newSettings = {
@@ -394,14 +593,418 @@ function applySettingsFromCache(state, action) {
...state.items,
[state.current]: {
...item,
- settings: newSettings
+ destination: setFilePath(state, item.destination, comp.destination, item.name, getSimpleSeparator()),
+ absoluteURI: setFilePath(state, item.absoluteURI, comp.absoluteURI, item.name, '/'),
+ settings: newSettings,
}
}
}
- console.log(newState)
return newState
}
+/*function updateExportMode(state, action) {
+ let newItem = {...state.items[state.current]}
+ let newSettings = {...newItem.settings}
+ newSettings.export_mode = action.exportMode
+ if (newItem.destination) {
+ if (newSettings.export_mode === ExportModes.STANDALONE) {
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.js')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.js')
+ } else if (newSettings.export_mode === ExportModes.STANDARD){
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.json')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.json')
+ } else {
+ if (newSettings.banner.zip_files) {
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.zip')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.zip')
+ } else {
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.json')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.json')
+ }
+ }
+ }
+ newItem.settings = newSettings
+ let newItems = {...state.items}
+ newItems[state.current] = newItem
+ let newState = {...state}
+ newState.items = newItems
+ return newState
+}*/
+
+function toggleMode(state, action) {
+ let newItem = {...state.items[state.current]}
+ let newSettings = {...newItem.settings}
+ const mode = action.value
+ newSettings.export_modes = {
+ ...newSettings.export_modes,
+ [mode]: !newSettings.export_modes[mode]
+ }
+ newItem.settings = newSettings
+ ////
+ if (newItem.destination) {
+ if (newSettings.export_modes.standalone) {
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.js')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.js')
+ } else if (newSettings.export_modes.banner && newSettings.banner.zip_files){
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.zip')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.zip')
+ } else {
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.json')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.json')
+ }
+ }
+ ////
+ let newItems = {...state.items}
+ newItems[state.current] = newItem
+ return {
+ ...state,
+ items: newItems
+ }
+}
+
+function updateBanner(state, action) {
+ let newItem = {...state.items[state.current]}
+ let newSettings = {...newItem.settings}
+ const newBanner = {...newSettings.banner}
+ if (action.type === actionTypes.SETTINGS_BANNER_WIDTH_UPDATED) {
+ newBanner.width = action.value
+ } else if (action.type === actionTypes.SETTINGS_BANNER_HEIGHT_UPDATED) {
+ newBanner.height = action.value
+ } else if (action.type === actionTypes.SETTINGS_BANNER_ORIGIN_UPDATED) {
+ newBanner.lottie_origin = action.value
+ } else if (action.type === actionTypes.SETTINGS_BANNER_VERSION_UPDATED) {
+ newBanner.lottie_library = action.value
+ } else if (action.type === actionTypes.SETTINGS_BANNER_LIBRARY_PATH_UPDATED) {
+ newBanner.lottie_path = action.value
+ } else if (action.type === actionTypes.SETTINGS_BANNER_RENDERER_UPDATED) {
+ newBanner.lottie_renderer = action.value
+ } else if (action.type === actionTypes.SETTINGS_BANNER_CLICK_TAG_UPDATED) {
+ newBanner.click_tag = action.value
+ } else if (action.type === actionTypes.SETTINGS_BANNER_ZIP_FILES_UPDATED) {
+ newBanner.zip_files = !newBanner.zip_files
+ } else if (action.type === actionTypes.SETTINGS_BANNER_INCLUDE_DATA_IN_TEMPLATE_UPDATED) {
+ newBanner.shouldIncludeAnimationDataInTemplate = !newBanner.shouldIncludeAnimationDataInTemplate
+ } else if (action.type === actionTypes.SETTINGS_BANNER_CUSTOM_SIZE_UPDATED) {
+ newBanner.use_original_sizes = !newBanner.use_original_sizes
+ } else if (action.type === actionTypes.SETTINGS_BANNER_LOOP_TOGGLE) {
+ newBanner.shouldLoop = !newBanner.shouldLoop
+ } else if (action.type === actionTypes.SETTINGS_BANNER_LOOP_COUNT_CHANGE) {
+ newBanner.loopCount = action.value
+ } else if (action.type === actionTypes.SETTINGS_BANNER_LIBRARY_FILE_SELECTED) {
+ newBanner.localPath = action.value
+ }
+ if (action.type === actionTypes.SETTINGS_BANNER_ORIGIN_UPDATED
+ || action.type === actionTypes.SETTINGS_BANNER_VERSION_UPDATED)
+ {
+ if ([LottieLibraryOrigins.LOCAL, LottieLibraryOrigins.CDNJS].includes(newBanner.lottie_origin)) {
+ const lottieVersion = findLottieVersion(newBanner.lottie_library)
+ if (!lottieVersion.renderers.includes(newBanner.lottie_renderer)) {
+ newBanner.lottie_renderer = lottieVersion.renderers[0]
+ }
+ }
+ }
+ newSettings.banner = newBanner
+ newItem.settings = newSettings
+ let newItems = {...state.items}
+ newItems[state.current] = newItem
+
+ if (action.type === actionTypes.SETTINGS_BANNER_ZIP_FILES_UPDATED) {
+ if (newBanner.zip_files) {
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.zip')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.zip')
+ } else {
+ newItem.destination = newItem.destination.replace(extensionReplacer,'.json')
+ newItem.absoluteURI = newItem.absoluteURI.replace(extensionReplacer,'.json')
+ }
+ }
+
+ return {
+ ...state,
+ items: newItems
+ }
+
+}
+
+function updateDemo(state, action) {
+
+ let newItem = {...state.items[state.current]}
+ let newSettings = {...newItem.settings}
+ const newDemoData = {...newSettings.demoData}
+ newDemoData.backgroundColor = action.value
+ newSettings.demoData = newDemoData
+ newItem.settings = newSettings
+ let newItems = {...state.items}
+ newItems[state.current] = newItem
+ return {
+ ...state,
+ items: newItems
+ }
+}
+
+function toggleCompNameAsDefault(state, action) {
+ return {
+ ...state,
+ shouldUseCompNameAsDefault: !state.shouldUseCompNameAsDefault,
+ }
+}
+
+function toggleAEPathAsDestinationFolder(state, action) {
+ return {
+ ...state,
+ shouldUseAEPathAsDestinationFolder: !state.shouldUseAEPathAsDestinationFolder,
+ }
+}
+
+function toggleSettingSCopy(state, action) {
+ return {
+ ...state,
+ shouldKeepCopyOfSettings: !state.shouldKeepCopyOfSettings,
+ }
+}
+
+function toggleDefaultFolder(state, action) {
+ return {
+ ...state,
+ shouldUsePathAsDefaultFolder: !state.shouldUsePathAsDefaultFolder,
+ }
+}
+function toggleIncludeCompNameAsFolder(state, action) {
+ return {
+ ...state,
+ shouldIncludeCompNameAsFolder: !state.shouldIncludeCompNameAsFolder,
+ }
+}
+
+function toggleSaveInProjectFile(state, action) {
+ return {
+ ...state,
+ shouldSaveInProjectFile: !state.shouldSaveInProjectFile,
+ }
+}
+
+function toggleSkipDoneView(state, action) {
+ return {
+ ...state,
+ shouldSkipDoneView: !state.shouldSkipDoneView,
+ }
+}
+
+function toggleReuseFontData(state, action) {
+ return {
+ ...state,
+ shouldReuseFontData: !state.shouldReuseFontData,
+ }
+}
+
+function setDefaultFolderPath(state, action) {
+ return {
+ ...state,
+ defaultFolderPath: action.value,
+ }
+}
+
+function setSettingsDestinationPath(state, action) {
+ return {
+ ...state,
+ settingsDestinationCopy: action.value,
+ }
+}
+
+function storeReportsPath(state, action) {
+ var comp = {
+ ...state.items[action.compId],
+ reportPath: action.reportPath,
+ } || {}
+ return {
+ ...state,
+ items: {
+ ...state.items,
+ [action.compId]: comp,
+ }
+ }
+}
+
+const defaultMetadataCustomProp = {
+ name: '',
+ active: true,
+ value: 1,
+}
+
+function addMetadataCustomProp(state) {
+ const item = state.items[state.current]
+ return {
+ ...state,
+ items: {
+ ...state.items,
+ [state.current]: {
+ ...item,
+ settings: {
+ ...item.settings,
+ metadata: {
+ ...item.settings.metadata,
+ customProps: [
+ ...item.settings.metadata.customProps,
+ {
+ ...defaultMetadataCustomProp,
+ name: `Custom Property ${item.settings.metadata.customProps.length + 1}`,
+ id: random(10),
+ }
+ ]
+ }
+ }
+ }
+ }
+ }
+}
+
+function deleteMetadataCustomProp(state, action) {
+ const item = state.items[state.current]
+ return {
+ ...state,
+ items: {
+ ...state.items,
+ [state.current]: {
+ ...item,
+ settings: {
+ ...item.settings,
+ metadata: {
+ ...item.settings.metadata,
+ customProps: item.settings.metadata.customProps.filter(item => item.id !== action.id)
+ }
+ }
+ }
+ }
+ }
+}
+
+function updateMetadataCustomPropTitle(state, action) {
+ const item = state.items[state.current]
+ return {
+ ...state,
+ items: {
+ ...state.items,
+ [state.current]: {
+ ...item,
+ settings: {
+ ...item.settings,
+ metadata: {
+ ...item.settings.metadata,
+ customProps: item.settings.metadata.customProps.map(item => {
+ if(item.id === action.id) {
+ return {
+ ...item,
+ name: action.value,
+ }
+ }
+ return item
+ })
+ }
+ }
+ }
+ }
+ }
+}
+
+function updateMetadataCustomPropValue(state, action) {
+ const item = state.items[state.current]
+ return {
+ ...state,
+ items: {
+ ...state.items,
+ [state.current]: {
+ ...item,
+ settings: {
+ ...item.settings,
+ metadata: {
+ ...item.settings.metadata,
+ customProps: item.settings.metadata.customProps.map(item => {
+ if(item.id === action.id) {
+ return {
+ ...item,
+ value: action.value,
+ }
+ }
+ return item
+ })
+ }
+ }
+ }
+ }
+ }
+}
+
+function setCompsSelection(state, value) {
+ const items = state.items
+ const itemKeys = Object.keys(items)
+ const newItems = itemKeys.reduce((accumulator, key) => {
+ const item = items[key]
+ accumulator[key] = {
+ ...item,
+ selected: value,
+ }
+ return accumulator
+ }, {})
+ return {
+ ...state,
+ items: newItems,
+ }
+}
+
+function selectAllComps(state, action) {
+ return setCompsSelection(state, true);
+}
+
+function unselectAllComps(state, action) {
+ return setCompsSelection(state, false);
+}
+
+function deleteTemplate(state, action) {
+ const templates = state.templates;
+ const list = templates.list;
+ const templateIndex = list.findIndex(template => template.value === action.value)
+ return {
+ ...state,
+ templates: {
+ ...state.templates,
+ list: [ ...list.slice(0, templateIndex), ...list.slice(templateIndex + 1) ]
+ }
+ }
+}
+
+function addTemplate(state, action) {
+ const templates = state.templates;
+ const list = templates.list;
+ return {
+ ...state,
+ templates: {
+ ...state.templates,
+ list: [ ...list, action.templateData]
+ }
+ }
+}
+
+function handleTemplateError(state, action) {
+ const item = state.items[action.compId];
+ const newItem = {
+ ...item,
+ settings: {
+ ...item.settings,
+ template: {
+ ...item.settings.template,
+ errors: action.errors,
+ }
+ }
+
+ }
+ return {
+ ...state,
+ items: {
+ ...state.items,
+ [action.compId]: newItem,
+ },
+ }
+}
+
export default function compositions(state = initialState, action) {
switch (action.type) {
case actionTypes.COMPOSITIONS_UPDATED:
@@ -417,6 +1020,7 @@ export default function compositions(state = initialState, action) {
case actionTypes.RENDER_COMPLETE:
return completeRender(state, action)
case actionTypes.PROJECT_STORED_DATA:
+ case actionTypes.SETTINGS_LOADED:
return setStoredData(state, action)
case actionTypes.COMPOSITION_DISPLAY_SETTINGS:
case actionTypes.COMPOSITIONS_SET_CURRENT_COMP_ID:
@@ -429,10 +1033,68 @@ export default function compositions(state = initialState, action) {
return toggleExtraComp(state, action)
case actionTypes.SETTINGS_UPDATE_VALUE:
return updateSettingsValue(state, action)
+ case actionTypes.SETTINGS_COMP_NAME_AS_DEFAULT_TOGGLE:
+ return toggleCompNameAsDefault(state, action)
+ case actionTypes.SETTINGS_AE_AS_PATH_TOGGLE:
+ return toggleAEPathAsDestinationFolder(state, action)
+ case actionTypes.SETTINGS_PROJECT_SETTINGS_COPY:
+ return toggleSettingSCopy(state, action)
+ case actionTypes.SETTINGS_PATH_AS_DEFAULT_FOLDER:
+ return toggleDefaultFolder(state, action)
+ case actionTypes.SETTINGS_INCLUDE_COMP_NAME_AS_FOLDER_TOGGLE:
+ return toggleIncludeCompNameAsFolder(state, action)
+ case actionTypes.SETTINGS_DEFAULT_FOLDER_PATH_SELECTED:
+ return setDefaultFolderPath(state, action)
+ case actionTypes.SETTINGS_COPY_PATH_SELECTED:
+ return setSettingsDestinationPath(state, action)
case actionTypes.SETTINGS_TOGGLE_SELECTED:
return toggleSelected(state, action)
case actionTypes.SETTINGS_APPLY_FROM_CACHE:
return applySettingsFromCache(state, action)
+ case actionTypes.SETTINGS_BANNER_WIDTH_UPDATED:
+ case actionTypes.SETTINGS_BANNER_HEIGHT_UPDATED:
+ case actionTypes.SETTINGS_BANNER_ORIGIN_UPDATED:
+ case actionTypes.SETTINGS_BANNER_VERSION_UPDATED:
+ case actionTypes.SETTINGS_BANNER_LIBRARY_PATH_UPDATED:
+ case actionTypes.SETTINGS_BANNER_RENDERER_UPDATED:
+ case actionTypes.SETTINGS_BANNER_CLICK_TAG_UPDATED:
+ case actionTypes.SETTINGS_BANNER_ZIP_FILES_UPDATED:
+ case actionTypes.SETTINGS_BANNER_INCLUDE_DATA_IN_TEMPLATE_UPDATED:
+ case actionTypes.SETTINGS_BANNER_CUSTOM_SIZE_UPDATED:
+ case actionTypes.SETTINGS_BANNER_LOOP_TOGGLE:
+ case actionTypes.SETTINGS_BANNER_LOOP_COUNT_CHANGE:
+ case actionTypes.SETTINGS_BANNER_LIBRARY_FILE_SELECTED:
+ return updateBanner(state, action)
+ case actionTypes.SETTINGS_MODE_TOGGLE:
+ return toggleMode(state, action)
+ case actionTypes.REPORTS_SAVED:
+ return storeReportsPath(state, action)
+ case actionTypes.SETTINGS_DEMO_BACKGROUND_COLOR_CHANGE:
+ return updateDemo(state, action)
+ case actionTypes.SETTINGS_METADATA_CUSTOM_PROP_ADD:
+ return addMetadataCustomProp(state, action)
+ case actionTypes.SETTINGS_METADATA_CUSTOM_PROP_DELETE:
+ return deleteMetadataCustomProp(state, action)
+ case actionTypes.SETTINGS_METADATA_CUSTOM_PROP_TITLE_CHANGE:
+ return updateMetadataCustomPropTitle(state, action)
+ case actionTypes.SETTINGS_METADATA_CUSTOM_PROP_VALUE_CHANGE:
+ return updateMetadataCustomPropValue(state, action)
+ case actionTypes.COMPOSITIONS_SELECT_ALL:
+ return selectAllComps(state, action)
+ case actionTypes.COMPOSITIONS_UNSELECT_ALL:
+ return unselectAllComps(state, action)
+ case actionTypes.SETTINGS_SAVE_IN_PROJECT_FILE:
+ return toggleSaveInProjectFile(state, action)
+ case actionTypes.SETTINGS_SKIP_DONE_VIEW:
+ return toggleSkipDoneView(state, action)
+ case actionTypes.SETTINGS_REUSE_FONT_DATA:
+ return toggleReuseFontData(state, action)
+ case actionTypes.SETTINGS_TEMPLATES_DELETE:
+ return deleteTemplate(state, action)
+ case actionTypes.SETTINGS_TEMPLATES_LOADED:
+ return addTemplate(state, action)
+ case actionTypes.RENDER_TEMPLATE_ERROR:
+ return handleTemplateError(state, action)
default:
return state
}
diff --git a/src/redux/reducers/importer.js b/src/redux/reducers/importer.js
new file mode 100644
index 00000000..55f698cf
--- /dev/null
+++ b/src/redux/reducers/importer.js
@@ -0,0 +1,105 @@
+import actionTypes from '../actions/actionTypes'
+
+let initialState = {
+ state: 'idle',
+ pendingCommands: 0,
+ messages: [],
+ image: {},
+ fact: {},
+}
+
+function handleProcessStart(state, action) {
+ return {
+ ...state,
+ state: 'processing',
+ }
+}
+
+function handleProcessStartFromUrl(state, action) {
+ return {
+ ...state,
+ state: 'loading',
+ }
+}
+
+function handleProcessUpdate(state, action) {
+ return {
+ ...state,
+ state: 'processing',
+ pendingCommands: action.data.pendingCommands
+ }
+}
+
+function handleProcessEnd(state, action) {
+ return {
+ ...state,
+ pendingCommands: 0,
+ messages: action.data.alerts,
+ state: 'ended',
+ }
+}
+
+function handleProcessFailed(state, action) {
+ return {
+ ...state,
+ pendingCommands: 0,
+ messages: [{
+ type: 'message',
+ message: action.error.message
+ }],
+ state: 'failed',
+ }
+}
+
+function handleImageLoaded(state, action) {
+ return {
+ ...state,
+ image: action.data,
+ }
+}
+
+function handleCatFactLoaded(state, action) {
+ return {
+ ...state,
+ fact: action.data,
+ }
+}
+
+function handleLeave(state, action) {
+ return {
+ ...state,
+ ...initialState,
+ }
+}
+
+function handleCancel(state, action) {
+ return {
+ ...state,
+ ...initialState,
+ }
+}
+
+export default function project(state = initialState, action) {
+ switch (action.type) {
+ case actionTypes.IMPORT_LOTTIE_IMPORT_FILE_SUCCESS:
+ return handleProcessStart(state, action);
+ case actionTypes.IMPORT_LOTTIE_LOAD_URL:
+ return handleProcessStartFromUrl(state, action);
+ case actionTypes.IMPORT_LOTTIE_PROCESS_UPDATE:
+ return handleProcessUpdate(state, action);
+ case actionTypes.IMPORT_LOTTIE_PROCESS_END:
+ return handleProcessEnd(state, action);
+ case actionTypes.IMPORT_LOTTIE_PROCESS_FAILED:
+ return handleProcessFailed(state, action);
+ case actionTypes.IMPORT_LOTTIE_PROCESS_CANCEL:
+ return handleCancel(state, action);
+ case actionTypes.IMPORT_LEAVE:
+ return handleLeave(state, action);
+ case actionTypes.NASA_IMAGE_LOADED:
+ return handleImageLoaded(state, action);
+ case actionTypes.CAT_FACT_LOADED:
+ return handleCatFactLoaded(state, action);
+ default:
+ return state
+ }
+}
\ No newline at end of file
diff --git a/src/redux/reducers/index.js b/src/redux/reducers/index.js
index bf594f02..a90366d3 100644
--- a/src/redux/reducers/index.js
+++ b/src/redux/reducers/index.js
@@ -6,6 +6,10 @@ import preview from './preview'
import alerts from './alerts'
import paths from './paths'
import routes from './routes'
+import importer from './importer'
+import annotations from './annotations'
+import reports from './reports'
+import supported_features from './supported_features'
export default combineReducers({
routes,
@@ -14,5 +18,9 @@ export default combineReducers({
project,
preview,
alerts,
- paths
+ paths,
+ importer,
+ annotations,
+ reports,
+ supported_features,
})
\ No newline at end of file
diff --git a/src/redux/reducers/paths.js b/src/redux/reducers/paths.js
index 0c3f1d39..d71913ab 100644
--- a/src/redux/reducers/paths.js
+++ b/src/redux/reducers/paths.js
@@ -1,32 +1,50 @@
import actionTypes from '../actions/actionTypes'
+import getDelimiter from '../../helpers/delimiter'
let initialState = {
destinationPath: '',
- previewPath: ''
+ previewPath: '',
+ importPath: '',
}
function setDestinationPath(state, action) {
let newState = {...state}
- let destinationPath = action.compositionData.destination.substring(0,action.compositionData.destination.lastIndexOf('\\') + 1)
+ let destinationPath = action.compositionData.destination.substring(0,action.compositionData.destination.lastIndexOf(getDelimiter()) + 1)
newState.destinationPath = destinationPath
return newState
}
function setPreviewPath(state, action) {
let newState = {...state}
- let previewPath = action.path.substring(0,action.path.lastIndexOf('\\') + 1)
+ let previewPath = action.path.substring(0,action.path.lastIndexOf(getDelimiter()) + 1)
newState.previewPath = previewPath
return newState
}
+function setImportPath(state, action) {
+ let newState = {...state}
+ let importPath = action.path.substring(0,action.path.lastIndexOf(getDelimiter()) + 1)
+ newState.importPath = importPath
+ return newState
+}
+
+function handlePathsDataFetched(state, action) {
+ return {
+ ...state,
+ ...action.pathsData,
+ }
+}
+
export default function project(state = initialState, action) {
switch (action.type) {
case actionTypes.COMPOSITION_SET_DESTINATION:
return setDestinationPath(state, action)
case actionTypes.PREVIEW_FILE_BROWSED:
return setPreviewPath(state, action)
+ case actionTypes.IMPORT_LOTTIE_IMPORT_FILE_SUCCESS:
+ return setImportPath(state, action)
case actionTypes.PATHS_FETCHED:
- return action.pathsData
+ return handlePathsDataFetched(state, action)
default:
return state
}
diff --git a/src/redux/reducers/preview.js b/src/redux/reducers/preview.js
index 4b6bbfed..e43cfe17 100644
--- a/src/redux/reducers/preview.js
+++ b/src/redux/reducers/preview.js
@@ -1,20 +1,70 @@
import actionTypes from '../actions/actionTypes'
+import Variables from '../../helpers/styles/variables'
let initialState = {
- progress: 0,
+ progress: 0,
+ timelineFrame: 0,
animationData: null,
path: null,
- totalFrames:0
+ timelineData: {},
+ backgroundColor: Variables.colors.gray,
+ shouldLockTimelineToComposition: false,
+ shouldLoop: true,
+}
+
+function setStoredData(state, action) {
+ return {
+ ...state,
+ backgroundColor: (action.projectData.preview && action.projectData.preview.backgroundColor)
+ ? action.projectData.preview.backgroundColor
+ : Variables.colors.gray,
+ shouldLockTimelineToComposition: (action.projectData.preview && 'shouldLockTimelineToComposition' in action.projectData.preview)
+ ? action.projectData.preview.shouldLockTimelineToComposition
+ : false
+ }
+}
+
+function updateTimelineData(state, action) {
+ if (JSON.stringify(action.timelineData) === JSON.stringify(state.timelineData)) {
+ return state
+ } else {
+ const timelineData = action.timeline
+ const progress = (timelineData.time - timelineData.inPoint) / (timelineData.outPoint - timelineData.inPoint)
+ return {
+ ...state,
+ timelineData: timelineData,
+ progress: Math.max(0, Math.min(1, progress))
+ }
+ }
+}
+
+function updateProgress(state, action) {
+ return {...state, ...{progress: action.progress}}
}
export default function project(state = initialState, action) {
switch (action.type) {
case actionTypes.PREVIEW_ANIMATION_LOADED:
- return {...state, ...{animationData: action.animationData, path: action.path}}
+ return {...state, ...{
+ animationData: action.animationData,
+ assetsData: action.assetsData,
+ path: action.path}
+ }
case actionTypes.PREVIEW_ANIMATION_PROGRESS:
- return {...state, ...{progress: action.progress}}
+ return updateProgress(state, action)
case actionTypes.PREVIEW_TOTAL_FRAMES:
return {...state, ...{totalFrames: action.totalFrames}}
+ case actionTypes.PREVIEW_COLOR_UPDATE:
+ return {...state, ...{backgroundColor: action.color}}
+ case actionTypes.PREVIEW_LOCK_TIMELINE_TOGGLE:
+ return {...state, ...{shouldLockTimelineToComposition: !state.shouldLockTimelineToComposition}}
+ case actionTypes.PREVIEW_LOOP_TOGGLE:
+ return {...state, ...{shouldLoop: !state.shouldLoop}}
+ case actionTypes.PROJECT_STORED_DATA:
+ case actionTypes.SETTINGS_LOADED:
+ return setStoredData(state, action)
+ case actionTypes.PREVIEW_TIMELINE_UPDATED:
+ return updateTimelineData(state, action)
default:
return state
}
diff --git a/src/redux/reducers/project.js b/src/redux/reducers/project.js
index 2138d131..7e9a96fe 100644
--- a/src/redux/reducers/project.js
+++ b/src/redux/reducers/project.js
@@ -2,14 +2,21 @@ import actionTypes from '../actions/actionTypes'
let initialState = {
id: '',
+ tempId: '',
version: '',
- app_version: ''
+ app_version: '',
+ path: '',
+ name: '',
}
export default function project(state = initialState, action) {
switch (action.type) {
case actionTypes.PROJECT_SET_ID:
- return {...state, ...{id: action.id}}
+ return {...state, ...{id: action.id, name: action.name}}
+ case actionTypes.PROJECT_SET_TEMP_ID:
+ return {...state, ...{tempId: action.id}}
+ case actionTypes.PROJECT_SET_PATH:
+ return {...state, ...{path: action.path}}
case actionTypes.VERSION_FETCHED:
return {...state, ...{version: action.version}}
case actionTypes.APP_VERSION_FETCHED:
diff --git a/src/redux/reducers/render.js b/src/redux/reducers/render.js
index a80eccbb..34828fba 100644
--- a/src/redux/reducers/render.js
+++ b/src/redux/reducers/render.js
@@ -5,6 +5,8 @@ let initialState = {
progress: 0,
finished: false,
cancelled: false,
+ bundleFonts: false,
+ inlineFonts: false,
fonts: []
}
@@ -21,15 +23,29 @@ function updateFontsData(state, action) {
fFamily:'',
fWeight:'',
fStyle:'',
- fName:''
+ fName:'',
}
let fonts = []
let item, i, len = action.data.fonts.length
for(i = 0; i < len; i += 1) {
- item = action.data.fonts[i]
- fonts.push({...fontFormData,...{fFamily: item.family, fStyle: item.style, fName: item.name}})
+ item = action.data.fonts[i];
+ const font = {
+ ...fontFormData,
+ fFamily: item.family,
+ fStyle: item.style,
+ fName: item.name,
+ }
+ if (action.data.bundleFonts) {
+ font.fPath = item.location
+ }
+ fonts.push(font)
+ }
+ let newState = {
+ ...state,
+ ...{fonts: fonts},
+ bundleFonts: action.data.bundleFonts,
+ inlineFonts: action.data.inlineFonts,
}
- let newState = {...state, ...{fonts: fonts}}
return newState
}
@@ -63,7 +79,14 @@ function updateFontFromLocalData(state, action) {
i = 0
while(i {
+ const cachedRenderer = reports.renderers.find(cached => cached.id === renderer.id)
+ return cachedRenderer || renderer
+ }),
+ messageTypes: state.settings.messageTypes.map(messageType => {
+ const cachedMessageType = reports.messageTypes.find(cached => cached.id === messageType.id)
+ return cachedMessageType || messageType
+ }),
+ builders: state.settings.builders.map(builder => {
+ const cachedBuilder = reports.builders.find(cached => cached.id === builder.id)
+ return cachedBuilder || builder
+ }),
+ }
+ }
+}
+
+function showLoadErrorMessage(state, action) {
+ return {
+ ...state,
+ message: {
+ type: messageTypes.ALERT,
+ text: 'The animation failed to load. Check if the file exists and is a valid report.'
+ }
+ }
+}
+
+function handleLoadError(state, action) {
+ if (action.error && action.error.errorCode === errorCodes.FILE_CANCELLED) {
+ return state
+ } else {
+ return showLoadErrorMessage(state, action)
+ }
+}
+
+function dismissAlertMessage(state, action) {
+ return {
+ ...state,
+ message: initialState.message,
+ }
+}
+
+export default function project(state = initialState, action) {
+ switch (action.type) {
+ case actionTypes.GOTO_REPORTS:
+ return handleReportsViewSwitch(state, action);
+ case actionTypes.REPORTS_LOAD_SUCCESS:
+ return setReportsData(state, action);
+ case actionTypes.REPORTS_RENDERERS_UPDATED:
+ return updateRenderers(state, action);
+ case actionTypes.REPORTS_MESSAGES_UPDATED:
+ return updateMessages(state, action);
+ case actionTypes.REPORTS_BUILDERS_UPDATED:
+ return updateBuilders(state, action);
+ case actionTypes.PROJECT_STORED_DATA:
+ case actionTypes.SETTINGS_LOADED:
+ return setStoredData(state, action)
+ case actionTypes.REPORTS_LOAD_FAILED:
+ return handleLoadError(state, action)
+ case actionTypes.REPORTS_ALERT_DISMISSED:
+ return dismissAlertMessage(state, action)
+ default:
+ return state
+ }
+}
\ No newline at end of file
diff --git a/src/redux/reducers/routes.js b/src/redux/reducers/routes.js
index fa621ad3..55ad916a 100644
--- a/src/redux/reducers/routes.js
+++ b/src/redux/reducers/routes.js
@@ -7,10 +7,22 @@ let routes = {
settings: 3,
fonts: 4,
player: 5,
+ importFile: 6,
+ annotations: 7,
+ reports: 8,
+ supported_features: 9,
}
let initialState = {
- route: 0
+ route: routes.compositions
+}
+
+function handleRenderFonts(state, action) {
+ if (!action.data.bundleFonts) {
+ return {...state, ...{route: routes.fonts}}
+ } else {
+ return state
+ }
}
export default function project(state = initialState, action) {
@@ -18,21 +30,34 @@ export default function project(state = initialState, action) {
case actionTypes.CHANGE_VIEW:
return {...state, ...{route: action.route}}
case actionTypes.RENDER_FONTS:
- return {...state, ...{route: routes.fonts}}
+ return handleRenderFonts(state, action)
case actionTypes.RENDER_SET_FONTS:
case actionTypes.RENDER_START:
return {...state, ...{route: routes.render}}
case actionTypes.GOTO_PREVIEW:
+ case actionTypes.PREVIEW_ANIMATION:
return {...state, ...{route: routes.preview}}
case actionTypes.GOTO_PLAYER:
return {...state, ...{route: routes.player}}
case actionTypes.GOTO_SETTINGS:
return {...state, ...{route: routes.settings}}
+ case actionTypes.GOTO_IMPORT:
+ return {...state, ...{route: routes.importFile}}
case actionTypes.RENDER_STOP:
case actionTypes.SETTINGS_CANCEL:
case actionTypes.GOTO_COMPS:
return {...state, ...{route: routes.compositions}}
+ case actionTypes.GOTO_ANNOTATIONS:
+ return {...state, ...{route: routes.annotations}}
+ case actionTypes.GOTO_REPORTS:
+ return {...state, ...{route: routes.reports}}
+ case actionTypes.GOTO_SUPPORTED_FEATURES:
+ return {...state, ...{route: routes.supported_features}}
default:
return state
}
+}
+
+export {
+ routes
}
\ No newline at end of file
diff --git a/src/redux/reducers/supported_features.js b/src/redux/reducers/supported_features.js
new file mode 100644
index 00000000..da69536d
--- /dev/null
+++ b/src/redux/reducers/supported_features.js
@@ -0,0 +1,56 @@
+import actionTypes from '../actions/actionTypes'
+
+let initialState = {
+ documentedFeatures: null,
+ selectedFeatures: [],
+ status: 'idle',
+}
+
+function updateFeatures(state, action) {
+ return {
+ ...state,
+ status: 'loaded',
+ documentedFeatures: action.features,
+ }
+}
+
+function setStatusAsFailed(state) {
+ return {
+ ...state,
+ status: 'failed',
+ }
+}
+
+function updateSelectedFeatures(state, action) {
+ const flattenedFeaturesDictionary = action.features.reduce((acc, feature)=>{
+ acc[feature.matchName] = feature;
+ return acc;
+ }, {});
+ const flattenedFeatures = [];
+ for (var s in flattenedFeaturesDictionary) {
+ if (flattenedFeaturesDictionary.hasOwnProperty(s)) {
+ flattenedFeatures.push(flattenedFeaturesDictionary[s]);
+ }
+ }
+
+ if (JSON.stringify(state.selectedFeatures) === JSON.stringify(flattenedFeatures)) {
+ return state;
+ }
+ return {
+ ...state,
+ selectedFeatures: flattenedFeatures,
+ }
+}
+
+export default function supported_features(state = initialState, action) {
+ switch (action.type) {
+ case actionTypes.SUPPORTED_FEATURES_LOAD_SUCCESS:
+ return updateFeatures(state, action);
+ case actionTypes.SUPPORTED_FEATURES_SELECTION_UPDATED:
+ return updateSelectedFeatures(state, action);
+ case actionTypes.SUPPORTED_FEATURES_LOAD_FAILED:
+ return setStatusAsFailed(state);
+ default:
+ return state
+ }
+}
\ No newline at end of file
diff --git a/src/redux/sagas/annotations_sagas.js b/src/redux/sagas/annotations_sagas.js
new file mode 100644
index 00000000..403f0af4
--- /dev/null
+++ b/src/redux/sagas/annotations_sagas.js
@@ -0,0 +1,42 @@
+import { call, takeEvery, take , race, put } from 'redux-saga/effects'
+import { delay } from 'redux-saga'
+import actions from '../actions/actionTypes'
+import {
+ getCurrentLayers,
+ getAvailableAnnotation,
+} from '../../helpers/AnnotationsBridge'
+import {
+ annotationsListFetched,
+} from '..//actions/annotationActions'
+
+
+function *ping() {
+ while(true) {
+ getCurrentLayers()
+ yield call(delay, 250)
+ }
+}
+
+function *initialize(action) {
+ try{
+ yield race({
+ ping: call(ping),
+ finalize: take(actions.ANNOTATIONS_FINALIZE),
+ })
+ } catch(err) {
+ }
+}
+
+function *getAvailalbeAnnotations() {
+ try {
+ const availableAnnotations = yield call(getAvailableAnnotation)
+ yield put(annotationsListFetched(availableAnnotations))
+ } catch(error) {
+ console.log(error)
+ }
+}
+
+export default [
+ takeEvery(actions.ANNOTATIONS_INITIALIZE, initialize),
+ takeEvery(actions.ANNOTATIONS_INITIALIZE, getAvailalbeAnnotations),
+]
\ No newline at end of file
diff --git a/src/redux/sagas/composition_sagas.js b/src/redux/sagas/composition_sagas.js
index b83ff032..ec17a3f3 100644
--- a/src/redux/sagas/composition_sagas.js
+++ b/src/redux/sagas/composition_sagas.js
@@ -1,16 +1,40 @@
import { call, put, take, fork, select, takeEvery } from 'redux-saga/effects'
import actions from '../actions/actionTypes'
import {saveSettingsToLocalStorage, getSettingsFromLocalStorage} from '../../helpers/localStorageHelper'
-import {getCompositions, getDestinationPath, renderNextComposition, stopRenderCompositions} from '../../helpers/CompositionsProvider'
+import {getSimpleSeparator} from '../../helpers/osHelper'
+import {
+ getCompositions,
+ getDestinationPath,
+ renderNextComposition,
+ stopRenderCompositions,
+ getProjectPath,
+ getSavingPath,
+ createTempIdHeader,
+} from '../../helpers/CompositionsProvider'
import getRenderComposition from '../selectors/render_composition_selector'
import storingPathsSelector from '../selectors/storing_paths_selector'
import settingsSelector from '../selectors/settings_selector'
-import {applySettingsFromCache} from '../actions/compositionActions'
+import globalSettingsSelector from '../selectors/global_settings_selector'
+import {
+ applySettingsFromCache,
+ settingsBannerLibraryFileSelected,
+ settingsDefaultFolderPathSelected,
+ settingsCopyPathPathSelected,
+ settingsLoaded,
+ templateLoaded,
+} from '../actions/compositionActions'
+import fileBrowser from '../../helpers/FileBrowser'
+import folderBrowser from '../../helpers/FolderBrowser'
+import loadBodymovinFileData from '../../helpers/FileLoader'
+import validateTemplate from '../../helpers/templates/template'
+import templateSelector from '../selectors/global_settings_template_selector'
function *getCSCompositions(action) {
while(true) {
- yield take(actions.COMPOSITIONS_GET_COMPS)
+ yield take([actions.COMPOSITIONS_GET_COMPS, actions.APP_INITIALIZED, actions.APP_FOCUSED])
yield call(getCompositions)
+ yield call(getProjectPath)
+ yield call(createTempIdHeader)
}
}
@@ -19,7 +43,18 @@ function *getCompositionDestination() {
let action = yield take(actions.COMPOSITION_GET_DESTINATION)
try{
let paths = yield select(storingPathsSelector)
- const compositions = yield call(getDestinationPath, action.comp, paths.destinationPath)
+ let {
+ shouldUseCompNameAsDefault,
+ shouldUseAEPathAsDestinationFolder,
+ shouldUsePathAsDefaultFolder,
+ defaultFolderPath,
+ } = yield select(globalSettingsSelector)
+ let destinationPath = shouldUseAEPathAsDestinationFolder
+ ? `${paths.projectPath}${getSimpleSeparator()}`
+ : shouldUsePathAsDefaultFolder && defaultFolderPath
+ ? `${defaultFolderPath.fsName}${getSimpleSeparator()}`
+ : paths.destinationPath
+ const compositions = yield call(getDestinationPath, action.comp, destinationPath, shouldUseCompNameAsDefault)
if (compositions) {
yield put({
type: actions.COMPOSITIONS_UPDATED,
@@ -32,16 +67,55 @@ function *getCompositionDestination() {
}
}
+function *checkTemplateValidation(compData) {
+ try {
+ if (compData && compData.settings && compData.settings.template && compData.settings.template.active) {
+ const templateData = yield select(templateSelector);
+ if (templateData.templates && templateData.templates.list.length > compData.settings.template.id) {
+ const selectedTemplate = templateData.templates.list[compData.settings.template.id];
+ const jsonData = yield call(loadBodymovinFileData,compData.destination);
+ const parser = selectedTemplate.parser;
+ const errors = yield call(validateTemplate, jsonData, parser);
+ yield put({
+ type: actions.RENDER_TEMPLATE_ERROR,
+ errors,
+ compId: compData.id
+ })
+ }
+ }
+ } catch (error) {
+ console.log('ERROR', error);
+ }
+}
+
function *startRender() {
+ let compData
while(true) {
- yield take([actions.RENDER_START,actions.RENDER_COMPLETE])
- let comp = yield select(getRenderComposition)
+ const comp = yield select(getRenderComposition)
if(comp) {
- yield call(renderNextComposition, comp)
+ const {
+ shouldIncludeCompNameAsFolder,
+ } = yield select(globalSettingsSelector)
+ compData = {
+ ...comp,
+ }
+ if (shouldIncludeCompNameAsFolder) {
+ const absoluteURISplit = compData.absoluteURI.split('/')
+ absoluteURISplit.splice(absoluteURISplit.length - 1, 0, [comp.name])
+ compData.absoluteURI = absoluteURISplit.join('/')
+ const delimiter = getSimpleSeparator()
+ const destinationSplit = compData.destination.split(delimiter)
+ destinationSplit.splice(destinationSplit.length - 1, 0, [comp.name])
+ compData.destination = destinationSplit.join(delimiter)
+ }
+ yield call(renderNextComposition, compData)
+ yield take([actions.RENDER_COMPLETE])
+ yield call(checkTemplateValidation, compData)
} else {
yield put({
type: actions.RENDER_FINISHED
})
+ break;
}
}
}
@@ -69,12 +143,94 @@ function *applySettings(action) {
}
}
+function *searchLottiePath(action) {
+ try{
+ let paths = yield select(storingPathsSelector)
+ const initialPath = action.value ? action.value.path : paths.destinationPath
+ let filePath = yield call(fileBrowser, initialPath)
+ yield put(settingsBannerLibraryFileSelected(filePath))
+ } catch(err) {
+
+ }
+}
+
+function *searchDefaultDestinationPath(action) {
+ try{
+ let paths = yield select(storingPathsSelector)
+ const initialPath = action.value ? action.value.path : paths.defaultFolderPath
+ let filePath = yield call(folderBrowser, initialPath)
+ yield put(settingsDefaultFolderPathSelected(filePath))
+ } catch(err) {
+ }
+}
+
+function *searchSettingsCopyPath(action) {
+ try{
+ const path = yield call(getSavingPath, action.value ? action.value.absoluteURI: '')
+ yield put(settingsCopyPathPathSelected(path))
+ } catch(err) {
+ }
+}
+
+function *loadSettings() {
+ var result;
+ try {
+ result = window.cep.fs.showOpenDialogEx(false, false);
+ if (result && result.data.length) {
+ var readResult = window.cep.fs.readFile(result.data[0]);
+ if(readResult.err === 0) {
+ var jsonData = JSON.parse(readResult.data);
+ yield put(settingsLoaded(jsonData))
+ } else {
+ }
+ }
+ } catch(err) {
+ console.log('err', err)
+ }
+}
+
+function *handleRenderFinished() {
+ const {
+ shouldSkipDoneView,
+ } = yield select(globalSettingsSelector)
+ if (shouldSkipDoneView) {
+ yield put({
+ type: actions.GOTO_COMPS
+ })
+ }
+}
+
+function *loadTemplate() {
+ var result;
+ try {
+ result = window.cep.fs.showOpenDialogEx(false, false);
+ if (result && result.data.length) {
+ var readResult = window.cep.fs.readFile(result.data[0]);
+ if(readResult.err === 0) {
+ var jsonData = JSON.parse(readResult.data);
+ if (jsonData.type === 'blueprint') {
+ yield put(templateLoaded(jsonData))
+ }
+ } else {
+ }
+ }
+ } catch(err) {
+ console.log('err', err)
+ }
+}
+
export default [
fork(getCSCompositions),
fork(getCompositionDestination),
- fork(startRender),
+ takeEvery(actions.RENDER_START, startRender),
takeEvery(actions.RENDER_STOP, stopRender),
takeEvery(actions.COMPOSITION_DISPLAY_SETTINGS, goToSettings),
takeEvery(actions.SETTINGS_REMEMBER, saveSettings),
takeEvery(actions.SETTINGS_APPLY, applySettings),
+ takeEvery(actions.SETTINGS_BANNER_LIBRARY_FILE_UPDATE, searchLottiePath),
+ takeEvery(actions.SETTINGS_DEFAULT_FOLDER_PATH_UPDATE, searchDefaultDestinationPath),
+ takeEvery(actions.SETTINGS_COPY_PATH_UPDATE, searchSettingsCopyPath),
+ takeEvery(actions.SETTINGS_LOAD, loadSettings),
+ takeEvery(actions.RENDER_FINISHED, handleRenderFinished),
+ takeEvery(actions.SETTINGS_TEMPLATES_LOAD, loadTemplate),
]
\ No newline at end of file
diff --git a/src/redux/sagas/import_sagas.js b/src/redux/sagas/import_sagas.js
new file mode 100644
index 00000000..50c50c5b
--- /dev/null
+++ b/src/redux/sagas/import_sagas.js
@@ -0,0 +1,47 @@
+import { call, put, takeEvery, select,take ,fork } from 'redux-saga/effects'
+import actions from '../actions/actionTypes'
+import {
+ // nasaImageLoaded,
+ catFactLoaded,
+ lottieImportFileSuccess,
+ lottieImportFileFailed,
+} from '../actions/importActions'
+import fileBrowser from '../../helpers/FileBrowser'
+import storingPathsSelector from '../selectors/storing_paths_selector'
+// import nasaHelper from '../../helpers/nasaHelper'
+import catFactHelper from '../../helpers/catFactHelper'
+
+function *importLottieFile(action) {
+ try{
+ let paths = yield select(storingPathsSelector)
+ let fileData = yield call(fileBrowser, paths.importPath)
+ yield put(lottieImportFileSuccess(fileData.fsName))
+ } catch(err) {
+ yield put(lottieImportFileFailed())
+ }
+}
+
+// function *loadRandomAsset() {
+// const nasaImage = yield call(nasaHelper)
+// yield put(nasaImageLoaded(nasaImage))
+// }
+
+function *loadCatFact() {
+ const catFact = yield call(catFactHelper)
+ yield put(catFactLoaded(catFact))
+}
+
+function *loopRandomAsset() {
+ while(true) {
+ yield take([
+ actions.IMPORT_LOTTIE_IMPORT_FILE_SUCCESS,
+ actions.IMPORT_LOTTIE_LOAD_URL,
+ ])
+ yield call(loadCatFact)
+ }
+}
+
+export default [
+ takeEvery(actions.IMPORT_LOTTIE_IMPORT_FILE, importLottieFile),
+ fork(loopRandomAsset),
+]
\ No newline at end of file
diff --git a/src/redux/sagas/index.js b/src/redux/sagas/index.js
index 1d8ed5bf..4ce471a4 100644
--- a/src/redux/sagas/index.js
+++ b/src/redux/sagas/index.js
@@ -1,13 +1,22 @@
+import { all } from 'redux-saga/effects'
import compositions from './composition_sagas'
import project from './project_sagas'
import preview from './preview_sagas'
import render from './render_sagas'
+import importFiles from './import_sagas'
+import annotations from './annotations_sagas'
+import reports from './reports_sagas'
+import supported_features from './supported_features_sagas'
-export default function* rootSaga() {
- yield [
- compositions,
- project,
- preview,
- render
- ]
+export default function* rootSaga() {
+ yield all([
+ ...compositions,
+ ...project,
+ ...preview,
+ ...render,
+ ...importFiles,
+ ...annotations,
+ ...reports,
+ ...supported_features,
+ ])
}
\ No newline at end of file
diff --git a/src/redux/sagas/preview_sagas.js b/src/redux/sagas/preview_sagas.js
index 99593af6..13e1c13f 100644
--- a/src/redux/sagas/preview_sagas.js
+++ b/src/redux/sagas/preview_sagas.js
@@ -1,28 +1,73 @@
-import { call, put, takeEvery, select } from 'redux-saga/effects'
+import { call, put, takeEvery, select, all, race, take } from 'redux-saga/effects'
+import { delay } from 'redux-saga'
import actions from '../actions/actionTypes'
import fileBrowser from '../../helpers/FileBrowser'
-import loadBodymovinFileData from '../../helpers/FileLoader'
+import loadBodymovinFileData, {loadArrayBuffer} from '../../helpers/FileLoader'
import storingPathsSelector from '../selectors/storing_paths_selector'
+import timelineLockSelector from '../selectors/preview_lock_timeline_selector'
+import {
+ timelineUpdated,
+} from '../actions/previewActions'
+import {getSimpleSeparator} from '../../helpers/osHelper'
+import {
+ getLatestVersion as getLatestSkottieVersion,
+ getSavedVersion as getSkottieSavedVersions,
+ saveLatestVersion as saveSkottieLatestVersion,
+ initialize as initializeSkottie,
+} from '../../helpers/skottie/skottie'
+import {
+ getCompositionTimelinePosition,
+ setCompositionTimelinePosition,
+} from '../../helpers/CompositionsProvider'
+
function *browseFile() {
try{
let paths = yield select(storingPathsSelector)
- let filePath = yield call(fileBrowser, paths.previewPath)
+ let fileData = yield call(fileBrowser, paths.previewPath)
yield put({
- type: actions.PREVIEW_FILE_BROWSED,
- path: filePath
- })
+ type: actions.PREVIEW_FILE_BROWSED,
+ path: fileData.fsName
+ })
} catch(err) {
}
}
+function *buildAssetData(path, asset) {
+ const filePath = path + asset.u + asset.p
+ const assetFile = yield call(loadArrayBuffer, filePath)
+ return {
+ name: asset.p,
+ data: assetFile,
+ }
+}
+
+function *loadAssets(path, assets) {
+ try {
+ const assetsPath = path.substr(0, path.lastIndexOf(getSimpleSeparator()) + 1)
+ const filesData = yield all(
+ assets
+ .filter(asset => 'id' in asset)
+ .map(asset => buildAssetData(assetsPath, asset))
+ )
+ return filesData.reduce((accumulator, asset)=>{
+ accumulator[asset.name] = asset.data
+ return accumulator
+ }, {})
+ } catch(err) {
+ return {}
+ }
+}
+
function *loadBodymovinFile(action) {
try{
let animationData = yield call(loadBodymovinFileData, action.path)
+ const assetsData = yield call(loadAssets, action.path, animationData.assets)
yield put({
type: actions.PREVIEW_ANIMATION_LOADED,
animationData: animationData,
+ assetsData,
path: action.path
})
} catch(err) {
@@ -32,7 +77,84 @@ function *loadBodymovinFile(action) {
}
}
+function *ping() {
+ while(true) {
+ try {
+ const timelineData = yield call(getCompositionTimelinePosition)
+ if (timelineData.active) {
+ yield put(timelineUpdated(timelineData.data))
+ }
+ } catch(err) {
+ }
+ yield call(delay, 50)
+ }
+}
+
+function *timelineLockPing() {
+ while(true) {
+ yield race({
+ ping: call(ping),
+ progress: take(actions.PREVIEW_ANIMATION_PROGRESS),
+ })
+ yield call(delay, 1000)
+ }
+}
+
+function *timelineLock() {
+ while(true) {
+ const shouldLockTimeline = yield select(timelineLockSelector)
+ if (shouldLockTimeline) {
+ yield race({
+ toggle: take(actions.PREVIEW_LOCK_TIMELINE_TOGGLE),
+ timelineLockPing: call(timelineLockPing),
+ })
+ } else {
+ yield take(actions.PREVIEW_LOCK_TIMELINE_TOGGLE)
+ }
+ }
+}
+
+function *timelineUpdate() {
+ while(true) {
+ const action = yield take(actions.PREVIEW_ANIMATION_PROGRESS)
+ const shouldLockTimeline = yield select(timelineLockSelector)
+ if (shouldLockTimeline) {
+ setCompositionTimelinePosition(action.progress)
+ }
+ }
+}
+
+function *handleTimelineLock() {
+ yield race({
+ finalize: take(actions.PREVIEW_FINALIZE),
+ timelineLock: call(timelineLock),
+ timelineUpdate: call(timelineUpdate),
+ })
+}
+
+function *searchSkottieUpdates() {
+ try {
+ yield call(initializeSkottie)
+ const latestVersion = yield call(getLatestSkottieVersion)
+ if (!latestVersion) {
+ return;
+ }
+ const savedVersions = yield call(getSkottieSavedVersions)
+ if (!savedVersions.length || savedVersions[savedVersions.length - 1].version !== latestVersion) {
+ saveSkottieLatestVersion(latestVersion)
+ }
+ } catch(err) {
+ console.log(err)
+ }
+}
+
export default [
takeEvery(actions.PREVIEW_BROWSE_FILE, browseFile),
- takeEvery(actions.PREVIEW_FILE_BROWSED, loadBodymovinFile)
+ takeEvery([
+ actions.PREVIEW_FILE_BROWSED,
+ actions.PREVIEW_ANIMATION,
+ ]
+ , loadBodymovinFile),
+ takeEvery(actions.PREVIEW_INITIALIZE, handleTimelineLock),
+ takeEvery(actions.PREVIEW_INITIALIZE, searchSkottieUpdates),
]
\ No newline at end of file
diff --git a/src/redux/sagas/project_sagas.js b/src/redux/sagas/project_sagas.js
index 6a45f733..c7307af5 100644
--- a/src/redux/sagas/project_sagas.js
+++ b/src/redux/sagas/project_sagas.js
@@ -1,13 +1,46 @@
import { call, put, take, select, fork, takeEvery } from 'redux-saga/effects'
import actions from '../actions/actionTypes'
-import {getProjectFromLocalStorage, saveProjectToLocalStorage, savePathsToLocalStorage, getPathsFromLocalStorage} from '../../helpers/localStorageHelper'
-import {getVersionFromExtension} from '../../helpers/CompositionsProvider'
+import {
+ getProjectFromLocalStorage,
+ saveProjectToLocalStorage,
+ savePathsToLocalStorage,
+ getPathsFromLocalStorage,
+ clearLocalStorage,
+ clearProjectsInLocalStorage,
+ getAllProjectsNamedFromLocalStorage,
+ compressAllProjects,
+} from '../../helpers/localStorageHelper'
+import {
+ loadFileData
+} from '../../helpers/FileLoader'
+import {
+ getVersionFromExtension,
+ setLottiePaths,
+ initializeServer,
+ saveProjectDataToXMP,
+ getProjectDataFromXMP,
+ setStorageLocation,
+ getStorageLocation,
+ getCompressedState,
+ setCompressedState,
+} from '../../helpers/CompositionsProvider'
+import {ping as serverPing} from '../../helpers/serverHelper'
import storingDataSelector from '../selectors/storing_data_selector'
import storingPathsSelector from '../selectors/storing_paths_selector'
+import LottieVersions from '../../helpers/LottieVersions'
+import fs from '../../helpers/fs_proxy'
+
+const delay = (ms) => new Promise(res => setTimeout(res, ms))
function *projectGetStoredData(action) {
try{
- let projectData = yield call(getProjectFromLocalStorage, action.id)
+ const storageLocation = yield call(getStorageLocation);
+ let projectData;
+ if (storageLocation === 'xmp') {
+ projectData = yield call(getProjectDataFromXMP);
+ } else {
+ projectData = yield call(getProjectFromLocalStorage, action.id);
+ }
if(projectData) {
yield put({
type: actions.PROJECT_STORED_DATA,
@@ -15,7 +48,6 @@ function *projectGetStoredData(action) {
})
}
} catch(err){
-
}
}
function *getPaths(action) {
@@ -37,26 +69,164 @@ function *getVersion(action) {
}
}
+function saveProjectDataToPath(data) {
+ try {
+ if (data.extraState.shouldKeepCopyOfSettings
+ && data.extraState.settingsDestinationCopy) {
+ fs.writeFileSync(data.extraState.settingsDestinationCopy.destination, JSON.stringify(data))
+ }
+ } catch (err) {
+ }
+}
+
function *saveStoredData() {
while(true) {
- yield take([actions.COMPOSITION_SET_DESTINATION, actions.COMPOSITIONS_TOGGLE_ITEM, actions.COMPOSITIONS_UPDATED, actions.SETTINGS_TOGGLE_VALUE, actions.SETTINGS_TOGGLE_EXTRA_COMP, actions.SETTINGS_CANCEL])
+ yield take([
+ actions.COMPOSITION_SET_DESTINATION,
+ actions.COMPOSITIONS_TOGGLE_ITEM,
+ actions.SETTINGS_TOGGLE_VALUE,
+ actions.SETTINGS_TOGGLE_EXTRA_COMP,
+ actions.SETTINGS_CANCEL,
+ actions.SETTINGS_BANNER_WIDTH_UPDATED,
+ actions.SETTINGS_BANNER_HEIGHT_UPDATED,
+ actions.SETTINGS_BANNER_ORIGIN_UPDATED,
+ actions.SETTINGS_BANNER_VERSION_UPDATED,
+ actions.SETTINGS_BANNER_LIBRARY_PATH_UPDATED,
+ actions.SETTINGS_BANNER_RENDERER_UPDATED,
+ actions.SETTINGS_BANNER_CLICK_TAG_UPDATED,
+ actions.SETTINGS_BANNER_ZIP_FILES_UPDATED,
+ actions.SETTINGS_BANNER_INCLUDE_DATA_IN_TEMPLATE_UPDATED,
+ actions.SETTINGS_BANNER_CUSTOM_SIZE_UPDATED,
+ actions.SETTINGS_APPLY_FROM_CACHE,
+ actions.SETTINGS_MODE_TOGGLE,
+ actions.SETTINGS_BANNER_LOOP_TOGGLE,
+ actions.SETTINGS_BANNER_LOOP_COUNT_CHANGE,
+ actions.SETTINGS_COMP_NAME_AS_DEFAULT_TOGGLE,
+ actions.SETTINGS_AE_AS_PATH_TOGGLE,
+ actions.SETTINGS_PATH_AS_DEFAULT_FOLDER,
+ actions.SETTINGS_INCLUDE_COMP_NAME_AS_FOLDER_TOGGLE,
+ actions.SETTINGS_DEFAULT_FOLDER_PATH_SELECTED,
+ actions.COMPOSITIONS_FILTER_CHANGE,
+ actions.SETTINGS_TOGGLE_SELECTED,
+ actions.SETTINGS_BANNER_LIBRARY_FILE_SELECTED,
+ actions.REPORTS_SAVED,
+ actions.REPORTS_RENDERERS_UPDATED,
+ actions.REPORTS_MESSAGES_UPDATED,
+ actions.REPORTS_BUILDERS_UPDATED,
+ actions.SETTINGS_DEMO_BACKGROUND_COLOR_CHANGE,
+ actions.PREVIEW_COLOR_UPDATE,
+ actions.SETTINGS_UPDATE_VALUE,
+ actions.SETTINGS_METADATA_CUSTOM_PROP_ADD,
+ actions.SETTINGS_METADATA_CUSTOM_PROP_DELETE,
+ actions.SETTINGS_METADATA_CUSTOM_PROP_TITLE_CHANGE,
+ actions.SETTINGS_METADATA_CUSTOM_PROP_VALUE_CHANGE,
+ actions.COMPOSITIONS_SELECT_ALL,
+ actions.COMPOSITIONS_UNSELECT_ALL,
+ actions.COMPOSITIONS_UNSELECT_ALL,
+ actions.SETTINGS_PROJECT_SETTINGS_COPY,
+ actions.SETTINGS_COPY_PATH_SELECTED,
+ actions.SETTINGS_LOADED,
+ actions.SETTINGS_SAVE_IN_PROJECT_FILE,
+ actions.SETTINGS_SKIP_DONE_VIEW,
+ actions.SETTINGS_REUSE_FONT_DATA,
+ actions.SETTINGS_TEMPLATES_LOADED,
+ ])
const storingData = yield select(storingDataSelector)
- yield call(saveProjectToLocalStorage, storingData.data, storingData.id)
+ try {
+ yield call(saveProjectDataToPath, storingData.data)
+ if (storingData.data.extraState.shouldSaveInProjectFile) {
+ yield call(saveProjectDataToXMP, storingData.data)
+ } else {
+ yield call(setStorageLocation, 'localStorage');
+ yield call(saveProjectToLocalStorage, storingData.data, storingData.id)
+ }
+ } catch (error) {
+ // Local storage exceeded
+ if (error && error.code === 22) {
+ const projects = yield call(getAllProjectsNamedFromLocalStorage);
+ yield put({
+ type: actions.SETTINGS_SAVE_FAILED,
+ projects,
+ })
+ }
+ }
+ }
+}
+
+function *clearCache() {
+ try {
+ yield call(clearLocalStorage)
+ } catch(err) {
+ }
+}
+
+function *clearProjectsFromCache(action) {
+ try {
+ yield call(clearProjectsInLocalStorage, action.ids)
+ } catch(err) {
}
}
function *savePathsData() {
while(true) {
- yield take([actions.COMPOSITION_SET_DESTINATION, actions.PREVIEW_FILE_BROWSED])
+ yield take([actions.COMPOSITION_SET_DESTINATION, actions.PREVIEW_FILE_BROWSED, actions.IMPORT_LOTTIE_IMPORT_FILE_SUCCESS])
const storingData = yield select(storingPathsSelector)
yield call(savePathsToLocalStorage, storingData)
}
}
+function *getLottieFilesSizes() {
+ let i = 0
+ while (i < LottieVersions.length) {
+ const lottieData = LottieVersions[i]
+ const fileData = yield call(loadFileData, `assets/player/${lottieData.local}` )
+ lottieData.fileSize = Math.round(fileData.size / 100) / 10 + ' Kb'
+ i += 1
+ }
+ setLottiePaths(LottieVersions)
+}
+
+function *pingServer() {
+ while(true) {
+ yield call(delay, 5000)
+ yield call(serverPing)
+ }
+}
+
+function *start() {
+ while(true) {
+ yield call(initializeServer)
+ try {
+ yield call(pingServer)
+ } catch (err) {
+ yield put({
+ type: actions.SERVER_PING_FAIL,
+ })
+ }
+ }
+}
+
+function *compressAllSettings() {
+ try {
+ const isCompressed = yield call(getCompressedState);
+ if (!isCompressed) {
+ yield call(compressAllProjects);
+ yield call(setCompressedState, true);
+ }
+ } catch (error) {
+ // console.log(error);
+ }
+}
+
export default [
takeEvery(actions.PROJECT_SET_ID, projectGetStoredData),
- takeEvery(actions.PATHS_GET, getPaths),
- takeEvery(actions.PATHS_GET, getVersion),
+ takeEvery([actions.APP_INITIALIZED], getPaths),
+ takeEvery([actions.APP_INITIALIZED], getVersion),
+ takeEvery([actions.APP_INITIALIZED], getLottieFilesSizes),
+ takeEvery([actions.APP_INITIALIZED], start),
+ takeEvery([actions.PROJECT_SET_ID], compressAllSettings),
+ takeEvery([actions.APP_CLEAR_CACHE_CONFIRMED], clearCache),
+ takeEvery([actions.APP_CLEAR_CACHE_PROJECTS], clearProjectsFromCache),
fork(saveStoredData),
fork(savePathsData)
]
\ No newline at end of file
diff --git a/src/redux/sagas/render_sagas.js b/src/redux/sagas/render_sagas.js
index ee2061cd..c1131cea 100644
--- a/src/redux/sagas/render_sagas.js
+++ b/src/redux/sagas/render_sagas.js
@@ -1,20 +1,69 @@
-import { call, take, put, takeEvery, fork, select } from 'redux-saga/effects'
+import { call, take, put, takeEvery, fork, select, all } from 'redux-saga/effects'
import actions from '../actions/actionTypes'
import {saveFontsFromLocalStorage, getFontsFromLocalStorage} from '../../helpers/localStorageHelper'
-import {setFonts, imageProcessed} from '../../helpers/CompositionsProvider'
+import {setFonts, imageProcessed, riveFileSaveSuccess, riveFileSaveFailed, expressionProcessed} from '../../helpers/CompositionsProvider'
import renderFontSelector from '../selectors/render_font_selector'
import setFontsSelector from '../selectors/set_fonts_selector'
+import globalSettingsSelector from '../selectors/global_settings_selector'
import imageProcessor from '../../helpers/ImageProcessorHelper'
+import {saveFile as riveSaveFile} from '../../helpers/riveHelper'
+import {getEncodedFile} from '../../helpers/FileLoader'
+import expressionProcessor from '../../helpers/expressions/expressions'
function *searchStoredFonts(action) {
try{
let storedFonts = yield call(getFontsFromLocalStorage, action.data.fonts)
+ const {
+ shouldReuseFontData,
+ } = yield select(globalSettingsSelector);
+
+ // If reusing font data is enabled and there is no missing font data, we return to the exporter.
+ if (shouldReuseFontData) {
+ const missingFont = storedFonts.some(fontData => fontData.data === null);
+ if (!missingFont) {
+ const fontsData = storedFonts.map(font => font.data);
+ setFonts(fontsData);
+ return;
+ }
+ }
yield put({
type: actions.RENDER_STORED_FONTS_FETCHED,
storedFonts: storedFonts
})
} catch(err) {
+ }
+}
+function *handleRenderFonts(action) {
+ if (!action.data.bundleFonts) {
+ yield call(searchStoredFonts, action)
+ } else {
+ let fontsInfo = yield select(setFontsSelector)
+ fontsInfo = fontsInfo.map((font, index) => {
+ return {
+ ...font,
+ origin: 3,
+ }
+ })
+ if (action.data.inlineFonts) {
+ const inlines = action.data.fonts.map(async function(font, index) {
+ let fontData
+ try {
+ fontData = await getEncodedFile(font.originalLocation)
+ } catch(err) {
+ fontData = ''
+ }
+ return fontData
+ })
+ const files = yield all(inlines)
+ fontsInfo = fontsInfo.map((font, index) => {
+ return {
+ ...font,
+ fPath: files[index],
+ }
+ })
+ }
+ setFonts(fontsInfo)
}
}
@@ -22,6 +71,9 @@ function *saveFonts() {
try{
let fontsInfo = yield select(setFontsSelector)
setFonts(fontsInfo)
+ fontsInfo.forEach(font => {
+ saveFontsFromLocalStorage(font);
+ })
} catch(err) {
}
@@ -49,13 +101,38 @@ function *storeFontData() {
}
function *processImage(action) {
- let response = yield call(imageProcessor, action.data)
- imageProcessed(response)
+ try{
+ let response = yield call(imageProcessor, action.data)
+ imageProcessed(response, action.data)
+ } catch (err) {
+ console.log(err)
+ }
+}
+
+function *saveRiveFile(action) {
+ try{
+ yield call(riveSaveFile, action.origin, action.destination, action.fileName)
+ yield call(riveFileSaveSuccess)
+ } catch(err) {
+ console.log(err)
+ yield call(riveFileSaveFailed)
+ }
+}
+
+function *processExpression(action) {
+ try {
+ const expressionData = yield call(expressionProcessor, action.data.text);
+ yield call(expressionProcessed, action.data.id, expressionData);
+ } catch (err) {
+ yield call(expressionProcessed, action.data.id, {});
+ }
}
export default [
- takeEvery(actions.RENDER_FONTS, searchStoredFonts),
+ takeEvery(actions.RENDER_FONTS, handleRenderFonts),
takeEvery(actions.RENDER_SET_FONTS, saveFonts),
takeEvery(actions.RENDER_PROCESS_IMAGE, processImage),
+ takeEvery(actions.RIVE_SAVE_DATA, saveRiveFile),
+ takeEvery(actions.RENDER_PROCESS_EXPRESSION, processExpression),
fork(storeFontData)
]
\ No newline at end of file
diff --git a/src/redux/sagas/reports_sagas.js b/src/redux/sagas/reports_sagas.js
new file mode 100644
index 00000000..dbf2451b
--- /dev/null
+++ b/src/redux/sagas/reports_sagas.js
@@ -0,0 +1,44 @@
+import actions from '../actions/actionTypes'
+import { call, takeEvery, put, select } from 'redux-saga/effects'
+import loadBodymovinFileData from '../../helpers/FileLoader'
+import {
+ reportsLoaded,
+ reportsLoadFailed,
+} from '../actions/reportsActions'
+import storingPathsSelector from '../selectors/storing_paths_selector'
+import fileBrowser from '../../helpers/FileBrowser'
+
+function *getReportData(action) {
+ try {
+ if (action.path) {
+ const reportData = yield call(loadBodymovinFileData, action.path)
+ if ('version' in reportData) {
+ yield put(reportsLoaded(reportData))
+ } else {
+ throw new Error()
+ }
+ }
+ } catch(err) {
+ yield put(reportsLoadFailed(err))
+ }
+}
+
+function *handleImportSelected(action) {
+ try {
+ const paths = yield select(storingPathsSelector)
+ const fileData = yield call(fileBrowser, paths.importPath)
+ const reportData = yield call(loadBodymovinFileData, fileData.fsName)
+ if ('version' in reportData) {
+ yield put(reportsLoaded(reportData))
+ } else {
+ throw new Error()
+ }
+ } catch(err) {
+ yield put(reportsLoadFailed(err))
+ }
+}
+
+export default [
+ takeEvery(actions.GOTO_REPORTS, getReportData),
+ takeEvery(actions.REPORTS_IMPORT_SELECTED, handleImportSelected),
+]
\ No newline at end of file
diff --git a/src/redux/sagas/supported_features_sagas.js b/src/redux/sagas/supported_features_sagas.js
new file mode 100644
index 00000000..c7c84ccb
--- /dev/null
+++ b/src/redux/sagas/supported_features_sagas.js
@@ -0,0 +1,45 @@
+import { call, takeEvery, take , race, select, put } from 'redux-saga/effects'
+import { delay } from 'redux-saga'
+import actions from '../actions/actionTypes'
+import {
+ getSelectedProperties,
+} from '../../helpers/SupportedFeaturesBridge'
+import supportedFeaturesSelector from '../selectors/supported_features_selector'
+import { featuresLoaded, featuresLoadFailed, featuresSelectionUpdated } from '../actions/supportedFeaturesActions'
+import callApi from '../../helpers/sync/canilottie'
+
+function *ping() {
+ while(true) {
+ const selectedProperties = yield call(getSelectedProperties)
+ yield put(featuresSelectionUpdated(selectedProperties));
+ yield call(delay, 250)
+ }
+}
+
+function *initialize(action) {
+ try{
+ yield race({
+ ping: call(ping),
+ finalize: take(actions.SUPPORTED_FEATURES_FINALIZE),
+ })
+ } catch(err) {
+ }
+}
+
+function *getTemplates() {
+ const supportedFeaturesData = yield select(supportedFeaturesSelector)
+ if (!supportedFeaturesData.documentedFeatures) {
+ try {
+ const jsonData = yield call(callApi);
+ yield put(featuresLoaded(jsonData));
+ } catch (error) {
+ yield put(featuresLoadFailed());
+ }
+
+ }
+}
+
+export default [
+ takeEvery(actions.SUPPORTED_FEATURES_INITIALIZE, initialize),
+ takeEvery(actions.SUPPORTED_FEATURES_INITIALIZE, getTemplates),
+]
\ No newline at end of file
diff --git a/src/redux/selectors/annotations_selector.js b/src/redux/selectors/annotations_selector.js
new file mode 100644
index 00000000..a34d3116
--- /dev/null
+++ b/src/redux/selectors/annotations_selector.js
@@ -0,0 +1,15 @@
+import { createSelector } from 'reselect'
+
+const getAnnotations = (state) => state.annotations
+
+const annotationsSelector = createSelector(
+ [ getAnnotations ],
+ (annotations) => {
+ return {
+ layers: annotations.layers,
+ annotations: annotations.annotations,
+ }
+ }
+)
+
+export default annotationsSelector
\ No newline at end of file
diff --git a/src/redux/selectors/compositions_selector.js b/src/redux/selectors/compositions_selector.js
index f3ede00a..79abf57a 100644
--- a/src/redux/selectors/compositions_selector.js
+++ b/src/redux/selectors/compositions_selector.js
@@ -33,13 +33,23 @@ function checkRenderable(items, list) {
}
const getCompositionsList = createSelector(
- [ getFilter, getItems, getList, getSelected ],
- (filter, items, list, showOnlySelected) => {
+ [
+ getFilter,
+ getItems,
+ getList,
+ getSelected,
+ ],
+ (
+ filter,
+ items,
+ list,
+ showOnlySelected,
+ ) => {
return {
canRender: checkRenderable(items, list),
filter: filter,
showOnlySelected: showOnlySelected,
- visibleItems: getVisibleItems(items, list, filter, showOnlySelected)
+ visibleItems: getVisibleItems(items, list, filter, showOnlySelected),
}
}
)
diff --git a/src/redux/selectors/file_import_selector.js b/src/redux/selectors/file_import_selector.js
new file mode 100644
index 00000000..8e9083ea
--- /dev/null
+++ b/src/redux/selectors/file_import_selector.js
@@ -0,0 +1,18 @@
+import { createSelector } from 'reselect'
+
+const getImportData = (state) => state.importer
+
+const getFontsViewData = createSelector(
+ [ getImportData ],
+ (importData) => {
+ return {
+ pendingCommands: importData.pendingCommands,
+ messages: importData.messages,
+ state: importData.state,
+ image: importData.image,
+ fact: importData.fact,
+ }
+ }
+)
+
+export default getFontsViewData
\ No newline at end of file
diff --git a/src/redux/selectors/fonts_view_selector.js b/src/redux/selectors/fonts_view_selector.js
index 4a99a740..53aa1544 100644
--- a/src/redux/selectors/fonts_view_selector.js
+++ b/src/redux/selectors/fonts_view_selector.js
@@ -1,12 +1,12 @@
import { createSelector } from 'reselect'
-const getFonts = (state) => state.render.fonts
+const getRender = (state) => state.render
const getFontsViewData = createSelector(
- [ getFonts ],
- (fonts) => {
+ [ getRender ],
+ (renderData) => {
return {
- fonts: fonts
+ fonts: renderData.fonts,
}
}
)
diff --git a/src/redux/selectors/global_settings_selector.js b/src/redux/selectors/global_settings_selector.js
new file mode 100644
index 00000000..7dcfa552
--- /dev/null
+++ b/src/redux/selectors/global_settings_selector.js
@@ -0,0 +1,54 @@
+import { createSelector } from 'reselect'
+
+const getCompNamesAsDefault = (state) => state.compositions.shouldUseCompNameAsDefault
+const getAEAsPath = (state) => state.compositions.shouldUseAEPathAsDestinationFolder
+const getDefaultPathAsFolder = (state) => state.compositions.shouldUsePathAsDefaultFolder
+const getDefaultFolderPath = (state) => state.compositions.defaultFolderPath
+const getShouldIncludeCompNameAsFolder = (state) => state.compositions.shouldIncludeCompNameAsFolder
+const getShouldKeepSettingsCopy = (state) => state.compositions.shouldKeepCopyOfSettings
+const getSettingsDestinationCopy = (state) => state.compositions.settingsDestinationCopy
+const getShouldSaveInProjectFile = (state) => state.compositions.shouldSaveInProjectFile
+const getShouldSkipDoneView = (state) => state.compositions.shouldSkipDoneView
+const getShouldReuseFontData = (state) => state.compositions.shouldReuseFontData
+
+const getCompositionsList = createSelector(
+ [
+ getCompNamesAsDefault,
+ getAEAsPath,
+ getDefaultPathAsFolder,
+ getDefaultFolderPath,
+ getShouldIncludeCompNameAsFolder,
+ getShouldKeepSettingsCopy,
+ getSettingsDestinationCopy,
+ getShouldSaveInProjectFile,
+ getShouldSkipDoneView,
+ getShouldReuseFontData,
+ ],
+ (
+ shouldUseCompNameAsDefault,
+ shouldUseAEPathAsDestinationFolder,
+ shouldUsePathAsDefaultFolder,
+ defaultFolderPath,
+ shouldIncludeCompNameAsFolder,
+ shouldKeepCopyOfSettings,
+ settingsDestinationCopy,
+ shouldSaveInProjectFile,
+ shouldSkipDoneView,
+ shouldReuseFontData,
+ ) => {
+ return {
+ shouldUseCompNameAsDefault: shouldUseCompNameAsDefault,
+ shouldUseAEPathAsDestinationFolder: shouldUseAEPathAsDestinationFolder,
+ shouldUsePathAsDefaultFolder: shouldUsePathAsDefaultFolder,
+ defaultFolderPath: defaultFolderPath,
+ shouldIncludeCompNameAsFolder: shouldIncludeCompNameAsFolder,
+ shouldKeepCopyOfSettings: shouldKeepCopyOfSettings,
+ settingsDestinationCopy: settingsDestinationCopy,
+ shouldSaveInProjectFile: shouldSaveInProjectFile,
+ shouldSkipDoneView: shouldSkipDoneView,
+ shouldReuseFontData: shouldReuseFontData,
+ }
+ }
+)
+
+export default getCompositionsList
\ No newline at end of file
diff --git a/src/redux/selectors/global_settings_template_selector.js b/src/redux/selectors/global_settings_template_selector.js
new file mode 100644
index 00000000..2868a5c3
--- /dev/null
+++ b/src/redux/selectors/global_settings_template_selector.js
@@ -0,0 +1,18 @@
+import { createSelector } from 'reselect'
+
+const getTemplateSettings = (state) => state.compositions.templates
+
+const getCompositionsList = createSelector(
+ [
+ getTemplateSettings,
+ ],
+ (
+ templateSettings,
+ ) => {
+ return {
+ templates: templateSettings,
+ }
+ }
+)
+
+export default getCompositionsList
\ No newline at end of file
diff --git a/src/redux/selectors/preview_lock_timeline_selector.js b/src/redux/selectors/preview_lock_timeline_selector.js
new file mode 100644
index 00000000..33299975
--- /dev/null
+++ b/src/redux/selectors/preview_lock_timeline_selector.js
@@ -0,0 +1,12 @@
+import { createSelector } from 'reselect'
+
+const getPreview = (state) => state.preview
+
+const previewLockTimelineSelector = createSelector(
+ [ getPreview ],
+ (preview) => {
+ return preview.shouldLockTimelineToComposition
+ }
+)
+
+export default previewLockTimelineSelector
\ No newline at end of file
diff --git a/src/redux/selectors/preview_view_selector.js b/src/redux/selectors/preview_view_selector.js
index 3be245e4..91cc2641 100644
--- a/src/redux/selectors/preview_view_selector.js
+++ b/src/redux/selectors/preview_view_selector.js
@@ -18,17 +18,19 @@ function getRenderer(animationData) {
const previewViewSelector = createSelector(
[ getPreview, getCompositions ],
(preview, compositions) => {
- let totalFrames, renderer
+ let totalFrames, renderer, frameRate
if(preview.animationData) {
- totalFrames = preview.animationData.op - preview.animationData.ip
+ totalFrames = preview.animationData.op - preview.animationData.ip
+ frameRate = preview.animationData.fr
renderer = getRenderer(preview.animationData)
} else {
renderer = 'svg'
- totalFrames = 1
+ totalFrames = 1
+ frameRate = 1
}
let previewableItems = compositions.list.filter(function(id){
- return compositions.items[id].renderStatus === 1 && compositions.items[id].settings.standalone === false
+ return compositions.items[id].renderStatus === 1 && compositions.items[id].settings.export_modes.standard
}).map(function(id){
return compositions.items[id]
})
@@ -36,8 +38,13 @@ const previewViewSelector = createSelector(
return {
preview: preview,
totalFrames: totalFrames,
+ frameRate: frameRate,
renderer: renderer,
- previewableItems: previewableItems
+ previewableItems: previewableItems,
+ backgroundColor: preview.backgroundColor,
+ timelineData: preview.timelineData,
+ shouldLockTimelineToComposition: preview.shouldLockTimelineToComposition,
+ shouldLoop: preview.shouldLoop,
}
}
)
diff --git a/src/redux/selectors/reports_options_selector.js b/src/redux/selectors/reports_options_selector.js
new file mode 100644
index 00000000..0693674f
--- /dev/null
+++ b/src/redux/selectors/reports_options_selector.js
@@ -0,0 +1,27 @@
+import { createSelector } from 'reselect'
+
+const getRenderers = (state) => state.reports.settings.renderers
+const getMessageTypes = (state) => state.reports.settings.messageTypes
+const getBuilders = (state) => state.reports.settings.builders
+
+const reportsOptionsSelector = createSelector(
+ [ getRenderers, getMessageTypes, getBuilders ],
+ (renderers, messageTypes, builders) => {
+ const availableRenderers = renderers
+ .filter(renderer => renderer.isSelected)
+ .map(renderer => renderer.id)
+ const availableMessageTypes = messageTypes
+ .filter(messageType => messageType.isSelected)
+ .map(messageType => messageType.id)
+ const availableBuilders = builders
+ .filter(builder => builder.isSelected)
+ .map(builder => builder.id)
+ return {
+ renderers: availableRenderers,
+ messageTypes: availableMessageTypes,
+ builders: availableBuilders,
+ }
+ }
+)
+
+export default reportsOptionsSelector
\ No newline at end of file
diff --git a/src/redux/selectors/reports_view_selector.js b/src/redux/selectors/reports_view_selector.js
new file mode 100644
index 00000000..d05a24a1
--- /dev/null
+++ b/src/redux/selectors/reports_view_selector.js
@@ -0,0 +1,18 @@
+import { createSelector } from 'reselect'
+import reportsOptionsSelector from './reports_options_selector'
+
+const getReports = (state) => state.reports
+
+const reportsViewSelector = createSelector(
+ [ getReports, reportsOptionsSelector ],
+ (reports, options) => {
+ return {
+ data: reports.data,
+ settings: reports.settings,
+ message: reports.message,
+ options,
+ }
+ }
+)
+
+export default reportsViewSelector
\ No newline at end of file
diff --git a/src/redux/selectors/settings_avd_selector.js b/src/redux/selectors/settings_avd_selector.js
new file mode 100644
index 00000000..6f3e33b2
--- /dev/null
+++ b/src/redux/selectors/settings_avd_selector.js
@@ -0,0 +1,23 @@
+import { createSelector } from 'reselect'
+
+const getItems = (state) => {
+ return state.compositions.items
+}
+
+const getCurrentComp = (state) => {
+ return state.compositions.current
+}
+
+const settingsBannerSelector = createSelector(
+ [getItems, getCurrentComp ],
+ (items, current) => {
+
+ const exportModes = items[current].settings.export_modes
+
+ return {
+ _isActive: exportModes.avd,
+ }
+ }
+)
+
+export default settingsBannerSelector
\ No newline at end of file
diff --git a/src/redux/selectors/settings_banner_selector.js b/src/redux/selectors/settings_banner_selector.js
new file mode 100644
index 00000000..2ac4d689
--- /dev/null
+++ b/src/redux/selectors/settings_banner_selector.js
@@ -0,0 +1,25 @@
+import { createSelector } from 'reselect'
+
+const getItems = (state) => {
+ return state.compositions.items
+}
+
+const getCurrentComp = (state) => {
+ return state.compositions.current
+}
+
+const settingsBannerSelector = createSelector(
+ [getItems, getCurrentComp ],
+ (items, current) => {
+
+ const exportModes = items[current].settings.export_modes
+ const bannerSettings = items[current].settings.banner
+
+ return {
+ _isActive: exportModes.banner,
+ ...bannerSettings,
+ }
+ }
+)
+
+export default settingsBannerSelector
\ No newline at end of file
diff --git a/src/redux/selectors/settings_demo_selector.js b/src/redux/selectors/settings_demo_selector.js
new file mode 100644
index 00000000..3dc2fa34
--- /dev/null
+++ b/src/redux/selectors/settings_demo_selector.js
@@ -0,0 +1,25 @@
+import { createSelector } from 'reselect'
+
+const getItems = (state) => {
+ return state.compositions.items
+}
+
+const getCurrentComp = (state) => {
+ return state.compositions.current
+}
+
+const settingsBannerSelector = createSelector(
+ [getItems, getCurrentComp ],
+ (items, current) => {
+
+ const item = items[current]
+ const exportModes = item.settings.export_modes
+
+ return {
+ _isActive: exportModes.demo,
+ backgroundColor: item.settings.demoData.backgroundColor,
+ }
+ }
+)
+
+export default settingsBannerSelector
\ No newline at end of file
diff --git a/src/redux/selectors/settings_reports_selector.js b/src/redux/selectors/settings_reports_selector.js
new file mode 100644
index 00000000..33b3d059
--- /dev/null
+++ b/src/redux/selectors/settings_reports_selector.js
@@ -0,0 +1,23 @@
+import { createSelector } from 'reselect'
+
+const getItems = (state) => {
+ return state.compositions.items
+}
+
+const getCurrentComp = (state) => {
+ return state.compositions.current
+}
+
+const settingsBannerSelector = createSelector(
+ [getItems, getCurrentComp ],
+ (items, current) => {
+
+ const exportModes = items[current].settings.export_modes
+
+ return {
+ _isActive: exportModes.reports,
+ }
+ }
+)
+
+export default settingsBannerSelector
\ No newline at end of file
diff --git a/src/redux/selectors/settings_rive_selector.js b/src/redux/selectors/settings_rive_selector.js
new file mode 100644
index 00000000..acb19d4a
--- /dev/null
+++ b/src/redux/selectors/settings_rive_selector.js
@@ -0,0 +1,23 @@
+import { createSelector } from 'reselect'
+
+const getItems = (state) => {
+ return state.compositions.items
+}
+
+const getCurrentComp = (state) => {
+ return state.compositions.current
+}
+
+const settingsBannerSelector = createSelector(
+ [getItems, getCurrentComp ],
+ (items, current) => {
+
+ const exportModes = items[current].settings.export_modes
+
+ return {
+ _isActive: exportModes.rive,
+ }
+ }
+)
+
+export default settingsBannerSelector
\ No newline at end of file
diff --git a/src/redux/selectors/settings_selector.js b/src/redux/selectors/settings_selector.js
index f4bb3e3f..b30b72f1 100644
--- a/src/redux/selectors/settings_selector.js
+++ b/src/redux/selectors/settings_selector.js
@@ -9,7 +9,7 @@ const settingsSelector = createSelector(
const current = compositions.current
const currentComp = items[current] || {}
- return currentComp.settings
+ return currentComp
}
)
diff --git a/src/redux/selectors/settings_smil_selector.js b/src/redux/selectors/settings_smil_selector.js
new file mode 100644
index 00000000..079eae30
--- /dev/null
+++ b/src/redux/selectors/settings_smil_selector.js
@@ -0,0 +1,23 @@
+import { createSelector } from 'reselect'
+
+const getItems = (state) => {
+ return state.compositions.items
+}
+
+const getCurrentComp = (state) => {
+ return state.compositions.current
+}
+
+const settingsBannerSelector = createSelector(
+ [getItems, getCurrentComp ],
+ (items, current) => {
+
+ const exportModes = items[current].settings.export_modes
+
+ return {
+ _isActive: exportModes.smil,
+ }
+ }
+)
+
+export default settingsBannerSelector
\ No newline at end of file
diff --git a/src/redux/selectors/settings_standalone_selector.js b/src/redux/selectors/settings_standalone_selector.js
new file mode 100644
index 00000000..f52d7696
--- /dev/null
+++ b/src/redux/selectors/settings_standalone_selector.js
@@ -0,0 +1,23 @@
+import { createSelector } from 'reselect'
+
+const getItems = (state) => {
+ return state.compositions.items
+}
+
+const getCurrentComp = (state) => {
+ return state.compositions.current
+}
+
+const settingsBannerSelector = createSelector(
+ [getItems, getCurrentComp ],
+ (items, current) => {
+
+ const exportModes = items[current].settings.export_modes
+
+ return {
+ _isActive: exportModes.standalone,
+ }
+ }
+)
+
+export default settingsBannerSelector
\ No newline at end of file
diff --git a/src/redux/selectors/settings_standard_selector.js b/src/redux/selectors/settings_standard_selector.js
new file mode 100644
index 00000000..3eadedd1
--- /dev/null
+++ b/src/redux/selectors/settings_standard_selector.js
@@ -0,0 +1,24 @@
+import { createSelector } from 'reselect'
+
+const getItems = (state) => {
+ return state.compositions.items
+}
+
+const getCurrentComp = (state) => {
+ return state.compositions.current
+}
+
+const settingsBannerSelector = createSelector(
+ [getItems, getCurrentComp ],
+ (items, current) => {
+
+ const exportModes = items[current].settings.export_modes
+
+ return {
+ _isActive: exportModes.standard,
+ settings: items[current].settings,
+ }
+ }
+)
+
+export default settingsBannerSelector
\ No newline at end of file
diff --git a/src/redux/selectors/settings_template_view_selector.js b/src/redux/selectors/settings_template_view_selector.js
new file mode 100644
index 00000000..04f8a860
--- /dev/null
+++ b/src/redux/selectors/settings_template_view_selector.js
@@ -0,0 +1,23 @@
+import { createSelector } from 'reselect'
+
+const getItems = (state) => {
+ return state.compositions.items
+}
+const getCurrentComp = (state) => {
+ return state.compositions.current
+}
+const getTemplatesData = (state) => {
+ return state.compositions.templates
+}
+
+const getRenderComposition = createSelector(
+ [getItems, getCurrentComp, getTemplatesData ],
+ (items, current, templatesData) => {
+ return {
+ data: items[current] ? items[current].settings.template : null,
+ templates: templatesData.list,
+ }
+ }
+)
+
+export default getRenderComposition
\ No newline at end of file
diff --git a/src/redux/selectors/storing_data_selector.js b/src/redux/selectors/storing_data_selector.js
index afe4a425..b235a134 100644
--- a/src/redux/selectors/storing_data_selector.js
+++ b/src/redux/selectors/storing_data_selector.js
@@ -1,16 +1,46 @@
import { createSelector } from 'reselect'
-const getCompositions = (state) => state.compositions.items
+const getCompositionState = (state) => state.compositions
+const getPreviewState = (state) => state.preview
const getID = (state) => state.project.id
+const getReports = (state) => state.reports
+const getName = (state) => state.project.name
const storingDataSelector = createSelector(
- [ getCompositions, getID ],
- (compositions, id) => {
+ [ getCompositionState, getPreviewState, getID, getReports, getName ],
+ (compositionState, previewState, id, reports, name) => {
+
+ const compositions = compositionState.items
return {
data: {
- compositions: compositions
+ compositions: compositions,
+ extraState: {
+ filter: compositionState.filter,
+ show_only_selected: compositionState.show_only_selected,
+ shouldUseCompNameAsDefault: compositionState.shouldUseCompNameAsDefault,
+ shouldUseAEPathAsDestinationFolder: compositionState.shouldUseAEPathAsDestinationFolder,
+ shouldUsePathAsDefaultFolder: compositionState.shouldUsePathAsDefaultFolder,
+ shouldIncludeCompNameAsFolder: compositionState.shouldIncludeCompNameAsFolder,
+ defaultFolderPath: compositionState.defaultFolderPath,
+ shouldKeepCopyOfSettings: compositionState.shouldKeepCopyOfSettings,
+ settingsDestinationCopy: compositionState.settingsDestinationCopy,
+ shouldSaveInProjectFile: compositionState.shouldSaveInProjectFile,
+ shouldSkipDoneView: compositionState.shouldSkipDoneView,
+ shouldReuseFontData: compositionState.shouldReuseFontData,
+ templates: compositionState.templates,
+ },
+ reports: {
+ renderers: reports.settings.renderers,
+ messageTypes: reports.settings.messageTypes,
+ builders: reports.settings.builders,
+ },
+ preview: {
+ backgroundColor: previewState.backgroundColor,
+ shouldLockTimelineToComposition: previewState.shouldLockTimelineToComposition,
+ },
+ name: name,
},
- id: id
+ id: id,
}
}
)
diff --git a/src/redux/selectors/storing_paths_selector.js b/src/redux/selectors/storing_paths_selector.js
index d098ad98..e7bcf360 100644
--- a/src/redux/selectors/storing_paths_selector.js
+++ b/src/redux/selectors/storing_paths_selector.js
@@ -1,11 +1,15 @@
import { createSelector } from 'reselect'
const getPaths = (state) => state.paths
+const getProjectPath = (state) => state.project.path
const storingPathsSelector = createSelector(
- [ getPaths ],
- (paths) => {
- return paths
+ [ getPaths, getProjectPath ],
+ (paths, projectPath) => {
+ return {
+ ...paths,
+ projectPath,
+ }
}
)
diff --git a/src/redux/selectors/supported_features_selector.js b/src/redux/selectors/supported_features_selector.js
new file mode 100644
index 00000000..a9be8f73
--- /dev/null
+++ b/src/redux/selectors/supported_features_selector.js
@@ -0,0 +1,12 @@
+import { createSelector } from 'reselect'
+
+const getSupportedFeatures = (state) => state.supported_features
+
+const supportedFeaturesSelector = createSelector(
+ [ getSupportedFeatures ],
+ (features) => {
+ return features
+ }
+)
+
+export default supportedFeaturesSelector
\ No newline at end of file
diff --git a/src/redux/selectors/supported_features_view_selector.js b/src/redux/selectors/supported_features_view_selector.js
new file mode 100644
index 00000000..f1566da4
--- /dev/null
+++ b/src/redux/selectors/supported_features_view_selector.js
@@ -0,0 +1,28 @@
+import { createSelector } from 'reselect'
+import supportedFeaturesSelector from './supported_features_selector'
+
+function buildFeaturesList(documentedFeatures, selectedFeatures) {
+ return selectedFeatures.map(selectedFeature => {
+ const featureData = {
+ name: selectedFeature.name,
+ matchName: selectedFeature.matchName,
+ }
+ if (documentedFeatures && documentedFeatures.features[selectedFeature.matchName]) {
+ var documentData = documentedFeatures.features[selectedFeature.matchName]
+ featureData.link = documentedFeatures.rootPath + documentData.file_name
+ featureData.name = featureData.name || documentData.name;
+ }
+ return featureData;
+ })
+}
+
+const supportedFeaturesViewSelector = createSelector(
+ [ supportedFeaturesSelector ],
+ (featuresReducer) => {
+ return {
+ features: buildFeaturesList(featuresReducer.documentedFeatures, featuresReducer.selectedFeatures)
+ }
+ }
+)
+
+export default supportedFeaturesViewSelector
\ No newline at end of file
diff --git a/src/views/ViewsContainer.jsx b/src/views/ViewsContainer.jsx
index 71e3119a..348b6e4c 100644
--- a/src/views/ViewsContainer.jsx
+++ b/src/views/ViewsContainer.jsx
@@ -1,5 +1,6 @@
import React from 'react'
import {connect} from 'react-redux'
+import {routes} from '../redux/reducers/routes'
import Render from './render/Render'
import Compositions from './compositions/Compositions'
@@ -7,21 +8,33 @@ import SettingsView from './settings/Settings'
import PreviewView from './preview/Preview'
import FontsView from './fonts/Fonts'
import PlayerView from './player/Player'
+import FileImportView from './fileImport/FileImport'
+import AnnotationsView from './annotations/Annotations'
+import ReportsView from './report/Reports'
+import SupportedFeatures from './supported_features/SupportedFeatures'
function getView(route) {
switch(route) {
- case 0:
+ case routes.compositions:
return
- case 1:
+ case routes.render:
return
- case 2:
+ case routes.preview:
return
- case 3:
+ case routes.settings:
return
- case 4:
+ case routes.fonts:
return
- case 5:
+ case routes.player:
return
+ case routes.importFile:
+ return
+ case routes.annotations:
+ return
+ case routes.reports:
+ return
+ case routes.supported_features:
+ return
default:
return
}
diff --git a/src/views/annotations/AnnotationItem.jsx b/src/views/annotations/AnnotationItem.jsx
new file mode 100644
index 00000000..7c8eba38
--- /dev/null
+++ b/src/views/annotations/AnnotationItem.jsx
@@ -0,0 +1,67 @@
+import React, {PureComponent} from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import Variables from '../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ cursor: 'pointer',
+ display: 'flex',
+ 'align-items': 'center',
+ 'padding': '10px',
+ 'background-color': Variables.colors.gray,
+ },
+ 'wrapper--active': {
+ cursor: 'default',
+ },
+ 'annotation-checkbox': {
+ width: '15px',
+ flex: '0 0 auto',
+ height: '15px',
+ border: `1px solid ${Variables.colors.white}`,
+ marginRight: '6px',
+ },
+ 'annotation-checkbox--active': {
+ 'background-color' : Variables.colors.white,
+ },
+ 'annotation-name': {
+ color: Variables.colors.white,
+ font: 'Arial',
+ flex: '1 1 auto',
+ },
+})
+
+class AnnotationItem extends PureComponent {
+
+ render() {
+
+ console.log('rerendering')
+
+ return (
+
+
+
+ {this.props.data.name}
+
+
+ );
+ }
+}
+
+export default AnnotationItem
diff --git a/src/views/annotations/Annotations.jsx b/src/views/annotations/Annotations.jsx
new file mode 100644
index 00000000..4b169c72
--- /dev/null
+++ b/src/views/annotations/Annotations.jsx
@@ -0,0 +1,123 @@
+import React, {PureComponent} from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import {
+ initialize,
+ finalize,
+ activateAnnotations,
+} from '../../redux/actions/annotationActions'
+import BaseHeader from '../../components/header/Base_Header'
+import annotationsSelector from '../../redux/selectors/annotations_selector'
+import Layer from './Layer'
+import Variables from '../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ height: 'calc(100% - 10px)',
+ padding: '10px',
+ display: 'flex',
+ flexDirection:'column',
+ },
+ content: {
+ width: '100%',
+ flex: '1 1 auto',
+ display: 'flex',
+ flexDirection:'column',
+ padding: '10px',
+ backgroundColor :'#474747',
+ overflow: 'auto',
+ },
+ header: {
+ flex: '0 0 auto',
+ },
+ title: {
+ color: Variables.colors.white,
+ padding: '6px 4px 4px',
+ fontSize: '14px',
+ borderBottom: `1px solid ${Variables.colors.white}`,
+ },
+ layersContainer: {
+ width: '100%',
+ },
+ emptyState: {
+ color: Variables.colors.white,
+ textAlign: 'center',
+ padding: '30px 20px 0',
+ lineHeight: '1.5',
+
+ }
+})
+
+class Annotations extends PureComponent {
+
+ componentDidMount() {
+ this.props.initialize()
+ }
+
+ buildLayers(layers) {
+ return layers
+ .map(layer =>
+ )
+ }
+
+ buildEmptyState() {
+ return (
+
+ Select one or more layers from your composition to add annotations to them
+
+ )
+ }
+
+ buildContent(layers) {
+ if (layers.length === 0) {
+ return this.buildEmptyState()
+ } else {
+ return this.buildLayers(layers)
+ }
+ }
+
+ render() {
+
+ return (
+
+
+
+
+
+
+ Annotations
+
+
+ {this.buildContent(this.props.layers)}
+
+
+
+ );
+ }
+
+ componentWillUnmount() {
+ this.props.finalize()
+ }
+}
+
+const mapStateToProps = function(state) {
+ return annotationsSelector(state)
+}
+
+const mapDispatchToProps = {
+ initialize: initialize,
+ finalize: finalize,
+ activateAnnotations: activateAnnotations,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(Annotations)
diff --git a/src/views/annotations/Layer.jsx b/src/views/annotations/Layer.jsx
new file mode 100644
index 00000000..1ba7ec55
--- /dev/null
+++ b/src/views/annotations/Layer.jsx
@@ -0,0 +1,65 @@
+import React, {PureComponent} from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import AnnotationItem from './AnnotationItem'
+import Variables from '../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ height: '100%',
+ padding: '10px 0',
+ },
+ layerInfo: {
+ width: '100%',
+ 'background-color': Variables.colors.white,
+ padding: '4px 2px',
+ color: Variables.colors.gray,
+ }
+})
+
+class Layer extends PureComponent {
+
+ activateAnnotations = matchName => {
+ this.props.onActivateAnnotations(this.props.id, matchName)
+ }
+
+ checkActive = annotation => {
+ const isActive = !!this.props.activeAnnotations.find(
+ activeAnnotation => activeAnnotation.matchName === annotation.matchName
+ )
+ return isActive
+ }
+
+ buildAnnotationsList() {
+ const availableAnnotations = this.props.availableAnnotations
+ return availableAnnotations.map(annotation => {
+ return (
+ this.activateAnnotations(annotation.matchName)}
+ data={annotation}
+ />
+ )
+ })
+ }
+
+ render() {
+ return (
+
+
{this.props.name}
+
+
+ {this.buildAnnotationsList()}
+
+ );
+ }
+
+
+}
+
+export default Layer
diff --git a/src/views/compositions/Compositions.jsx b/src/views/compositions/Compositions.jsx
index fee9397e..fde82515 100644
--- a/src/views/compositions/Compositions.jsx
+++ b/src/views/compositions/Compositions.jsx
@@ -4,116 +4,177 @@ import { StyleSheet, css } from 'aphrodite'
import CompositionsList from './list/CompositionsList'
import CompositionsListHeader from './listHeader/CompositionsListHeader'
import MainHeader from '../../components/header/Main_header'
-import {getDestination, filterChange, toggleItem, displaySettings, getCompositions, goToPreview, goToPlayer, toggleShowSelected, applySettingsToSelectedComps} from '../../redux/actions/compositionActions'
+import {
+ getDestination,
+ filterChange,
+ toggleItem,
+ displaySettings,
+ getCompositions,
+ toggleShowSelected,
+ applySettingsToSelectedComps,
+ toggleCompNameAsDefault,
+ toggleCompNameAsFolder,
+ goToReports,
+ selectAllComps,
+ unselectAllComps,
+} from '../../redux/actions/compositionActions'
import {startRender, showRenderBlock} from '../../redux/actions/renderActions'
import compositions_selector from '../../redux/selectors/compositions_selector'
import Variables from '../../helpers/styles/variables'
+import GlobalSettings from './globalSettings/GlobalSettings'
const styles = StyleSheet.create({
- wrapper: {
- width: '100%',
- height: '100%',
- padding: '10px',
- backgroundColor: '#474747'
- },
- toggleButton: {
- fontSize: '12px',
- color: '#eee',
- textDecoration:'underline',
- cursor: 'pointer',
- paddingTop: '6px',
- ':hover': {
- color: Variables.colors.green,
- }
- }
+ wrapper: {
+ width: '100%',
+ height: '100%',
+ padding: '10px',
+ backgroundColor: '#474747',
+ display: 'flex',
+ flexDirection:'column',
+ },
+ toggleButton: {
+ fontSize: '12px',
+ color: '#eee',
+ textDecoration:'underline',
+ cursor: 'pointer',
+ paddingTop: '6px',
+ ':hover': {
+ color: Variables.colors.green,
+ }
+ },
+ header: {
+ flex: '0 0 auto',
+ },
+ content: {
+ flex: '1 1 auto',
+ height: '100%',
+ display: 'flex',
+ flexDirection:'column',
+ minHeight: 0,
+ },
})
class Compositions extends React.Component {
- constructor() {
- super()
- this.selectDestination = this.selectDestination.bind(this)
- this.showSettings = this.showSettings.bind(this)
- this.renderComps = this.renderComps.bind(this)
- //this.goToPreview = this.goToPreview.bind(this)
- }
+ constructor() {
+ super()
+ this.selectDestination = this.selectDestination.bind(this)
+ this.showSettings = this.showSettings.bind(this)
+ this.renderComps = this.renderComps.bind(this)
+ this.state = {
+ globalSettings: false,
+ }
+ }
- selectDestination(comp) {
- this.props.getDestination(comp)
- }
+ selectDestination(comp) {
+ this.props.getDestination(comp);
+ }
- showSettings(item) {
- this.props.displaySettings(item.id)
- }
+ showSettings(item) {
+ this.props.displaySettings(item.id);
+ }
+ openGlobalSettings = () => {
+ this.setState({
+ globalSettings: true,
+ })
+ }
+ closeGlobalSettings = () => {
+ this.setState({
+ globalSettings: false,
+ })
+ }
- renderComps() {
- if(!this.props.canRender){
- this.props.showRenderBlock(['There are no Compositions to render.','Make sure you have at least one selected and a Destination Path set.'])
- } else {
- this.props.startRender()
- //browserHistory.push('/render')
- }
-
- }
- /*goToPreview() {
- //browserHistory.push('/preview')
- }*/
-
- /*goToPlayer() {
- browserHistory.push('/player')
- }*/
+ renderComps() {
+ if(!this.props.canRender){
+ this.props.showRenderBlock(['There are no Compositions to render.','Make sure you have at least one selected and a Destination Path set.'])
+ } else {
+ this.props.startRender()
+ }
+ }
- render() {
+ renderSelectAllButton() {
+ const hasUnselectedItems = this.props.visibleItems.some(item => item.selected === false)
+ if (hasUnselectedItems) {
+ return (
+
+ {'Select All Comps'}
+
+ )
+ } else {
+ return (
+
+ {'Unselect All Comps'}
+
+ )
+ }
+ }
- return (
-
-
-
-
-
- {this.props.showOnlySelected ? 'Show All' : 'Show Selected Compositions'}
-
-
- {'Apply Stored Settings to Selected Comps'}
-
-
- )
- }
+ render() {
+ return (
+
+
+
+
+
+
+
+
+ {this.props.showOnlySelected ? 'Show All' : 'Show Selected Compositions'}
+
+ {this.renderSelectAllButton()}
+
+ {this.state.globalSettings &&
+
+ }
+
+ )
+ }
}
function mapStateToProps(state) {
- return compositions_selector(state)
+ return compositions_selector(state)
}
const mapDispatchToProps = {
- getDestination: getDestination,
- toggleItem: toggleItem,
- displaySettings: displaySettings,
+ getDestination: getDestination,
+ toggleItem: toggleItem,
+ displaySettings: displaySettings,
getCompositions: getCompositions,
filterChange: filterChange,
- startRender: startRender,
- goToPreview: goToPreview,
- goToPlayer: goToPlayer,
- showRenderBlock: showRenderBlock,
- toggleShowSelected: toggleShowSelected,
- applySettingsToSelectedComps: applySettingsToSelectedComps
+ startRender: startRender,
+ showRenderBlock: showRenderBlock,
+ toggleShowSelected: toggleShowSelected,
+ selectAllComps: selectAllComps,
+ unselectAllComps: unselectAllComps,
+ applySettingsToSelectedComps: applySettingsToSelectedComps,
+ onCompNameAsDefaultToggle: toggleCompNameAsDefault,
+ onIncludeCompNameAsFolderToggle: toggleCompNameAsFolder,
+ goToReports: goToReports,
}
export default connect(mapStateToProps, mapDispatchToProps)(Compositions)
diff --git a/src/views/compositions/globalSettings/GlobalSettings.jsx b/src/views/compositions/globalSettings/GlobalSettings.jsx
new file mode 100644
index 00000000..3e6409e0
--- /dev/null
+++ b/src/views/compositions/globalSettings/GlobalSettings.jsx
@@ -0,0 +1,178 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import BaseButton from '../../../components/buttons/Base_button'
+import SettingsListItem from '../../settings/list/SettingsListItem'
+import SettingsListFile from '../../settings/list/SettingsListFile'
+import global_settings_selector from '../../../redux/selectors/global_settings_selector'
+import {
+ toggleCompNameAsDefault,
+ toggleCompNameAsFolder,
+ toggleAEAsPath,
+ toggleSaveInProjectFile,
+ toggleDefaultPathAsFolder,
+ defaultFolderFileChange,
+ toggleCopySettings,
+ settingsCopyPathChange,
+ loadSettings,
+ toggleSkipDoneView,
+ toggleReuseFontData,
+} from '../../../redux/actions/compositionActions'
+import GlobalTemplateSettings from './GlobalTemplateSettings'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ height: '100%',
+ padding: '10px',
+ },
+ background: {
+ width: '100%',
+ height: '100%',
+ position: 'absolute',
+ top: 0,
+ left: 0,
+ backgroundColor: '#161616',
+ },
+ modal: {
+ width: '80%',
+ height: '80%',
+ padding: '2px',
+ position: 'absolute',
+ top: 0,
+ left: 0,
+ right: 0,
+ bottom: 0,
+ margin: 'auto',
+ display: 'flex',
+ flexDirection: 'column',
+ },
+ header: {
+ width: '100%',
+ display: 'flex',
+ justifyContent: 'space-between',
+ },
+ content: {
+ width: '100%',
+ flex: '1 1 auto',
+ padding: '10px 0',
+ 'overflow-y': 'auto',
+ },
+ settingsList: {
+ background: 'green',
+ },
+})
+
+class GlobalSettings extends React.Component {
+
+ render() {
+ return (
+
+
+
+
+
+
+
+
+
+
+ {}
+
+ {!this.props.shouldUseAEPathAsDestinationFolder &&
+ }
+ {!this.props.shouldUseAEPathAsDestinationFolder &&
+ this.props.shouldUsePathAsDefaultFolder &&
+
+ }
+
+ {this.props.shouldKeepCopyOfSettings &&
+
+ }
+
+
+
+
+
+
+
+
+ )
+ }
+}
+
+const mapDispatchToProps = {
+ onCompNameAsDefaultToggle: toggleCompNameAsDefault,
+ onIncludeCompNameAsFolderToggle: toggleCompNameAsFolder,
+ onAEAsPathToggle: toggleAEAsPath,
+ onDefaultPathAsFolder: toggleDefaultPathAsFolder,
+ onDefaultPathChange: defaultFolderFileChange,
+ onCopySettingsToggle: toggleCopySettings,
+ onSettingsCopyChange: settingsCopyPathChange,
+ onSettingsLoad: loadSettings,
+ onSaveInProjectFile: toggleSaveInProjectFile,
+ onSkipDoneViewToggle: toggleSkipDoneView,
+ onReuseFontDataToggle: toggleReuseFontData,
+}
+
+export default connect(global_settings_selector, mapDispatchToProps)(GlobalSettings)
diff --git a/src/views/compositions/globalSettings/GlobalTemplateSettings.jsx b/src/views/compositions/globalSettings/GlobalTemplateSettings.jsx
new file mode 100644
index 00000000..52ac82df
--- /dev/null
+++ b/src/views/compositions/globalSettings/GlobalTemplateSettings.jsx
@@ -0,0 +1,109 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import BaseButton from '../../../components/buttons/Base_button'
+import BaseLink from '../../../components/buttons/Base_Link'
+import Variables from '../../../helpers/styles/variables'
+import selector from '../../../redux/selectors/global_settings_template_selector'
+import {
+ toggleCompNameAsDefault,
+ deleteTemplate,
+ loadTemplate,
+} from '../../../redux/actions/compositionActions'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ padding: '10px',
+ border: `1px solid ${Variables.colors.gray_lighter}`,
+ },
+ header: {
+ width: '100%',
+ display: 'flex',
+ justifyContent: 'space-between',
+ alignItems: 'center',
+ },
+ headerTitle: {
+ color: 'green',
+ fontSize: '16px',
+ },
+ content: {
+ width: '100%',
+ flex: '1 1 auto',
+ padding: '10px 0',
+ 'overflow-y': 'auto',
+ },
+ templatesList: {
+ padding: '4px 0',
+ },
+ templatesListItem: {
+ width: '100%',
+ fontSize: '12px',
+ color: '#ffffff',
+ backgroundColor: Variables.colors.gray_darkest,
+ height: '50px',
+ marginBottom: '2px',
+ ':hover': {
+ background: Variables.gradients.blueGreen,
+ }
+ },
+ templatesListItemContainer: {
+ padding: '4px 4px',
+ width: '100%',
+ height: '100%',
+ display: 'flex',
+ alignItems: 'center',
+ justifyContent: 'space-between',
+ }
+})
+
+class GlobalTemplateSettings extends React.Component {
+
+ render() {
+ const {
+ templates,
+ } = this.props;
+ return (
+
+
+
+
+
+ {templates.list.map(template => {
+ return (
+ -
+
+
{template.text}
+
this.props.onTemplateDelete(template.value)}
+ selected={false}
+ />
+
+
+ )
+ })}
+
+
+
+ )
+ }
+}
+
+const mapDispatchToProps = {
+ onCompNameAsDefaultToggle: toggleCompNameAsDefault,
+ loadTemplate: loadTemplate,
+ onTemplateDelete: deleteTemplate,
+}
+
+export default connect(selector, mapDispatchToProps)(GlobalTemplateSettings)
diff --git a/src/views/compositions/list/CompositionsList.jsx b/src/views/compositions/list/CompositionsList.jsx
index 3e2a7c66..404d061f 100644
--- a/src/views/compositions/list/CompositionsList.jsx
+++ b/src/views/compositions/list/CompositionsList.jsx
@@ -4,8 +4,8 @@ import CompositionsListItem from './CompositionsListItem'
const styles = StyleSheet.create({
list: {
- height: 'calc( 100% - 180px)',
- overflow: 'auto'
+ overflow: 'auto',
+ flex: '1 1 auto',
}
})
@@ -16,6 +16,7 @@ class CompositionsList extends React.PureComponent {
item={item}
toggleItem={this.props.toggleItem}
showSettings={this.props.showSettings}
+ goToReports={this.props.goToReports}
selectDestination={this.props.selectDestination}
key={item.id} />
}
diff --git a/src/views/compositions/list/CompositionsListItem.jsx b/src/views/compositions/list/CompositionsListItem.jsx
index 3f0fa097..42af8fb8 100644
--- a/src/views/compositions/list/CompositionsListItem.jsx
+++ b/src/views/compositions/list/CompositionsListItem.jsx
@@ -7,6 +7,7 @@ import checkbox from '../../../assets/animations/checkbox.json'
import settings from '../../../assets/animations/settings.json'
import Variables from '../../../helpers/styles/variables'
import textEllipsis from '../../../helpers/styles/textEllipsis'
+import report_icon from '../../../assets/svg/report.svg'
const styles = StyleSheet.create({
composition: {
@@ -15,46 +16,69 @@ const styles = StyleSheet.create({
color: '#ffffff',
backgroundColor: Variables.colors.gray_darkest,
height: '30px',
- marginBottom: '2px'
+ marginBottom: '2px',
+ ':hover': {
+ background: Variables.gradients.blueGreen,
+ }
},
composition__selected: {
background: Variables.gradients.blueGreen
},
item: {
- display: 'inline-block',
verticalAlign: 'middle',
backgroundColor:'transparent'
},
itemContainer: {
padding: '4px 0',
width: '100%',
- height: '100%'
+ height: '100%',
+ display: 'flex',
+ alignItems: 'center',
},
radio: {
height: '100%',
width: '70px',
padding:'2px',
- cursor: 'pointer'
+ cursor: 'pointer',
+ flex: '0 0 auto',
},
settings: {
height: '100%',
width: '80px',
- cursor: 'pointer'
+ cursor: 'pointer',
+ flex: '0 0 auto',
+ },
+ reports: {
+ backgroundColor: 'transparent',
+ height: '100%',
+ width: '80px',
+ cursor: 'pointer',
+ flex: '0 0 auto',
+ visibility: 'hidden',
+ },
+ 'reposts--active': {
+ visibility: 'visible',
+ },
+ 'reports-icon': {
+ height: '100%',
+ width: '100%',
+ padding: '4% 0',
},
name: {
- width: 'calc( 60% - 75px)',
lineHeight: '22px',
- padding: '0 10px'
+ padding: '0 10px',
+ flex: '1 1 auto',
},
destination: {
- width: 'calc( 40% - 75px)',
padding: '0 10px',
- color: Variables.colors.green
+ color: Variables.colors.green,
+ flex: '1 1 auto',
},
destinationPlaceholder: {
- width: 'calc( 40% - 75px)',
padding: '0 0 0 10px',
- height: '100%'
+ width: '40px',
+ height: '100%',
+ flex: '0 0 auto',
},
hidden: {
display: 'none'
@@ -64,7 +88,6 @@ const styles = StyleSheet.create({
height: '4px',
borderRadius: '50%',
backgroundColor: Variables.colors.green,
- display: 'inline-block',
marginRight: '2px'
}
})
@@ -107,7 +130,13 @@ class CompositionsListItem extends React.Component {
this.setState({settingsHovered:false})
}
- render(){
+ goToReports = () => {
+ if (this.props.item.reportPath) {
+ this.props.goToReports(this.props.item.reportPath);
+ }
+ }
+
+ render(){
return (
@@ -122,7 +151,21 @@ class CompositionsListItem extends React.Component {
onMouseLeave={this.settingsLeft}>
-
{this.props.item.name}
+
+
+ {this.props.item.name}
+
{this.props.item.destination
&&
{this.props.item.destination}
}
{!this.props.item.destination &&
diff --git a/src/views/compositions/listHeader/CompositionsListHeader.jsx b/src/views/compositions/listHeader/CompositionsListHeader.jsx
index 9bc22250..4fee2159 100644
--- a/src/views/compositions/listHeader/CompositionsListHeader.jsx
+++ b/src/views/compositions/listHeader/CompositionsListHeader.jsx
@@ -9,7 +9,10 @@ const styles = StyleSheet.create({
width: '100%',
fontSize: '12px',
color: '#eee',
- marginBottom: '10px'
+ marginBottom: '10px',
+ flex: '0 0 auto',
+ display: 'flex',
+ alignItems: 'center',
},
item: {
display: 'inline-block',
@@ -17,8 +20,14 @@ const styles = StyleSheet.create({
textAlign: 'center',
padding: '0px 10px',
},
+ itemCompName: {
+ marginBottom: '4px'
+ },
+ itemCompNameInput: {
+ verticalAlign: 'middle'
+ },
radio: {
- width: '70px'
+ width: '80px'
},
settings: {
width: '80px'
@@ -33,13 +42,14 @@ const styles = StyleSheet.create({
backgroundColor: '#333',
borderRadius: '6px',
width: '100%',
- height: '100%'
+ height: '100%',
+ display: 'flex',
},
name_input: {
display: 'inline-block',
verticalAlign: 'top',
height: '100%',
- width: 'calc( 100% - 30px)',
+ flex: '1 1 auto',
background: 'none',
color: '#eee',
padding: '0px 3px',
@@ -64,7 +74,7 @@ const styles = StyleSheet.create({
maxWidth: '50%'
},
destination: {
- width: 'calc( 40% - 75px)',
+ flex: '1 1 auto',
textAlign: 'left'
}
});
@@ -75,6 +85,7 @@ class CompositionsListHeader extends React.Component {
-
../Destination Folder
+
+ ../Destination Folder
+
);
}
diff --git a/src/views/fileImport/FileImport.jsx b/src/views/fileImport/FileImport.jsx
new file mode 100644
index 00000000..bd9e605d
--- /dev/null
+++ b/src/views/fileImport/FileImport.jsx
@@ -0,0 +1,323 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import ImportHeader from '../../components/header/Import_header'
+import {goToComps} from '../../redux/actions/compositionActions'
+import {
+ importLottieFile,
+ importLottieFileFromUrl,
+ lottieProcessCancel,
+ importLeave,
+} from '../../redux/actions/importActions'
+import fileImportSelector from '../../redux/selectors/file_import_selector'
+import Variables from '../../helpers/styles/variables'
+import {openInBrowser} from '../../helpers/CompositionsProvider'
+import GradientAlert from './alerts/GradientAlert'
+import RegularAlert from './alerts/RegularAlert'
+// import BaseButton from '../../components/buttons/Base_button'
+
+const styles = StyleSheet.create({
+ container: {
+ width: '100%',
+ height: '100%',
+ display: 'flex',
+ flexDirection: 'column',
+ padding: '10px 10px 30px 10px',
+ backgroundColor :'#474747',
+ },
+ body: {
+ backgroundColor: Variables.colors.gray_darkest,
+ width: '100%',
+ padding: '10px',
+ flex: '1 1 auto',
+ overflow: 'auto',
+ },
+ body_message: {
+ color: '#ffffff',
+ padding: '10px',
+ width: '100%',
+ },
+ alerts: {
+ color: '#ffffff',
+ marginTop: '10px',
+ padding: '10px 0',
+ width: '100%',
+ },
+ alert_title: {
+ fontSize: '20px',
+ },
+ alert_message: {
+ color: '#ffffff',
+ marginTop: '10px',
+ padding: '10px',
+ width: '100%',
+ border: '1px solid #ffffff',
+ },
+ alert_message_text: {
+ marginBottom: '4px',
+ },
+ alert_message_label: {
+ fontSize: '14px',
+ },
+ idle_message: {
+ color: '#ffffff',
+ marginTop: '10px',
+ padding: '10px',
+ width: '100%',
+ border: '1px solid #ffffff',
+ },
+ idle_note: {
+ fontSize: '14px',
+ lineHeight: '18px',
+ marginTop: '10px',
+ },
+ processing_message: {
+ color: '#ffffff',
+ fontSize: '12px',
+ lineHeight: '14px',
+ marginTop: '10px',
+ width: '100%',
+ },
+ processing_image_container: {
+ marginTop: '10px',
+ width: '100%',
+ textAlign:'center',
+ },
+ processing_image: {
+ maxWidth: '100%',
+ },
+ processing_cat_fact_container: {
+ padding: '20px',
+ minHeight: '40px',
+ },
+ processing_cat_fact_title: {
+ fontWeight: 900,
+ fontSize: '14px',
+ letterSpacing: '0.1px',
+ marginBottom: '4px',
+ },
+ processing_cat_fact: {
+ backgroundColor: '#fff',
+ padding: '20px 0',
+ color: Variables.colors.gray_darkest,
+ fontWeight: 900,
+ fontSize: '16px',
+ lineHeight: '18px',
+ textAlign: 'center',
+ },
+ link: {
+ color: Variables.colors.green
+ },
+})
+
+class FileImport extends React.Component {
+
+ constructor(props) {
+ super(props)
+ this.buildProcessingMessage = this.buildProcessingMessage.bind(this)
+ this.buildIdleMessage = this.buildIdleMessage.bind(this)
+ this.buildEndMessage = this.buildEndMessage.bind(this)
+ this.buildFailedMessage = this.buildFailedMessage.bind(this)
+ this.state = {
+ urlImportValue: 'https://',
+ }
+ this.message = {
+ idle: this.buildIdleMessage,
+ processing: this.buildProcessingMessage,
+ loading: this.buildLoadingMessage,
+ ended: this.buildEndMessage,
+ failed: this.buildFailedMessage,
+ }
+ this.alertTypes = {
+ message: this.buildAlert,
+ gradient: this.buildGradientAlert,
+ }
+ }
+
+ openInBrowser(){
+ openInBrowser('https://github.com/airbnb/lottie-web/issues')
+ }
+
+ handleUrlImportChange = (value) => {
+ this.setState({
+ urlImportValue: value
+ })
+ }
+
+ handleUrlImportSubmit = () => {
+ this.props.importLottieFileFromUrl(this.state.urlImportValue)
+ }
+
+ onLottieSelect = () => {
+ this.props.importLottieFile()
+ }
+
+ buildGradientAlert(alertData) {
+ return
+ }
+
+ buildAlert(alertData) {
+ return
+ }
+
+ buildAlertMessages(alerts) {
+ if(alerts && alerts.length) {
+ return (
+
+
Alerts
+
+ {alerts.map((message, index) => {
+ return (
+
+ {this.alertTypes[message.type](message)}
+
+ )
+ })}
+
+
+ )
+ } else {
+ return null;
+ }
+ }
+
+ buildEndMessage(props) {
+ return (
+
+
Import Finished
+ {this.buildAlertMessages(props.messages)}
+
+
+ )
+ }
+
+ buildFailedMessage(props) {
+ return (
+
+
Import Failed
+ {this.buildAlertMessages(props.messages)}
+
+
+ )
+ }
+
+ buildProcessingMessage(props) {
+ return (
+
+
+
+ Pending Commands: {props.pendingCommands}
+
+
+
+ Estimated remaining time: {Math.ceil(props.pendingCommands * 50 / 1000)} seconds
+
+
+
+ {!!props.image.img_src &&
+
+
+ Here is a picture from Mars
+
+
+

+
+
+ }
+ {!!props.fact.text &&
+
+
+
+ This process might take some time. Here is a cat fact.
+
+
+ {props.fact.text}
+
+
+
+ }
+
+
+ )
+ }
+
+ buildLoadingMessage(props) {
+ return (
+
+ )
+ }
+
+ buildIdleMessage(props) {
+ return (
+
+
+ To import a lottie animation choose one of the two options above.
+
+
+ Hi! this is a first version of the Lottie importer.
+ Some things are not fully supported but most of them are working.
+ If you see anything missing, please email me the json to hernantorrisi@gmail.com
+ Or create an issue in
Lottie on github
+
+
+ )
+ }
+
+ buildMessage(state) {
+ return this.message[state](this.props)
+ }
+
+ render() {
+
+ return (
+
+
+
+
+ {this.buildMessage(this.props.state)}
+
+
+
+
+
+ );
+ }
+
+ componentWillUnmount() {
+ this.props.importLeave()
+ }
+
+}
+
+
+const mapStateToProps = (state) => fileImportSelector(state)
+
+const mapDispatchToProps = {
+ importLottieFile: importLottieFile,
+ importLottieFileFromUrl: importLottieFileFromUrl,
+ lottieProcessCancel: lottieProcessCancel,
+ importLeave: importLeave,
+ goToComps: goToComps,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(FileImport)
diff --git a/src/views/fileImport/alerts/GradientAlert.jsx b/src/views/fileImport/alerts/GradientAlert.jsx
new file mode 100644
index 00000000..0162b7fa
--- /dev/null
+++ b/src/views/fileImport/alerts/GradientAlert.jsx
@@ -0,0 +1,149 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import {baseStyles} from './alertStyles'
+import Variables from '../../../helpers/styles/variables'
+import {rgbToHex} from '../../../helpers/colorConverter'
+
+const styles = StyleSheet.create({
+ ...baseStyles,
+ gradient_message_text: {
+ marginTop: '10px',
+ },
+ gradient_title: {
+ fontSize: '16px',
+ fontWeight: '900',
+ padding: '4px 0 0 0',
+ },
+ gradient_keyframe: {
+ fontSize: '14px',
+ fontWeight: '900',
+ padding: '10px 10px',
+ margin: '0 0 10px 0',
+ border: '1px solid ' + Variables.colors.blue,
+ },
+ gradient_keyframe_title: {
+ color: Variables.colors.blue,
+ },
+ gradient_position: {
+ marginTop: '4px',
+ fontSize: '14px',
+ padding: '2px 6px',
+ border: '1px solid ' + Variables.colors.blue,
+ },
+ gradient_item: {
+ padding: '2px 0',
+ },
+})
+
+function GradientAlert(props) {
+ const alertData = props.data;
+ return (
+
+
+ {alertData.message}
+
+
+ {!!alertData.layer &&
+
+ Layer: {alertData.layer}
+
+ }
+ {!!alertData.comp &&
+
+ Composition: {alertData.comp}
+
+ }
+
+ For each keyframe you need to insert this values:
+
+ {/* COLORS START */}
+
COLORS:
+ {
+ alertData.colorData.colors.map((colorList, index) => {
+ return (
+
+
+ At Keyframe {index + 1}
+
+ {
+ colorList.map((colorItem, colorItemIndex) =>
+ (
+
+
Handler position:
+ {colorItem.p} %
+
+
+ Red:
+ {colorItem.r}
+
+
+ Green:
+ {colorItem.g}
+
+
+ Blue:
+ {colorItem.b}
+
+
+ HEX:
+ {rgbToHex(Math.round(colorItem.r), Math.round(colorItem.g), Math.round(colorItem.b))}
+
+
+ )
+ )
+ }
+
+
+ )
+ })
+ }
+ {/* COLORS END */}
+ {/* ALPHAS START */}
+ {!!alertData.colorData.alphas.length &&
ALPHAS:
}
+ {!!alertData.colorData.alphas.length &&
+ alertData.colorData.alphas.map((colorList, index) => {
+ return (
+
+
+ At Keyframe {index + 1}
+
+ {
+ colorList.map((colorItem, colorItemIndex) =>
+ (
+
+
Handler position:
+ {colorItem.p} %
+
+
+ Alpha Value:
+ {colorItem.a}
+
+
+ )
+ )
+ }
+
+
+ )
+ })
+ }
+ {/* COLORS END */}
+
+ )
+}
+
+export default GradientAlert
\ No newline at end of file
diff --git a/src/views/fileImport/alerts/RegularAlert.jsx b/src/views/fileImport/alerts/RegularAlert.jsx
new file mode 100644
index 00000000..bd8a3339
--- /dev/null
+++ b/src/views/fileImport/alerts/RegularAlert.jsx
@@ -0,0 +1,30 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import {baseStyles} from './alertStyles'
+
+const styles = StyleSheet.create({
+ ...baseStyles
+})
+
+function RegularAlert(props) {
+ const alertData = props.data;
+ return (
+
+
+ {alertData.message}
+
+ {!!alertData.layer &&
+
+ Layer: {alertData.layer}
+
+ }
+ {!!alertData.comp &&
+
+ Composition: {alertData.comp}
+
+ }
+
+ )
+}
+
+export default RegularAlert
\ No newline at end of file
diff --git a/src/views/fileImport/alerts/alertStyles.js b/src/views/fileImport/alerts/alertStyles.js
new file mode 100644
index 00000000..e24af1d1
--- /dev/null
+++ b/src/views/fileImport/alerts/alertStyles.js
@@ -0,0 +1,27 @@
+import Variables from '../../../helpers/styles/variables'
+
+const baseStyles = {
+ alert_title: {
+ fontSize: '20px',
+ },
+ alert_message: {
+ color: '#ffffff',
+ marginTop: '10px',
+ padding: '10px',
+ width: '100%',
+ border: '1px solid #ffffff',
+ },
+ alert_message_text: {
+ marginBottom: '4px',
+ },
+ alert_message_label: {
+ fontSize: '14px',
+ },
+ alert_message_label_span: {
+ color: Variables.colors.blue,
+ },
+}
+
+export {
+ baseStyles
+}
\ No newline at end of file
diff --git a/src/views/player/Player.jsx b/src/views/player/Player.jsx
index 7a96802d..b078d8d6 100644
--- a/src/views/player/Player.jsx
+++ b/src/views/player/Player.jsx
@@ -6,7 +6,8 @@ import Bodymovin from '../../components/bodymovin/bodymovin'
import anim from '../../assets/animations/bm.json'
import {openInBrowser, getPlayer} from '../../helpers/CompositionsProvider'
import Variables from '../../helpers/styles/variables'
-import {goToComps} from '../../redux/actions/compositionActions'
+import {goToComps, clearCache} from '../../redux/actions/compositionActions'
+import BaseHeader from '../../components/header/Base_Header'
const styles = StyleSheet.create({
container: {
@@ -14,11 +15,13 @@ const styles = StyleSheet.create({
height: '100%',
display: 'flex',
flexDirection:'column',
- padding: '10px 30px',
+ padding: '10px 10px 30px 10px',
backgroundColor :'#474747'
},
back_container: {
- textAlign: 'right'
+ display: 'flex',
+ justifyContent: 'space-between',
+
},
anim_container: {
textAlign: 'center'
@@ -47,7 +50,8 @@ const styles = StyleSheet.create({
color: Variables.colors.green
},
buttons_container: {
- textAlign: 'center'
+ textAlign: 'center',
+ marginBottom: '16px',
},
buttonSeparator: {
width: '10px',
@@ -72,8 +76,9 @@ class Player extends React.Component {
render() {
return (
+
-
+
@@ -101,7 +106,8 @@ class Player extends React.Component {
}
}
const mapDispatchToProps = {
- goToComps: goToComps
+ goToComps: goToComps,
+ clearCache: clearCache,
}
export default connect(null, mapDispatchToProps)(Player)
diff --git a/src/views/preview/Preview.jsx b/src/views/preview/Preview.jsx
index bc09f63f..db5aa39a 100644
--- a/src/views/preview/Preview.jsx
+++ b/src/views/preview/Preview.jsx
@@ -1,11 +1,22 @@
import React from 'react'
import {connect} from 'react-redux'
import { StyleSheet, css } from 'aphrodite'
-import PreviewViewer from './viewer/PreviewViewer'
+import PreviewViewer, {previewTypes} from './viewer/PreviewViewer'
import PreviewScrubber from './scrubber/PreviewScrubber'
import PreviewHeader from './header/PreviewHeader'
import CurrentRenders from './current_renders/CurrentRenders'
-import {browsePreviewFile, updateProgress, setTotalFrames, showNoCurrentRenders, previewFromPath} from '../../redux/actions/previewActions'
+import {
+ browsePreviewFile,
+ updateProgress,
+ setTotalFrames,
+ showNoCurrentRenders,
+ previewFromPath,
+ updateColor,
+ toggleLockTimeline,
+ toggleLoop,
+ initialize,
+ finalize,
+} from '../../redux/actions/previewActions'
import {goToComps} from '../../redux/actions/compositionActions'
import preview_view_selector from '../../redux/selectors/preview_view_selector'
import FileSaver from '../../helpers/FileSaver'
@@ -51,10 +62,19 @@ class Preview extends React.Component {
this.selectCurrentRenders = this.selectCurrentRenders.bind(this)
this.closeSelection = this.closeSelection.bind(this)
this.state = {
- showingCurrentRenders: false
+ showingCurrentRenders: false,
+ previewerTypes: [previewTypes.BROWSER],
}
}
+ componentDidMount() {
+ this.props.initialize()
+ }
+
+ componentWillUnmount() {
+ this.props.finalize()
+ }
+
changeStart() {
//console.log('changeStart')
}
@@ -90,7 +110,26 @@ class Preview extends React.Component {
}
}
+ onRendedereSelected = toggledType => {
+ const availableTypes = [
+ previewTypes.BROWSER,
+ previewTypes.SKOTTIE,
+ ]
+ let selectedTypes = availableTypes.filter(currentType => {
+ if (this.state.previewerTypes.includes(currentType)) {
+ return currentType !== toggledType
+ } else if (currentType === toggledType) {
+ return true
+ }
+ return false
+ })
+ this.setState({
+ previewerTypes: selectedTypes,
+ })
+ }
+
render() {
+
return (
@@ -98,24 +137,40 @@ class Preview extends React.Component {
+ onRendererSelected={this.onRendedereSelected}
+ selectCurrentRenders={this.selectCurrentRenders}
+ selectedTypes={this.state.previewerTypes}
+ updateColor={this.props.updateColor}
+ backgroundColor={this.props.backgroundColor}
+ />
this.previewViewer = elem)} />
+ previewerTypes={this.state.previewerTypes}
+ ref={(elem => this.previewViewer = elem)}
+ backgroundColor={this.props.backgroundColor}
+ />
+ canSaveFile={this.state.previewerTypes.includes(previewTypes.BROWSER)}
+ progress={this.props.preview.progress}
+ shouldLockTimelineToComposition={this.props.shouldLockTimelineToComposition}
+ shouldLoop={this.props.shouldLoop}
+ toggleLockTimeline={this.props.toggleLockTimeline}
+ toggleLoop={this.props.toggleLoop}
+ />
{this.state.showingCurrentRenders &&
+class PreviewHeader extends PureComponent {
+
+ state = {
+ isColorPickerEnabled: false,
+ }
+
+ toggleColorPicker = () => {
+ this.setState({
+ isColorPickerEnabled: !this.state.isColorPickerEnabled,
+ })
+ }
+
+ updateColor = colorData => {
+ this.props.updateColor(colorData.hex)
+ }
+
+ render() {
+ const props = this.props
+ return (
+ )
+
+
+
Previewer:
+
+
props.onRendererSelected(previewTypes.BROWSER)}
+ >
+
+
+
+
Browser
+
+
props.onRendererSelected(previewTypes.SKOTTIE)}
+ >
+
+
+
+
Skottie
+
+
+
+
+
Background color
+
+ {this.state.isColorPickerEnabled &&
+
+
+
+ }
+
+
+ )
+ }
}
export default PreviewHeader
\ No newline at end of file
diff --git a/src/views/preview/scrubber/PreviewScrubber.jsx b/src/views/preview/scrubber/PreviewScrubber.jsx
index 19998214..3f45f966 100644
--- a/src/views/preview/scrubber/PreviewScrubber.jsx
+++ b/src/views/preview/scrubber/PreviewScrubber.jsx
@@ -1,19 +1,35 @@
import React from 'react'
+import PropTypes from 'prop-types'
import { StyleSheet, css } from 'aphrodite'
import Range from '../../../components/range/Range'
import BaseButton from '../../../components/buttons/Base_button'
import Variables from '../../../helpers/styles/variables'
import snapshot from '../../../assets/animations/snapshot.json'
+import BodymovinCheckbox from '../../../components/bodymovin/bodymovin_checkbox'
+import checkbox from '../../../assets/animations/checkbox.json'
const styles = StyleSheet.create({
container: {
width: '100%',
- height: '80px'
+ height: '100px'
},
navContainer: {
width: '100%',
height: '36px',
- display: 'flex'
+ display: 'flex',
+ alignItems: 'center',
+ },
+ playButton: {
+ width: '40px',
+ height: '36px',
+ lineHeight: '36px',
+ color: Variables.colors.blue,
+ flexGrow: 0,
+ cursor: 'pointer'
+ },
+ playPauseButton: {
+ width: '100%',
+ height: '100%',
},
progressNumberContainer: {
fontSize: '20px',
@@ -42,7 +58,19 @@ const styles = StyleSheet.create({
},
button: {
flexGrow: 0
- }
+ },
+ previewOption: {
+ fontSize: '14px',
+ marginLeft: '10px',
+ cursor: 'pointer',
+ color: Variables.colors.white,
+ },
+ 'previewOption-checkbox': {
+ width: '20px',
+ display: 'inline-block',
+ verticalAlign: 'middle',
+ marginRight: '4px',
+ },
})
class PreviewScrubber extends React.Component {
@@ -51,13 +79,70 @@ class PreviewScrubber extends React.Component {
super()
this.state = {
numberFocused: false,
- inputValue:0
+ inputValue:0,
+ isPlaying: false,
+ initialValue:0,
+ initialTime: 0,
}
this.focusNumber = this.focusNumber.bind(this)
this.updateValue = this.updateValue.bind(this)
this.setInitialValue = this.setInitialValue.bind(this)
this.handleBlur = this.handleBlur.bind(this)
this.handleKey = this.handleKey.bind(this)
+ this._isMounted = true
+ }
+
+ componentDidUpdate(prevProps, prevState) {
+ if (prevState.isPlaying === false
+ && this.state.isPlaying === true) {
+ this.play()
+ }
+ }
+
+ togglePlay = () => {
+ if (this.props.progress === 1 && !this.state.isPlaying) {
+ this.props.updateProgress(0)
+ this.setState({
+ isPlaying: !this.state.isPlaying,
+ initialValue: 0,
+ initialTime: Date.now(),
+ })
+ } else {
+ this.setState({
+ isPlaying: !this.state.isPlaying,
+ initialValue: this.props.totalFrames * this.props.progress,
+ initialTime: Date.now(),
+ })
+ }
+ }
+
+ play() {
+ requestAnimationFrame(this.tick)
+ }
+
+ tick = () => {
+ if (!this.state.isPlaying || !this._isMounted) {
+ return;
+ }
+ const currentTime = Date.now()
+ const currentFrame = Math.min(this.props.totalFrames , this.state.initialValue + (currentTime - this.state.initialTime) * 0.001 * this.props.frameRate)
+
+ this.props.updateProgress(currentFrame / this.props.totalFrames)
+ if (currentFrame < this.props.totalFrames) {
+ requestAnimationFrame(this.tick)
+ this.setState({
+ inputValue: currentFrame
+ })
+ } else if(this.props.shouldLoop) {
+ requestAnimationFrame(this.tick)
+ this.setState({
+ initialValue: currentFrame - this.props.totalFrames,
+ initialTime: Date.now() + currentFrame - this.props.totalFrames,
+ inputValue: 0,
+ })
+ } else {
+ this.togglePlay()
+ }
}
focusNumber(){
@@ -65,7 +150,8 @@ class PreviewScrubber extends React.Component {
//return
}
this.setState({
- numberFocused: true
+ numberFocused: true,
+ isPlaying: false,
})
}
@@ -116,14 +202,59 @@ class PreviewScrubber extends React.Component {
}
}
+ renderPlayButton() {
+ return (
+
+ )
+ }
+
+ renderPauseButton() {
+ return (
+
+ )
+ }
+
+ renderPlayPauseButton() {
+ return this.state.isPlaying
+ ? this.renderPauseButton()
+ : this.renderPlayButton()
+ }
+
+ onRangeUpdate = (value) => {
+ if (this.state.isPlaying) {
+ this.togglePlay()
+ }
+ this.props.updateProgress(value)
+ }
+
render() {
let inputLength = this.props.totalFrames.toString().length
return (
-
+
+
+ {this.renderPlayPauseButton()}
+
{!this.state.numberFocused
&&
{Math.round(this.props.totalFrames * this.props.progress)}
}
@@ -138,20 +269,68 @@ class PreviewScrubber extends React.Component {
onBlur={this.handleBlur}
onKeyDown={this.handleKey}
onChange={this.updateValue}/>}
-
/ {this.props.totalFrames}
+
/ {Math.floor(this.props.totalFrames)}
-
+ {this.props.canSaveFile &&
+
+ }
+
+
+
+
+
+
+
Lock to Comp Timeline
+
+
);
}
+
+ componentWillUnmount() {
+ this._isMounted = false
+ }
+}
+
+PreviewScrubber.propTypes = {
+ totalFrames: PropTypes.number,
+ frameRate: PropTypes.number,
+ progress: PropTypes.number,
+ max: PropTypes.number,
+ canSaveFile: PropTypes.bool,
}
PreviewScrubber.defaultProps = {
totalFrames: 0,
+ frameRate: 1,
progress: 0,
- max: 1
+ max: 1,
+ canSaveFile: false,
}
export default PreviewScrubber
diff --git a/src/views/preview/viewer/PreviewViewer.jsx b/src/views/preview/viewer/PreviewViewer.jsx
index 4e83bc64..21cedfd1 100644
--- a/src/views/preview/viewer/PreviewViewer.jsx
+++ b/src/views/preview/viewer/PreviewViewer.jsx
@@ -1,57 +1,142 @@
import React from 'react'
+import PropTypes from 'prop-types'
import { StyleSheet, css } from 'aphrodite'
import Bodymovin from '../../../components/bodymovin/bodymovin'
+import SkottiePreviewer from './SkottiePreviewer'
+import Variables from '../../../helpers/styles/variables'
const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ height: '100%',
+ borderRadius:'2px',
+ position: 'absolute',
+ display: 'flex',
+ },
+ rendererWrapper: {
+ flex: '1 1 0',
+ position: 'relative',
+ border: `1px solid ${Variables.colors.button_gray_text}`,
+ },
container: {
width: '100%',
height: '100%',
borderRadius:'2px',
position: 'absolute',
- backgroundColor:'#333'
}
})
-class PreviewViewer extends React.Component {
+const previewTypes = {
+ BROWSER: 'browser',
+ SKOTTIE: 'skottie',
+}
+
+const memoizeAnimation = (() => {
+
+ const renderers = {
+
+ }
+ return (animationData, renderer) => {
+ if (!renderers[renderer] || renderers[renderer].origin !== animationData) {
+ renderers[renderer] = {
+ origin: animationData,
+ clone: JSON.parse(JSON.stringify(animationData)),
+ }
+ }
+ return renderers[renderer].clone
+ }
+})()
+
+class PreviewViewer extends React.PureComponent {
+
+ renderBrowser = () =>
+
+
this.bm_instance = elem}
+ renderer={this.props.renderer}
+ /*{path={this.props.path}}*/
+ animationData={memoizeAnimation(this.props.animationData, previewTypes.BROWSER)}
+ autoplay={false}
+ animationLoaded={this.animationLoaded}
+ >
+
+
+
+
+ renderSkottie = () =>
+
+
+
- constructor() {
- super()
+ previewRenderers = {
+ [previewTypes.BROWSER]: this.renderBrowser,
+ [previewTypes.SKOTTIE]: this.renderSkottie,
+ }
- this.animationLoaded = this.animationLoaded.bind(this)
+ componentDidUpdate(prevProps) {
+ if (prevProps.progress !== this.props.progress) {
+ this.updateFrame()
+ }
}
- componentWillReceiveProps(props) {
- if(props.progress !== this.props.progress && this.bm_instance.animation) {
+ updateFrame() {
+ const props = this.props
+ if(this.bm_instance && this.bm_instance.animation) {
try{
this.bm_instance.goToAndStop(parseInt(this.bm_instance.animation.totalFrames * props.progress, 10), true)
} catch(err) {
console.log('errr: ', err)
}
}
- if(this.props.animationData !== props.animationData){
- this.selectRenderer()
- }
}
- animationLoaded() {
+ animationLoaded = () => {
this.props.setTotalFrames(this.bm_instance.animation.totalFrames)
+ this.updateFrame()
}
snapshot() {
return this.bm_instance.element.innerHTML
}
- selectRenderer() {
-
+ renderPreviewers(types) {
+ // return [previewTypes.BROWSER, previewTypes.SKOTTIE].map(type => this.previewRenderers[type]())
+ return this.props.previewerTypes.map(type => this.previewRenderers[type]())
}
render() {
+
return (
- this.bm_instance = elem} renderer={this.props.renderer} path={this.props.path} autoplay={false} animationLoaded={this.animationLoaded} >
-
-
- );
+
+ {this.renderPreviewers(this.props.previewerTypes)}
+
+ )
}
}
+PreviewViewer.propTypes = {
+ previewerTypes: PropTypes.array,
+ backgroundColor: PropTypes.string,
+}
+
+PreviewViewer.defaultProps = {
+ previewerTypes: [],
+ backgroundColor: Variables.colors.gray,
+}
+
export default PreviewViewer
+
+export {previewTypes}
\ No newline at end of file
diff --git a/src/views/preview/viewer/SkottiePreviewer.jsx b/src/views/preview/viewer/SkottiePreviewer.jsx
new file mode 100644
index 00000000..b8c6cd49
--- /dev/null
+++ b/src/views/preview/viewer/SkottiePreviewer.jsx
@@ -0,0 +1,115 @@
+import React from 'react'
+import PropTypes from 'prop-types'
+import { StyleSheet, css } from 'aphrodite'
+import getCanvasKit from '../../../helpers/SkottieLoader'
+
+const styles = StyleSheet.create({
+ container: {
+ width: '100%',
+ height: '100%',
+ borderRadius:'2px',
+ position: 'absolute',
+ },
+ canvas: {
+ width: '100%',
+ height: '100%',
+ 'object-fit': 'contain',
+ }
+})
+
+class SkottiePreviewer extends React.PureComponent {
+
+ constructor(props) {
+ super(props)
+ this.skottieInstance = null
+ this.skottieContext = null
+ }
+
+ setCanvasElement = elem => {
+ this.canvasElement = elem
+ }
+
+ componentDidMount() {
+ this.loadAnimation()
+ }
+
+ componentDidUpdate(prevProps) {
+ if (prevProps.animationData !== this.props.animationData) {
+ this.loadAnimation()
+ } else if(prevProps.progress !== this.props.progress) {
+ this.updateFrame()
+ }
+ }
+
+ async updateFrame() {
+ const CanvasKit = this.CanvasKit
+ const totalFrames = this.props.animationData.op - this.props.animationData.ip;
+ const frame = parseInt(totalFrames * this.props.progress, 10)
+ this.skottieInstance.seekFrame(frame);
+ var bounds = CanvasKit.LTRBRect(0, 0, this.props.animationData.w * window.devicePixelRatio,
+ this.props.animationData.h * window.devicePixelRatio);
+ this.skottieInstance.render(this.skottieCanvas, bounds);
+ this.skottieSurface.flush();
+ }
+
+ destroyCurrentAnimation() {
+ if (this.skottieInstance) {
+ this.skottieInstance.delete();
+ this.skottieInstance = null;
+ }
+ }
+
+ componentWillUnmount() {
+ this.destroyCurrentAnimation();
+ }
+
+ async loadAnimation() {
+ if (this.props.animationData) {
+ this.destroyCurrentAnimation();
+ const CanvasKit = await getCanvasKit();
+ const container = this.canvasElement;
+ const data = this.props.animationData;
+ this.skottieSurface = CanvasKit.MakeCanvasSurface(container);
+ this.skottieCanvas = this.skottieSurface.getCanvas();
+ this.skottieInstance = CanvasKit.MakeManagedAnimation(JSON.stringify(data), this.props.assetsData);
+ // this.skottieContext = CanvasKit.currentContext();
+ this.CanvasKit = CanvasKit;
+ this.updateFrame();
+ }
+ }
+
+ render() {
+
+ const width = this.props.animationData
+ ? this.props.animationData.w * window.devicePixelRatio
+ : 1
+
+ const height = this.props.animationData
+ ? this.props.animationData.h * window.devicePixelRatio
+ : 1
+
+ return (
+
+
+
+ );
+ }
+}
+
+SkottiePreviewer.propTypes = {
+ animationData: PropTypes.object,
+ assetsData: PropTypes.object,
+ progress: PropTypes.number.isRequired,
+}
+
+SkottiePreviewer.defaultProps = {
+ animationData: null,
+ assetsData: null,
+}
+
+export default SkottiePreviewer
\ No newline at end of file
diff --git a/src/views/render/Render.jsx b/src/views/render/Render.jsx
index c1ed70e8..66a3d9ea 100644
--- a/src/views/render/Render.jsx
+++ b/src/views/render/Render.jsx
@@ -1,13 +1,18 @@
import React from 'react'
import {connect} from 'react-redux'
import { StyleSheet, css } from 'aphrodite'
-import {stopRender} from '../../redux/actions/renderActions'
-import {goToComps} from '../../redux/actions/compositionActions'
+import {
+ stopRender,
+ previewAnimation,
+} from '../../redux/actions/renderActions'
+import {goToComps, goToReports} from '../../redux/actions/compositionActions'
import render_selector from '../../redux/selectors/render_selector'
import RenderItem from './list/RenderItem'
import BaseButton from '../../components/buttons/Base_button'
import Variables from '../../helpers/styles/variables'
-import {goToFolder} from '../../helpers/CompositionsProvider'
+import {
+ goToFolder,
+} from '../../helpers/CompositionsProvider'
import Bodymovin from '../../components/bodymovin/bodymovin'
import fluido from '../../assets/animations/fluido.json'
@@ -96,7 +101,38 @@ const styles = StyleSheet.create({
marginBottom: '20px',
marginTop: '20px',
textAlign: 'center'
- }
+ },
+ templateModal: {
+ width: '100%',
+ height: '100%',
+ position: 'absolute',
+ top: '0',
+ left: '0',
+ padding: '20px',
+ backgroundColor: 'rgba(0,0,0,0.75)',
+
+ },
+ templateModalContent: {
+ width: '100%',
+ height: '100%',
+ backgroundColor: '#474747',
+ padding: '8px',
+ },
+ templateModalContentTitle: {
+ color: Variables.colors.white,
+ fontSize: '16px',
+ marginBottom: '24px',
+ },
+ templateModalContentList: {
+ color: Variables.colors.white,
+ fontSize: '12px',
+ },
+ templateModalContentListItem: {
+ color: Variables.colors.white,
+ backgroundColor: Variables.colors.gray_darkest,
+ padding: '8px 4px',
+ margin: '4px 0',
+ },
})
class Render extends React.Component {
@@ -105,13 +141,21 @@ class Render extends React.Component {
super()
this.endRender = this.endRender.bind(this)
this.getItem = this.getItem.bind(this)
+ this.state = {
+ templateErrors: null,
+ }
}
getItem(item) {
- return (
)
+ navigateToFolder={this.navigateToFolder}
+ navigateToReports={this.props.goToReports}
+ preview={this.preview}
+ template={this.template}
+ />)
}
getItems() {
@@ -131,6 +175,22 @@ class Render extends React.Component {
goToFolder(item.destination)
}
+ preview = (item) => {
+ this.props.previewAnimation(item.destination)
+ }
+
+ template = (item) => {
+ this.setState({
+ templateErrors: item.settings.template.errors,
+ })
+ }
+
+ closeTemplate = () => {
+ this.setState({
+ templateErrors: null,
+ })
+ }
+
render() {
let progress = this.props.render.progress
@@ -158,6 +218,16 @@ class Render extends React.Component {
+ {this.state.templateErrors &&
+
+
The animation does not comply to the template requirements
+
+ {this.state.templateErrors.map((templateError, templateErrorIndex) => {
+ return - {templateError.message}
+ })}
+
+
+
}
);
}
@@ -169,7 +239,9 @@ function mapStateToProps(state) {
const mapDispatchToProps = {
stopRender: stopRender,
- goToComps: goToComps
+ goToComps: goToComps,
+ goToReports: goToReports,
+ previewAnimation: previewAnimation,
}
export default connect(mapStateToProps, mapDispatchToProps)(Render)
diff --git a/src/views/render/list/RenderItem.jsx b/src/views/render/list/RenderItem.jsx
index f36bdbd1..91f0eb59 100644
--- a/src/views/render/list/RenderItem.jsx
+++ b/src/views/render/list/RenderItem.jsx
@@ -2,6 +2,8 @@ import React from 'react'
import { StyleSheet, css } from 'aphrodite'
import status_button from '../../../assets/svg/cancel_button.svg'
import complete_icon from '../../../assets/svg/complete_icon.svg'
+import report_icon from '../../../assets/svg/report.svg'
+import warning_icon from '../../../assets/svg/warning.svg'
import Variables from '../../../helpers/styles/variables'
import BodymovinFolder from '../../../components/bodymovin/bodymovin_folder'
@@ -41,17 +43,25 @@ const styles = StyleSheet.create({
padding: 0,
width: '100%',
height: '100%',
- cursor: 'pointer'
+ cursor: 'pointer',
},
compElementContentFolder__image: {
- width: '100%',
- height: '100%'
+ width: '100%',
+ height: '100%'
},
compElementContentToggle: {
+ width: '30px',
+ height: '100%',
+ flexGrow: 0,
+ padding: '5px',
+ cursor: 'pointer',
+ },
+ 'compElementContentToggle--clickable': {
width: '30px',
height: '100%',
flexGrow: 0,
- padding: '5px'
+ padding: '5px',
+ cursor: 'pointer',
},
compElementContentToggleImage: {
width: '100%',
@@ -72,14 +82,36 @@ let RenderItem = (props) => {
{props.item.name}
- {props.item.renderStatus === 0 &&
+ {props.item.renderStatus === 0 &&
+
}
- {props.item.renderStatus === 1 &&
-

-
}
+ {props.item.renderStatus === 1 && props.item.reportPath &&
+
props.navigateToReports(props.item.reportPath)}
+ >
+

+
+ }
+
props.preview(props.item)}
+ className={css(styles.compElementContentToggle)}
+ title={'Preview'}
+ >
+

+
+ {props.item.settings.template && !!props.item.settings.template.errors.length &&
+
props.template(props.item)}
+ className={css(styles.compElementContentToggle)}
+ title={'Blueprint report'}
+ >
+

+
+ }
props.navigateToFolder(props.item)}>
diff --git a/src/views/report/Effects.jsx b/src/views/report/Effects.jsx
new file mode 100644
index 00000000..371c37ef
--- /dev/null
+++ b/src/views/report/Effects.jsx
@@ -0,0 +1,36 @@
+import React from 'react'
+import {
+ getEffectsMessageCount,
+} from '../../helpers/reports/counter'
+import RowContainer from './components/RowContainer'
+import Message from './components/Message'
+
+class Effects extends React.Component {
+
+ buildContent = shouldAutoExpand => {
+ return this.props.effects
+ .map((effect, index) => {
+ return
+ })
+ }
+
+ render() {
+ const messageCount = getEffectsMessageCount(this.props.effects, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+}
+
+export default Effects
diff --git a/src/views/report/Layer.jsx b/src/views/report/Layer.jsx
new file mode 100644
index 00000000..b2de002a
--- /dev/null
+++ b/src/views/report/Layer.jsx
@@ -0,0 +1,146 @@
+import React from 'react'
+import {
+ getLayerMessageCount,
+} from '../../helpers/reports/counter'
+import Transform from './Transform'
+import Effects from './Effects'
+import Masks from './Masks'
+import LayerStyles from './LayerStyles'
+import RowContainer from './components/RowContainer'
+import Property from './Property'
+import LayerCollection from './LayerCollection'
+import ShapeCollection from './shapes/ShapeCollection'
+import TextLayer from './TextLayer'
+
+class Layer extends React.Component {
+
+ buildMessages = shouldAutoExpand => (
+
+ )
+
+ buildTransform = shouldAutoExpand => (
+
+ )
+
+ buildEffects = shouldAutoExpand => (
+
+ )
+
+ buildMasks = shouldAutoExpand => (
+
+ )
+
+ buildStyles = shouldAutoExpand => (
+
+ )
+
+ buildLayerContent = shouldAutoExpand => {
+ if (this.props.layer.type === 0) {
+ return (
+
+ )
+ } else if (this.props.layer.type === 4) {
+ return (
+
+ )
+ } else if (this.props.layer.type === 5) {
+ return (
+
+ )
+ } else {
+ return null;
+ }
+ }
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildMessages(shouldAutoExpand),
+ this.buildTransform(shouldAutoExpand),
+ this.buildEffects(shouldAutoExpand),
+ this.buildMasks(shouldAutoExpand),
+ this.buildStyles(shouldAutoExpand),
+ this.buildLayerContent(shouldAutoExpand),
+ ]
+ )
+ }
+
+ onLayerNavigation = () => {
+ this.props.onLayerNavigation(this.props.layer.index, this.props.compositionId)
+ }
+
+ render() {
+ const messageCount = getLayerMessageCount(this.props.layer, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+}
+
+export default Layer
diff --git a/src/views/report/LayerCollection.jsx b/src/views/report/LayerCollection.jsx
new file mode 100644
index 00000000..826bf744
--- /dev/null
+++ b/src/views/report/LayerCollection.jsx
@@ -0,0 +1,43 @@
+import React from 'react'
+import {
+ getLayerCollectionMessagesCount,
+} from '../../helpers/reports/counter'
+import Layer from './Layer'
+import RowContainer from './components/RowContainer'
+
+class LayerCollection extends React.Component {
+
+ buildLayers = shouldAutoExpand => {
+ return this.props.layers.map((layer, index) => (
+
+ ))
+ }
+
+ buildContent = shouldAutoExpand => {
+ return this.buildLayers(shouldAutoExpand)
+ }
+
+ render() {
+ const messageCount = getLayerCollectionMessagesCount(this.props.layers, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+}
+
+export default LayerCollection
diff --git a/src/views/report/LayerStyles.jsx b/src/views/report/LayerStyles.jsx
new file mode 100644
index 00000000..580dc7df
--- /dev/null
+++ b/src/views/report/LayerStyles.jsx
@@ -0,0 +1,65 @@
+import React from 'react'
+import {
+ getStylesMessageCount,
+} from '../../helpers/reports/counter'
+import RowContainer from './components/RowContainer'
+import StrokeStyle from './styles/StrokeStyle'
+import DropShadowStyle from './styles/DropShadowStyle'
+import InnerShadowStyle from './styles/InnerShadowStyle'
+import OuterGlowStyle from './styles/OuterGlowStyle'
+import InnerGlowStyle from './styles/InnerGlowStyle'
+import BevelEmbossStyle from './styles/BevelEmbossStyle'
+import SatinStyle from './styles/SatinStyle'
+import ColorOverlayStyle from './styles/ColorOverlayStyle'
+import GradientOverlayStyle from './styles/GradientOverlayStyle'
+
+class LayerStyles extends React.Component {
+
+ builders = {
+ 0: StrokeStyle,
+ 1: DropShadowStyle,
+ 2: InnerShadowStyle,
+ 3: OuterGlowStyle,
+ 4: InnerGlowStyle,
+ 5: BevelEmbossStyle,
+ 6: SatinStyle,
+ 7: ColorOverlayStyle,
+ 8: GradientOverlayStyle,
+ }
+
+ buildStylesCollection = (shouldAutoExpand, styles) => {
+ return styles.map(
+ style => {
+ var Component = this.builders[style.type];
+ return
+ }
+ )
+ }
+
+ buildContent = shouldAutoExpand => {
+ return [
+ this.buildStylesCollection(shouldAutoExpand, this.props.styles.styles)
+ ]
+ }
+
+ render() {
+ const messageCount = getStylesMessageCount(this.props.styles, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+}
+
+export default LayerStyles
diff --git a/src/views/report/Masks.jsx b/src/views/report/Masks.jsx
new file mode 100644
index 00000000..693d4eb4
--- /dev/null
+++ b/src/views/report/Masks.jsx
@@ -0,0 +1,58 @@
+import React from 'react'
+import {
+ getMasksMessageCount,
+} from '../../helpers/reports/counter'
+import RowContainer from './components/RowContainer'
+import Message from './components/Message'
+import Mask from './masks/Mask'
+
+class Masks extends React.Component {
+
+ buildMasks = shouldAutoExpand => {
+ return this.props.masks.masks
+ .map((mask, index) => {
+ return
+ })
+ }
+
+ buildMessages = shouldAutoExpand => {
+ return this.props.masks.messages
+ .map((message, index) => {
+ return
+ })
+ }
+
+ buildContent = shouldAutoExpand => {
+ return [
+ this.buildMessages(shouldAutoExpand),
+ this.buildMasks(shouldAutoExpand),
+ ]
+ }
+
+ render() {
+ const messageCount = getMasksMessageCount(this.props.masks, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+}
+
+export default Masks
diff --git a/src/views/report/Property.jsx b/src/views/report/Property.jsx
new file mode 100644
index 00000000..666ff6f2
--- /dev/null
+++ b/src/views/report/Property.jsx
@@ -0,0 +1,40 @@
+import React from 'react'
+import {
+ getPropertyMessageCount,
+} from '../../helpers/reports/counter'
+import RowContainer from './components/RowContainer'
+import Message from './components/Message'
+
+class Property extends React.Component {
+
+ buildContent = () => {
+ const messages = this.props.messages
+ return (
+
+ {messages.map((message, index) => (
+
+ ))}
+
+ )
+ }
+
+ render() {
+ const messageCount = getPropertyMessageCount(this.props.messages, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+}
+
+export default Property
diff --git a/src/views/report/Report.jsx b/src/views/report/Report.jsx
new file mode 100644
index 00000000..e5d5858c
--- /dev/null
+++ b/src/views/report/Report.jsx
@@ -0,0 +1,52 @@
+import React from 'react'
+import {
+ getAnimationMessageCount,
+ getTotalMessagesCount,
+} from '../../helpers/reports/counter'
+import LayerCollection from './LayerCollection'
+import RowContainer from './components/RowContainer'
+import NoErrorsReport from './components/NoErrorsReport'
+
+class Report extends React.Component {
+
+ buildLayers = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => this.buildLayers(shouldAutoExpand)
+
+ render() {
+ if (!this.props.report || !this.props.report.version) {
+ return null;
+ }
+ const messageCount = getAnimationMessageCount(this.props.report, this.props.renderers, this.props.messageTypes, this.props.builders)
+ const totalMessages = getTotalMessagesCount(messageCount)
+ if (totalMessages === 0) {
+ return
+ } else {
+ return (
+
+ );
+ }
+ }
+}
+
+export default Report
diff --git a/src/views/report/Reports.jsx b/src/views/report/Reports.jsx
new file mode 100644
index 00000000..2fbd9308
--- /dev/null
+++ b/src/views/report/Reports.jsx
@@ -0,0 +1,119 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import reports_view_selector from '../../redux/selectors/reports_view_selector'
+import ReportsHeader from './ReportsHeader'
+import Report from './Report'
+import Settings from './settings/ReportSettings'
+import Messages from './messages/Messages'
+import {
+ navigateToLayer,
+ renderersUpdated,
+ messagesUpdated,
+ importSelected,
+ alertDismissed,
+ buildersUpdated,
+} from '../../redux/actions/reportsActions'
+import Variables from '../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ height: 'calc(100% - 10px)',
+ padding: '10px',
+ display: 'flex',
+ flexDirection:'column',
+ },
+ content: {
+ width: '100%',
+ flex: '1 1 auto',
+ padding: '10px',
+ backgroundColor : Variables.colors.gray,
+ overflow: 'auto',
+ position: 'relative',
+ },
+ header: {
+ flex: '0 0 auto',
+ },
+ renderers: {
+ padding: '0 0 10px 0',
+ },
+ report: {
+ padding: '0 4px 0 0',
+ backgroundColor: Variables.colors.gray,
+ },
+ settings: {
+ width: '100%',
+ height: '100%',
+ backgroundColor : Variables.colors.gray_lighter,
+ position: 'absolute',
+ top: '0',
+ left: '0',
+ }
+})
+
+class Reports extends React.Component {
+
+ state = {
+ areSettingsOpen: false,
+ }
+
+ showSettings = () => this.setState({areSettingsOpen: true})
+ hideSettings = () => this.setState({areSettingsOpen: false})
+
+ render() {
+ return (
+
+
+
+
+
+ {this.state.areSettingsOpen &&
+
+
+
+ }
+
+ );
+ }
+}
+
+function mapStateToProps(state) {
+ return reports_view_selector(state)
+}
+
+const mapDispatchToProps = {
+ onLayerNavigation: navigateToLayer,
+ onRenderersUpdate: renderersUpdated,
+ onMessagesUpdate: messagesUpdated,
+ onBuildersUpdate: buildersUpdated,
+ onImportSelected: importSelected,
+ onAlertDismissed: alertDismissed,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(Reports)
diff --git a/src/views/report/ReportsHeader.jsx b/src/views/report/ReportsHeader.jsx
new file mode 100644
index 00000000..7b0935c7
--- /dev/null
+++ b/src/views/report/ReportsHeader.jsx
@@ -0,0 +1,45 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import BaseHeader from '../../components/header/Base_Header'
+import BaseButton from '../../components/buttons/Base_button'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ },
+ buttons_container: {
+ width: '100%',
+ height: '50px',
+ display: 'flex',
+ alignItems:'center'
+ },
+ button: {
+ marginRight:'7px',
+ flex: '0 0 auto',
+ },
+})
+
+class ReportsHeader extends React.Component {
+
+ render() {
+ return (
+
+ );
+ }
+}
+
+export default ReportsHeader
diff --git a/src/views/report/TextLayer.jsx b/src/views/report/TextLayer.jsx
new file mode 100644
index 00000000..a45b7d45
--- /dev/null
+++ b/src/views/report/TextLayer.jsx
@@ -0,0 +1,43 @@
+import React from 'react'
+import {
+ getTextMessagesCount,
+} from '../../helpers/reports/counter'
+import RowContainer from './components/RowContainer'
+import TextAnimator from './text/TextAnimator'
+
+class TextLayer extends React.Component {
+
+ buildAnimators = shouldAutoExpand => {
+ const animators = this.props.text.animators
+ return animators.map((animator, index) =>
+
+ )
+ }
+
+ buildContent = shouldAutoExpand => {
+ return [
+ this.buildAnimators(shouldAutoExpand)
+ ]
+ }
+
+ render() {
+ const messageCount = getTextMessagesCount(this.props.text, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+}
+
+export default TextLayer
diff --git a/src/views/report/Transform.jsx b/src/views/report/Transform.jsx
new file mode 100644
index 00000000..22f15665
--- /dev/null
+++ b/src/views/report/Transform.jsx
@@ -0,0 +1,110 @@
+import React from 'react'
+import {
+ getTransformMessageCount,
+} from '../../helpers/reports/counter'
+import Property from './Property'
+import PositionProperty from './components/PositionProperty'
+import RotationProperty from './components/RotationProperty'
+import RowContainer from './components/RowContainer'
+
+class Transform extends React.Component {
+
+ buildContent = shouldAutoExpand => {
+ return ([
+
,
+
,
+
,
+
,
+
,
+
,
+
,
+
,
+
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getTransformMessageCount(this.props.transform, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+}
+
+export default Transform
diff --git a/src/views/report/components/Message.jsx b/src/views/report/components/Message.jsx
new file mode 100644
index 00000000..7bbc5b2d
--- /dev/null
+++ b/src/views/report/components/Message.jsx
@@ -0,0 +1,315 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import Variables from '../../../helpers/styles/variables'
+import errorIcon from '../../../assets/svg/error.svg'
+import warningIcon from '../../../assets/svg/warning.svg'
+import {
+ countMessageByTypeAndRenderer,
+} from '../../../helpers/reports/counter'
+import {openInBrowser} from '../../../helpers/CompositionsProvider'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ backgroundColor: Variables.colors.gray_lightest,
+ color: Variables.colors.gray_more_darkest,
+ fontSize: '14px',
+ marginTop: '10px',
+ overflow: 'hidden',
+ padding: '6px',
+ },
+ header: {
+ display: 'flex',
+ alignItems: 'center',
+ borderBottom: `1px solid ${Variables.colors.gray_more_darkest}`,
+ paddingBottom: '4px',
+ },
+ icon: {
+ width: '12px',
+ height: '12px',
+ marginRight: '4px',
+ },
+ renderers: {
+ display: 'flex',
+ },
+ renderers_title: {
+ flex: '0 0 auto',
+ color: Variables.colors.gray_darkest,
+ whiteSpace: 'pre',
+ },
+ renderer: {
+ paddingRight: '4px',
+ color: Variables.colors.blue,
+ },
+ renderer_separator: {
+ color: Variables.colors.gray_darkest,
+ },
+ content: {
+ paddingTop: '10px',
+ },
+ missing_error: {
+ color: Variables.colors.red,
+ }
+})
+
+class Message extends React.Component {
+
+ icons = {
+ error: errorIcon,
+ warning: warningIcon,
+ }
+ labels = {
+ error: 'Error',
+ warning: 'Warning',
+ }
+ renderers = {
+ android: 'Android',
+ ios: 'iOS',
+ browser: 'Browser',
+ skottie: 'Skottie',
+ }
+
+ buildIcon = type => (
+
![{this.labels[type]}]({this.icons[type]})
+ )
+
+ buildRenderers = renderers => (
+
+
Renderers:
+ {renderers.map((renderer, index) =>
+ (
+ {index > 0 && | }
+ {this.renderers[renderer]}
+
)
+ )}
+
+ )
+
+ buildHeader = () => (
+
+ {this.buildIcon(this.props.message.type)}
+ {this.buildRenderers(this.props.message.renderers)}
+
+ )
+
+ buildExpressionMessage = () => (
+
Expressions are not supported
+ )
+
+ buildWiggleMessage = () => (
+
wiggle expressions is not supported
+ )
+
+ buildSepareteDimensionsMessage = () => (
+
Separate dimensions are not supported
+ )
+
+ buildOrientAlongPathMessage = () => (
+
Orient along path is not supported
+ )
+
+ buildUnhandleLayer = () => (
+
This layer doesn't have reports yet
+ )
+
+ buildThreeDLayer = () => (
+
3D layers have partial or no support
+ )
+
+ buildMotionBlur = () => (
+
Motion blur is not supported
+ )
+
+ buildDisabledLayer = () => (
+
Hidden and Guided layers are not supported by these renderers
+ )
+
+ buildUnhandledShape = () => (
+
This shape property is not supported
+ )
+
+ buildUnhandledShape = () => (
+
This shape property is not supported
+ )
+
+ buildPuckerAndBloatProperties = () => (
+
Pucker and bloat is not supported by these renderers
+ )
+
+ buildEffects = (payload) => {
+ const effects = payload.effects;
+ return (
+
These effects are not supported:
+
+ {effects.map((effect, index) => (
+
{effect}
+ ))}
+
+
+ )
+ }
+
+ buildAnimatorProperties = (payload) => {
+ const properties = payload.properties;
+ return (
+
These text animator properties are not supported:
+
+ {properties.map(animator => (
+
{animator}
+ ))}
+
+
+ )
+ }
+
+ buildTextSelectorProperties = (payload) => {
+ const properties = payload.properties;
+ return (
+
These text animator selector properties are not supported:
+
+ {properties.map(animator => (
+
{animator}
+ ))}
+
+
+ )
+ }
+
+ buildMergePaths = () => (
+
Merge paths are not supported
+ )
+
+ buildTextAnimators = () => (
+
Text animators are not supported
+ )
+
+ buildLargeImage = () => (
+
This layer source size is large and can affect performance. Consider using smaller images.
+ )
+
+ buildIllustratorAsset = () => (
+
It seems you are using an asset coming from illustrator. Consider converting it to shapes so it gets exported as vectors instead of a raster image.
+ )
+
+ buildCameraLayer = () => (
+
Layers of type camera are not supported.
+ )
+
+ buildNotSupportedLayer = () => (
+
This type of layer is not supported.
+ )
+
+ buildAdjustmentLayer = () => (
+
Adjustment layers get exported as null layers.
+ )
+
+ buildFailedLayer = () => (
+
this layer failed while creating the report.
+ )
+
+ buildUnsupportedStyle = () => (
+
this layer style is not supported.
+ )
+
+ buildLargeMask = () => (
+
Large masks can have an impact on performance.
+ )
+
+ buildLargeEffect = () => (
+
Large layers with effects can have an impact on performance.
+ )
+
+ buildUnsupportedProperty = () => (
+
This property is not supported.
+ )
+
+ buildUnsupportedMaskMode = () => (
+
This mask mode is not supported.
+ )
+
+ buildFilterSize = () => (
+
You might need to set the filterSize property of the rendererSettings
+
+
+ )
+
+ buildUnhandledMessageType = type => (
+
this error type:
+ {type} is not supported by the reader.
+
+ )
+
+ builders = {
+ expressions: this.buildExpressionMessage,
+ wiggle: this.buildWiggleMessage,
+ separateDimensions: this.buildSepareteDimensionsMessage,
+ orientAlongPath: this.buildOrientAlongPathMessage,
+ 'unhandled layer': this.buildUnhandleLayer,
+ 'three d layer': this.buildThreeDLayer,
+ 'motion blur': this.buildMotionBlur,
+ 'disabled layer': this.buildDisabledLayer,
+ 'effects': this.buildEffects,
+ 'unhandled shape': this.buildUnhandledShape,
+ 'merge paths': this.buildMergePaths,
+ 'text animators': this.buildTextAnimators,
+ 'animator properties': this.buildAnimatorProperties,
+ 'large image': this.buildLargeImage,
+ 'illustrator asset': this.buildIllustratorAsset,
+ 'camera layer': this.buildCameraLayer,
+ 'audio layer': this.buildNotSupportedLayer,
+ 'light layer': this.buildNotSupportedLayer,
+ 'adjustment layer': this.buildAdjustmentLayer,
+ 'failed layer': this.buildFailedLayer,
+ 'unsupported style': this.buildUnsupportedStyle,
+ 'large mask': this.buildLargeMask,
+ 'filter size': this.buildFilterSize,
+ 'unsupported property': this.buildUnsupportedProperty,
+ 'unsupported mask mode': this.buildUnsupportedMaskMode,
+ 'large effects': this.buildLargeEffect,
+ 'text selector properties': this.buildTextSelectorProperties,
+ 'pucker and bloat': this.buildPuckerAndBloatProperties,
+ }
+
+ buildMessage = (builder, payload) => {
+ if (this.builders[builder]) {
+ return this.builders[builder](payload)
+ } else {
+ return this.buildUnhandledMessageType(builder)
+ }
+ }
+
+ buildContent = () => (
+
+ {this.buildMessage(this.props.message.builder, this.props.message.payload)}
+
+ )
+
+ render() {
+ const messageCount = countMessageByTypeAndRenderer(this.props.message, this.props.renderers, this.props.messageTypes, this.props.builders)
+ if (messageCount === 0) {
+ return null
+ } else {
+ return (
+
+ {this.buildHeader()}
+ {this.buildContent()}
+
+ );
+ }
+ }
+}
+
+export default Message
diff --git a/src/views/report/components/NoErrorsReport.jsx b/src/views/report/components/NoErrorsReport.jsx
new file mode 100644
index 00000000..a748e1d3
--- /dev/null
+++ b/src/views/report/components/NoErrorsReport.jsx
@@ -0,0 +1,35 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import Variables from '../../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ height: '100%',
+ padding: '10px',
+ },
+ content: {
+ width: '100%',
+ height: '100%',
+ backgroundColor: Variables.colors.white,
+ borderRadius: '2px',
+ color: Variables.colors.gray_darkest,
+ fontFamily: 'Roboto-Bold',
+ padding: '14px',
+ textAlign: 'center',
+ }
+})
+
+class NoErrorsReport extends React.Component {
+
+ render() {
+ return (
+
+
+ No errors to report for {this.props.name}
+
+
+ );
+ }
+}
+export default NoErrorsReport
diff --git a/src/views/report/components/PositionProperty.jsx b/src/views/report/components/PositionProperty.jsx
new file mode 100644
index 00000000..e1902188
--- /dev/null
+++ b/src/views/report/components/PositionProperty.jsx
@@ -0,0 +1,71 @@
+import React from 'react'
+import {
+ getPositionMessageCount
+} from '../../../helpers/reports/counter'
+import RowContainer from './RowContainer'
+import Property from '../Property'
+
+class Position extends React.Component {
+
+ buildContent = shouldAutoExpand => {
+ const property = this.props.property
+ return [
+
,
+
,
+ property.positionZ &&
+
+ ]
+ }
+
+ render() {
+ const property = this.props.property
+ if (!property.dimensionsSeparated) {
+ return (
+
+ )
+ } else {
+ const messageCount = getPositionMessageCount(this.props.property, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+ }
+}
+
+export default Position
diff --git a/src/views/report/components/RotationProperty.jsx b/src/views/report/components/RotationProperty.jsx
new file mode 100644
index 00000000..5d051e27
--- /dev/null
+++ b/src/views/report/components/RotationProperty.jsx
@@ -0,0 +1,79 @@
+import React from 'react'
+import {
+ getPositionMessageCount
+} from '../../../helpers/reports/counter'
+import Property from '../Property'
+import RowContainer from './RowContainer'
+
+class Rotation extends React.Component {
+
+ buildContent = shouldAutoExpand => {
+ const property = this.props.property
+ return [
+
,
+
,
+
,
+
+ ]
+ }
+
+ render() {
+ const property = this.props.property
+ if (!property.isThreeD) {
+ return (
+
+ )
+ } else {
+ const messageCount = getPositionMessageCount(this.props.property, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ )
+ }
+ }
+}
+
+export default Rotation
diff --git a/src/views/report/components/RowContainer.jsx b/src/views/report/components/RowContainer.jsx
new file mode 100644
index 00000000..2d6b5d44
--- /dev/null
+++ b/src/views/report/components/RowContainer.jsx
@@ -0,0 +1,73 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import Variables from '../../../helpers/styles/variables'
+import RowHeader from './RowHeader'
+import {
+ getTotalMessagesCount,
+} from '../../../helpers/reports/counter'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ backgroundColor: Variables.colors.gray,
+ padding: '6px 0 6px 2px',
+ overflow: 'hidden',
+ },
+ content: {
+ paddingLeft: '4px',
+ },
+})
+
+class RowContainer extends React.Component {
+
+ constructor(props) {
+ super(props)
+ this.state = {
+ isCollapsed: !!props.shouldAutoExpand,
+ shouldExpandAll: !!props.shouldAutoExpand,
+ }
+ }
+
+ toggleCollapse = shouldExpandAll => {
+ this.setState({
+ isCollapsed: !this.state.isCollapsed,
+ shouldExpandAll: shouldExpandAll,
+ })
+ }
+
+ buildContent = () => {
+ if (!this.state.isCollapsed) {
+ return null
+ }
+ return (
+ this.props.content(this.state.shouldExpandAll)
+ )
+ }
+
+ buildHeader = () => {
+ return (
+
+ )
+ }
+
+ render() {
+ const totalMessages = getTotalMessagesCount(this.props.messageCount)
+ if (!totalMessages) {
+ return null
+ }
+ return (
+
+ {this.buildHeader()}
+ {this.buildContent()}
+
+ );
+ }
+}
+
+export default RowContainer
diff --git a/src/views/report/components/RowHeader.jsx b/src/views/report/components/RowHeader.jsx
new file mode 100644
index 00000000..83d42976
--- /dev/null
+++ b/src/views/report/components/RowHeader.jsx
@@ -0,0 +1,140 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import Variables from '../../../helpers/styles/variables'
+import BodymovinToggle from '../../../components/bodymovin/bodymovin_toggle'
+import expander from '../../../assets/animations/expander.json'
+import errorIcon from '../../../assets/svg/error.svg'
+import warningIcon from '../../../assets/svg/warning.svg'
+
+const styles = StyleSheet.create({
+ title: {
+ alignItems: 'center',
+ color: Variables.colors.white,
+ cursor: 'pointer',
+ display: 'flex',
+ fontSize: '12px',
+ },
+ 'title-label': {
+ flex: '0 0 auto',
+ },
+ 'title-link': {
+ color: Variables.colors.green,
+ flex: '0 0 auto',
+ paddingLeft: '4px',
+ },
+ 'title-arrow': {
+ flex: '0 0 auto',
+
+ },
+ 'title-items': {
+ flex: '0 0 auto',
+ display: 'flex',
+ },
+ 'title-items--softened': {
+ opacity: 0.1,
+ },
+ 'title-item': {
+ paddingLeft: '4px',
+ fontSize: '12px',
+ flex: '0 0 auto',
+ },
+ 'title-space': {
+ flex: '1 1 auto',
+ },
+ 'title-icon': {
+ width: '14px',
+ height: '14px',
+ display: 'inline-block',
+ marginRight: '4px',
+ verticalAlign: 'middle',
+ },
+ 'title-item-number': {
+ color: Variables.colors.green,
+ fontSize: '14px',
+ verticalAlign: 'middle',
+ marginRight: '2px',
+ },
+ 'title-image': {
+ width: '14px',
+ height: '14px',
+ display: 'inline-block',
+ verticalAlign: 'middle',
+ }
+})
+
+class RowHeader extends React.Component {
+
+ handleOnSelect = (ev) => {
+ ev.stopPropagation();
+ ev.preventDefault();
+ this.props.onSelect();
+ return false;
+ }
+
+ handleOnIconSelect = (ev) => {
+ ev.stopPropagation();
+ ev.preventDefault();
+ this.props.toggleCollapse(true);
+ return false;
+ }
+
+ handleOnHeaderSelect = (ev) => {
+ this.props.toggleCollapse(false);
+ }
+
+ render() {
+
+ const messageCount = this.props.messages
+
+ return (
+
+
+
+
+
+ {this.props.name}
+
+ {this.props.onSelect &&
+
+ go >
+
+ }
+
+
+ {!!messageCount.error &&
+
+
+ {messageCount.error}
+
+

+
+ }
+ {!!messageCount.warning &&
+
+
+ {messageCount.warning}
+
+

+
+ }
+
+
+ );
+ }
+}
+
+export default RowHeader
diff --git a/src/views/report/masks/Mask.jsx b/src/views/report/masks/Mask.jsx
new file mode 100644
index 00000000..55ce34a6
--- /dev/null
+++ b/src/views/report/masks/Mask.jsx
@@ -0,0 +1,86 @@
+import React from 'react'
+import {
+ getMaskMessageCount,
+} from '../../../helpers/reports/counter'
+import Property from '../Property'
+import RowContainer from '../components/RowContainer'
+import Message from '../components/Message'
+
+class Mask extends React.Component {
+
+ buildProperties = shouldAutoExpand => {
+ return ([
+
,
+
,
+
,
+
,
+ ]
+ )
+ }
+
+ buildMessages = shouldAutoExpand => {
+ return this.props.mask.messages
+ .map((message, index) => {
+ return
+ })
+ }
+
+ buildContent = shouldAutoExpand => {
+ return [
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ]
+ }
+
+ render() {
+ const messageCount = getMaskMessageCount(this.props.mask, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+}
+
+export default Mask
diff --git a/src/views/report/messages/Messages.jsx b/src/views/report/messages/Messages.jsx
new file mode 100644
index 00000000..0d688c80
--- /dev/null
+++ b/src/views/report/messages/Messages.jsx
@@ -0,0 +1,90 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import messageTypes from '../../../helpers/enums/messageTypes'
+import alertAnim from '../../../assets/animations/alert.json'
+import Bodymovin from '../../../components/bodymovin/bodymovin'
+import Variables from '../../../helpers/styles/variables'
+import BaseButton from '../../../components/buttons/Base_button'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ height: '100%',
+ display: 'flex',
+ flexDirection: 'column',
+ overflow: 'hidden',
+ padding: '10px',
+ position: 'absolute',
+ top: 0,
+ left: 0,
+ },
+ alertMessage: {
+ flex: '0 0 auto',
+ width: '100%',
+ backgroundColor: Variables.colors.white,
+ borderRadius: '2px',
+ color: Variables.colors.gray_darkest,
+ fontFamily: 'Roboto-Bold',
+ padding: '14px',
+ textAlign: 'center',
+ },
+ alertAnim: {
+ flex: '1 1 auto',
+ width: '100%',
+ height: '100%',
+ 'min-height': 0,
+ },
+ alertButton: {
+ width: '100%',
+ flex: '0 0 auto',
+ textAlign: 'center',
+ marginTop: '10px',
+ },
+})
+
+class Messages extends React.Component {
+
+ buildNoMessage = () => {
+ return null
+ }
+
+ buildAlertMessage = message => {
+ return (
+
+
+
+
+
+ {message.text}
+
+
+
+
+
+ )
+ }
+
+ messageStrategies = {
+ [messageTypes.NONE]: this.buildNoMessage,
+ [messageTypes.ALERT]: this.buildAlertMessage,
+ }
+
+ buildMessage = message => {
+ if (this.messageStrategies[message.type]) {
+ return this.messageStrategies[message.type](message);
+ } else {
+ return this.buildNoMessage()
+ }
+ }
+
+ render() {
+ return (
+ this.buildMessage(this.props.message)
+ );
+ }
+}
+
+export default Messages
diff --git a/src/views/report/settings/ReportBuilders.jsx b/src/views/report/settings/ReportBuilders.jsx
new file mode 100644
index 00000000..2da90a23
--- /dev/null
+++ b/src/views/report/settings/ReportBuilders.jsx
@@ -0,0 +1,83 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import BodymovinCheckbox from '../../../components/bodymovin/bodymovin_checkbox'
+import checkbox from '../../../assets/animations/checkbox.json'
+import Variables from '../../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ backgroundColor: Variables.colors.gray,
+ padding: '6px 2px',
+ overflow: 'hidden',
+ },
+ title: {
+ color: Variables.colors.white,
+ marginBottom: '10px',
+ },
+ builders: {
+ alignItems: 'center',
+ },
+ builder: {
+ cursor: 'pointer',
+ padding: '0 14px 0 0',
+ },
+ checkbox: {
+ width: '16px',
+ height: '16px',
+ display: 'inline-block',
+ verticalAlign: 'middle',
+ },
+ label: {
+ color: Variables.colors.white,
+ paddingLeft: '4px',
+ verticalAlign: 'middle',
+ }
+})
+
+class ReportBuilders extends React.Component {
+
+ buildBuilder = builder => {
+ return (
+
this.onBuildersSelect(builder)}
+ >
+
+
+
+ {builder.label}
+
+ )
+ }
+
+ onBuildersSelect = selectedBuilder => {
+ const newBuilders = this.props.builders.map(builder =>
+ builder.id === selectedBuilder.id
+ ? {...builder, isSelected: !builder.isSelected}
+ : selectedBuilder.id === 'all'
+ ? {...builder, isSelected: !selectedBuilder.isSelected}
+ : builder.id === 'all' && selectedBuilder.isSelected
+ ? {...builder, isSelected: false}
+ : builder
+ )
+ this.props.onBuildersUpdate(newBuilders)
+ }
+
+ render() {
+ return (
+
+
Get report for:
+
+ {this.props.builders.map(this.buildBuilder)}
+
+
+ );
+ }
+}
+
+export default ReportBuilders
diff --git a/src/views/report/settings/ReportMessageTypes.jsx b/src/views/report/settings/ReportMessageTypes.jsx
new file mode 100644
index 00000000..141ef3e5
--- /dev/null
+++ b/src/views/report/settings/ReportMessageTypes.jsx
@@ -0,0 +1,84 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import BodymovinCheckbox from '../../../components/bodymovin/bodymovin_checkbox'
+import checkbox from '../../../assets/animations/checkbox.json'
+import Variables from '../../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ backgroundColor: Variables.colors.gray,
+ padding: '6px 2px',
+ overflow: 'hidden',
+ },
+ title: {
+ color: Variables.colors.white,
+ marginBottom: '10px',
+ },
+ messages: {
+ alignItems: 'center',
+ display: 'flex',
+ },
+ message: {
+ cursor: 'pointer',
+ flex: '0 0 auto',
+ padding: '0 12px 0 0',
+ },
+ checkbox: {
+ width: '16px',
+ height: '16px',
+ display: 'inline-block',
+ verticalAlign: 'middle',
+ },
+ label: {
+ color: Variables.colors.white,
+ paddingLeft: '4px',
+ verticalAlign: 'middle',
+ }
+})
+
+class ReportMessages extends React.Component {
+
+ buildMessage = message => {
+ return (
+
this.onMessageSelect(message)}
+ >
+
+
+
+ {message.label}
+
+ )
+ }
+
+ onMessageSelect = selectedMessage => {
+ const newMessages = this.props.messageTypes.map(message =>
+ message.id === selectedMessage.id
+ ? {...message, isSelected: !message.isSelected}
+ : selectedMessage.id === 'all'
+ ? {...message, isSelected: !selectedMessage.isSelected}
+ : message.id === 'all' && selectedMessage.isSelected
+ ? {...message, isSelected: false}
+ : message
+ )
+ this.props.onMessagesUpdate(newMessages)
+ }
+
+ render() {
+ return (
+
+
Select message types:
+
+ {this.props.messageTypes.map(this.buildMessage)}
+
+
+ );
+ }
+}
+
+export default ReportMessages
diff --git a/src/views/report/settings/ReportRenderers.jsx b/src/views/report/settings/ReportRenderers.jsx
new file mode 100644
index 00000000..a8ff7bd4
--- /dev/null
+++ b/src/views/report/settings/ReportRenderers.jsx
@@ -0,0 +1,85 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import BodymovinCheckbox from '../../../components/bodymovin/bodymovin_checkbox'
+import checkbox from '../../../assets/animations/checkbox.json'
+import Variables from '../../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ backgroundColor: Variables.colors.gray,
+ padding: '6px 2px',
+ overflow: 'hidden',
+ },
+ title: {
+ color: Variables.colors.white,
+ marginBottom: '10px',
+ },
+ renderers: {
+ alignItems: 'center',
+ display: 'flex',
+ },
+ renderer: {
+ cursor: 'pointer',
+ flex: '0 0 auto',
+ padding: '0 12px 0 0',
+ },
+ checkbox: {
+ width: '16px',
+ height: '16px',
+ display: 'inline-block',
+ verticalAlign: 'middle',
+ },
+ label: {
+ color: Variables.colors.white,
+ paddingLeft: '4px',
+ verticalAlign: 'middle',
+ }
+})
+
+class ReportRenderers extends React.Component {
+
+ buildRenderer = renderer => {
+ return (
+
this.onRendererSelect(renderer)}
+ >
+
+
+
+ {renderer.label}
+
+ )
+ }
+
+ onRendererSelect = selectedRenderer => {
+ const newRenderers = this.props.renderers.map(renderer =>
+ renderer.id === selectedRenderer.id
+ ? {...renderer, isSelected: !renderer.isSelected}
+ : selectedRenderer.id === 'all'
+ ? {...renderer, isSelected: !selectedRenderer.isSelected}
+ : renderer.id === 'all' && selectedRenderer.isSelected
+ ? {...renderer, isSelected: false}
+ : renderer
+ )
+ this.props.onRenderersUpdate(newRenderers)
+ }
+
+ render() {
+ return (
+
+
Get report for:
+
+ {this.props.renderers.map(this.buildRenderer)}
+
+
+ );
+ }
+}
+
+export default ReportRenderers
diff --git a/src/views/report/settings/ReportSettings.jsx b/src/views/report/settings/ReportSettings.jsx
new file mode 100644
index 00000000..ccb816b8
--- /dev/null
+++ b/src/views/report/settings/ReportSettings.jsx
@@ -0,0 +1,68 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import ReportRenderers from './ReportRenderers'
+import ReportMessageTypes from './ReportMessageTypes'
+import ReportBuilders from './ReportBuilders'
+import Variables from '../../../helpers/styles/variables'
+import BaseButton from '../../../components/buttons/Base_button'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ height: '100%',
+ padding: '10px',
+ },
+ content: {
+ width: '100%',
+ height: '100%',
+ backgroundColor: Variables.colors.gray,
+ borderRadius: '10px',
+ padding: '10px',
+ overflow: 'auto',
+ },
+ renderers: {
+ padding: '0 0 10px 0',
+ },
+ buttons_container: {
+ width: '100%',
+ height: '50px',
+ display: 'flex',
+ alignItems:'center'
+ },
+ button: {
+ marginRight:'7px',
+ flex: '0 0 auto',
+ },
+})
+
+class ReportSettings extends React.Component {
+
+ render() {
+ return (
+
+ );
+ }
+}
+export default ReportSettings
diff --git a/src/views/report/shapes/GenericShape.jsx b/src/views/report/shapes/GenericShape.jsx
new file mode 100644
index 00000000..d34fbf50
--- /dev/null
+++ b/src/views/report/shapes/GenericShape.jsx
@@ -0,0 +1,75 @@
+import React from 'react'
+import {
+ getGenericShapeMessagesCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class GenericShape extends React.Component {
+
+
+
+ buildMessages = shouldAutoExpand => {
+ return (
+
+ )
+ }
+
+ buildProperties = shouldAutoExpand => {
+ const properties = this.props.shape.properties
+ return (
+
+ {
+ Object.keys(properties)
+ .map(propertyKey => {
+ return
+ })
+ }
+
+ )
+ }
+
+ buildContent = shouldAutoExpand => {
+ return([
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ])
+ }
+
+ render() {
+ const messageCount = getGenericShapeMessagesCount(
+ this.props.shape,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default GenericShape
diff --git a/src/views/report/shapes/GroupShape.jsx b/src/views/report/shapes/GroupShape.jsx
new file mode 100644
index 00000000..ea9c15d5
--- /dev/null
+++ b/src/views/report/shapes/GroupShape.jsx
@@ -0,0 +1,60 @@
+import React from 'react'
+import {
+ getShapeGroupMessagesCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Transform from '../Transform'
+import ShapeCollection from './ShapeCollection'
+
+class GroupShape extends React.Component {
+
+ buildTransform = shouldAutoExpand => (
+
+ )
+
+ buildShapes = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildTransform(shouldAutoExpand),
+ this.buildShapes(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getShapeGroupMessagesCount(
+ this.props.shape,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default GroupShape
diff --git a/src/views/report/shapes/RepeaterShape.jsx b/src/views/report/shapes/RepeaterShape.jsx
new file mode 100644
index 00000000..905cd63a
--- /dev/null
+++ b/src/views/report/shapes/RepeaterShape.jsx
@@ -0,0 +1,74 @@
+import React from 'react'
+import {
+ getShapeRepeaterMessagesCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Transform from '../Transform'
+import Property from '../Property'
+
+class RepeaterShape extends React.Component {
+
+ buildTransform = shouldAutoExpand => (
+
+ )
+
+ buildCopies = shouldAutoExpand => (
+
+ )
+
+ buildOffset = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildTransform(shouldAutoExpand),
+ this.buildCopies(shouldAutoExpand),
+ this.buildOffset(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getShapeRepeaterMessagesCount(
+ this.props.repeater,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default RepeaterShape
diff --git a/src/views/report/shapes/ShapeCollection.jsx b/src/views/report/shapes/ShapeCollection.jsx
new file mode 100644
index 00000000..13afa418
--- /dev/null
+++ b/src/views/report/shapes/ShapeCollection.jsx
@@ -0,0 +1,79 @@
+import React from 'react'
+import {
+ getShapeCollectionMessagesCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import GenericShape from './GenericShape'
+import UnhandledShape from './UnhandledShape'
+import GroupShape from './GroupShape'
+import RepeaterShape from './RepeaterShape'
+
+class ShapeCollection extends React.Component {
+
+ buildShapes = shouldAutoExpand => {
+ return this.props.shapes.map((shape, index) => {
+ if(shape.type === 'gr') {
+ return
+ } else if (['rc', 'el', 'st', 'sh', 'fl', 'sr', 'gf', 'gs', 'rd', 'tm', 'rd', 'mm', 'pb'].includes(shape.type)) {
+ return (
+
)
+ } else if(shape.type === 'un') {
+ return
+ } else if(shape.type === 'rp') {
+ return
+ } else {
+ return null
+ }
+ })
+ }
+
+ buildContent = shouldAutoExpand => {
+ return this.buildShapes(shouldAutoExpand)
+ }
+
+ render() {
+ const messageCount = getShapeCollectionMessagesCount(this.props.shapes, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+}
+
+export default ShapeCollection
diff --git a/src/views/report/shapes/UnhandledShape.jsx b/src/views/report/shapes/UnhandledShape.jsx
new file mode 100644
index 00000000..764da36c
--- /dev/null
+++ b/src/views/report/shapes/UnhandledShape.jsx
@@ -0,0 +1,18 @@
+import React from 'react'
+import Property from '../Property'
+
+class UnhandledShape extends React.Component {
+
+ render() {
+ return
+ }
+}
+
+export default UnhandledShape
diff --git a/src/views/report/styles/BevelEmbossStyle.jsx b/src/views/report/styles/BevelEmbossStyle.jsx
new file mode 100644
index 00000000..83e4e1b5
--- /dev/null
+++ b/src/views/report/styles/BevelEmbossStyle.jsx
@@ -0,0 +1,66 @@
+import React from 'react'
+import {
+ getDropShadowStyleMessageCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class BevelEmbossStyle extends React.Component {
+
+ styleProperties = [
+ ]
+
+ buildProperties = shouldAutoExpand => (
+ this.styleProperties.map(propertyData => (
+
+ ))
+ )
+
+ buildMessages = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getDropShadowStyleMessageCount(
+ this.props.style,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default BevelEmbossStyle
diff --git a/src/views/report/styles/ColorOverlayStyle.jsx b/src/views/report/styles/ColorOverlayStyle.jsx
new file mode 100644
index 00000000..e16b5012
--- /dev/null
+++ b/src/views/report/styles/ColorOverlayStyle.jsx
@@ -0,0 +1,66 @@
+import React from 'react'
+import {
+ getDropShadowStyleMessageCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class ColorOverlayStyle extends React.Component {
+
+ styleProperties = [
+ ]
+
+ buildProperties = shouldAutoExpand => (
+ this.styleProperties.map(propertyData => (
+
+ ))
+ )
+
+ buildMessages = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getDropShadowStyleMessageCount(
+ this.props.style,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default ColorOverlayStyle
diff --git a/src/views/report/styles/DropShadowStyle.jsx b/src/views/report/styles/DropShadowStyle.jsx
new file mode 100644
index 00000000..79c39b7c
--- /dev/null
+++ b/src/views/report/styles/DropShadowStyle.jsx
@@ -0,0 +1,102 @@
+import React from 'react'
+import {
+ getDropShadowStyleMessageCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class DropShadowStyle extends React.Component {
+
+ styleProperties = [
+ {
+ key: 'color',
+ name: 'Color',
+ },
+ {
+ key: 'opacity',
+ name: 'Opacity',
+ },
+ {
+ key: 'angle',
+ name: 'Angle',
+ },
+ {
+ key: 'size',
+ name: 'Size',
+ },
+ {
+ key: 'distance',
+ name: 'Distance',
+ },
+ {
+ key: 'spread',
+ name: 'Spread',
+ },
+ {
+ key: 'blendMode',
+ name: 'Blend Mode',
+ },
+ {
+ key: 'noise',
+ name: 'Noise',
+ },
+ {
+ key: 'knocksOut',
+ name: 'Layer Knocks Out Drop Shadow',
+ },
+ ]
+
+ buildProperties = shouldAutoExpand => (
+ this.styleProperties.map(propertyData => (
+
+ ))
+ )
+
+ buildMessages = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getDropShadowStyleMessageCount(
+ this.props.style,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default DropShadowStyle
diff --git a/src/views/report/styles/GradientOverlayStyle.jsx b/src/views/report/styles/GradientOverlayStyle.jsx
new file mode 100644
index 00000000..9ed5a672
--- /dev/null
+++ b/src/views/report/styles/GradientOverlayStyle.jsx
@@ -0,0 +1,66 @@
+import React from 'react'
+import {
+ getDropShadowStyleMessageCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class GradientOverlayStyle extends React.Component {
+
+ styleProperties = [
+ ]
+
+ buildProperties = shouldAutoExpand => (
+ this.styleProperties.map(propertyData => (
+
+ ))
+ )
+
+ buildMessages = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getDropShadowStyleMessageCount(
+ this.props.style,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default GradientOverlayStyle
diff --git a/src/views/report/styles/InnerGlowStyle.jsx b/src/views/report/styles/InnerGlowStyle.jsx
new file mode 100644
index 00000000..acaad311
--- /dev/null
+++ b/src/views/report/styles/InnerGlowStyle.jsx
@@ -0,0 +1,118 @@
+import React from 'react'
+import {
+ getDropShadowStyleMessageCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class InnerGlowStyle extends React.Component {
+
+ styleProperties = [
+ {
+ key: 'blendMode',
+ name: 'Blend Mode',
+ },
+ {
+ key: 'opacity',
+ name: 'Opacity',
+ },
+ {
+ key: 'noise',
+ name: 'Noise',
+ },
+ {
+ key: 'colorChoice',
+ name: 'Color Type',
+ },
+ {
+ key: 'color',
+ name: 'Color',
+ },
+ {
+ key: 'gradient',
+ name: 'Colors',
+ },
+ {
+ key: 'gradientSmoothness',
+ name: 'Gradient Smoothness',
+ },
+ {
+ key: 'glowTechnique',
+ name: 'Technique',
+ },
+ {
+ key: 'source',
+ name: 'Source',
+ },
+ {
+ key: 'chokeMatte',
+ name: 'Spread',
+ },
+ {
+ key: 'blur',
+ name: 'Size',
+ },
+ {
+ key: 'inputRange',
+ name: 'Range',
+ },
+ {
+ key: 'shadingNoise',
+ name: 'Jitter',
+ },
+ ]
+
+ buildProperties = shouldAutoExpand => (
+ this.styleProperties.map(propertyData => (
+
+ ))
+ )
+
+ buildMessages = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getDropShadowStyleMessageCount(
+ this.props.style,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default InnerGlowStyle
diff --git a/src/views/report/styles/InnerShadowStyle.jsx b/src/views/report/styles/InnerShadowStyle.jsx
new file mode 100644
index 00000000..ecbfd0b7
--- /dev/null
+++ b/src/views/report/styles/InnerShadowStyle.jsx
@@ -0,0 +1,102 @@
+import React from 'react'
+import {
+ getDropShadowStyleMessageCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class InnerShadowStyle extends React.Component {
+
+ styleProperties = [
+ {
+ key: 'blendMode',
+ name: 'Blend Mode',
+ },
+ {
+ key: 'color',
+ name: 'Color',
+ },
+ {
+ key: 'opacity',
+ name: 'Opacity',
+ },
+ {
+ key: 'globalLight',
+ name: 'Global Light',
+ },
+ {
+ key: 'angle',
+ name: 'Angle',
+ },
+ {
+ key: 'distance',
+ name: 'Distance',
+ },
+ {
+ key: 'choke',
+ name: 'Choke',
+ },
+ {
+ key: 'size',
+ name: 'Size',
+ },
+ {
+ key: 'noise',
+ name: 'Noise',
+ },
+ ]
+
+ buildProperties = shouldAutoExpand => (
+ this.styleProperties.map(propertyData => (
+
+ ))
+ )
+
+ buildMessages = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getDropShadowStyleMessageCount(
+ this.props.style,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default InnerShadowStyle
diff --git a/src/views/report/styles/OuterGlowStyle.jsx b/src/views/report/styles/OuterGlowStyle.jsx
new file mode 100644
index 00000000..a7112962
--- /dev/null
+++ b/src/views/report/styles/OuterGlowStyle.jsx
@@ -0,0 +1,114 @@
+import React from 'react'
+import {
+ getDropShadowStyleMessageCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class OuterGlowStyle extends React.Component {
+
+ styleProperties = [
+ {
+ key: 'blendMode',
+ name: 'Blend Mode',
+ },
+ {
+ key: 'opacity',
+ name: 'Opacity',
+ },
+ {
+ key: 'noise',
+ name: 'Noise',
+ },
+ {
+ key: 'colorChoice',
+ name: 'Color Type',
+ },
+ {
+ key: 'color',
+ name: 'Color',
+ },
+ {
+ key: 'gradient',
+ name: 'Colors',
+ },
+ {
+ key: 'gradientSmoothness',
+ name: 'Gradient Smoothness',
+ },
+ {
+ key: 'glowTechnique',
+ name: 'Technique',
+ },
+ {
+ key: 'chokeMatte',
+ name: 'Spread',
+ },
+ {
+ key: 'blur',
+ name: 'Size',
+ },
+ {
+ key: 'inputRange',
+ name: 'Range',
+ },
+ {
+ key: 'shadingNoise',
+ name: 'Jitter',
+ },
+ ]
+
+ buildProperties = shouldAutoExpand => (
+ this.styleProperties.map(propertyData => (
+
+ ))
+ )
+
+ buildMessages = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getDropShadowStyleMessageCount(
+ this.props.style,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default OuterGlowStyle
diff --git a/src/views/report/styles/SatinStyle.jsx b/src/views/report/styles/SatinStyle.jsx
new file mode 100644
index 00000000..91036933
--- /dev/null
+++ b/src/views/report/styles/SatinStyle.jsx
@@ -0,0 +1,66 @@
+import React from 'react'
+import {
+ getDropShadowStyleMessageCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class SatinStyle extends React.Component {
+
+ styleProperties = [
+ ]
+
+ buildProperties = shouldAutoExpand => (
+ this.styleProperties.map(propertyData => (
+
+ ))
+ )
+
+ buildMessages = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getDropShadowStyleMessageCount(
+ this.props.style,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default SatinStyle
diff --git a/src/views/report/styles/StrokeStyle.jsx b/src/views/report/styles/StrokeStyle.jsx
new file mode 100644
index 00000000..1166acbe
--- /dev/null
+++ b/src/views/report/styles/StrokeStyle.jsx
@@ -0,0 +1,86 @@
+import React from 'react'
+import {
+ getDropShadowStyleMessageCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class StrokeStyle extends React.Component {
+
+ styleProperties = [
+ {
+ key: 'color',
+ name: 'Color',
+ },
+ {
+ key: 'opacity',
+ name: 'Opacity',
+ },
+ {
+ key: 'size',
+ name: 'Size',
+ },
+ {
+ key: 'blendMode',
+ name: 'Blend Mode',
+ },
+ {
+ key: 'position',
+ name: 'Position',
+ },
+ ]
+
+ buildProperties = shouldAutoExpand => (
+ this.styleProperties.map(propertyData => (
+
+ ))
+ )
+
+ buildMessages = shouldAutoExpand => (
+
+ )
+
+ buildContent = shouldAutoExpand => {
+ return (
+ [
+ this.buildMessages(shouldAutoExpand),
+ this.buildProperties(shouldAutoExpand),
+ ]
+ )
+ }
+
+ render() {
+ const messageCount = getDropShadowStyleMessageCount(
+ this.props.style,
+ this.props.renderers,
+ this.props.messageTypes,
+ this.props.builders,
+ )
+ return (
+
+ );
+ }
+}
+
+export default StrokeStyle
diff --git a/src/views/report/text/TextAnimator.jsx b/src/views/report/text/TextAnimator.jsx
new file mode 100644
index 00000000..05b377fc
--- /dev/null
+++ b/src/views/report/text/TextAnimator.jsx
@@ -0,0 +1,65 @@
+import React from 'react'
+import {
+ getAnimatorMessageCount,
+} from '../../../helpers/reports/counter'
+import RowContainer from '../components/RowContainer'
+import Property from '../Property'
+
+class TextAnimator extends React.Component {
+
+ buildSelectors = shouldAutoExpand => {
+ const selectors = this.props.animator.selectors
+ return selectors.map((selector, index) =>
+
+ )
+ }
+
+ buildContent = shouldAutoExpand => {
+ return [
+
+ ].concat(this.buildSelectors(shouldAutoExpand))
+ }
+
+ render() {
+ const messageCount = getAnimatorMessageCount(this.props.animator, this.props.renderers, this.props.messageTypes, this.props.builders)
+ return (
+
+ );
+ }
+
+ render_() {
+ return (
+
+ );
+ }
+}
+
+export default TextAnimator
diff --git a/src/views/settings/Settings.jsx b/src/views/settings/Settings.jsx
index 6e6c651e..e9fab2b2 100644
--- a/src/views/settings/Settings.jsx
+++ b/src/views/settings/Settings.jsx
@@ -3,10 +3,29 @@ import {connect} from 'react-redux'
import { StyleSheet, css } from 'aphrodite'
import BaseButton from '../../components/buttons/Base_button'
import SettingsListItem from './list/SettingsListItem'
+import SettingsListDropdown from './list/SettingsListDropdown'
+import SettingsExportMode from './SettingsExportMode'
import SettingsCollapsableItem from './collapsable/SettingsCollapsableItem'
-import {setCurrentCompId, cancelSettings, toggleSettingsValue, updateSettingsValue, toggleExtraComp, goToComps, rememberSettings, applySettings} from '../../redux/actions/compositionActions'
+import SettingsAssets from './SettingsAssets'
+import SettingsMetadata from './SettingsMetadata'
+import {
+ setCurrentCompId,
+ cancelSettings,
+ toggleSettingsValue,
+ updateSettingsValue,
+ toggleExtraComp,
+ goToComps,
+ rememberSettings,
+ applySettings,
+ addMetadataCustomProp,
+ deleteMetadataCustomProp,
+ metadataCustomPropTitleChange,
+ metadataCustomPropValueChange,
+} from '../../redux/actions/compositionActions'
import settings_view_selector from '../../redux/selectors/settings_view_selector'
import Variables from '../../helpers/styles/variables'
+import audioBitOptions from '../../helpers/enums/audioBitOptions'
+import SettingsTemplate from './SettingsTemplate'
const styles = StyleSheet.create({
wrapper: {
@@ -122,27 +141,42 @@ class Settings extends React.PureComponent {
super()
this.storedSettings = null
this.cancelSettings = this.cancelSettings.bind(this)
+ this.toggleValue = this.toggleValue.bind(this)
this.toggleGlyphs = this.toggleValue.bind(this,'glyphs')
+ this.toggleExtraChars = this.toggleValue.bind(this,'includeExtraChars')
this.toggleGuideds = this.toggleValue.bind(this,'guideds')
this.toggleHiddens = this.toggleValue.bind(this,'hiddens')
- this.toggleSegmented = this.toggleValue.bind(this,'segmented')
- this.toggleStandalone = this.toggleValue.bind(this,'standalone')
this.toggleOriginalNames = this.toggleValue.bind(this,'original_names')
+ this.toggleOriginalAssets = this.toggleValue.bind(this,'original_assets')
this.toggleCompressImages = this.toggleValue.bind(this,'should_compress')
this.toggleEncodeImages = this.toggleValue.bind(this,'should_encode_images')
this.toggleSkipImages = this.toggleValue.bind(this,'should_skip_images')
- this.toggleDemo = this.toggleValue.bind(this,'demo')
- this.toggleAVD = this.toggleValue.bind(this,'avd')
+ this.toggleReuseImages = this.toggleValue.bind(this,'should_reuse_images')
+ this.toggleIncludeVideo = this.toggleValue.bind(this,'should_include_av_assets')
this.toggleExpressionProperties = this.toggleValue.bind(this,'ignore_expression_properties')
this.toggleJsonFormat = this.toggleValue.bind(this,'export_old_format')
+ this.toggleSourceNames = this.toggleValue.bind(this,'use_source_names')
+ this.toggleTrimData = this.toggleValue.bind(this,'shouldTrimData')
this.toggleSkipDefaultProperties = this.toggleValue.bind(this,'skip_default_properties')
this.toggleNotSupportedProperties = this.toggleValue.bind(this,'not_supported_properties')
+ this.togglePrettyPrint = this.toggleValue.bind(this,'pretty_print')
+ this.toggleAudioLayers = this.toggleValue.bind(this,'audio:isEnabled')
+ this.toggleRasterizeWaveform = this.toggleValue.bind(this,'audio:shouldRaterizeWaveform')
this.toggleExtraComps = this.toggleValue.bind(this,'extraComps')
- this.segmentedChange = this.segmentedChange.bind(this)
this.qualityChange = this.qualityChange.bind(this)
+ this.sampleSizeChange = this.sampleSizeChange.bind(this)
+ this.toggleBakeExpressionProperties = this.toggleValue.bind(this,'expressions:shouldBake')
+ this.toggleCacheExpressionProperties = this.toggleValue.bind(this,'expressions:shouldCacheExport')
+ this.toggleExtendBakeBeyondWorkArea = this.toggleValue.bind(this,'expressions:shouldBakeBeyondWorkArea')
+ this.toggleCompNamesAsIds = this.toggleValue.bind(this,'useCompNamesAsIds')
+ this.toggleEssentialPropertiesActive = this.toggleValue.bind(this,'essentialProperties:active')
+ this.toggleEssentialPropertiesAsSlots = this.toggleValue.bind(this,'essentialProperties:useSlots')
+ this.toggleEssentialPropertiesCompSkip = this.toggleValue.bind(this,'essentialProperties:skipExternalComp')
+ this.toggleBundleFonts = this.toggleValue.bind(this,'bundleFonts')
+ this.toggleInlineFonts = this.toggleValue.bind(this,'inlineFonts')
}
- componentDidMount() {
+ componentDidMount() {
if (this.props.settings) {
this.storedSettings = this.props.settings
} else {
@@ -170,26 +204,30 @@ class Settings extends React.PureComponent {
this.props.toggleSettingsValue(name)
}
- segmentedChange(ev) {
+ qualityChange(ev) {
let segments = parseInt(ev.target.value, 10)
if(ev.target.value === '') {
- this.props.updateSettingsValue('segmentedTime', '')
+ this.props.updateSettingsValue('compression_rate', 0)
}
if(isNaN(segments) || segments < 0) {
return
}
- this.props.updateSettingsValue('segmentedTime', segments)
+ this.props.updateSettingsValue('compression_rate', segments)
}
- qualityChange(ev) {
- let segments = parseInt(ev.target.value, 10)
+ sampleSizeChange(ev) {
+ let sampleSize = parseInt(ev.target.value, 10)
if(ev.target.value === '') {
- this.props.updateSettingsValue('compression_rate', 0)
+ this.props.updateSettingsValue('expressions:sampleSize', 1)
}
- if(isNaN(segments) || segments < 0) {
+ if(isNaN(sampleSize) || sampleSize < 0) {
return
}
- this.props.updateSettingsValue('compression_rate', segments)
+ this.props.updateSettingsValue('expressions:sampleSize', sampleSize)
+ }
+
+ handleBitRateChange = value => {
+ this.props.updateSettingsValue('audio:bitrate', value)
}
getExtraComps() {
@@ -204,6 +242,7 @@ class Settings extends React.PureComponent {
}
render() {
+
return (
@@ -225,19 +264,32 @@ class Settings extends React.PureComponent {
-
+
+ {!this.props.settings.glyphs &&
+
+ }
+ {this.props.settings.bundleFonts &&
+
+ }
}
+
+
+
- {this.props.canCompressAssets && }
-
+ title='Convert expressions to keyframes'
+ description='Exports expressions as keyframes (can increase file size significantly)'
+ toggleItem={this.toggleBakeExpressionProperties}
+ active={this.props.settings ? this.props.settings.expressions.shouldBake : false}
+ />
+ {/**/}
-
-
-
-
-
+ title='Extend conversion beyond work area'
+ description='Use it when you need to convert keyframes beyond the workarea. For example when using time remapping.'
+ toggleItem={this.toggleExtendBakeBeyondWorkArea}
+ active={this.props.settings ? this.props.settings.expressions.shouldBakeBeyondWorkArea : false}
+ />
+ {/**/}
+
+
+
+
+
+
+
+
+
+
+ {this.props.settings.essentialProperties.active &&
+
+ }
+ {this.props.settings.essentialProperties.active && this.props.settings.essentialProperties.useSlots &&
+
+ }
+
+
+
+
+
+
+
+
@@ -350,8 +481,12 @@ const mapDispatchToProps = {
cancelSettings: cancelSettings,
goToComps: goToComps,
toggleSettingsValue: toggleSettingsValue,
+ addCustomProp: addMetadataCustomProp,
+ onMetadataDeleteCustomProp: deleteMetadataCustomProp,
+ onMetadataTitleChange: metadataCustomPropTitleChange,
+ onMetadataValueChange: metadataCustomPropValueChange,
updateSettingsValue: updateSettingsValue,
- toggleExtraComp: toggleExtraComp
+ toggleExtraComp: toggleExtraComp,
}
export default connect(mapStateToProps, mapDispatchToProps)(Settings)
diff --git a/src/views/settings/SettingsAssets.jsx b/src/views/settings/SettingsAssets.jsx
new file mode 100644
index 00000000..b12f0e28
--- /dev/null
+++ b/src/views/settings/SettingsAssets.jsx
@@ -0,0 +1,68 @@
+import React from 'react'
+import SettingsListItem from './list/SettingsListItem'
+import SettingsCollapsableItem from './collapsable/SettingsCollapsableItem'
+
+class SettingsAssets extends React.PureComponent {
+
+
+ render() {
+
+ const isUsingOriginalAssets = this.props.settings.original_assets
+
+ return (
+
+
+
+
+ {this.props.canCompressAssets &&
+ !isUsingOriginalAssets &&
+
+ }
+
+
+
+
+
+ );
+ }
+}
+
+export default SettingsAssets
diff --git a/src/views/settings/SettingsBanner.jsx b/src/views/settings/SettingsBanner.jsx
new file mode 100644
index 00000000..2daf3136
--- /dev/null
+++ b/src/views/settings/SettingsBanner.jsx
@@ -0,0 +1,253 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import {
+ handleBannerWidthChange,
+ handleBannerHeightChange,
+ handleBannerVersionChange,
+ handleBannerOriginChange,
+ handleBannerLibraryPathChange,
+ handleBannerLibraryFileChange,
+ handleModeToggle,
+ lottieBannerRendererUpdated,
+ lottieBannerClickTagUpdated,
+ lottieBannerZipFilesUpdated,
+ lottieBannerCustomSizeFlagUpdated,
+ lottieIncludeDataInTemplateUpdated,
+ lottieHandleLoopToggleChange,
+ lottieHandleLoopCountChange,
+} from '../../redux/actions/compositionActions'
+import settings_banner_selector from '../../redux/selectors/settings_banner_selector'
+import SettingsListItem from './list/SettingsListItem'
+import SettingsListFile from './list/SettingsListFile'
+import SettingsListInput from './list/SettingsListInput'
+import SettingsListDropdown from './list/SettingsListDropdown'
+import LottieVersions from '../../helpers/LottieVersions'
+import LottieLibraryOrigins from '../../helpers/LottieLibraryOrigins'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%'
+ },
+ wrapperActive: {
+ border: '1px solid #666',
+ },
+ compsList: {
+ width: '100%',
+ flexGrow: 1,
+ overflowY: 'auto',
+ overflowX: 'hidden',
+ padding: '10px 10px',
+ backgroundColor: '#111',
+ },
+})
+
+class SettingsBanner extends React.PureComponent {
+
+ handleLottieOriginChange = (value) => {
+ this.props.handleBannerOriginChange(value)
+ }
+
+ handleLottieVersionChange = (value) => {
+ this.props.handleBannerVersionChange(value)
+ }
+
+ handleBannerWidthChange = (ev) => {
+ this.props.handleBannerWidthChange(ev.target.value)
+ }
+
+ handleBannerHeightChange = (ev) => {
+ this.props.handleBannerHeightChange(ev.target.value)
+ }
+
+ handleLoopCountChange = (ev) => {
+ this.props.handleLoopCountChange(ev.target.value)
+ }
+
+ buildLottieOptions = () => {
+ return LottieVersions.map(version => ({
+ value: version.value,
+ text: `${version.name} (${version.fileSize})`,
+ }))
+ }
+
+ getSelectedLottieVersion() {
+ return LottieVersions.find(version => version.value === this.props.lottie_library)
+ }
+
+ handleModeToggle = () => {
+ this.props.handleModeToggle('banner');
+ }
+
+ buildRendererOptions = () => {
+
+ let availableRenderers = ['svg', 'canvas', 'html']
+ if (this.props.lottie_origin !== LottieLibraryOrigins.CUSTOM) {
+ availableRenderers = this.getSelectedLottieVersion().renderers
+ }
+
+ const rendererOptions = [
+ {
+ value: 'svg',
+ text: 'svg'
+ },
+ {
+ value: 'canvas',
+ text: 'canvas'
+ },
+ {
+ value: 'html',
+ text: 'html'
+ }
+ ]
+
+ return rendererOptions.filter(renderer => {
+ return availableRenderers.includes(renderer.value)
+ })
+ }
+
+ render(){
+ return (
+
+
+ {this.props._isActive &&
+
+
+ {this.props.lottie_origin === LottieLibraryOrigins.FILE_SYSTEM &&
+
+ }
+ {this.props.lottie_origin === LottieLibraryOrigins.CUSTOM &&
+
+ }
+ {[LottieLibraryOrigins.LOCAL, LottieLibraryOrigins.CDNJS].includes(this.props.lottie_origin) &&
+
+ }
+
+
+
+ {!this.props.use_original_sizes &&
+
+
+
+
+ }
+
+
+
+ { !this.props.shouldLoop &&
+
+
+
+ }
+
+ }
+
+ )
+ }
+}
+
+function mapStateToProps(state) {
+ return settings_banner_selector(state)
+}
+
+const mapDispatchToProps = {
+ handleBannerWidthChange: handleBannerWidthChange,
+ handleBannerHeightChange: handleBannerHeightChange,
+ handleBannerVersionChange: handleBannerVersionChange,
+ handleBannerOriginChange: handleBannerOriginChange,
+ handleBannerLibraryPathChange: handleBannerLibraryPathChange,
+ handleBannerLibraryFileChange: handleBannerLibraryFileChange,
+ handleModeToggle: handleModeToggle,
+ lottieBannerRendererUpdated: lottieBannerRendererUpdated,
+ handleBannerLibraryClickTagChange: lottieBannerClickTagUpdated,
+ handleCustomSizeFlagChange: lottieBannerCustomSizeFlagUpdated,
+ handleZipFilesChange: lottieBannerZipFilesUpdated,
+ handleIncludeDataInTemplateChange: lottieIncludeDataInTemplateUpdated,
+ handleLoopToggleChange: lottieHandleLoopToggleChange,
+ handleLoopCountChange: lottieHandleLoopCountChange,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(SettingsBanner)
\ No newline at end of file
diff --git a/src/views/settings/SettingsExportMode.jsx b/src/views/settings/SettingsExportMode.jsx
new file mode 100644
index 00000000..5397866b
--- /dev/null
+++ b/src/views/settings/SettingsExportMode.jsx
@@ -0,0 +1,77 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+// import SettingsCollapsableItem from './collapsable/SettingsCollapsableItem'
+import SettingsBanner from './SettingsBanner'
+import SettingsStandard from './SettingsExportModeStandard'
+import SettingsAVD from './SettingsExportModeAVD'
+import SettingsSMIL from './SettingsExportModeSMIL'
+import SettingsFlare from './SettingsExportModeFlare'
+import SettingsDemo from './SettingsExportModeDemo'
+import SettingsStandalone from './SettingsExportModeStandalone'
+import SettingsReport from './SettingsExportModeReport'
+import Variables from '../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ padding: '10px',
+ },
+ wrapperContainer: {
+ width: '100%',
+ border: '1px solid #555',
+ backgroundColor: Variables.colors.gray_darkest,
+ padding: '10px',
+ },
+ title: {
+ width: '100%',
+ fontSize: '14px',
+ paddingBottom: '4px',
+ },
+ modes: {
+ padding: '0 0 0 10px',
+ },
+ modeItem: {
+ paddingTop: '10px',
+ },
+})
+
+class SettingsExportMode extends React.PureComponent {
+
+ render(){
+ return (
+
+
+
Export Modes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+ }
+}
+
+export default SettingsExportMode
\ No newline at end of file
diff --git a/src/views/settings/SettingsExportModeAVD.jsx b/src/views/settings/SettingsExportModeAVD.jsx
new file mode 100644
index 00000000..332d2f5e
--- /dev/null
+++ b/src/views/settings/SettingsExportModeAVD.jsx
@@ -0,0 +1,55 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import SettingsListItem from './list/SettingsListItem'
+import {
+ handleModeToggle,
+} from '../../redux/actions/compositionActions'
+import settings_selector from '../../redux/selectors/settings_avd_selector'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%'
+ },
+ wrapperActive: {
+ border: '1px solid #666',
+ },
+ compsList: {
+ width: '100%',
+ flexGrow: 1,
+ overflowY: 'auto',
+ overflowX: 'hidden',
+ padding: '0 0 0 10px',
+ },
+})
+
+class SettingsExportModeStandard extends React.PureComponent {
+
+ handleModeToggle = () => {
+ this.props.handleModeToggle('avd');
+ }
+
+ render(){
+ return (
+
+ )
+ }
+}
+
+function mapStateToProps(state) {
+ return settings_selector(state)
+}
+
+const mapDispatchToProps = {
+ handleModeToggle: handleModeToggle,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(SettingsExportModeStandard)
\ No newline at end of file
diff --git a/src/views/settings/SettingsExportModeDemo.jsx b/src/views/settings/SettingsExportModeDemo.jsx
new file mode 100644
index 00000000..5f71c3b1
--- /dev/null
+++ b/src/views/settings/SettingsExportModeDemo.jsx
@@ -0,0 +1,81 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import SettingsListItem from './list/SettingsListItem'
+import SettingsListColor from './list/SettingsListColor'
+import {
+ handleModeToggle,
+ handleDemoBackgroundColorChange,
+} from '../../redux/actions/compositionActions'
+import settings_selector from '../../redux/selectors/settings_demo_selector'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%'
+ },
+ wrapperActive: {
+ border: '1px solid #666',
+ },
+ compsList: {
+ width: '100%',
+ flexGrow: 1,
+ overflowY: 'auto',
+ overflowX: 'hidden',
+ },
+ settings: {
+ padding: '10px 10px',
+ backgroundColor: '#111',
+ },
+})
+
+class SettingsExportModeStandard extends React.PureComponent {
+
+ handleModeToggle = () => {
+ this.props.handleModeToggle('demo');
+ }
+
+ colorChange = color => {
+ this.props.handleColorChange(color)
+ }
+
+ render(){
+ return (
+
+
+
+ {this.props._isActive &&
+
+ }
+
+ )
+ }
+}
+
+function mapStateToProps(state) {
+ return settings_selector(state)
+}
+
+const mapDispatchToProps = {
+ handleModeToggle: handleModeToggle,
+ handleColorChange: handleDemoBackgroundColorChange,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(SettingsExportModeStandard)
\ No newline at end of file
diff --git a/src/views/settings/SettingsExportModeFlare.jsx b/src/views/settings/SettingsExportModeFlare.jsx
new file mode 100644
index 00000000..586f63b4
--- /dev/null
+++ b/src/views/settings/SettingsExportModeFlare.jsx
@@ -0,0 +1,55 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import SettingsListItem from './list/SettingsListItem'
+import {
+ handleModeToggle,
+} from '../../redux/actions/compositionActions'
+import settings_selector from '../../redux/selectors/settings_rive_selector'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%'
+ },
+ wrapperActive: {
+ border: '1px solid #666',
+ },
+ compsList: {
+ width: '100%',
+ flexGrow: 1,
+ overflowY: 'auto',
+ overflowX: 'hidden',
+ padding: '0 0 0 10px',
+ },
+})
+
+class SettingsExportModeStandard extends React.PureComponent {
+
+ handleModeToggle = () => {
+ this.props.handleModeToggle('rive');
+ }
+
+ render(){
+ return (
+
+ )
+ }
+}
+
+function mapStateToProps(state) {
+ return settings_selector(state)
+}
+
+const mapDispatchToProps = {
+ handleModeToggle: handleModeToggle,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(SettingsExportModeStandard)
\ No newline at end of file
diff --git a/src/views/settings/SettingsExportModeReport.jsx b/src/views/settings/SettingsExportModeReport.jsx
new file mode 100644
index 00000000..b80d296f
--- /dev/null
+++ b/src/views/settings/SettingsExportModeReport.jsx
@@ -0,0 +1,65 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import SettingsListItem from './list/SettingsListItem'
+import {
+ handleModeToggle,
+} from '../../redux/actions/compositionActions'
+import settings_selector from '../../redux/selectors/settings_reports_selector'
+import SettingsReportRenderers from './reports/SettingsReportRenderers'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%'
+ },
+ wrapperActive: {
+ border: '1px solid #666',
+ },
+ compsList: {
+ width: '100%',
+ flexGrow: 1,
+ overflowY: 'auto',
+ overflowX: 'hidden',
+ padding: '0 0 0 10px',
+ },
+})
+
+class SettingsExportModeReport extends React.PureComponent {
+
+ handleModeToggle = () => {
+ this.props.handleModeToggle('reports');
+ }
+
+ render(){
+ return (
+
+
+ {this.props._isActive &&
+
+ }
+
+ )
+ }
+}
+
+function mapStateToProps(state) {
+ return settings_selector(state)
+}
+
+const mapDispatchToProps = {
+ handleModeToggle: handleModeToggle,
+ handleReportChange: handleModeToggle,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(SettingsExportModeReport)
\ No newline at end of file
diff --git a/src/views/settings/SettingsExportModeSMIL.jsx b/src/views/settings/SettingsExportModeSMIL.jsx
new file mode 100644
index 00000000..b1241773
--- /dev/null
+++ b/src/views/settings/SettingsExportModeSMIL.jsx
@@ -0,0 +1,56 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import SettingsListItem from './list/SettingsListItem'
+import {
+ handleModeToggle,
+} from '../../redux/actions/compositionActions'
+import settings_selector from '../../redux/selectors/settings_smil_selector'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%'
+ },
+ wrapperActive: {
+ border: '1px solid #666',
+ },
+ compsList: {
+ width: '100%',
+ flexGrow: 1,
+ overflowY: 'auto',
+ overflowX: 'hidden',
+ padding: '0 0 0 10px',
+ },
+})
+
+class SettingsExportModeSMIL extends React.PureComponent {
+
+ handleModeToggle = () => {
+ this.props.handleModeToggle('smil');
+ }
+
+ render(){
+ return (
+
+ )
+ }
+}
+
+function mapStateToProps(state) {
+ return settings_selector(state)
+}
+
+const mapDispatchToProps = {
+ handleModeToggle: handleModeToggle,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(SettingsExportModeSMIL)
\ No newline at end of file
diff --git a/src/views/settings/SettingsExportModeStandalone.jsx b/src/views/settings/SettingsExportModeStandalone.jsx
new file mode 100644
index 00000000..d2f092a3
--- /dev/null
+++ b/src/views/settings/SettingsExportModeStandalone.jsx
@@ -0,0 +1,55 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import SettingsListItem from './list/SettingsListItem'
+import {
+ handleModeToggle,
+} from '../../redux/actions/compositionActions'
+import settings_selector from '../../redux/selectors/settings_standalone_selector'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%'
+ },
+ wrapperActive: {
+ border: '1px solid #666',
+ },
+ compsList: {
+ width: '100%',
+ flexGrow: 1,
+ overflowY: 'auto',
+ overflowX: 'hidden',
+ padding: '0 0 0 10px',
+ },
+})
+
+class SettingsExportModeStandalone extends React.PureComponent {
+
+ handleModeToggle = () => {
+ this.props.handleModeToggle('standalone');
+ }
+
+ render(){
+ return (
+
+ )
+ }
+}
+
+function mapStateToProps(state) {
+ return settings_selector(state)
+}
+
+const mapDispatchToProps = {
+ handleModeToggle: handleModeToggle,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(SettingsExportModeStandalone)
\ No newline at end of file
diff --git a/src/views/settings/SettingsExportModeStandard.jsx b/src/views/settings/SettingsExportModeStandard.jsx
new file mode 100644
index 00000000..9c954c35
--- /dev/null
+++ b/src/views/settings/SettingsExportModeStandard.jsx
@@ -0,0 +1,96 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import SettingsListItem from './list/SettingsListItem'
+// import SettingsCollapsableItem from './collapsable/SettingsCollapsableItem'
+import {
+ handleModeToggle,
+ updateSettingsValue,
+ toggleSettingsValue,
+} from '../../redux/actions/compositionActions'
+import settings_standard_selector from '../../redux/selectors/settings_standard_selector'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%'
+ },
+ wrapperActive: {
+ border: '1px solid #666',
+ },
+ settings: {
+ padding: '10px 10px',
+ backgroundColor: '#111',
+ },
+ compsList: {
+ width: '100%',
+ flexGrow: 1,
+ overflowY: 'auto',
+ overflowX: 'hidden',
+ },
+})
+
+class SettingsExportModeStandard extends React.PureComponent {
+
+ handleModeToggle = () => {
+ this.props.handleModeToggle('standard');
+ }
+
+ toggleSegmented = () => {
+ this.props.toggleSettingsValue('segmented')
+ }
+
+ segmentedChange = (ev) => {
+ let segments = parseInt(ev.target.value, 10)
+ if(ev.target.value === '') {
+ this.props.updateSettingsValue('segmentedTime', '')
+ }
+ if(isNaN(segments) || segments < 0) {
+ return
+ }
+ this.props.updateSettingsValue('segmentedTime', segments)
+ }
+
+ render(){
+ return (
+
+
+ {this.props._isActive &&
+
+ }
+
+ )
+ }
+}
+
+function mapStateToProps(state) {
+ return settings_standard_selector(state)
+}
+
+const mapDispatchToProps = {
+ handleModeToggle: handleModeToggle,
+ toggleSettingsValue: toggleSettingsValue,
+ updateSettingsValue: updateSettingsValue,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(SettingsExportModeStandard)
\ No newline at end of file
diff --git a/src/views/settings/SettingsMetadata.jsx b/src/views/settings/SettingsMetadata.jsx
new file mode 100644
index 00000000..f842acbd
--- /dev/null
+++ b/src/views/settings/SettingsMetadata.jsx
@@ -0,0 +1,65 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import SettingsListItem from './list/SettingsListItem'
+import SettingsListCustomProp from './list/SettingsListCustomProp'
+import SettingsCollapsableItem from './collapsable/SettingsCollapsableItem'
+import BaseButton from '../../components/buttons/Base_button'
+
+const styles = StyleSheet.create({
+ customProps: {
+ padding: '10px 0 10px 24px',
+ },
+ customPropsTitle: {
+ fontSize: '14px',
+ padding: '4px 0',
+ },
+ customPropsButton: {
+ padding: '4px 0',
+ }
+})
+
+class SettingsMetadata extends React.PureComponent {
+
+ namespace = 'metadata:'
+
+ renderCustomProps(propsList) {
+ return propsList.map((item) =>
+
this.props.toggle(`${this.namespace}[CUSTOM_PROP]:${item.id}`)}
+ titleValueChange={(value) => this.props.onTitleChange(value, item.id)}
+ inputValueChange={(value) => this.props.onValueChange(value, item.id)}
+ onDelete={() => this.props.onDeleteCustomProp(item.id)}
+ active={item.active}
+ needsInput={true}
+ inputValue={item.value}
+ />)
+ }
+
+ render() {
+ return (
+
+ this.props.toggle(`${this.namespace}includeFileName`)}
+ active={this.props.data ? this.props.data.includeFileName : false} />
+
+
Custom Properties
+ {this.renderCustomProps(this.props.data.customProps)}
+
+
+
+
+
+
+ );
+ }
+}
+
+export default SettingsMetadata
diff --git a/src/views/settings/SettingsTemplate.jsx b/src/views/settings/SettingsTemplate.jsx
new file mode 100644
index 00000000..ad88596b
--- /dev/null
+++ b/src/views/settings/SettingsTemplate.jsx
@@ -0,0 +1,54 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import SettingsListItem from './list/SettingsListItem'
+import SettingsListDropdown from './list/SettingsListDropdown'
+import SettingsCollapsableItem from './collapsable/SettingsCollapsableItem'
+import selector from '../../redux/selectors/settings_template_view_selector'
+import {
+ toggleSettingsValue,
+ updateSettingsValue,
+} from '../../redux/actions/compositionActions'
+
+class SettingsTemplate extends React.PureComponent {
+
+ namespace = 'template:'
+
+
+
+ handleTemplateChange = (value) => {
+ this.props.updateSettingsValue(`${this.namespace}id`, value)
+ }
+
+ render() {
+ return (
+
+ this.props.toggle(`${this.namespace}active`)}
+ active={this.props.data ? this.props.data.active : false} />
+
+
+ );
+ }
+}
+
+function mapStateToProps(state) {
+ return selector(state)
+}
+
+const mapDispatchToProps = {
+ toggle: toggleSettingsValue,
+ updateSettingsValue: updateSettingsValue,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(SettingsTemplate)
diff --git a/src/views/settings/list/SettingsListColor.jsx b/src/views/settings/list/SettingsListColor.jsx
new file mode 100644
index 00000000..32af0e8c
--- /dev/null
+++ b/src/views/settings/list/SettingsListColor.jsx
@@ -0,0 +1,130 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import Variables from '../../../helpers/styles/variables'
+import { SketchPicker } from 'react-color'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ paddingBottom: '10px',
+ minHeight: '40px',
+ backgroundColor: Variables.colors.gray_darkest,
+ },
+ composition: {
+ width: '100%',
+ fontSize: '12px',
+ color: Variables.colors.white,
+ padding: '4px 0',
+ height: '100%',
+ display: 'flex',
+ alignItems: 'end'
+ },
+ item: {
+ flexGrow: 0,
+ flexShrink: 0,
+ backgroundColor:'transparent'
+ },
+ radio: {
+ width: '60px',
+ height: '20px',
+ padding:'2px',
+ cursor: 'pointer'
+ },
+ 'radio--color': {
+ border: ` 1px solid ${Variables.colors.gray_lighter}`,
+ outline: ` 1px solid ${Variables.colors.white}`,
+ display: 'inline-block',
+ width: '16px',
+ height: '16px',
+ borderRadius: '2px',
+ position: 'relative',
+ },
+ 'radio--picker': {
+ },
+ name: {
+ flexGrow: 1,
+ flexShrink: 1,
+ padding: '0 4px'
+ },
+ 'name--title': {
+ color: '#fff',
+ fontSize: '14px',
+ marginRight: '10px',
+ paddingBottom: '4px',
+ },
+ 'name--desc': {
+ color: '#ccc',
+ fontSize: '12px',
+ lineHeight: '14px'
+ },
+ inputBox: {
+ border: '1px solid ' + Variables.colors.white,
+ backgroundColor: '#333',
+ borderRadius: '6px',
+ maxWidth:'50px',
+ marginRight:'20px' ,
+ padding: '3px'
+ },
+ inputInput: {
+ background: 'none',
+ width:'100%',
+ border: 'none',
+ ':focus': {
+ border: 'none',
+ outline: 'none'
+ },
+ color: Variables.colors.white
+ },
+ disabled: {
+ opacity: .3
+ }
+})
+
+class SettingsListColor extends React.PureComponent {
+
+ state = {
+ isColorPickerEnabled: false,
+ }
+
+ toggleColorPicker = () => {
+ this.setState({
+ isColorPickerEnabled: !this.state.isColorPickerEnabled,
+ })
+ }
+
+ updateColor = colorData => {
+ this.props.inputValueChange(colorData.hex)
+ }
+
+ render(){
+ return (
+
+
+
+
{this.props.title}
+
{this.props.description}
+ {this.state.isColorPickerEnabled &&
+
+
+
+ }
+
+
+ )
+ }
+}
+
+export default SettingsListColor
\ No newline at end of file
diff --git a/src/views/settings/list/SettingsListCustomProp.jsx b/src/views/settings/list/SettingsListCustomProp.jsx
new file mode 100644
index 00000000..df30559f
--- /dev/null
+++ b/src/views/settings/list/SettingsListCustomProp.jsx
@@ -0,0 +1,116 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import BodymovinCheckbox from '../../../components/bodymovin/bodymovin_checkbox'
+import checkbox from '../../../assets/animations/checkbox.json'
+import Variables from '../../../helpers/styles/variables'
+import BaseButton from '../../../components/buttons/Base_button'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ padding: '10px 10px 10px 0',
+ minHeight: '40px',
+ backgroundColor: Variables.colors.gray_darkest,
+ },
+ wrapper__active: {
+ background: Variables.gradients.blueGreen
+ },
+ composition: {
+ width: '100%',
+ fontSize: '12px',
+ color: Variables.colors.white,
+ padding: '4px 0',
+ height: '100%',
+ display: 'flex',
+ alignItems: 'center'
+ },
+ item: {
+ flexGrow: 0,
+ flexShrink: 0,
+ backgroundColor:'transparent'
+ },
+ radio: {
+ width: '60px',
+ height: '20px',
+ padding:'2px',
+ cursor: 'pointer'
+ },
+ name: {
+ flexGrow: 1,
+ flexShrink: 1,
+ padding: '0 4px'
+ },
+ value: {
+ flexGrow: 1,
+ flexShrink: 1,
+ },
+ 'name--title': {
+ color: '#000',
+ fontSize: '14px',
+ marginRight: '10px',
+ paddingBottom: '4px',
+ },
+ label: {
+ color: '#ccc',
+ fontSize: '12px',
+ lineHeight: '14px',
+ paddingBottom: '2px',
+ },
+ inputBox: {
+ border: '1px solid ' + Variables.colors.white,
+ backgroundColor: '#333',
+ borderRadius: '6px',
+ marginRight:'20px' ,
+ padding: '3px'
+ },
+ inputInput: {
+ background: 'none',
+ width:'100%',
+ border: 'none',
+ ':focus': {
+ border: 'none',
+ outline: 'none'
+ },
+ color: Variables.colors.white
+ },
+ disabled: {
+ opacity: .3
+ }
+})
+
+class SettingsListCustomProp extends React.PureComponent {
+
+ render(){
+ return (
+
+
+
+
+
+
Property Name
+
this.props.titleValueChange(ev.target.value)}
+ value={this.props.title}
+ type="text"
+ />
+
+
+
Property Value
+
+ this.props.inputValueChange(ev.target.value)}
+ type="text" />
+
+
+
+
+ )
+ }
+}
+
+export default SettingsListCustomProp
\ No newline at end of file
diff --git a/src/views/settings/list/SettingsListDropdown.jsx b/src/views/settings/list/SettingsListDropdown.jsx
new file mode 100644
index 00000000..bc47ea9b
--- /dev/null
+++ b/src/views/settings/list/SettingsListDropdown.jsx
@@ -0,0 +1,99 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import Variables from '../../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ paddingTop: '10px',
+ paddingBottom: '10px',
+ minHeight: '40px',
+ backgroundColor: Variables.colors.gray_darkest,
+ },
+ composition: {
+ width: '100%',
+ fontSize: '12px',
+ color: Variables.colors.white,
+ display:'flex',
+ padding: '4px 0',
+ height: '100%',
+ alignItems: 'end'
+ },
+ dropdown: {
+ flexGrow: 1,
+ flexShrink: 1,
+ width: '150px',
+ },
+ item: {
+ backgroundColor:'transparent',
+ display:'flex',
+ padding: '0 0 8px 0',
+ },
+ name: {
+ flexGrow: 1,
+ flexShrink: 1
+ },
+ 'name--title': {
+ color: '#fff',
+ flexGrow: 0,
+ flexShrink: 0,
+ fontSize: '14px',
+ marginRight: '10px',
+ paddingBottom: '4px',
+ },
+ 'name--desc': {
+ color: '#ccc',
+ fontSize: '12px',
+ lineHeight: '14px'
+ },
+ disabled: {
+ opacity: .3
+ },
+ emptyColumn: {
+ width: '60px',
+ flexGrow: 0,
+ flexShrink: 0,
+ },
+ content: {
+ flexGrow: 1,
+ flexShrink: 1,
+ padding: '0 4px',
+ }
+})
+
+class SettingsListItem extends React.PureComponent {
+
+ handleChange = (ev) => {
+ this.props.onChange(ev.target.value)
+ }
+
+ render(){
+ return (
+
+
+
+
+
{this.props.title}
+
+
+
{this.props.description}
+
+
+ )
+ }
+}
+
+export default SettingsListItem
\ No newline at end of file
diff --git a/src/views/settings/list/SettingsListFile.jsx b/src/views/settings/list/SettingsListFile.jsx
new file mode 100644
index 00000000..e59a728e
--- /dev/null
+++ b/src/views/settings/list/SettingsListFile.jsx
@@ -0,0 +1,111 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import Variables from '../../../helpers/styles/variables'
+import BodymovinDots from '../../../components/bodymovin/bodymovin_dots'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ paddingBottom: '10px',
+ minHeight: '40px',
+ backgroundColor: Variables.colors.gray_darkest,
+ },
+ composition: {
+ width: '100%',
+ fontSize: '12px',
+ color: Variables.colors.white,
+ display:'flex',
+ padding: '4px 0',
+ height: '100%',
+ alignItems: 'end'
+ },
+ item: {
+ backgroundColor:'transparent',
+ display:'flex',
+ padding: '0 0 8px 0',
+ },
+ name: {
+ flexGrow: 1,
+ flexShrink: 1,
+ alignItems: 'center',
+ },
+ 'name--title': {
+ color: '#fff',
+ flexGrow: 0,
+ flexShrink: 0,
+ fontSize: '14px',
+ marginRight: '10px',
+ },
+ 'path': {
+ flex: '1 1 auto',
+ color: Variables.colors.green,
+ padding: '0 4px',
+ textOverflow: 'ellipsis',
+ overflow: 'hidden',
+ whiteSpace: 'nowrap',
+
+ },
+ 'name--desc': {
+ color: '#ccc',
+ fontSize: '12px',
+ lineHeight: '14px'
+ },
+ 'name--icon': {
+ width: '40px',
+ height: '20px',
+ },
+ input: {
+ width: '100%',
+ },
+ disabled: {
+ opacity: .3
+ },
+ emptyColumn: {
+ width: '60px',
+ flexGrow: 0,
+ flexShrink: 0,
+ },
+ content: {
+ flexGrow: 1,
+ flexShrink: 1,
+ padding: '0 4px',
+ overflow: 'hidden',
+ }
+})
+
+class SettingsListFile extends React.PureComponent {
+
+ onChange = () => {
+ this.props.onChange(this.props.value)
+ }
+
+ render(){
+ return (
+
+
+
+
+
{this.props.title}
+ {!!this.props.value &&
+
+ {this.props.value.fsName || 'a'}
+
+ }
+ {!this.props.value &&
+
+
+
+ }
+
+
{this.props.description}
+
+
+ )
+ }
+}
+
+export default SettingsListFile
\ No newline at end of file
diff --git a/src/views/settings/list/SettingsListInput.jsx b/src/views/settings/list/SettingsListInput.jsx
new file mode 100644
index 00000000..dda7110b
--- /dev/null
+++ b/src/views/settings/list/SettingsListInput.jsx
@@ -0,0 +1,88 @@
+import React from 'react'
+import { StyleSheet, css } from 'aphrodite'
+import Variables from '../../../helpers/styles/variables'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ paddingBottom: '10px',
+ minHeight: '40px',
+ backgroundColor: Variables.colors.gray_darkest,
+ },
+ composition: {
+ width: '100%',
+ fontSize: '12px',
+ color: Variables.colors.white,
+ display:'flex',
+ padding: '4px 0',
+ height: '100%',
+ alignItems: 'end'
+ },
+ item: {
+ backgroundColor:'transparent',
+ display:'flex',
+ padding: '0 0 8px 0',
+ },
+ name: {
+ flexGrow: 1,
+ flexShrink: 1
+ },
+ 'name--title': {
+ color: '#fff',
+ flexGrow: 0,
+ flexShrink: 0,
+ fontSize: '14px',
+ marginRight: '10px',
+ paddingBottom: '4px',
+ },
+ 'name--desc': {
+ color: '#ccc',
+ fontSize: '12px',
+ lineHeight: '14px'
+ },
+ input: {
+ width: '100%',
+ },
+ disabled: {
+ opacity: .3
+ },
+ emptyColumn: {
+ width: '60px',
+ flexGrow: 0,
+ flexShrink: 0,
+ },
+ content: {
+ flexGrow: 1,
+ flexShrink: 1,
+ padding: '0 4px',
+ }
+})
+
+class SettingsListItem extends React.PureComponent {
+
+ handleChange = (ev) => {
+ this.props.onChange(ev.target.value)
+ }
+
+ render(){
+ return (
+
+
+
+
+
{this.props.description}
+
+
+ )
+ }
+}
+
+export default SettingsListItem
\ No newline at end of file
diff --git a/src/views/settings/list/SettingsListItem.jsx b/src/views/settings/list/SettingsListItem.jsx
index e3b187cd..cf39c929 100644
--- a/src/views/settings/list/SettingsListItem.jsx
+++ b/src/views/settings/list/SettingsListItem.jsx
@@ -11,6 +11,9 @@ const styles = StyleSheet.create({
minHeight: '40px',
backgroundColor: Variables.colors.gray_darkest,
},
+ wrapper__active: {
+ background: Variables.gradients.blueGreen
+ },
composition: {
width: '100%',
fontSize: '12px',
@@ -20,9 +23,6 @@ const styles = StyleSheet.create({
display: 'flex',
alignItems: 'end'
},
- composition__active: {
- background: Variables.gradients.blueGreen
- },
item: {
flexGrow: 0,
flexShrink: 0,
@@ -77,8 +77,8 @@ class SettingsListItem extends React.PureComponent {
render(){
return (
-
+ className={css(styles.wrapper, this.props.active && styles.wrapper__active)}>
+
diff --git a/src/views/settings/reports/SettingsReportRenderers.jsx b/src/views/settings/reports/SettingsReportRenderers.jsx
new file mode 100644
index 00000000..5c29dc12
--- /dev/null
+++ b/src/views/settings/reports/SettingsReportRenderers.jsx
@@ -0,0 +1,12 @@
+import React from 'react'
+
+class SettingsReportRenderers extends React.PureComponent {
+
+ render(){
+ return (
+ null
+ )
+ }
+}
+
+export default SettingsReportRenderers
\ No newline at end of file
diff --git a/src/views/supported_features/SupportedFeatures.jsx b/src/views/supported_features/SupportedFeatures.jsx
new file mode 100644
index 00000000..264e74a6
--- /dev/null
+++ b/src/views/supported_features/SupportedFeatures.jsx
@@ -0,0 +1,180 @@
+import React from 'react'
+import {connect} from 'react-redux'
+import { StyleSheet, css } from 'aphrodite'
+import {
+ initialize,
+ finalize,
+} from '../../redux/actions/supportedFeaturesActions'
+import supported_features_selector from '../../redux/selectors/supported_features_view_selector'
+import BaseHeader from '../../components/header/Base_Header'
+import Variables from '../../helpers/styles/variables'
+import {openInBrowser} from '../../helpers/CompositionsProvider'
+
+const styles = StyleSheet.create({
+ wrapper: {
+ width: '100%',
+ height: '100%',
+ padding: '10px 10px 30px 10px',
+ backgroundColor: '#474747',
+ display: 'flex',
+ flexDirection:'column',
+ color: Variables.colors.white,
+ },
+ header: {
+ flex: '0 0 auto',
+ },
+ infoContainer: {
+ flex: '1 1 auto',
+ height: '100%',
+ display: 'flex',
+ flexDirection:'column',
+ minHeight: 0,
+ },
+ frameContainer: {
+ height: '100%',
+ width: '100%',
+ },
+ instructionsContainer: {
+ height: '100%',
+ width: '100%',
+ padding: '8px',
+ },
+ dropdown: {
+ margin: '8px 0',
+ },
+})
+
+class SupportedFeatures extends React.Component {
+
+ state = {
+ selectedFeature: null,
+ }
+
+ updateSelectedFeature = () => {
+ if (!this.state.selectedFeature && this.props.features.length) {
+ this.setState({
+ selectedFeature: this.props.features[0]
+ })
+ } else if (this.state.selectedFeature && !this.props.features.length) {
+ this.setState({
+ selectedFeature: null
+ })
+ } else if (this.state.selectedFeature) {
+ const feature = this.props.features.find(feature => feature.matchName === this.state.selectedFeature.matchName)
+ if (!feature) {
+ this.setState({
+ selectedFeature: this.props.features[0]
+ })
+ } else if(this.state.selectedFeature !== feature) {
+ this.setState({
+ selectedFeature: feature
+ })
+ }
+ }
+ }
+
+ componentDidMount() {
+ this.props.initialize()
+ this.updateSelectedFeature()
+ }
+
+ componentWillUnmount() {
+ this.props.finalize()
+ }
+
+ componentDidUpdate() {
+ this.updateSelectedFeature()
+ }
+
+ handleChange = (ev) => {
+ this.setState({
+ selectedFeature: this.props.features.find(feature => feature.matchName === ev.target.value)
+ })
+ }
+
+ buildFeaturesInfo(features) {
+ if(!features.length || !this.state.selectedFeature) {
+ return null;
+ }
+ return (
+
+ )
+ }
+
+ setRef(elem) {
+ if (elem) {
+ if (elem.contentWindow) {
+ window.addEventListener('message', function(ev) {
+ if (ev.data.name === 'lottieEvent') {
+ var payload = ev.data.payload;
+ if (payload.type === 'link') {
+ openInBrowser(payload.link);
+ }
+ }
+ })
+ }
+ }
+ }
+
+ buildInfo() {
+ if (!this.state.selectedFeature) {
+ return (
+
+
Select one or more properties from your composition to get information about their support
+
+ );
+ }
+ if (!this.state.selectedFeature.link) {
+ return (
+
+
No data for this property
+
+ )
+ }
+ return (
+
+ )
+ }
+
+ render() {
+ // console.log(this.props.features.map(f => `"${f.matchName}"`).join(","));
+ return (
+
+
+
+
+ {this.buildFeaturesInfo(this.props.features)}
+
+ {this.buildInfo()}
+
+
+ )
+ }
+}
+
+function mapStateToProps(state) {
+ return supported_features_selector(state)
+}
+
+const mapDispatchToProps = {
+ initialize: initialize,
+ finalize: finalize,
+}
+
+export default connect(mapStateToProps, mapDispatchToProps)(SupportedFeatures)
diff --git "a/\320\267\320\260\320\262\320\276\320\267" "b/\320\267\320\260\320\262\320\276\320\267"
new file mode 100644
index 00000000..8b137891
--- /dev/null
+++ "b/\320\267\320\260\320\262\320\276\320\267"
@@ -0,0 +1 @@
+