discourse/app/assets/javascripts/wizard/addon/components/image-preview-favicon.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
793 B
JavaScript
Raw Normal View History

import { observes } from "discourse-common/utils/decorators";
import WizardPreviewBaseComponent from "./wizard-preview-base";
2016-09-16 17:02:45 -04:00
export default WizardPreviewBaseComponent.extend({
width: 371,
height: 124,
2016-09-16 17:02:45 -04:00
tab: null,
image: null,
@observes("field.value")
imageChanged() {
this.reload();
},
images() {
return { tab: "/images/wizard/tab.png", image: this.get("field.value") };
2016-09-16 17:02:45 -04:00
},
paint(options) {
const { ctx, width, height } = options;
this.scaleImage(this.tab, 0, 0, width, height);
this.scaleImage(this.image, 40, 25, 30, 30);
2016-09-16 17:02:45 -04:00
ctx.font = `20px 'Arial'`;
ctx.fillStyle = "#000";
let title = this.wizard.getTitle();
2016-09-16 17:02:45 -04:00
if (title.length > 20) {
title = title.substring(0, 20) + "...";
}
ctx.fillText(title, 80, 48);
},
});