2017-01-06 20:49:37 +01:00
|
|
|
import { Enum } from 'enumify';
|
|
|
|
|
2017-03-15 06:09:18 +01:00
|
|
|
import CalculateGlobalStats from './transformations/textitem/CalculateGlobalStats.jsx';
|
|
|
|
import CompactLines from './transformations/textitem/CompactLines.jsx';
|
|
|
|
import RemoveRepetitiveElements from './transformations/textitem/RemoveRepetitiveElements.jsx'
|
|
|
|
import VerticalToHorizontal from './transformations/textitem/VerticalToHorizontal.jsx';
|
2017-03-18 08:56:08 +01:00
|
|
|
import PostprocessLines from './transformations/textitem/PostprocessLines.jsx';
|
2017-03-15 06:09:18 +01:00
|
|
|
import DetectTOC from './transformations/textitem/DetectTOC.jsx'
|
|
|
|
import DetectListItems from './transformations/textitem/DetectListItems.jsx'
|
2017-03-15 08:42:46 +01:00
|
|
|
import DetectHeaders from './transformations/textitem/DetectHeaders.jsx'
|
2017-03-10 08:49:40 +01:00
|
|
|
|
2017-03-15 06:09:18 +01:00
|
|
|
import GatherBlocks from './transformations/textitemblock/GatherBlocks.jsx'
|
|
|
|
import DetectCodeQuoteBlocks from './transformations/textitemblock/DetectCodeQuoteBlocks.jsx'
|
|
|
|
import DetectListLevels from './transformations/textitemblock/DetectListLevels.jsx'
|
2017-02-22 23:18:49 +01:00
|
|
|
// import DetectFormats from './transformations/DetectFormats.jsx'
|
|
|
|
// import HeadlineToUppercase from './transformations/HeadlineToUppercase.jsx'
|
2017-02-17 20:17:04 +01:00
|
|
|
import ToTextBlocks from './transformations/ToTextBlocks.jsx';
|
2017-02-06 19:13:43 +01:00
|
|
|
import ToMarkdown from './transformations/ToMarkdown.jsx'
|
2017-01-07 11:38:06 +01:00
|
|
|
|
2017-01-06 20:49:37 +01:00
|
|
|
// Holds the state of the Application
|
|
|
|
export default class AppState {
|
|
|
|
|
|
|
|
constructor(options) {
|
|
|
|
this.renderFunction = options.renderFunction;
|
|
|
|
this.mainView = View.UPLOAD;
|
2017-01-09 20:08:32 +01:00
|
|
|
this.fileBuffer;
|
2017-03-07 21:59:15 +01:00
|
|
|
this.pages = [];
|
2017-03-21 23:12:45 +01:00
|
|
|
this.fontMap;
|
2017-01-27 21:40:49 +01:00
|
|
|
this.transformations = [
|
2017-02-15 07:33:07 +01:00
|
|
|
new CalculateGlobalStats(),
|
2017-03-10 08:49:40 +01:00
|
|
|
new CompactLines(),
|
2017-01-27 21:40:49 +01:00
|
|
|
new RemoveRepetitiveElements(),
|
2017-02-17 20:17:04 +01:00
|
|
|
new VerticalToHorizontal(),
|
2017-03-18 08:56:08 +01:00
|
|
|
new PostprocessLines(),
|
2017-03-10 09:52:29 +01:00
|
|
|
new DetectTOC(),
|
2017-03-11 13:42:09 +01:00
|
|
|
new DetectListItems(),
|
2017-03-15 06:09:18 +01:00
|
|
|
new DetectHeaders(),
|
2017-03-10 08:49:40 +01:00
|
|
|
|
2017-03-10 12:10:58 +01:00
|
|
|
new GatherBlocks(),
|
2017-03-14 10:30:21 +01:00
|
|
|
new DetectCodeQuoteBlocks(),
|
2017-03-11 13:42:09 +01:00
|
|
|
new DetectListLevels(),
|
2017-02-21 08:05:00 +01:00
|
|
|
|
2017-02-17 20:17:04 +01:00
|
|
|
// new DetectFormats(),
|
|
|
|
// new HeadlineToUppercase(),
|
|
|
|
new ToTextBlocks(),
|
2017-02-06 19:13:43 +01:00
|
|
|
new ToMarkdown()];
|
2017-01-06 20:49:37 +01:00
|
|
|
|
|
|
|
//bind functions
|
|
|
|
this.render = this.render.bind(this);
|
2017-01-09 20:08:32 +01:00
|
|
|
this.storeFileBuffer = this.storeFileBuffer.bind(this);
|
|
|
|
this.storePdfPages = this.storePdfPages.bind(this);
|
2017-02-06 19:13:43 +01:00
|
|
|
this.switchMainView = this.switchMainView.bind(this);
|
2017-01-06 20:49:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
this.renderFunction(this)
|
|
|
|
}
|
|
|
|
|
2017-01-09 20:08:32 +01:00
|
|
|
// the uploaded pdf as file buffer
|
|
|
|
storeFileBuffer(fileBuffer:ArrayBuffer) {
|
|
|
|
this.fileBuffer = fileBuffer;
|
2017-01-06 20:49:37 +01:00
|
|
|
this.mainView = View.LOADING;
|
|
|
|
this.render()
|
|
|
|
}
|
|
|
|
|
2017-03-21 23:12:45 +01:00
|
|
|
storePdfPages(pages, fontMap) {
|
2017-03-07 21:59:15 +01:00
|
|
|
this.pages = pages;
|
2017-03-21 23:12:45 +01:00
|
|
|
this.fontMap = fontMap;
|
2017-01-09 20:08:32 +01:00
|
|
|
this.fileBuffer = null;
|
2017-02-06 19:13:43 +01:00
|
|
|
this.mainView = View.RESULT;
|
|
|
|
this.render();
|
|
|
|
}
|
|
|
|
|
|
|
|
switchMainView(view) {
|
|
|
|
this.mainView = view;
|
2017-01-09 20:08:32 +01:00
|
|
|
this.render();
|
2017-01-06 20:49:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export class View extends Enum {
|
|
|
|
}
|
2017-02-06 19:13:43 +01:00
|
|
|
View.initEnum(['UPLOAD', 'LOADING', 'RESULT', 'DEBUG'])
|