You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-24 23:26:50 +02:00
All: Use Lerna to manage monorepo
This commit is contained in:
43
packages/lib/services/plugins/ViewController.ts
Normal file
43
packages/lib/services/plugins/ViewController.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { ViewHandle } from './utils/createViewHandle';
|
||||
|
||||
export default class ViewController {
|
||||
|
||||
private handle_:ViewHandle;
|
||||
private pluginId_:string;
|
||||
private store_:any;
|
||||
|
||||
constructor(handle:ViewHandle, pluginId:string, store:any) {
|
||||
this.handle_ = handle;
|
||||
this.pluginId_ = pluginId;
|
||||
this.store_ = store;
|
||||
}
|
||||
|
||||
protected get storeView():any {
|
||||
return this.store_.pluginService.plugins[this.pluginId_].views[this.handle];
|
||||
}
|
||||
|
||||
protected get store():any {
|
||||
return this.store_;
|
||||
}
|
||||
|
||||
public get pluginId():string {
|
||||
return this.pluginId_;
|
||||
}
|
||||
|
||||
public get key():string {
|
||||
return this.handle_;
|
||||
}
|
||||
|
||||
public get handle():ViewHandle {
|
||||
return this.handle_;
|
||||
}
|
||||
|
||||
public get type():string {
|
||||
throw new Error('Must be overriden');
|
||||
}
|
||||
|
||||
public emitMessage(event:any) {
|
||||
console.info('Calling ViewController.emitMessage - but not implemented', event);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user