mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:48:53 +08:00
fcb4e5a1a1
Co-authored-by: David Taylor <david@taylorhq.com>
26 lines
562 B
JavaScript
26 lines
562 B
JavaScript
import { createPreviewComponent } from "wizard/lib/preview";
|
|
import { observes } from "discourse-common/utils/decorators";
|
|
|
|
export default createPreviewComponent(325, 125, {
|
|
ios: null,
|
|
image: null,
|
|
|
|
@observes("field.value")
|
|
imageChanged() {
|
|
this.reload();
|
|
},
|
|
|
|
images() {
|
|
return {
|
|
ios: "/images/wizard/apple-mask.png",
|
|
image: this.get("field.value"),
|
|
};
|
|
},
|
|
|
|
paint(options) {
|
|
const { width, height } = options;
|
|
this.scaleImage(this.image, 10, 8, 87, 87);
|
|
this.scaleImage(this.ios, 0, 0, width, height);
|
|
},
|
|
});
|