pdf-to-markdown/oldSrc/javascript/models/AppState.jsx

82 lines
2.6 KiB
React
Raw Normal View History

2017-01-06 20:49:37 +01:00
import { Enum } from 'enumify';
import CalculateGlobalStats from './transformations/textitem/CalculateGlobalStats.jsx';
import CompactLines from './transformations/lineitem/CompactLines.jsx';
import RemoveRepetitiveElements from './transformations/lineitem/RemoveRepetitiveElements.jsx'
import VerticalToHorizontal from './transformations/lineitem/VerticalToHorizontal.jsx';
import DetectTOC from './transformations/lineitem/DetectTOC.jsx'
import DetectListItems from './transformations/lineitem/DetectListItems.jsx'
import DetectHeaders from './transformations/lineitem/DetectHeaders.jsx'
import GatherBlocks from './transformations/textitemblock/GatherBlocks.jsx'
import DetectCodeQuoteBlocks from './transformations/textitemblock/DetectCodeQuoteBlocks.jsx'
import DetectListLevels from './transformations/textitemblock/DetectListLevels.jsx'
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-22 07:19:21 +01:00
this.metadata;
this.pages = [];
this.transformations ;
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:Uint8Array) {
2017-01-09 20:08:32 +01:00
this.fileBuffer = fileBuffer;
2017-01-06 20:49:37 +01:00
this.mainView = View.LOADING;
this.render()
}
2017-03-22 07:19:21 +01:00
storePdfPages(metadata, fontMap, pages) {
this.metadata = metadata;
this.pages = pages;
2017-01-09 20:08:32 +01:00
this.fileBuffer = null;
2017-02-06 19:13:43 +01:00
this.mainView = View.RESULT;
this.transformations = [
new CalculateGlobalStats(fontMap),
new CompactLines(),
new RemoveRepetitiveElements(),
new VerticalToHorizontal(),
new DetectTOC(),
new DetectHeaders(),
new DetectListItems(),
new GatherBlocks(),
new DetectCodeQuoteBlocks(),
new DetectListLevels(),
new ToTextBlocks(),
new ToMarkdown()];
2017-02-06 19:13:43 +01:00
this.render();
2017-02-06 19:13:43 +01:00
}
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'])