68 lines
2.2 KiB
TypeScript
Raw Normal View History

2021-07-16 11:41:58 -03:00
/*
2021-12-25 14:39:34 -08:00
* Copyright [2021] [wisemapping]
2021-07-16 11:41:58 -03: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 09:13:39 -08:00
import { $assert, $defined } from '@wisemapping/core-js';
2022-01-03 08:27:00 -08:00
import { Mindmap } from '../..';
import NodeModel from '../model/NodeModel';
import ModelCodeName from './ModelCodeName';
2022-01-03 08:27:00 -08:00
import XMLMindmapSerializer from './XMLMindmapSerializer';
2022-02-15 11:36:14 -08:00
import XMLSerializerPela from './XMLSerializerTango';
2021-07-16 11:41:58 -03:00
2022-01-03 08:27:00 -08:00
class Beta2PelaMigrator implements XMLMindmapSerializer {
private _betaSerializer: XMLMindmapSerializer;
2022-01-03 08:27:00 -08:00
private _pelaSerializer: XMLSerializerPela;
2022-01-03 08:27:00 -08:00
constructor(betaSerializer: XMLSerializerPela) {
2021-10-04 17:05:34 -07:00
this._betaSerializer = betaSerializer;
2022-01-03 08:27:00 -08:00
this._pelaSerializer = new XMLSerializerPela();
2021-12-04 15:39:20 -08:00
}
2021-07-16 11:41:58 -03:00
2022-01-03 08:27:00 -08:00
toXML(mindmap: Mindmap) {
2021-10-04 17:05:34 -07:00
return this._pelaSerializer.toXML(mindmap);
2021-12-04 15:39:20 -08:00
}
2021-07-16 11:41:58 -03:00
2022-01-03 08:27:00 -08:00
loadFromDom(dom: Document, mapId: string): Mindmap {
2021-10-04 17:05:34 -07:00
$assert($defined(mapId), 'mapId can not be null');
const mindmap = this._betaSerializer.loadFromDom(dom, mapId);
mindmap.setVersion(ModelCodeName.PELA);
2021-07-16 11:41:58 -03:00
2021-10-04 17:05:34 -07:00
// Beta does not set position on second level nodes ...
const branches = mindmap.getBranches();
const me = this;
2021-12-05 08:14:15 -08:00
branches.forEach((model) => {
2021-10-04 17:05:34 -07:00
me._fixPosition(model);
});
2021-07-16 11:41:58 -03:00
2021-10-04 17:05:34 -07:00
return mindmap;
2021-12-04 15:39:20 -08:00
}
2021-07-16 11:41:58 -03:00
2022-01-03 08:27:00 -08:00
private _fixPosition(parentModel: NodeModel) {
2021-10-04 17:05:34 -07:00
const parentPos = parentModel.getPosition();
const isRight = parentPos.x > 0;
const me = this;
2021-12-05 08:14:15 -08:00
parentModel.getChildren().forEach((child) => {
2021-10-04 17:05:34 -07:00
if (!child.getPosition()) {
2022-01-03 08:27:00 -08:00
child.setPosition(parentPos.x + (isRight ? 1 : -1), parentPos.y);
2021-10-04 17:05:34 -07:00
}
me._fixPosition(child);
});
2021-12-04 15:39:20 -08:00
}
}
2021-07-16 11:41:58 -03:00
export default Beta2PelaMigrator;