Compare commits
47 Commits
Author | SHA1 | Date | |
---|---|---|---|
bb6818324d | |||
3dee5f9b68 | |||
ef92d1bde3 | |||
e394c999b2 | |||
68bcc10ee6 | |||
d2cd5ce6f3 | |||
29fb3a2f9b | |||
ef1e373fb3 | |||
d607968dfb | |||
45b2183c88 | |||
68f11d7e76 | |||
cc6f14551f | |||
12f6bb3317 | |||
b63fac3f75 | |||
61d7de2323 | |||
d6c7f5da97 | |||
36c7f8ae38 | |||
2cae90816d | |||
9e527d7fdb | |||
9e6887bc11 | |||
17a2504760 | |||
5622ea41e9 | |||
a0f6777930 | |||
265e5c2264 | |||
f15e4e2948 | |||
5b2218126c | |||
ae39ad12a1 | |||
dc71f41df3 | |||
41c93a0b27 | |||
192cd76012 | |||
b25be8c85e | |||
188690a845 | |||
85aa910046 | |||
7b8e9ecdf3 | |||
df79f7a27c | |||
a7527ab73c | |||
ffba30da5a | |||
c6204f5324 | |||
6411028376 | |||
c915c3a713 | |||
5009068b56 | |||
62136c8d20 | |||
06b7f7fd12 | |||
07be13cf39 | |||
20e539edf0 | |||
a06752b09f | |||
d697fa2437 |
23627
package-lock.json
generated
23627
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
25
package.json
25
package.json
@ -1,30 +1,31 @@
|
|||||||
{
|
{
|
||||||
"name": "@designestate/dees-element",
|
"name": "@designestate/dees-element",
|
||||||
"version": "1.0.13",
|
"version": "2.0.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a custom element class extending lit element class",
|
"description": "a custom element class extending lit element class",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
"typings": "dist_ts/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
|
"type": "module",
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/ --web)",
|
"test": "(tstest test/ --web)",
|
||||||
"build": "(tsbuild --web)"
|
"build": "(tsbuild --web --allowimplicitany --skiplibcheck && tsbundle npm)"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.25",
|
"@gitzone/tsbuild": "^2.1.56",
|
||||||
"@gitzone/tsbundle": "^1.0.80",
|
"@gitzone/tsbundle": "^1.0.98",
|
||||||
"@gitzone/tstest": "^1.0.44",
|
"@gitzone/tstest": "^1.0.68",
|
||||||
"@pushrocks/tapbundle": "^3.2.14",
|
"@pushrocks/tapbundle": "^5.0.2",
|
||||||
"@types/node": "^14.14.37",
|
"@types/node": "^17.0.21",
|
||||||
"tslint": "^6.1.3",
|
"tslint": "^6.1.3",
|
||||||
"tslint-config-prettier": "^1.15.0"
|
"tslint-config-prettier": "^1.18.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@designestate/dees-domtools": "^1.0.86",
|
"@designestate/dees-domtools": "^2.0.0",
|
||||||
"@pushrocks/isounique": "^1.0.4",
|
"@pushrocks/isounique": "^1.0.5",
|
||||||
"@pushrocks/smartrx": "^2.0.19",
|
"@pushrocks/smartrx": "^2.0.25",
|
||||||
"lit-element": "^2.4.0"
|
"lit": "^2.2.1"
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"last 1 chrome versions"
|
"last 1 chrome versions"
|
||||||
|
@ -6,9 +6,10 @@ tap.test('should create a static element', async () => {
|
|||||||
class MyButton extends deesElement.DeesElement {
|
class MyButton extends deesElement.DeesElement {
|
||||||
// STATIC
|
// STATIC
|
||||||
public static styles = [
|
public static styles = [
|
||||||
|
deesElement.cssManager.defaultStyles,
|
||||||
deesElement.css`
|
deesElement.css`
|
||||||
.buttonClass {
|
.buttonClass {
|
||||||
background: ${deesElement.cssManager.dbTheme('blue', 'black')};
|
background: ${deesElement.cssManager.bdTheme('blue', 'black')};
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
];
|
];
|
||||||
|
@ -1,32 +1,71 @@
|
|||||||
import { CSSResult } from 'lit-element';
|
import { CSSResult, unsafeCSS } from 'lit';
|
||||||
import * as plugins from './dees-element.plugins';
|
import * as plugins from './dees-element.plugins.js';
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@designestate/dees-domtools';
|
||||||
|
|
||||||
export interface IDbVarTriplet {
|
export interface IBdVarTriplet {
|
||||||
cssVarName: string;
|
cssVarName: string;
|
||||||
darkValue: string;
|
darkValue: string;
|
||||||
brightValue: string;
|
brightValue: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class CssManager {
|
export class CssManager {
|
||||||
public dbVarTripletStore: IDbVarTriplet[] = [];
|
public domtoolsPromise = domtools.DomTools.setupDomTools();
|
||||||
|
public goBright: boolean = false;
|
||||||
|
public bdVarTripletStore: IBdVarTriplet[] = [];
|
||||||
|
|
||||||
public dbTheme(darkValueArg: string, brightValueArg: string): CSSResult {
|
constructor() {
|
||||||
const existingTriplet = this.dbVarTripletStore.find(tripletArg => tripletArg.darkValue === darkValueArg && tripletArg.brightValue === brightValueArg);
|
this.domtoolsPromise.then(async (domtoolsArg) => {
|
||||||
|
domtoolsArg.themeManager.themeObservable.subscribe(async (goBrightArg) => {
|
||||||
|
this.goBright = goBrightArg;
|
||||||
|
await domtoolsArg.domReady.promise;
|
||||||
|
for (const bdTripletArg of this.bdVarTripletStore) {
|
||||||
|
document.body.style.setProperty(
|
||||||
|
bdTripletArg.cssVarName,
|
||||||
|
this.goBright ? bdTripletArg.brightValue : bdTripletArg.darkValue
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public get defaultStyles () {
|
||||||
|
return domtools.elementBasic.staticStyles;
|
||||||
|
}
|
||||||
|
|
||||||
|
public cssForTablet(contentArg: CSSResult) {
|
||||||
|
return unsafeCSS(domtools.breakpoints.cssForTablet(contentArg));
|
||||||
|
};
|
||||||
|
|
||||||
|
public cssForPhablet(contentArg: CSSResult) {
|
||||||
|
return unsafeCSS(domtools.breakpoints.cssForPhablet(contentArg));
|
||||||
|
}
|
||||||
|
|
||||||
|
public cssForPhone(contentArg: CSSResult) {
|
||||||
|
return unsafeCSS(domtools.breakpoints.cssForPhone(contentArg));
|
||||||
|
};
|
||||||
|
|
||||||
|
public bdTheme(brightValueArg: string, darkValueArg: string): CSSResult {
|
||||||
|
let returnCssVar: string;
|
||||||
|
const existingTriplet = this.bdVarTripletStore.find(
|
||||||
|
(tripletArg) =>
|
||||||
|
tripletArg.darkValue === darkValueArg && tripletArg.brightValue === brightValueArg
|
||||||
|
);
|
||||||
if (existingTriplet) {
|
if (existingTriplet) {
|
||||||
return plugins.litElement.unsafeCSS(existingTriplet.cssVarName)
|
returnCssVar = existingTriplet.cssVarName;
|
||||||
} else {
|
} else {
|
||||||
const newTriplet: IDbVarTriplet = {
|
const newTriplet: IBdVarTriplet = {
|
||||||
cssVarName: `--${plugins.isounique.uni()}`,
|
cssVarName: `--${plugins.isounique.uni()}`,
|
||||||
brightValue: brightValueArg,
|
brightValue: brightValueArg,
|
||||||
darkValue: darkValueArg
|
darkValue: darkValueArg,
|
||||||
}
|
};
|
||||||
this.dbVarTripletStore.push(newTriplet)
|
this.bdVarTripletStore.push(newTriplet);
|
||||||
document.onreadystatechange = () => {
|
this.domtoolsPromise.then(async (domtoolsArg) => {
|
||||||
document.body?.style?.setProperty(newTriplet.cssVarName, newTriplet.darkValue);
|
await domtoolsArg.domReady.promise;
|
||||||
}
|
document.body.style.setProperty(newTriplet.cssVarName, this.goBright ? newTriplet.brightValue : newTriplet.darkValue);
|
||||||
return plugins.litElement.unsafeCSS(newTriplet.cssVarName);
|
});
|
||||||
|
returnCssVar = newTriplet.cssVarName;
|
||||||
}
|
}
|
||||||
|
return plugins.lit.unsafeCSS(`var(${returnCssVar})`);
|
||||||
}
|
}
|
||||||
|
|
||||||
public cssGridColumns = (amountOfColumnsArg: number, gapSizeArg: number): CSSResult => {
|
public cssGridColumns = (amountOfColumnsArg: number, gapSizeArg: number): CSSResult => {
|
||||||
@ -36,6 +75,6 @@ export class CssManager {
|
|||||||
gapSizeArg * (amountOfColumnsArg - 1)
|
gapSizeArg * (amountOfColumnsArg - 1)
|
||||||
}px/${amountOfColumnsArg}))`;
|
}px/${amountOfColumnsArg}))`;
|
||||||
}
|
}
|
||||||
return plugins.litElement.unsafeCSS(returnString);
|
return plugins.lit.unsafeCSS(returnString);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,18 +1,21 @@
|
|||||||
import * as plugins from './dees-element.plugins';
|
import * as plugins from './dees-element.plugins.js';
|
||||||
|
|
||||||
export class DeesElement extends plugins.litElement.LitElement {
|
export class DeesElement extends plugins.lit.LitElement {
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
@plugins.litElement.property({ type: Boolean })
|
@plugins.lit.property({ type: Boolean })
|
||||||
public goBright: boolean = false;
|
public goBright: boolean = false;
|
||||||
|
|
||||||
// domtools
|
// domtools
|
||||||
public domtoolsPromise = plugins.domtools.elementBasic.setup(this);
|
public domtoolsPromise = plugins.domtools.elementBasic.setup(this);
|
||||||
|
|
||||||
@plugins.litElement.property()
|
@plugins.lit.property()
|
||||||
domtools?: plugins.domtools.DomTools;
|
domtools?: plugins.domtools.DomTools;
|
||||||
|
|
||||||
private themeSubscription: plugins.smartrx.rxjs.Subscription;
|
private themeSubscription: plugins.smartrx.rxjs.Subscription;
|
||||||
|
|
||||||
|
private elementDomReadyDeferred = plugins.domtools.plugins.smartpromise.defer();
|
||||||
|
public elementDomReady = this.elementDomReadyDeferred.promise;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
this.domtoolsPromise.then((domtoolsArg) => {
|
this.domtoolsPromise.then((domtoolsArg) => {
|
||||||
@ -20,17 +23,22 @@ export class DeesElement extends plugins.litElement.LitElement {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public connectedCallback() {
|
public async connectedCallback() {
|
||||||
super.connectedCallback();
|
super.connectedCallback();
|
||||||
this.domtoolsPromise.then(async (domtools) => {
|
const domtools = await this.domtoolsPromise;
|
||||||
this.themeSubscription = domtools.themeManager.themeObservable.subscribe((goBrightArg) => {
|
this.themeSubscription = domtools.themeManager.themeObservable.subscribe((goBrightArg) => {
|
||||||
this.goBright = goBrightArg;
|
this.goBright = goBrightArg;
|
||||||
});
|
});
|
||||||
});
|
|
||||||
this.dispatchEvent(new CustomEvent('deesElementConnected'));
|
this.dispatchEvent(new CustomEvent('deesElementConnected'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public disconnectedCallback() {
|
public firstUpdated(_changedProperties: Map<string | number | symbol, unknown>): void {
|
||||||
|
super.firstUpdated(_changedProperties);
|
||||||
|
this.elementDomReadyDeferred.resolve();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async disconnectedCallback() {
|
||||||
|
await this.domtoolsPromise;
|
||||||
super.disconnectedCallback();
|
super.disconnectedCallback();
|
||||||
this.themeSubscription.unsubscribe();
|
this.themeSubscription.unsubscribe();
|
||||||
this.dispatchEvent(new CustomEvent('deesElementDisconnected'));
|
this.dispatchEvent(new CustomEvent('deesElementDisconnected'));
|
||||||
|
@ -8,17 +8,18 @@ export {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// third party scope
|
// third party scope
|
||||||
import { css, unsafeCSS, LitElement, property } from 'lit-element';
|
import { css, unsafeCSS, LitElement } from 'lit';
|
||||||
const litElement = {
|
import { property } from 'lit/decorators/property.js';
|
||||||
|
const lit = {
|
||||||
css,
|
css,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
LitElement,
|
LitElement,
|
||||||
property
|
property,
|
||||||
};
|
};
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@designestate/dees-domtools';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
litElement,
|
lit,
|
||||||
domtools
|
domtools
|
||||||
};
|
};
|
30
ts/index.ts
30
ts/index.ts
@ -1,16 +1,22 @@
|
|||||||
import { CssManager } from './dees-element.classes.cssmanager';
|
import { CssManager } from './dees-element.classes.cssmanager.js';
|
||||||
import * as plugins from './dees-element.plugins';
|
|
||||||
|
|
||||||
export {
|
// lit exports
|
||||||
customElement,
|
export { html, TemplateResult, css, unsafeCSS, render } from 'lit';
|
||||||
property,
|
|
||||||
internalProperty,
|
|
||||||
html,
|
|
||||||
TemplateResult,
|
|
||||||
css,
|
|
||||||
unsafeCSS
|
|
||||||
} from 'lit-element';
|
|
||||||
|
|
||||||
export { DeesElement } from './dees-element.classes.dees-element';
|
export { customElement } from 'lit/decorators/custom-element.js';
|
||||||
|
|
||||||
|
export { property } from 'lit/decorators/property.js';
|
||||||
|
|
||||||
|
export { state } from 'lit/decorators/state.js';
|
||||||
|
|
||||||
|
// domtools exports
|
||||||
|
import * as domtools from '@designestate/dees-domtools';
|
||||||
|
export { domtools };
|
||||||
|
|
||||||
|
// DeesElements exports
|
||||||
|
export { DeesElement } from './dees-element.classes.dees-element.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* a singleton instance of CssManager
|
||||||
|
*/
|
||||||
export const cssManager = new CssManager();
|
export const cssManager = new CssManager();
|
||||||
|
@ -1,16 +1,8 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es2017",
|
"target": "es2020",
|
||||||
"module": "es2015",
|
"module": "es2020",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node12",
|
||||||
"lib": ["es2017", "dom"],
|
|
||||||
"declaration": true,
|
|
||||||
"inlineSources": true,
|
|
||||||
"inlineSourceMap": true,
|
|
||||||
"noUnusedLocals": true,
|
|
||||||
"noFallthroughCasesInSwitch": true,
|
|
||||||
"outDir": "dist/",
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"experimentalDecorators": true
|
"experimentalDecorators": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user