mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-01-10 20:25:12 +01:00
98 lines
3.3 KiB
TypeScript
98 lines
3.3 KiB
TypeScript
|
/*
|
||
|
* Copyright [2021] [wisemapping]
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
import { Mindmap } from "../..";
|
||
|
import IconModel from "../model/IconModel";
|
||
|
import INodeModel from "../model/INodeModel";
|
||
|
import LinkModel from "../model/LinkModel";
|
||
|
import NoteModel from "../model/NoteModel";
|
||
|
import Exporter from "./Exporter";
|
||
|
|
||
|
class MDExporter implements Exporter {
|
||
|
private mindmap: Mindmap;
|
||
|
private footNotes = []
|
||
|
|
||
|
constructor(mindmap: Mindmap) {
|
||
|
this.mindmap = mindmap;
|
||
|
}
|
||
|
|
||
|
extension(): string {
|
||
|
return 'md';
|
||
|
}
|
||
|
|
||
|
private normalizeText(value: string): string {
|
||
|
return value.replace('\n', '');
|
||
|
}
|
||
|
|
||
|
export(): Promise<string> {
|
||
|
this.footNotes = [];
|
||
|
const mindmap = this.mindmap;
|
||
|
|
||
|
// Add cental node as text ...
|
||
|
const centralTopic = this.mindmap.getCentralTopic();
|
||
|
const centralText = this.normalizeText(centralTopic.getText());
|
||
|
|
||
|
// Traverse all the branches ...
|
||
|
let result = `# ${centralText}\n\n`
|
||
|
result += this.traverseBranch('', centralTopic.getChildren());
|
||
|
|
||
|
// White footnotes:
|
||
|
if (this.footNotes.length > 0) {
|
||
|
result += '\n\n\n';
|
||
|
this.footNotes.forEach((note, index) => {
|
||
|
result += `[^${index + 1}]: ${this.normalizeText(note)}`;
|
||
|
});
|
||
|
}
|
||
|
result += '\n';
|
||
|
|
||
|
return Promise.resolve(result);
|
||
|
}
|
||
|
|
||
|
private traverseBranch(prefix: string, branches: Array<INodeModel>) {
|
||
|
let result = '';
|
||
|
branches.forEach((node) => {
|
||
|
result = result + `${prefix}- ${node.getText()}`;
|
||
|
node.getFeatures().forEach((f) => {
|
||
|
const type = f.getType();
|
||
|
// Dump all features ...
|
||
|
if (type === 'link') {
|
||
|
result = result + ` ( [link](${(f as LinkModel).getUrl()}) )`
|
||
|
}
|
||
|
|
||
|
if (type === 'note') {
|
||
|
const note = f as NoteModel;
|
||
|
this.footNotes.push(note.getText());
|
||
|
result = result + `[^${this.footNotes.length}] `
|
||
|
}
|
||
|
|
||
|
// if(type === 'icon'){
|
||
|
// const icon = f as IconModel;
|
||
|
// result = result + ` ![${icon.getIconType().replace('_','')}!](https://app.wisemapping.com/images/${icon.getIconType()}.svg )`
|
||
|
// }
|
||
|
});
|
||
|
result = result + '\n';
|
||
|
|
||
|
if (node.getChildren().length > 0) {
|
||
|
result = result + this.traverseBranch(`${prefix}\t`, node.getChildren());
|
||
|
}
|
||
|
});
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
export default MDExporter;
|