wisemapping-frontend/packages/mindplot/src/components/persistence/Beta2PelaMigrator.ts

68 lines
2.2 KiB
TypeScript
Raw Normal View History

2021-07-16 16:41:58 +02:00
/*
2021-12-25 23:39:34 +01:00
* Copyright [2021] [wisemapping]
2021-07-16 16:41:58 +02:00
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2021-12-14 18:13:39 +01:00
import { $assert, $defined } from '@wisemapping/core-js';
2022-01-03 17:27:00 +01:00
import { Mindmap } from '../..';
import NodeModel from '../model/NodeModel';
import ModelCodeName from './ModelCodeName';
2022-01-03 17:27:00 +01:00
import XMLMindmapSerializer from './XMLMindmapSerializer';
2022-02-15 20:36:14 +01:00
import XMLSerializerPela from './XMLSerializerTango';
2021-07-16 16:41:58 +02:00
2022-01-03 17:27:00 +01:00
class Beta2PelaMigrator implements XMLMindmapSerializer {
private _betaSerializer: XMLMindmapSerializer;
2022-01-03 17:27:00 +01:00
private _pelaSerializer: XMLSerializerPela;
2022-01-03 17:27:00 +01:00
constructor(betaSerializer: XMLSerializerPela) {
2021-10-05 02:05:34 +02:00
this._betaSerializer = betaSerializer;
2022-01-03 17:27:00 +01:00
this._pelaSerializer = new XMLSerializerPela();
2021-12-05 00:39:20 +01:00
}
2021-07-16 16:41:58 +02:00
2022-01-03 17:27:00 +01:00
toXML(mindmap: Mindmap) {
2021-10-05 02:05:34 +02:00
return this._pelaSerializer.toXML(mindmap);
2021-12-05 00:39:20 +01:00
}
2021-07-16 16:41:58 +02:00
2022-01-03 17:27:00 +01:00
loadFromDom(dom: Document, mapId: string): Mindmap {
2021-10-05 02:05:34 +02:00
$assert($defined(mapId), 'mapId can not be null');
const mindmap = this._betaSerializer.loadFromDom(dom, mapId);
mindmap.setVersion(ModelCodeName.PELA);
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
// Beta does not set position on second level nodes ...
const branches = mindmap.getBranches();
const me = this;
2021-12-05 17:14:15 +01:00
branches.forEach((model) => {
2021-10-05 02:05:34 +02:00
me._fixPosition(model);
});
2021-07-16 16:41:58 +02:00
2021-10-05 02:05:34 +02:00
return mindmap;
2021-12-05 00:39:20 +01:00
}
2021-07-16 16:41:58 +02:00
2022-01-03 17:27:00 +01:00
private _fixPosition(parentModel: NodeModel) {
2021-10-05 02:05:34 +02:00
const parentPos = parentModel.getPosition();
const isRight = parentPos.x > 0;
const me = this;
2021-12-05 17:14:15 +01:00
parentModel.getChildren().forEach((child) => {
2021-10-05 02:05:34 +02:00
if (!child.getPosition()) {
2022-01-03 17:27:00 +01:00
child.setPosition(parentPos.x + (isRight ? 1 : -1), parentPos.y);
2021-10-05 02:05:34 +02:00
}
me._fixPosition(child);
});
2021-12-05 00:39:20 +01:00
}
}
2021-07-16 16:41:58 +02:00
export default Beta2PelaMigrator;