Last active
February 10, 2020 13:58
-
-
Save msjavan/c872f10687278f99b62c85723d7a9e2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Widget} from '../osjs-widgets'; | |
//import {Widget} from '@osjs/widgets'; | |
import {h, app} from 'hyperapp'; | |
import {TextField} from '@osjs/gui'; | |
import flag from './chart1.jpeg'; | |
//import flag from './chart2.png'; | |
//import flag from './chart3.jpeg'; | |
const img = new Image(); | |
img.src = flag; | |
export default class MyWidget extends Widget { | |
constructor(core, options) { | |
super(core, options, { | |
// This widget uses a canvas | |
canvas: true, | |
fps: 1, | |
// Our default dimension | |
dimension: { | |
width: 300, | |
height: 160 | |
} | |
}, { | |
// Custom options that can be saved | |
myText: 'Hello World' | |
}); | |
// Other attributes are registered on your class: | |
this.color = '#ffffff'; | |
} | |
// When widget is destructed | |
onDestroy() {} | |
// When widget was resized | |
onResize() {} | |
// When widget was moved | |
onMove() {} | |
// Every rendering tick (or just once if no canvas) | |
render({canvas, context, width, height}) { | |
const text = this.options.myText; | |
/* | |
context.font = 'monospace'; | |
context.fillStyle = this.color; | |
context.textAlign = 'center'; | |
context.textBaseline = 'middle'; | |
context.clearRect(0, 0, width, height); | |
context.fillText(text, width/2 , height/2 ); | |
*/ | |
context.drawImage(img, 0, 0) ; | |
console.log("test"); | |
// The DOM elements is: | |
// this.$element.appendchild(en); | |
} | |
// A custom set of menu entries | |
getContextMenu() { | |
return [{ | |
label: 'My Menu Item', | |
onclick: () => console.log('Hello!') | |
}]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment