mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 17:31:09 +08:00
rework event dispatching and fix back side css
This commit is contained in:
parent
2707325531
commit
6f9531123d
@ -26,12 +26,6 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"properties": [
|
"properties": [
|
||||||
{
|
|
||||||
"name": "side",
|
|
||||||
"description": "A card setter can have side A or B",
|
|
||||||
"jsDoc": "/**\n * A card setter can have side A or B\n *\n * @param {(\"A\"|\"B\")} value\n */",
|
|
||||||
"type": "\"A\" | \"B\""
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "backSide",
|
"name": "backSide",
|
||||||
"description": "Indicates that the back of the card is shown",
|
"description": "Indicates that the back of the card is shown",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* eslint-disable no-underscore-dangle, import/extensions */
|
/* eslint-disable import/extensions */
|
||||||
import { Event } from 'global';
|
import { CustomEvent } from 'global';
|
||||||
import { LitElement, html } from 'lit-element';
|
import { LitElement, html } from 'lit-element';
|
||||||
import { demoWcCardStyle } from './demoWcCardStyle.css.js';
|
import { demoWcCardStyle } from './demoWcCardStyle.css.js';
|
||||||
|
|
||||||
@ -15,36 +15,23 @@ import { demoWcCardStyle } from './demoWcCardStyle.css.js';
|
|||||||
export class DemoWcCard extends LitElement {
|
export class DemoWcCard extends LitElement {
|
||||||
static get properties() {
|
static get properties() {
|
||||||
return {
|
return {
|
||||||
backSide: { type: Boolean, reflect: true, attribute: 'back-side' },
|
backSide: {
|
||||||
|
type: Boolean,
|
||||||
|
reflect: true,
|
||||||
|
attribute: 'back-side',
|
||||||
|
},
|
||||||
header: { type: String },
|
header: { type: String },
|
||||||
rows: { type: Object },
|
rows: { type: Object },
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* A card setter can have side A or B
|
|
||||||
*
|
|
||||||
* @param {("A"|"B")} value
|
|
||||||
*/
|
|
||||||
set side(value) {
|
|
||||||
this.__side = value;
|
|
||||||
this.dispatchEvent(new Event('side-changed'));
|
|
||||||
this.requestUpdate();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @returns {("A"|"B")}
|
|
||||||
*/
|
|
||||||
get side() {
|
|
||||||
return this.__side;
|
|
||||||
}
|
|
||||||
|
|
||||||
static get styles() {
|
static get styles() {
|
||||||
return demoWcCardStyle;
|
return demoWcCardStyle;
|
||||||
}
|
}
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicates that the back of the card is shown
|
* Indicates that the back of the card is shown
|
||||||
*/
|
*/
|
||||||
@ -105,4 +92,10 @@ export class DemoWcCard extends LitElement {
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updated(changedProperties) {
|
||||||
|
if (changedProperties.has('backSide') && changedProperties.get('backSide') !== undefined) {
|
||||||
|
this.dispatchEvent(new CustomEvent('side-changed'));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -88,7 +88,7 @@ export const demoWcCardStyle = css`
|
|||||||
background: linear-gradient(141deg, #333 25%, #aaa 40%, #666 55%);
|
background: linear-gradient(141deg, #333 25%, #aaa 40%, #666 55%);
|
||||||
color: var(--demo-wc-card-back-color, #fff);
|
color: var(--demo-wc-card-back-color, #fff);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
transform: rotateY(180deg);
|
transform: rotateY(180deg) translate3d(0px, 0, 1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
#back .note {
|
#back .note {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user