Compare commits
33 Commits
Author | SHA1 | Date | |
---|---|---|---|
61de38cb4d | |||
a3ab19e5db | |||
a7e1a02b52 | |||
9f974a97f5 | |||
d80f94db29 | |||
a32b6b425b | |||
9ca286697c | |||
07dcfbe531 | |||
ac919e2cce | |||
30e1822b5b | |||
b6c67a55e5 | |||
f20977e936 | |||
8ad5906e06 | |||
4008de283c | |||
1177ec6158 | |||
b8ced9a991 | |||
9b30853a56 | |||
acc1d7eea7 | |||
bb6818324d | |||
3dee5f9b68 | |||
ef92d1bde3 | |||
e394c999b2 | |||
68bcc10ee6 | |||
d2cd5ce6f3 | |||
29fb3a2f9b | |||
ef1e373fb3 | |||
d607968dfb | |||
45b2183c88 | |||
68f11d7e76 | |||
cc6f14551f | |||
12f6bb3317 | |||
b63fac3f75 | |||
61d7de2323 |
@ -12,6 +12,9 @@ stages:
|
|||||||
- release
|
- release
|
||||||
- metadata
|
- metadata
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- npm install -g @shipzone/npmci
|
||||||
|
|
||||||
# ====================
|
# ====================
|
||||||
# security stage
|
# security stage
|
||||||
# ====================
|
# ====================
|
||||||
@ -36,6 +39,7 @@ auditProductionDependencies:
|
|||||||
- npmci command npm audit --audit-level=high --only=prod --production
|
- npmci command npm audit --audit-level=high --only=prod --production
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
allow_failure: true
|
||||||
|
|
||||||
auditDevDependencies:
|
auditDevDependencies:
|
||||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
24
.vscode/launch.json
vendored
24
.vscode/launch.json
vendored
@ -2,28 +2,10 @@
|
|||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "current file",
|
"command": "npm test",
|
||||||
"type": "node",
|
"name": "Run npm test",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"args": [
|
"type": "node-terminal"
|
||||||
"${relativeFile}"
|
|
||||||
],
|
|
||||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
|
||||||
"cwd": "${workspaceRoot}",
|
|
||||||
"protocol": "inspector",
|
|
||||||
"internalConsoleOptions": "openOnSessionStart"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "test.ts",
|
|
||||||
"type": "node",
|
|
||||||
"request": "launch",
|
|
||||||
"args": [
|
|
||||||
"test/test.ts"
|
|
||||||
],
|
|
||||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
|
||||||
"cwd": "${workspaceRoot}",
|
|
||||||
"protocol": "inspector",
|
|
||||||
"internalConsoleOptions": "openOnSessionStart"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -22,5 +22,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"typescript.tsdk": "node_modules/typescript/lib"
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
"githost": "gitlab.com",
|
"githost": "gitlab.com",
|
||||||
"gitscope": "designestate",
|
"gitscope": "designestate",
|
||||||
"gitrepo": "dees-element",
|
"gitrepo": "dees-element",
|
||||||
"shortDescription": "a custom element class extending lit element class",
|
"description": "a custom element class extending lit element class",
|
||||||
"npmPackagename": "@designestate/dees-element",
|
"npmPackagename": "@designestate/dees-element",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"projectDomain": "design.estate"
|
"projectDomain": "design.estate"
|
||||||
|
21644
package-lock.json
generated
21644
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
23
package.json
23
package.json
@ -1,30 +1,31 @@
|
|||||||
{
|
{
|
||||||
"name": "@designestate/dees-element",
|
"name": "@designestate/dees-element",
|
||||||
"version": "1.0.29",
|
"version": "2.0.9",
|
||||||
"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.28",
|
"@gitzone/tsbuild": "^2.1.61",
|
||||||
"@gitzone/tsbundle": "^1.0.88",
|
"@gitzone/tsbundle": "^1.0.102",
|
||||||
"@gitzone/tstest": "^1.0.60",
|
"@gitzone/tstest": "^1.0.70",
|
||||||
"@pushrocks/tapbundle": "^3.2.14",
|
"@pushrocks/tapbundle": "^5.0.3",
|
||||||
"@types/node": "^16.11.12",
|
"@types/node": "^17.0.25",
|
||||||
"tslint": "^6.1.3",
|
"tslint": "^6.1.3",
|
||||||
"tslint-config-prettier": "^1.18.0"
|
"tslint-config-prettier": "^1.18.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@designestate/dees-domtools": "^1.0.102",
|
"@designestate/dees-domtools": "^2.0.6",
|
||||||
"@pushrocks/isounique": "^1.0.4",
|
"@pushrocks/isounique": "^1.0.5",
|
||||||
"@pushrocks/smartrx": "^2.0.19",
|
"@pushrocks/smartrx": "^2.0.25",
|
||||||
"lit": "^2.0.2"
|
"lit": "^2.2.2"
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"last 1 chrome versions"
|
"last 1 chrome versions"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { expect, tap } from '@pushrocks/tapbundle';
|
import { expect, tap } from '@pushrocks/tapbundle';
|
||||||
import * as deesElement from '../ts/index';
|
import * as deesElement from '../ts/index.js';
|
||||||
|
|
||||||
tap.test('should create a static element', async () => {
|
tap.test('should create a static element', async () => {
|
||||||
@deesElement.customElement('my-button')
|
@deesElement.customElement('my-button')
|
||||||
@ -11,12 +11,12 @@ tap.test('should create a static element', async () => {
|
|||||||
.buttonClass {
|
.buttonClass {
|
||||||
background: ${deesElement.cssManager.bdTheme('blue', 'black')};
|
background: ${deesElement.cssManager.bdTheme('blue', 'black')};
|
||||||
}
|
}
|
||||||
`
|
`,
|
||||||
];
|
];
|
||||||
|
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
render() {
|
render() {
|
||||||
return deesElement.html`<div class="buttonClass">My Button</div>`
|
return deesElement.html`<div class="buttonClass">My Button</div>`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { CSSResult, unsafeCSS } 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 IBdVarTriplet {
|
export interface IBdVarTriplet {
|
||||||
@ -28,24 +28,34 @@ export class CssManager {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public get defaultStyles () {
|
public get defaultStyles() {
|
||||||
return domtools.elementBasic.staticStyles;
|
return domtools.elementBasic.staticStyles;
|
||||||
}
|
}
|
||||||
|
|
||||||
public cssForTablet(contentArg) {
|
public cssForTablet(contentArg: CSSResult) {
|
||||||
return unsafeCSS(domtools.breakpoints.cssForTablet(contentArg));
|
return unsafeCSS(domtools.breakpoints.cssForTablet(contentArg));
|
||||||
};
|
}
|
||||||
|
|
||||||
public cssForPhablet(contentArg) {
|
public cssForPhablet(contentArg: CSSResult) {
|
||||||
return unsafeCSS(domtools.breakpoints.cssForPhablet(contentArg));
|
return unsafeCSS(domtools.breakpoints.cssForPhablet(contentArg));
|
||||||
}
|
}
|
||||||
|
|
||||||
public cssForPhone(contentArg) {
|
public cssForPhone(contentArg: CSSResult) {
|
||||||
return unsafeCSS(domtools.breakpoints.cssForPhone(contentArg));
|
return unsafeCSS(domtools.breakpoints.cssForPhone(contentArg));
|
||||||
};
|
}
|
||||||
|
|
||||||
public bdTheme(brightValueArg: string, darkValueArg: string): CSSResult {
|
public bdTheme(brightValueArg: string, darkValueArg: string): CSSResult {
|
||||||
let returnCssVar: string;
|
let returnCssVar: string;
|
||||||
|
|
||||||
|
// lets determine the default value for quick page rendering.
|
||||||
|
let defaultValue: string;
|
||||||
|
if (domtools.DomTools.getGlobalDomToolsSync()) {
|
||||||
|
defaultValue = domtools.DomTools.getGlobalDomToolsSync().themeManager.goBrightBoolean ? brightValueArg : darkValueArg;
|
||||||
|
} else {
|
||||||
|
defaultValue = darkValueArg
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
const existingTriplet = this.bdVarTripletStore.find(
|
const existingTriplet = this.bdVarTripletStore.find(
|
||||||
(tripletArg) =>
|
(tripletArg) =>
|
||||||
tripletArg.darkValue === darkValueArg && tripletArg.brightValue === brightValueArg
|
tripletArg.darkValue === darkValueArg && tripletArg.brightValue === brightValueArg
|
||||||
@ -59,13 +69,17 @@ export class CssManager {
|
|||||||
darkValue: darkValueArg,
|
darkValue: darkValueArg,
|
||||||
};
|
};
|
||||||
this.bdVarTripletStore.push(newTriplet);
|
this.bdVarTripletStore.push(newTriplet);
|
||||||
|
|
||||||
this.domtoolsPromise.then(async (domtoolsArg) => {
|
this.domtoolsPromise.then(async (domtoolsArg) => {
|
||||||
await domtoolsArg.domReady.promise;
|
await domtoolsArg.domReady.promise;
|
||||||
document.body.style.setProperty(newTriplet.cssVarName, this.goBright ? newTriplet.brightValue : newTriplet.darkValue);
|
document.body.style.setProperty(
|
||||||
|
newTriplet.cssVarName,
|
||||||
|
defaultValue
|
||||||
|
);
|
||||||
});
|
});
|
||||||
returnCssVar = newTriplet.cssVarName;
|
returnCssVar = newTriplet.cssVarName;
|
||||||
}
|
}
|
||||||
return plugins.lit.unsafeCSS(`var(${returnCssVar})`);
|
return plugins.lit.unsafeCSS(`var(${returnCssVar}, ${defaultValue})`);
|
||||||
}
|
}
|
||||||
|
|
||||||
public cssGridColumns = (amountOfColumnsArg: number, gapSizeArg: number): CSSResult => {
|
public cssGridColumns = (amountOfColumnsArg: number, gapSizeArg: number): CSSResult => {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import * as plugins from './dees-element.plugins';
|
import * as plugins from './dees-element.plugins.js';
|
||||||
|
|
||||||
export class DeesElement extends plugins.lit.LitElement {
|
export class DeesElement extends plugins.lit.LitElement {
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
@ -13,6 +13,9 @@ export class DeesElement extends plugins.lit.LitElement {
|
|||||||
|
|
||||||
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.lit.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'));
|
||||||
|
@ -2,24 +2,18 @@
|
|||||||
import * as isounique from '@pushrocks/isounique';
|
import * as isounique from '@pushrocks/isounique';
|
||||||
import * as smartrx from '@pushrocks/smartrx';
|
import * as smartrx from '@pushrocks/smartrx';
|
||||||
|
|
||||||
export {
|
export { isounique, smartrx };
|
||||||
isounique,
|
|
||||||
smartrx
|
|
||||||
};
|
|
||||||
|
|
||||||
// third party scope
|
// third party scope
|
||||||
import { css, unsafeCSS, LitElement } from 'lit';
|
import { css, unsafeCSS, LitElement } from 'lit';
|
||||||
import { property } from 'lit/decorators';
|
import { property } from 'lit/decorators/property.js';
|
||||||
const lit = {
|
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 { lit, domtools };
|
||||||
lit,
|
|
||||||
domtools
|
|
||||||
};
|
|
||||||
|
23
ts/index.ts
23
ts/index.ts
@ -1,27 +1,18 @@
|
|||||||
import { CssManager } from './dees-element.classes.cssmanager';
|
import { CssManager } from './dees-element.classes.cssmanager.js';
|
||||||
|
|
||||||
// lit exports
|
// lit exports
|
||||||
export {
|
export { html, TemplateResult, css, unsafeCSS, render } from 'lit';
|
||||||
html,
|
|
||||||
TemplateResult,
|
|
||||||
css,
|
|
||||||
unsafeCSS,
|
|
||||||
} from 'lit';
|
|
||||||
|
|
||||||
export {
|
export { customElement } from 'lit/decorators/custom-element.js';
|
||||||
customElement,
|
|
||||||
property,
|
export { property, state, query, queryAll, queryAsync } from 'lit/decorators.js';
|
||||||
state
|
|
||||||
} from 'lit/decorators'
|
|
||||||
|
|
||||||
// domtools exports
|
// domtools exports
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@designestate/dees-domtools';
|
||||||
export {
|
export { domtools };
|
||||||
domtools
|
|
||||||
}
|
|
||||||
|
|
||||||
// DeesElements exports
|
// DeesElements exports
|
||||||
export { DeesElement } from './dees-element.classes.dees-element';
|
export { DeesElement } from './dees-element.classes.dees-element.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* a singleton instance of CssManager
|
* a singleton instance of 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