DEV: enforces style-concatenation linting rule (#8888)
This commit is contained in:
parent
f5f4ce90c1
commit
99ad2e408a
|
@ -3,6 +3,7 @@ module.exports = {
|
|||
ignore: ["**/*.raw"],
|
||||
|
||||
rules: {
|
||||
"self-closing-void-elements": true
|
||||
"self-closing-void-elements": true,
|
||||
"style-concatenation": true
|
||||
}
|
||||
};
|
||||
|
|
|
@ -2,6 +2,9 @@ import ComboBoxComponent from "select-kit/components/combo-box";
|
|||
|
||||
export default ComboBoxComponent.extend({
|
||||
pluginApiIdentifiers: ["color-palettes"],
|
||||
classNames: "color-palettes",
|
||||
rowComponent: "color-palettes/color-palettes-row"
|
||||
classNames: ["color-palettes"],
|
||||
|
||||
modifyComponentForRow() {
|
||||
return "color-palettes/color-palettes-row";
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,14 +1,20 @@
|
|||
import { escapeExpression } from "discourse/lib/utilities";
|
||||
import SelectKitRowComponent from "select-kit/components/select-kit/select-kit-row";
|
||||
import discourseComputed from "discourse-common/utils/decorators";
|
||||
import { computed } from "@ember/object";
|
||||
|
||||
export default SelectKitRowComponent.extend({
|
||||
classNames: ["color-palettes-row"],
|
||||
|
||||
layoutName:
|
||||
"select-kit/templates/components/color-palettes/color-palettes-row",
|
||||
classNames: "color-palettes-row",
|
||||
|
||||
@discourseComputed("computedContent.originalContent.colors")
|
||||
colors(colors) {
|
||||
return (colors || []).map(color => `#${escapeExpression(color.hex)}`);
|
||||
}
|
||||
palettes: computed("item.colors.[]", function() {
|
||||
return (this.item.colors || [])
|
||||
.map(color => `#${escapeExpression(color.hex)}`)
|
||||
.map(
|
||||
hex => `<span class="palette" style="background-color:${hex}"></span>`
|
||||
)
|
||||
.join("")
|
||||
.htmlSafe();
|
||||
})
|
||||
});
|
||||
|
|
|
@ -2,10 +2,8 @@
|
|||
{{label}}
|
||||
</span>
|
||||
|
||||
{{#if colors}}
|
||||
{{#if item.colors}}
|
||||
<div class="palettes">
|
||||
{{#each colors as |color|}}
|
||||
<span class="palette" style="background-color:{{color}};"></span>
|
||||
{{/each}}
|
||||
{{palettes}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
|
|
@ -6,6 +6,7 @@ import {
|
|||
chooseDarker,
|
||||
LOREM
|
||||
} from "wizard/lib/preview";
|
||||
import { computed } from "@ember/object";
|
||||
|
||||
export default createPreviewComponent(305, 165, {
|
||||
logo: null,
|
||||
|
@ -13,6 +14,10 @@ export default createPreviewComponent(305, 165, {
|
|||
|
||||
classNameBindings: ["isSelected"],
|
||||
|
||||
canvasStyle: computed("width", "height", function() {
|
||||
return `width:${this.width}px;height:${this.height}px`.htmlSafe();
|
||||
}),
|
||||
|
||||
@discourseComputed("selectedId", "colorsId")
|
||||
isSelected(selectedId, colorsId) {
|
||||
return selectedId === colorsId;
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<div class='preview-area'>
|
||||
<canvas width={{elementWidth}} height={{elementHeight}} style={{concat "width:" width "; height:" height ";"}}>
|
||||
<div class="preview-area">
|
||||
<canvas
|
||||
width={{elementWidth}}
|
||||
height={{elementHeight}}
|
||||
style={{canvasStyle}}
|
||||
>
|
||||
</canvas>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue