2019-11-08 05:38:28 +08:00
|
|
|
import { observes } from "discourse-common/utils/decorators";
|
2016-09-22 04:09:18 +08:00
|
|
|
import { createPreviewComponent } from "wizard/lib/preview";
|
2016-09-20 02:24:37 +08:00
|
|
|
|
|
|
|
export default createPreviewComponent(325, 125, {
|
|
|
|
ios: null,
|
|
|
|
image: null,
|
|
|
|
|
|
|
|
@observes("field.value")
|
|
|
|
imageChanged() {
|
|
|
|
this.reload();
|
|
|
|
},
|
|
|
|
|
2016-09-22 04:09:18 +08:00
|
|
|
images() {
|
|
|
|
return {
|
|
|
|
ios: "/images/wizard/apple-mask.png",
|
|
|
|
image: this.get("field.value")
|
|
|
|
};
|
2016-09-20 02:24:37 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
paint(ctx, colors, width, height) {
|
2016-09-22 04:48:48 +08:00
|
|
|
this.scaleImage(this.image, 10, 8, 87, 87);
|
|
|
|
this.scaleImage(this.ios, 0, 0, width, height);
|
2016-09-20 02:24:37 +08:00
|
|
|
}
|
|
|
|
});
|