Compare commits
76 Commits
Author | SHA1 | Date | |
---|---|---|---|
bbc09330c9 | |||
82ead7bd1a | |||
f8f9b150b8 | |||
494e8b7e26 | |||
c76d364071 | |||
760e0085f7 | |||
6890ca1f1f | |||
9ca000cf06 | |||
1c0f5129a9 | |||
69e17949f4 | |||
bcfd3495dd | |||
03a46a72c5 | |||
2465ce5f9b | |||
00ac83f205 | |||
67065b1ffb | |||
783c10479f | |||
d4eae1cd9e | |||
4e674f67c5 | |||
889a543780 | |||
fc5f3a9576 | |||
66644364b5 | |||
51febdae06 | |||
745ff299dc | |||
3606d60ba6 | |||
8970a79141 | |||
566a7ce148 | |||
362bef15e3 | |||
446c494863 | |||
dbe2f2f217 | |||
02ca92a431 | |||
a9015e787c | |||
9cd28fa819 | |||
7b3793e943 | |||
a22c04d98d | |||
5367512292 | |||
9c387f8ace | |||
c3ec288d09 | |||
9d952afebb | |||
621262fde7 | |||
e3e79d9a11 | |||
d08a92814e | |||
a6f277250e | |||
09cb82d587 | |||
316e2a0b27 | |||
e0d2679801 | |||
107800a057 | |||
4ee8512ee4 | |||
f75a3714ae | |||
d6047f2e78 | |||
03769c8412 | |||
1a782eb4ee | |||
a27adf25cb | |||
96e237b9af | |||
710e06b2f1 | |||
a3bc25c4ac | |||
ee5b712a37 | |||
879ae5ad91 | |||
2bbda416b2 | |||
de88957857 | |||
aa0c63d569 | |||
d843f27fd3 | |||
a26755b7d3 | |||
345a562a21 | |||
3fae99554d | |||
ed30ed3f8f | |||
beef47959b | |||
aec2cf18fd | |||
0f45633666 | |||
8588888ce7 | |||
2a62a635cd | |||
0eb2557956 | |||
9960bf7018 | |||
f26f0d0450 | |||
53fadfcbd5 | |||
497d3a3ac5 | |||
37524765ae |
66
.gitea/workflows/default_nottags.yaml
Normal file
66
.gitea/workflows/default_nottags.yaml
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
name: Default (not tags)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags-ignore:
|
||||||
|
- '**'
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@gitea.lossless.digital/${{gitea.repository}}.git
|
||||||
|
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
||||||
|
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
||||||
|
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||||
|
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
security:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
continue-on-error: true
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install pnpm and npmci
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @shipzone/npmci
|
||||||
|
|
||||||
|
- name: Run npm prepare
|
||||||
|
run: npmci npm prepare
|
||||||
|
|
||||||
|
- name: Audit production dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --prod
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Audit development dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --dev
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
test:
|
||||||
|
if: ${{ always() }}
|
||||||
|
needs: security
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Test stable
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm test
|
||||||
|
|
||||||
|
- name: Test build
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm build
|
124
.gitea/workflows/default_tags.yaml
Normal file
124
.gitea/workflows/default_tags.yaml
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
name: Default (tags)
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||||
|
NPMCI_COMPUTED_REPOURL: https://${{gitea.repository_owner}}:${{secrets.GITEA_TOKEN}}@gitea.lossless.digital/${{gitea.repository}}.git
|
||||||
|
NPMCI_TOKEN_NPM: ${{secrets.NPMCI_TOKEN_NPM}}
|
||||||
|
NPMCI_TOKEN_NPM2: ${{secrets.NPMCI_TOKEN_NPM2}}
|
||||||
|
NPMCI_GIT_GITHUBTOKEN: ${{secrets.NPMCI_GIT_GITHUBTOKEN}}
|
||||||
|
NPMCI_URL_CLOUDLY: ${{secrets.NPMCI_URL_CLOUDLY}}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
security:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
continue-on-error: true
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @shipzone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Audit production dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --prod
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
- name: Audit development dependencies
|
||||||
|
run: |
|
||||||
|
npmci command npm config set registry https://registry.npmjs.org
|
||||||
|
npmci command pnpm audit --audit-level=high --dev
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
test:
|
||||||
|
if: ${{ always() }}
|
||||||
|
needs: security
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @shipzone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Test stable
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm test
|
||||||
|
|
||||||
|
- name: Test build
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
npmci npm build
|
||||||
|
|
||||||
|
release:
|
||||||
|
needs: test
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @shipzone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Release
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm publish
|
||||||
|
|
||||||
|
metadata:
|
||||||
|
needs: test
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ${{ env.IMAGE }}
|
||||||
|
continue-on-error: true
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Prepare
|
||||||
|
run: |
|
||||||
|
pnpm install -g pnpm
|
||||||
|
pnpm install -g @shipzone/npmci
|
||||||
|
npmci npm prepare
|
||||||
|
|
||||||
|
- name: Code quality
|
||||||
|
run: |
|
||||||
|
npmci command npm install -g typescript
|
||||||
|
npmci npm install
|
||||||
|
|
||||||
|
- name: Trigger
|
||||||
|
run: npmci trigger
|
||||||
|
|
||||||
|
- name: Build docs and upload artifacts
|
||||||
|
run: |
|
||||||
|
npmci node install stable
|
||||||
|
npmci npm install
|
||||||
|
pnpm install -g @gitzone/tsdoc
|
||||||
|
npmci command tsdoc
|
||||||
|
continue-on-error: true
|
@ -10,11 +10,9 @@
|
|||||||
/>
|
/>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
|
||||||
<link rel="preconnect" href="https://rsms.me/">
|
<!--Lets load standard fonts-->
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://assetbroker.lossless.one/" crossorigin>
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="stylesheet" href="https://assetbroker.lossless.one/fonts/fonts.css">
|
||||||
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// dees tools
|
// dees tools
|
||||||
import * as deesWccTools from '@designestate/dees-wcctools';
|
import * as deesWccTools from '@design.estate/dees-wcctools';
|
||||||
import * as deesDomTools from '@designestate/dees-domtools';
|
import * as deesDomTools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
// elements and pages
|
// elements and pages
|
||||||
import * as elements from '../ts_web/elements/index.js';
|
import * as elements from '../ts_web/elements/index.js';
|
||||||
|
@ -3,10 +3,10 @@
|
|||||||
"projectType": "wcc",
|
"projectType": "wcc",
|
||||||
"module": {
|
"module": {
|
||||||
"githost": "gitlab.com",
|
"githost": "gitlab.com",
|
||||||
"gitscope": "designestate",
|
"gitscope": "design.estate",
|
||||||
"gitrepo": "dees-catalog",
|
"gitrepo": "dees-catalog",
|
||||||
"description": "a webcomponents catalog for handling daily stuff on the web",
|
"description": "a webcomponents catalog for handling daily stuff on the web",
|
||||||
"npmPackagename": "@designestate/dees-catalog",
|
"npmPackagename": "@design.estate/dees-catalog",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"projectDomain": "design.estate"
|
"projectDomain": "design.estate"
|
||||||
}
|
}
|
||||||
|
40
package.json
40
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@designestate/dees-catalog",
|
"name": "@design.estate/dees-catalog",
|
||||||
"version": "1.0.155",
|
"version": "1.0.193",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "website for lossless.com",
|
"description": "website for lossless.com",
|
||||||
"main": "dist_ts_web/index.js",
|
"main": "dist_ts_web/index.js",
|
||||||
@ -15,25 +15,27 @@
|
|||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@designestate/dees-domtools": "^2.0.28",
|
"@design.estate/dees-domtools": "^2.0.40",
|
||||||
"@designestate/dees-element": "^2.0.19",
|
"@design.estate/dees-element": "^2.0.27",
|
||||||
"@designestate/dees-wcctools": "^1.0.76",
|
"@design.estate/dees-wcctools": "^1.0.78",
|
||||||
"@fortawesome/fontawesome-svg-core": "^6.3.0",
|
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
||||||
"@fortawesome/free-brands-svg-icons": "^6.3.0",
|
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
||||||
"@fortawesome/free-regular-svg-icons": "^6.3.0",
|
"@fortawesome/free-regular-svg-icons": "^6.4.2",
|
||||||
"@fortawesome/free-solid-svg-icons": "^6.3.0",
|
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
||||||
"@pushrocks/smartpromise": "^3.1.7",
|
"@push.rocks/smartpromise": "^4.0.3",
|
||||||
"@tsclass/tsclass": "^4.0.34",
|
"@push.rocks/smartstring": "^4.0.9",
|
||||||
"pdfjs-dist": "^2.15.349"
|
"@tsclass/tsclass": "^4.0.43",
|
||||||
|
"highlight.js": "11.8.0",
|
||||||
|
"pdfjs-dist": "^3.10.111"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.65",
|
"@gitzone/tsbuild": "^2.1.66",
|
||||||
"@gitzone/tsbundle": "^2.0.7",
|
"@gitzone/tsbundle": "^2.0.8",
|
||||||
"@gitzone/tstest": "^1.0.74",
|
"@gitzone/tstest": "^1.0.77",
|
||||||
"@gitzone/tswatch": "^2.0.5",
|
"@gitzone/tswatch": "^2.0.7",
|
||||||
"@pushrocks/projectinfo": "^5.0.1",
|
"@push.rocks/projectinfo": "^5.0.2",
|
||||||
"@pushrocks/tapbundle": "^5.0.4",
|
"@push.rocks/tapbundle": "^5.0.15",
|
||||||
"@types/node": "^18.15.9"
|
"@types/node": "^20.6.0"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"ts/**/*",
|
"ts/**/*",
|
||||||
|
4731
pnpm-lock.yaml
generated
4731
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
24
readme.md
24
readme.md
@ -1,26 +1,26 @@
|
|||||||
# @designestate/dees-catalog
|
# @design.estate/dees-catalog
|
||||||
a webcomponents catalog for handling daily stuff on the web
|
a webcomponents catalog for handling daily stuff on the web
|
||||||
|
|
||||||
## Availabililty and Links
|
## Availabililty and Links
|
||||||
* [npmjs.org (npm package)](https://www.npmjs.com/package/@designestate/dees-catalog)
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@design.estate/dees-catalog)
|
||||||
* [gitlab.com (source)](https://gitlab.com/designestate/dees-catalog)
|
* [gitlab.com (source)](https://gitlab.com/design.estate/dees-catalog)
|
||||||
* [github.com (source mirror)](https://github.com/designestate/dees-catalog)
|
* [github.com (source mirror)](https://github.com/design.estate/dees-catalog)
|
||||||
* [docs (typedoc)](https://designestate.gitlab.io/dees-catalog/)
|
* [docs (typedoc)](https://design.estate.gitlab.io/dees-catalog/)
|
||||||
|
|
||||||
## Status for master
|
## Status for master
|
||||||
|
|
||||||
Status Category | Status Badge
|
Status Category | Status Badge
|
||||||
-- | --
|
-- | --
|
||||||
GitLab Pipelines | [](https://lossless.cloud)
|
GitLab Pipelines | [](https://lossless.cloud)
|
||||||
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
||||||
npm | [](https://lossless.cloud)
|
npm | [](https://lossless.cloud)
|
||||||
Snyk | [](https://lossless.cloud)
|
Snyk | [](https://lossless.cloud)
|
||||||
TypeScript Support | [](https://lossless.cloud)
|
TypeScript Support | [](https://lossless.cloud)
|
||||||
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
Code Style | [](https://lossless.cloud)
|
Code Style | [](https://lossless.cloud)
|
||||||
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
||||||
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
||||||
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { tap, expect, webhelpers } from '@pushrocks/tapbundle';
|
import { tap, expect, webhelpers } from '@push.rocks/tapbundle';
|
||||||
|
|
||||||
import * as deesCatalog from '../ts_web';
|
import * as deesCatalog from '../ts_web';
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* autocreated commitinfo by @pushrocks/commitinfo
|
* autocreated commitinfo by @pushrocks/commitinfo
|
||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@designestate/dees-catalog',
|
name: '@design.estate/dees-catalog',
|
||||||
version: '1.0.155',
|
version: '1.0.193',
|
||||||
description: 'website for lossless.com'
|
description: 'website for lossless.com'
|
||||||
}
|
}
|
||||||
|
@ -3,11 +3,12 @@ import {
|
|||||||
customElement,
|
customElement,
|
||||||
DeesElement,
|
DeesElement,
|
||||||
html,
|
html,
|
||||||
TemplateResult,
|
type TemplateResult,
|
||||||
css,
|
css,
|
||||||
|
type CSSResult,
|
||||||
state,
|
state,
|
||||||
property
|
property
|
||||||
} from '@designestate/dees-element';
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
@customElement('dees-button-exit')
|
@customElement('dees-button-exit')
|
||||||
export class DeesButtonExit extends DeesElement {
|
export class DeesButtonExit extends DeesElement {
|
||||||
|
15
ts_web/elements/dees-button.demo.ts
Normal file
15
ts_web/elements/dees-button.demo.ts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import { html } from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
export const demoFunc = () => html`
|
||||||
|
<dees-button>This is a slotted Text</dees-button>
|
||||||
|
<p>
|
||||||
|
<dees-button text="Highlighted: This text shows" type="highlighted">Highlighted</dees-button>
|
||||||
|
</p>
|
||||||
|
<p><dees-button type="discreet">This is discreete button</dees-button></p>
|
||||||
|
<p><dees-button disabled>This is a disabled button</dees-button></p>
|
||||||
|
<p><dees-button type="big">This is a slotted Text</dees-button></p>
|
||||||
|
<p><dees-button status="normal">Normal Status</dees-button></p>
|
||||||
|
<p><dees-button disabled status="pending">Pending Status</dees-button></p>
|
||||||
|
<p><dees-button disabled status="success">Success Status</dees-button></p>
|
||||||
|
<p><dees-button disabled status="error">Error Status</dees-button></p>
|
||||||
|
`;
|
@ -1,15 +1,17 @@
|
|||||||
|
import { demoFunc } from './dees-button.demo.js';
|
||||||
import {
|
import {
|
||||||
customElement,
|
customElement,
|
||||||
html,
|
html,
|
||||||
DeesElement,
|
DeesElement,
|
||||||
property,
|
property,
|
||||||
TemplateResult,
|
type TemplateResult,
|
||||||
cssManager,
|
cssManager,
|
||||||
css,
|
css,
|
||||||
|
type CSSResult,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
} from '@designestate/dees-element';
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -19,17 +21,7 @@ declare global {
|
|||||||
|
|
||||||
@customElement('dees-button')
|
@customElement('dees-button')
|
||||||
export class DeesButton extends DeesElement {
|
export class DeesButton extends DeesElement {
|
||||||
public static demo = () => html`
|
public static demo = demoFunc;
|
||||||
<dees-button>This is a slotted Text</dees-button>
|
|
||||||
<p><dees-button text="Highlighted: This text shows" type="highlighted">Highlighted</dees-button></p>
|
|
||||||
<p><dees-button type="discreet">This is discreete button</dees-button></p>
|
|
||||||
<p><dees-button disabled>This is a disabled button</dees-button></p>
|
|
||||||
<p><dees-button type="big">This is a slotted Text</dees-button></p>
|
|
||||||
<p><dees-button status="normal">Normal Status</dees-button></p>
|
|
||||||
<p><dees-button disabled status="pending">Pending Status</dees-button></p>
|
|
||||||
<p><dees-button disabled status="success">Success Status</dees-button></p>
|
|
||||||
<p><dees-button disabled status="error">Error Status</dees-button></p>
|
|
||||||
`;
|
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
reflect: true,
|
reflect: true,
|
||||||
@ -87,7 +79,7 @@ export class DeesButton extends DeesElement {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: ${cssManager.bdTheme('#fff', '#333')};
|
background: ${cssManager.bdTheme('#fff', '#333')};
|
||||||
box-shadow: ${cssManager.bdTheme('0px 1px 4px rgba(0,0,0,0.3)', 'none')};
|
box-shadow: ${cssManager.bdTheme('0px 1px 3px rgba(0,0,0,0.3)', 'none')};
|
||||||
border: 1px solid ${cssManager.bdTheme('#eee', '#333')};
|
border: 1px solid ${cssManager.bdTheme('#eee', '#333')};
|
||||||
border-top: ${cssManager.bdTheme('1px solid #eee', '1px solid #444')};
|
border-top: ${cssManager.bdTheme('1px solid #eee', '1px solid #444')};
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
@ -3,13 +3,14 @@ import {
|
|||||||
html,
|
html,
|
||||||
DeesElement,
|
DeesElement,
|
||||||
property,
|
property,
|
||||||
TemplateResult,
|
type TemplateResult,
|
||||||
cssManager,
|
cssManager,
|
||||||
css,
|
css,
|
||||||
|
type CSSResult,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
} from '@designestate/dees-element';
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
|
57
ts_web/elements/dees-contextmenu.demo.ts
Normal file
57
ts_web/elements/dees-contextmenu.demo.ts
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
import { html } from '@design.estate/dees-element';
|
||||||
|
import * as plugins from './plugins.js';
|
||||||
|
|
||||||
|
import { DeesContextmenu } from './dees-contextmenu.js';
|
||||||
|
|
||||||
|
export const demoFunc = () => html`
|
||||||
|
<style>
|
||||||
|
.withMargin {
|
||||||
|
display: block;
|
||||||
|
margin: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<dees-button @contextmenu=${(eventArg) => {
|
||||||
|
DeesContextmenu.openContextMenuWithOptions(eventArg, [
|
||||||
|
{
|
||||||
|
name: 'copy',
|
||||||
|
iconName: 'copySolid',
|
||||||
|
action: async () => {
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'edit',
|
||||||
|
iconName: 'penToSquare',
|
||||||
|
action: async () => {
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
},{
|
||||||
|
name: 'paste',
|
||||||
|
iconName: 'pasteSolid',
|
||||||
|
action: async () => {
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
}}>Right-Click for contextmenu</dees-button>
|
||||||
|
<dees-contextmenu class="withMargin"></dees-contextmenu>
|
||||||
|
<dees-contextmenu
|
||||||
|
class="withMargin"
|
||||||
|
.menuItems=${[
|
||||||
|
{
|
||||||
|
name: 'copy',
|
||||||
|
iconName: 'copySolid',
|
||||||
|
action: async () => {},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'edit',
|
||||||
|
iconName: 'penToSquare',
|
||||||
|
action: async () => {},
|
||||||
|
},{
|
||||||
|
name: 'paste',
|
||||||
|
iconName: 'pasteSolid',
|
||||||
|
action: async () => {},
|
||||||
|
},
|
||||||
|
] as plugins.tsclass.website.IMenuItem[]}
|
||||||
|
></dees-contextmenu>
|
||||||
|
`;
|
@ -1,16 +1,18 @@
|
|||||||
|
import { demoFunc } from './dees-contextmenu.demo.js';
|
||||||
import * as plugins from './plugins.js';
|
import * as plugins from './plugins.js';
|
||||||
import {
|
import {
|
||||||
customElement,
|
customElement,
|
||||||
html,
|
html,
|
||||||
DeesElement,
|
DeesElement,
|
||||||
property,
|
property,
|
||||||
TemplateResult,
|
type TemplateResult,
|
||||||
cssManager,
|
cssManager,
|
||||||
css,
|
css,
|
||||||
|
type CSSResult,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
} from '@designestate/dees-element';
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
import { DeesWindowLayer } from './dees-windowlayer.js';
|
import { DeesWindowLayer } from './dees-windowlayer.js';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
@ -22,70 +24,25 @@ declare global {
|
|||||||
@customElement('dees-contextmenu')
|
@customElement('dees-contextmenu')
|
||||||
export class DeesContextmenu extends DeesElement {
|
export class DeesContextmenu extends DeesElement {
|
||||||
// DEMO
|
// DEMO
|
||||||
public static demo = () => html`
|
public static demo = demoFunc
|
||||||
<style>
|
|
||||||
.withMargin {
|
|
||||||
display: block;
|
|
||||||
margin: 20px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<dees-button @contextmenu=${(eventArg) => {
|
|
||||||
DeesContextmenu.openContextMenuWithOptions(eventArg, [
|
|
||||||
{
|
|
||||||
name: 'copy',
|
|
||||||
iconName: 'copySolid',
|
|
||||||
action: async () => {
|
|
||||||
return null;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'edit',
|
|
||||||
iconName: 'penToSquare',
|
|
||||||
action: async () => {
|
|
||||||
return null;
|
|
||||||
},
|
|
||||||
},{
|
|
||||||
name: 'paste',
|
|
||||||
iconName: 'pasteSolid',
|
|
||||||
action: async () => {
|
|
||||||
return null;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
]);
|
|
||||||
}}>Hello</dees-button>
|
|
||||||
<dees-contextmenu class="withMargin"></dees-contextmenu>
|
|
||||||
<dees-contextmenu
|
|
||||||
class="withMargin"
|
|
||||||
.menuItems=${[
|
|
||||||
{
|
|
||||||
name: 'copy',
|
|
||||||
iconName: 'copySolid',
|
|
||||||
action: async () => {},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'edit',
|
|
||||||
iconName: 'penToSquare',
|
|
||||||
action: async () => {},
|
|
||||||
},{
|
|
||||||
name: 'paste',
|
|
||||||
iconName: 'pasteSolid',
|
|
||||||
action: async () => {},
|
|
||||||
},
|
|
||||||
] as plugins.tsclass.website.IMenuItem[]}
|
|
||||||
></dees-contextmenu>
|
|
||||||
`;
|
|
||||||
|
|
||||||
// STATIC
|
// STATIC
|
||||||
public static async openContextMenuWithOptions(eventArg: MouseEvent, menuItemsArg: plugins.tsclass.website.IMenuItem[]) {
|
public static async openContextMenuWithOptions(eventArg: MouseEvent, menuItemsArg: plugins.tsclass.website.IMenuItem[]) {
|
||||||
eventArg.preventDefault();
|
eventArg.preventDefault();
|
||||||
|
eventArg.stopPropagation();
|
||||||
const contextMenu = new DeesContextmenu();
|
const contextMenu = new DeesContextmenu();
|
||||||
contextMenu.style.position = 'absolute';
|
contextMenu.style.position = 'fixed';
|
||||||
|
contextMenu.style.zIndex = '2000';
|
||||||
contextMenu.style.top = `${eventArg.clientY.toString()}px`;
|
contextMenu.style.top = `${eventArg.clientY.toString()}px`;
|
||||||
contextMenu.style.left = `${eventArg.clientX.toString()}px`;
|
contextMenu.style.left = `${eventArg.clientX.toString()}px`;
|
||||||
contextMenu.style.opacity = '0';
|
contextMenu.style.opacity = '0';
|
||||||
contextMenu.style.transform = 'scale(0.95,0.95)';
|
contextMenu.style.transform = 'scale(0.95,0.95)';
|
||||||
contextMenu.style.transformOrigin = 'top left';
|
contextMenu.style.transformOrigin = 'top left';
|
||||||
contextMenu.menuItems = menuItemsArg;
|
contextMenu.menuItems = menuItemsArg;
|
||||||
|
contextMenu.windowLayer = await DeesWindowLayer.createAndShow();
|
||||||
|
contextMenu.windowLayer.addEventListener('click', async () => {
|
||||||
|
await contextMenu.destroy();
|
||||||
|
})
|
||||||
document.body.append(contextMenu);
|
document.body.append(contextMenu);
|
||||||
await domtools.plugins.smartdelay.delayFor(0);
|
await domtools.plugins.smartdelay.delayFor(0);
|
||||||
contextMenu.style.opacity = '1';
|
contextMenu.style.opacity = '1';
|
||||||
@ -96,6 +53,7 @@ export class DeesContextmenu extends DeesElement {
|
|||||||
type: Array,
|
type: Array,
|
||||||
})
|
})
|
||||||
public menuItems: plugins.tsclass.website.IMenuItem[] = [];
|
public menuItems: plugins.tsclass.website.IMenuItem[] = [];
|
||||||
|
windowLayer: DeesWindowLayer;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
@ -114,7 +72,7 @@ export class DeesContextmenu extends DeesElement {
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
border: 1px solid #444;
|
border: 1px solid #444;
|
||||||
min-height: 40px;
|
min-height: 34px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background: #222;
|
background: #222;
|
||||||
box-shadow: 0px 1px 4px #000;
|
box-shadow: 0px 1px 4px #000;
|
||||||
@ -155,15 +113,20 @@ export class DeesContextmenu extends DeesElement {
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
})}
|
})}
|
||||||
|
${this.menuItems.length === 0 ? html`
|
||||||
|
<div class="menuitem" @click=${() => {
|
||||||
|
alert('No menu items...')
|
||||||
|
}}>
|
||||||
|
<dees-icon .iconFA=${'xmark'}></dees-icon
|
||||||
|
>No menu item present...
|
||||||
|
</div>
|
||||||
|
` : html``}
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async firstUpdated() {
|
public async firstUpdated() {
|
||||||
if (!this.menuItems || this.menuItems.length === 0) {
|
|
||||||
const mainbox = this.shadowRoot.querySelector('.mainbox');
|
|
||||||
mainbox.textContent = 'no menu items present';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async handleClick(menuItem: plugins.tsclass.website.IMenuItem) {
|
public async handleClick(menuItem: plugins.tsclass.website.IMenuItem) {
|
||||||
@ -172,6 +135,9 @@ export class DeesContextmenu extends DeesElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async destroy() {
|
public async destroy() {
|
||||||
|
if (this.windowLayer) {
|
||||||
|
this.windowLayer.destroy();
|
||||||
|
}
|
||||||
this.style.opacity = '0';
|
this.style.opacity = '0';
|
||||||
this.style.transform = 'scale(0.95,0,95)';
|
this.style.transform = 'scale(0.95,0,95)';
|
||||||
await domtools.plugins.smartdelay.delayFor(100);
|
await domtools.plugins.smartdelay.delayFor(100);
|
||||||
|
18
ts_web/elements/dees-dataview-codebox.demo.ts
Normal file
18
ts_web/elements/dees-dataview-codebox.demo.ts
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import { html } from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
export const demoFunc = () => html` <style>
|
||||||
|
.demoWrapper {
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
padding: 20px;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div class="demoWrapper">
|
||||||
|
<dees-dataview-codebox proglang="typescript">
|
||||||
|
import * as text from './hello'; const hiThere = 'nice'; const myFunction = async () => {
|
||||||
|
console.log('nice one'); }
|
||||||
|
</dees-dataview-codebox>
|
||||||
|
</div>`
|
213
ts_web/elements/dees-dataview-codebox.ts
Normal file
213
ts_web/elements/dees-dataview-codebox.ts
Normal file
@ -0,0 +1,213 @@
|
|||||||
|
import { demoFunc } from './dees-dataview-codebox.demo.js';
|
||||||
|
import {
|
||||||
|
DeesElement,
|
||||||
|
html,
|
||||||
|
customElement,
|
||||||
|
type TemplateResult,
|
||||||
|
property,
|
||||||
|
state,
|
||||||
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
import hlight from 'highlight.js';
|
||||||
|
|
||||||
|
import * as smartstring from '@push.rocks/smartstring';
|
||||||
|
|
||||||
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface HTMLElementTagNameMap {
|
||||||
|
'dees-dataview-codebox': DeesDataviewCodebox;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@customElement('dees-dataview-codebox')
|
||||||
|
export class DeesDataviewCodebox extends DeesElement {
|
||||||
|
public static demo = demoFunc;
|
||||||
|
|
||||||
|
@property()
|
||||||
|
public progLang: string = 'typescript';
|
||||||
|
|
||||||
|
@property({
|
||||||
|
type: String,
|
||||||
|
reflect: true,
|
||||||
|
})
|
||||||
|
public codeToDisplay: string = '';
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
render(): TemplateResult {
|
||||||
|
return html`
|
||||||
|
${domtools.elementBasic.styles}
|
||||||
|
<style>
|
||||||
|
:host {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
text-align: left;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.mainbox {
|
||||||
|
position: relative;
|
||||||
|
color: ${this.goBright ? '#333333' : '#ffffff'};
|
||||||
|
border-top: 1px solid ${this.goBright ? '#ffffff' : '#333333'};
|
||||||
|
box-shadow: 0px 0px 5px ${this.goBright ? 'rgba(0,0,0,0.1)' : 'rgba(0,0,0,0.5)'};
|
||||||
|
background: ${this.goBright ? '#ffffff' : '#191919'};
|
||||||
|
border-radius: 16px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.appbar {
|
||||||
|
height: 24px;
|
||||||
|
background: #161616;
|
||||||
|
border-bottom: 1px solid #222222;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #CCC;
|
||||||
|
font-family: 'Hubot Sans', 'monospace';
|
||||||
|
line-height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.appbar .fileName {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottomBar {
|
||||||
|
height: 24px;
|
||||||
|
background: #161616;
|
||||||
|
border-top: 1px solid #222222;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #CCC;
|
||||||
|
font-family: 'Hubot Sans', 'monospace';
|
||||||
|
line-height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.languageLabel {
|
||||||
|
color: #fff;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 24px;
|
||||||
|
z-index: 10;
|
||||||
|
background: #6596ff20;
|
||||||
|
display: inline-block;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0px;
|
||||||
|
right: 0px;
|
||||||
|
padding: 0px 16px 0px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-keyword {
|
||||||
|
color: #ff65ec;
|
||||||
|
}
|
||||||
|
|
||||||
|
.codegrid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 50px auto;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lineNumbers {
|
||||||
|
|
||||||
|
color: ${this.goBright ? '#acacac' : '#666666'};
|
||||||
|
padding: 30px 16px 0px 0px;
|
||||||
|
text-align: right;
|
||||||
|
border-right: 1px solid ${this.goBright ? '#eaeaea' : '#222222'};
|
||||||
|
}
|
||||||
|
|
||||||
|
.lineCounter:last-child {
|
||||||
|
opacity: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
overflow-x: auto;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 30px 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
font-weight: ${this.goBright ? '400' : '300'};
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
code,
|
||||||
|
code *,
|
||||||
|
.lineNumbers {
|
||||||
|
line-height: 1.4em;
|
||||||
|
font-weight: 200;
|
||||||
|
font-family: 'Intel One Mono', 'monospace';
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-string {
|
||||||
|
color: #ffa465;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-built_in {
|
||||||
|
color: #65ff6a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-function {
|
||||||
|
color: ${this.goBright ? '#2765DF' : '#6596ff'};
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-params {
|
||||||
|
color: ${this.goBright ? '#3DB420' : '#65d5ff'};
|
||||||
|
}
|
||||||
|
|
||||||
|
.hljs-comment {
|
||||||
|
color: ${this.goBright ? '#EF9300' : '#ffd765'};
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div class="mainbox">
|
||||||
|
<div class="appbar">
|
||||||
|
<div class="fileName">index.ts</div>
|
||||||
|
</div>
|
||||||
|
<div class="codegrid">
|
||||||
|
<div class="lineNumbers">
|
||||||
|
${(() => {
|
||||||
|
let lineCounter = 0;
|
||||||
|
return this.codeToDisplay.split('\n').map((lineArg) => {
|
||||||
|
lineCounter++;
|
||||||
|
return html`<div class="lineCounter">${lineCounter}</div>`;
|
||||||
|
});
|
||||||
|
})()}
|
||||||
|
</div>
|
||||||
|
<pre><code></code></pre>
|
||||||
|
</div>
|
||||||
|
<div class="bottomBar">
|
||||||
|
Spaces: 2
|
||||||
|
<div class="languageLabel">${this.progLang}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
@state()
|
||||||
|
private codeToDisplayStore = '';
|
||||||
|
|
||||||
|
public async updated(_changedProperties) {
|
||||||
|
super.updated(_changedProperties);
|
||||||
|
console.log('highlighting now');
|
||||||
|
console.log(this.childNodes);
|
||||||
|
const slottedCodeNodes: Text[] = [];
|
||||||
|
this.childNodes.forEach((childNode) => {
|
||||||
|
if (childNode.nodeName === '#text') {
|
||||||
|
slottedCodeNodes.push(childNode as Text);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (this.codeToDisplay && this.codeToDisplay !== this.codeToDisplayStore) {
|
||||||
|
this.codeToDisplayStore = smartstring.indent.normalize(this.codeToDisplay).trimStart();
|
||||||
|
}
|
||||||
|
if (slottedCodeNodes[0] && slottedCodeNodes[0].wholeText && !this.codeToDisplay) {
|
||||||
|
this.codeToDisplayStore = smartstring.indent
|
||||||
|
.normalize(slottedCodeNodes[0].wholeText)
|
||||||
|
.trimStart();
|
||||||
|
this.codeToDisplay = this.codeToDisplayStore;
|
||||||
|
}
|
||||||
|
await domtools.plugins.smartdelay.delayFor(0);
|
||||||
|
const localCodeNode = this.shadowRoot.querySelector('code');
|
||||||
|
const html = hlight.highlight(this.codeToDisplayStore, {
|
||||||
|
language: this.progLang,
|
||||||
|
ignoreIllegals: true,
|
||||||
|
});
|
||||||
|
localCodeNode.innerHTML = html.value;
|
||||||
|
}
|
||||||
|
}
|
39
ts_web/elements/dees-dataview-statusobject.demo.ts
Normal file
39
ts_web/elements/dees-dataview-statusobject.demo.ts
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
import { html } from '@design.estate/dees-element';
|
||||||
|
import * as tsclass from '@tsclass/tsclass';
|
||||||
|
|
||||||
|
export const demoFunc = () => html`<dees-dataview-statusobject
|
||||||
|
.statusObject=${{
|
||||||
|
id: '1',
|
||||||
|
name: 'Demo Item',
|
||||||
|
combinedStatus: 'partly_ok',
|
||||||
|
combinedStatusText: 'partly_ok',
|
||||||
|
details: [
|
||||||
|
{
|
||||||
|
name: 'Detail 1',
|
||||||
|
value: 'Value 1',
|
||||||
|
status: 'ok',
|
||||||
|
statusText: 'OK',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Detail 2',
|
||||||
|
value: 'Value 2',
|
||||||
|
status: 'partly_ok',
|
||||||
|
statusText: 'partly_ok',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Detail 3',
|
||||||
|
value: 'Value 3',
|
||||||
|
status: 'not_ok',
|
||||||
|
statusText: 'not_ok',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Detail 4',
|
||||||
|
value:
|
||||||
|
'Value 4 jhdkfjhalskdfjhfdjskalsdkfjhfdjskalskdjfhjdkslaksjdhfjdkslaskdfjhfjdkslaskdjfhjdskalskdjhfdjskalskdjfhdjskl',
|
||||||
|
status: 'ok',
|
||||||
|
statusText: 'OK',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
} as tsclass.code.IStatusObject}
|
||||||
|
>
|
||||||
|
</dees-dataview-statusobject>`;
|
139
ts_web/elements/dees-dataview-statusobject.ts
Normal file
139
ts_web/elements/dees-dataview-statusobject.ts
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
import { demoFunc } from './dees-dataview-statusobject.demo.js';
|
||||||
|
import {
|
||||||
|
DeesElement,
|
||||||
|
html,
|
||||||
|
customElement,
|
||||||
|
type TemplateResult,
|
||||||
|
property,
|
||||||
|
state,
|
||||||
|
cssManager,
|
||||||
|
css,
|
||||||
|
type CSSResult,
|
||||||
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
import * as tsclass from '@tsclass/tsclass';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface HTMLElementTagNameMap {
|
||||||
|
'dees-dataview-statusobject': DeesDataviewStatusobject;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@customElement('dees-dataview-statusobject')
|
||||||
|
export class DeesDataviewStatusobject extends DeesElement {
|
||||||
|
public static demo = demoFunc;
|
||||||
|
|
||||||
|
@property({ type: Object }) statusObject: tsclass.code.IStatusObject;
|
||||||
|
|
||||||
|
public static styles = [
|
||||||
|
cssManager.defaultStyles,
|
||||||
|
css`
|
||||||
|
.mainbox {
|
||||||
|
border-radius: 3px;
|
||||||
|
background: ${cssManager.bdTheme('#fff', '#1b1b1b')};
|
||||||
|
box-shadow: 0px 1px 3px #00000030;
|
||||||
|
min-height: 48px;
|
||||||
|
color: ${cssManager.bdTheme('#000', '#fff')};
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading {
|
||||||
|
display: grid;
|
||||||
|
align-items: center;
|
||||||
|
grid-template-columns: 40px auto 120px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
display: block;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
height: 48px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusdot {
|
||||||
|
height: 8px;
|
||||||
|
width: 8px;
|
||||||
|
border-radius: 6px;
|
||||||
|
background: grey;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copyMain {
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 10px;
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: uppercase;
|
||||||
|
border: 1px solid ${cssManager.bdTheme('#999', '#444')};
|
||||||
|
text-align: center;
|
||||||
|
padding: 4px;
|
||||||
|
border-radius: 3px;
|
||||||
|
margin-right: 16px;
|
||||||
|
color: #ffffff80
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusdot.ok {
|
||||||
|
background: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusdot.not_ok{
|
||||||
|
background: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.statusdot.partly_ok {
|
||||||
|
background: orange;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail {
|
||||||
|
minheight: 60px;
|
||||||
|
align-items: center;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 40px auto;
|
||||||
|
border-top: 1px dotted ${cssManager.bdTheme('#999', '#282828')};
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail .detailsText {
|
||||||
|
padding-top: 8px;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail .detailsText .label {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #ffffff80
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail .detailsText .value {
|
||||||
|
font-size: 14px;
|
||||||
|
font-family: 'Intel One Mono';
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
];
|
||||||
|
|
||||||
|
render(): TemplateResult {
|
||||||
|
return html`
|
||||||
|
<div class="mainbox">
|
||||||
|
<div class="heading">
|
||||||
|
<div class="statusdot ${this.statusObject?.combinedStatus}"></div>
|
||||||
|
<h1>${this.statusObject?.name || 'no status object assigned'}</h1>
|
||||||
|
<div class="copyMain">Copy as JSON</div>
|
||||||
|
</div>
|
||||||
|
${this.statusObject?.details?.map((detailArg) => {
|
||||||
|
return html`
|
||||||
|
<div class="detail">
|
||||||
|
<div class="statusdot ${detailArg.status}"></div>
|
||||||
|
<div class="detailsText">
|
||||||
|
<div class="label">${detailArg.name}</div>
|
||||||
|
<div class="value">${detailArg.value}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
async firstUpdated() {}
|
||||||
|
}
|
@ -5,7 +5,8 @@ import {
|
|||||||
css,
|
css,
|
||||||
cssManager,
|
cssManager,
|
||||||
property,
|
property,
|
||||||
} from '@designestate/dees-element';
|
type CSSResult,
|
||||||
|
} from '@design.estate/dees-element';
|
||||||
import { DeesForm } from './dees-form.js';
|
import { DeesForm } from './dees-form.js';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
@ -20,6 +21,7 @@ export class DeesFormSubmit extends DeesElement {
|
|||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
reflect: true,
|
||||||
})
|
})
|
||||||
public disabled = false;
|
public disabled = false;
|
||||||
|
|
||||||
@ -29,7 +31,7 @@ export class DeesFormSubmit extends DeesElement {
|
|||||||
public text: string;
|
public text: string;
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: String
|
type: String,
|
||||||
})
|
})
|
||||||
public status: 'normal' | 'pending' | 'success' | 'error' = 'normal';
|
public status: 'normal' | 'pending' | 'success' | 'error' = 'normal';
|
||||||
|
|
||||||
@ -41,7 +43,12 @@ export class DeesFormSubmit extends DeesElement {
|
|||||||
|
|
||||||
public render() {
|
public render() {
|
||||||
return html`
|
return html`
|
||||||
<dees-button status=${this.status} @click=${this.submit} .disabled=${this.disabled} .text=${this.text ? this.text : this.textContent}>
|
<dees-button
|
||||||
|
status=${this.status}
|
||||||
|
@click=${this.submit}
|
||||||
|
.disabled=${this.disabled}
|
||||||
|
.text=${this.text ? this.text : this.textContent}
|
||||||
|
>
|
||||||
</dees-button>
|
</dees-button>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
@ -53,4 +60,12 @@ export class DeesFormSubmit extends DeesElement {
|
|||||||
const parentElement: DeesForm = this.parentElement as DeesForm;
|
const parentElement: DeesForm = this.parentElement as DeesForm;
|
||||||
parentElement.gatherAndDispatch();
|
parentElement.gatherAndDispatch();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async focus() {
|
||||||
|
const domtools = await this.domtoolsPromise;
|
||||||
|
if (!this.disabled) {
|
||||||
|
domtools.convenience.smartdelay.delayFor(0);
|
||||||
|
this.submit();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { customElement, html, TemplateResult, DeesElement } from '@designestate/dees-element';
|
import { customElement, html, type TemplateResult, DeesElement, type CSSResult, } from '@design.estate/dees-element';
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
import { DeesInputCheckbox } from './dees-input-checkbox.js';
|
import { DeesInputCheckbox } from './dees-input-checkbox.js';
|
||||||
import { DeesInputText } from './dees-input-text.js';
|
import { DeesInputText } from './dees-input-text.js';
|
||||||
@ -7,9 +7,15 @@ import { DeesInputQuantitySelector } from './dees-input-quantityselector.js';
|
|||||||
import { DeesInputRadio } from './dees-input-radio.js';
|
import { DeesInputRadio } from './dees-input-radio.js';
|
||||||
import { DeesFormSubmit } from './dees-form-submit.js';
|
import { DeesFormSubmit } from './dees-form-submit.js';
|
||||||
|
|
||||||
export type TFormElement = Array<
|
// Unified set for form input types
|
||||||
DeesInputCheckbox | DeesInputText | DeesInputQuantitySelector | DeesInputRadio
|
const FORM_INPUT_TYPES = [
|
||||||
>;
|
DeesInputCheckbox,
|
||||||
|
DeesInputText,
|
||||||
|
DeesInputQuantitySelector,
|
||||||
|
DeesInputRadio
|
||||||
|
];
|
||||||
|
|
||||||
|
export type TFormInputElement = DeesInputCheckbox | DeesInputText | DeesInputQuantitySelector | DeesInputRadio;
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -19,6 +25,7 @@ declare global {
|
|||||||
|
|
||||||
@customElement('dees-form')
|
@customElement('dees-form')
|
||||||
export class DeesForm extends DeesElement {
|
export class DeesForm extends DeesElement {
|
||||||
|
|
||||||
public static demo = () => html`
|
public static demo = () => html`
|
||||||
<dees-form
|
<dees-form
|
||||||
style="display: block; margin:auto; max-width: 500px; padding: 20px"
|
style="display: block; margin:auto; max-width: 500px; padding: 20px"
|
||||||
@ -31,17 +38,14 @@ export class DeesForm extends DeesElement {
|
|||||||
>
|
>
|
||||||
<dees-input-text .required="${true}" key="hello1" label="a text"></dees-input-text>
|
<dees-input-text .required="${true}" key="hello1" label="a text"></dees-input-text>
|
||||||
<dees-input-text .required="${true}" key="hello2" label="also a text"></dees-input-text>
|
<dees-input-text .required="${true}" key="hello2" label="also a text"></dees-input-text>
|
||||||
<dees-input-checkbox
|
<dees-input-checkbox .required="${true}" key="hello3" label="another text"></dees-input-checkbox>
|
||||||
.required="${true}"
|
|
||||||
key="hello3"
|
|
||||||
label="another text"
|
|
||||||
></dees-input-checkbox>
|
|
||||||
<dees-form-submit>Submit</dees-form-submit>
|
<dees-form-submit>Submit</dees-form-submit>
|
||||||
</dees-form>
|
</dees-form>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
public name: string = 'myform';
|
public name: string = 'myform';
|
||||||
public changeSubject = new domtools.rxjs.Subject();
|
public changeSubject = new domtools.rxjs.Subject();
|
||||||
|
public readyDeferred = domtools.plugins.smartpromise.defer();
|
||||||
|
|
||||||
public render(): TemplateResult {
|
public render(): TemplateResult {
|
||||||
return html`
|
return html`
|
||||||
@ -54,51 +58,39 @@ export class DeesForm extends DeesElement {
|
|||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
public firstUpdated() {
|
public async firstUpdated() {
|
||||||
const formChildren = this.getFormChildren();
|
const formChildren = this.getFormElements();
|
||||||
this.checkRequiredStatus();
|
this.updateRequiredStatus();
|
||||||
|
|
||||||
for (const child of formChildren) {
|
for (const child of formChildren) {
|
||||||
child.changeSubject.subscribe(async (elementArg: TFormElement) => {
|
child.changeSubject.subscribe(async () => {
|
||||||
const valueObject = await this.gatherData();
|
const valueObject = await this.collectFormData();
|
||||||
this.changeSubject.next(valueObject);
|
this.changeSubject.next(valueObject);
|
||||||
console.log(valueObject);
|
console.log(valueObject);
|
||||||
this.checkRequiredStatus();
|
this.updateRequiredStatus();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
await this.addBehaviours();
|
||||||
|
this.readyDeferred.resolve();
|
||||||
}
|
}
|
||||||
|
|
||||||
public getFormChildren() {
|
public getFormElements(): Array<TFormInputElement> {
|
||||||
const children: Array<DeesElement> = this.children as any;
|
return (Array.from(this.children)).filter(child =>
|
||||||
const formChildren: TFormElement = [];
|
FORM_INPUT_TYPES.includes(child.constructor as any)
|
||||||
|
) as unknown as TFormInputElement[];
|
||||||
for (const child of children) {
|
|
||||||
if (
|
|
||||||
child instanceof DeesInputCheckbox ||
|
|
||||||
child instanceof DeesInputText ||
|
|
||||||
child instanceof DeesInputQuantitySelector
|
|
||||||
) {
|
|
||||||
formChildren.push(child);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return formChildren;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public getSubmitButton() {
|
public getSubmitButton(): DeesFormSubmit | undefined {
|
||||||
const children: Array<DeesElement> = this.children as any;
|
return Array.from(this.children).find(child =>
|
||||||
let submitButton: DeesFormSubmit;
|
child instanceof DeesFormSubmit
|
||||||
for (const childArg of children) {
|
) as DeesFormSubmit;
|
||||||
if (childArg instanceof DeesFormSubmit) {
|
|
||||||
submitButton = childArg;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return submitButton;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async checkRequiredStatus() {
|
public async updateRequiredStatus() {
|
||||||
console.log('checking the required status.');
|
console.log('checking the required status.');
|
||||||
|
|
||||||
let requiredOK = true;
|
let requiredOK = true;
|
||||||
for (const childArg of this.getFormChildren()) {
|
for (const childArg of this.getFormElements()) {
|
||||||
if (childArg.required && !childArg.value) {
|
if (childArg.required && !childArg.value) {
|
||||||
requiredOK = false;
|
requiredOK = false;
|
||||||
}
|
}
|
||||||
@ -108,17 +100,20 @@ export class DeesForm extends DeesElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public async gatherData() {
|
public async collectFormData() {
|
||||||
const children = this.getFormChildren();
|
const children = this.getFormElements();
|
||||||
const valueObject: { [key: string]: string | number | boolean } = {};
|
const valueObject: { [key: string]: string | number | boolean } = {};
|
||||||
for (const child of children) {
|
for (const child of children) {
|
||||||
|
if (!child.key) {
|
||||||
|
console.log(`form element with label "${child.label}" has no key. skipping.`);
|
||||||
|
}
|
||||||
valueObject[child.key] = child.value;
|
valueObject[child.key] = child.value;
|
||||||
}
|
}
|
||||||
return valueObject;
|
return valueObject;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async gatherAndDispatch() {
|
public async gatherAndDispatch() {
|
||||||
const valueObject = await this.gatherData();
|
const valueObject = await this.collectFormData();
|
||||||
const formDataEvent = new CustomEvent('formData', {
|
const formDataEvent = new CustomEvent('formData', {
|
||||||
detail: {
|
detail: {
|
||||||
data: valueObject,
|
data: valueObject,
|
||||||
@ -134,7 +129,7 @@ export class DeesForm extends DeesElement {
|
|||||||
visualStateArg: 'normal' | 'pending' | 'error' | 'success',
|
visualStateArg: 'normal' | 'pending' | 'error' | 'success',
|
||||||
textStateArg: string
|
textStateArg: string
|
||||||
) {
|
) {
|
||||||
const inputChildren = this.getFormChildren();
|
const inputChildren = this.getFormElements();
|
||||||
const submitButton = this.getSubmitButton();
|
const submitButton = this.getSubmitButton();
|
||||||
|
|
||||||
switch (visualStateArg) {
|
switch (visualStateArg) {
|
||||||
@ -170,4 +165,36 @@ export class DeesForm extends DeesElement {
|
|||||||
|
|
||||||
submitButton.text = textStateArg;
|
submitButton.text = textStateArg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* resets the form
|
||||||
|
*/
|
||||||
|
reset() {
|
||||||
|
const inputChildren = this.getFormElements();
|
||||||
|
const submitButton = this.getSubmitButton();
|
||||||
|
|
||||||
|
for (const inputChild of inputChildren) {
|
||||||
|
inputChild.value = null;
|
||||||
|
}
|
||||||
|
this.setStatus('normal', 'Submit');
|
||||||
|
}
|
||||||
|
|
||||||
|
public async addBehaviours() {
|
||||||
|
// Use event delegation
|
||||||
|
this.addEventListener('keydown', (event: KeyboardEvent) => {
|
||||||
|
const target = event.target as DeesElement;
|
||||||
|
if (!FORM_INPUT_TYPES.includes(target.constructor as any)) return;
|
||||||
|
|
||||||
|
if (event.key === 'Enter') {
|
||||||
|
const children = this.getFormElements();
|
||||||
|
const currentIndex = children.indexOf(target as any);
|
||||||
|
if (currentIndex < children.length - 1) {
|
||||||
|
children[currentIndex + 1].focus();
|
||||||
|
} else {
|
||||||
|
target.blur();
|
||||||
|
this.getSubmitButton()?.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,11 +5,12 @@ import {
|
|||||||
customElement,
|
customElement,
|
||||||
cssManager,
|
cssManager,
|
||||||
css,
|
css,
|
||||||
} from '@designestate/dees-element';
|
type CSSResult,
|
||||||
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
import { icon, IconDefinition } from '@fortawesome/fontawesome-svg-core';
|
import { icon, type IconDefinition } from '@fortawesome/fontawesome-svg-core';
|
||||||
import {
|
import {
|
||||||
faFacebook,
|
faFacebook,
|
||||||
faGoogle,
|
faGoogle,
|
||||||
@ -121,6 +122,8 @@ export const faIcons = {
|
|||||||
users: faUsersSolid,
|
users: faUsersSolid,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type TIconKey = keyof typeof faIcons;
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
'dees-icon': DeesIcon;
|
'dees-icon': DeesIcon;
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
import {
|
import {
|
||||||
customElement,
|
customElement,
|
||||||
DeesElement,
|
DeesElement,
|
||||||
TemplateResult,
|
type TemplateResult,
|
||||||
property,
|
property,
|
||||||
html,
|
html,
|
||||||
css,
|
css,
|
||||||
cssManager
|
cssManager,
|
||||||
} from '@designestate/dees-element';
|
type CSSResult,
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
} from '@design.estate/dees-element';
|
||||||
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -25,6 +26,7 @@ export class DeesInputCheckbox extends DeesElement {
|
|||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: String,
|
type: String,
|
||||||
|
reflect: true,
|
||||||
})
|
})
|
||||||
public key: string;
|
public key: string;
|
||||||
|
|
||||||
@ -143,7 +145,7 @@ export class DeesInputCheckbox extends DeesElement {
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<div class="maincontainer" @click="${this.toggleSelected}">
|
<div class="maincontainer" @click="${this.toggleSelected}">
|
||||||
<div class="checkbox ${this.value ? 'selected' : ''} ${this.disabled ? 'disabled' : ''}">
|
<div class="checkbox ${this.value ? 'selected' : ''} ${this.disabled ? 'disabled' : ''}" tabindex="0">
|
||||||
${this.value
|
${this.value
|
||||||
? html`
|
? html`
|
||||||
<span class="checkmark">
|
<span class="checkmark">
|
||||||
@ -171,4 +173,11 @@ export class DeesInputCheckbox extends DeesElement {
|
|||||||
);
|
);
|
||||||
this.changeSubject.next(this);
|
this.changeSubject.next(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public focus(): void {
|
||||||
|
const checkboxDiv = this.shadowRoot.querySelector('.checkbox');
|
||||||
|
if (checkboxDiv) {
|
||||||
|
(checkboxDiv as any).focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { customElement, DeesElement, TemplateResult, property, html, css, cssManager } from '@designestate/dees-element';
|
import { customElement, DeesElement, type TemplateResult, property, html, css, cssManager, type CSSResult, } from '@design.estate/dees-element';
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -22,7 +22,10 @@ export class DeesInputDropdown extends DeesElement {
|
|||||||
// INSTANCE
|
// INSTANCE
|
||||||
public changeSubject = new domtools.rxjs.Subject();
|
public changeSubject = new domtools.rxjs.Subject();
|
||||||
|
|
||||||
@property()
|
@property({
|
||||||
|
type: String,
|
||||||
|
reflect: true,
|
||||||
|
})
|
||||||
public label: string = 'Label';
|
public label: string = 'Label';
|
||||||
|
|
||||||
@property()
|
@property()
|
||||||
|
@ -1,15 +1,16 @@
|
|||||||
import {
|
import {
|
||||||
customElement,
|
customElement,
|
||||||
DeesElement,
|
DeesElement,
|
||||||
TemplateResult,
|
type TemplateResult,
|
||||||
property,
|
property,
|
||||||
html,
|
html,
|
||||||
css,
|
css,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
cssManager,
|
cssManager,
|
||||||
} from '@designestate/dees-element';
|
type CSSResult,
|
||||||
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -31,6 +32,7 @@ export class DeesInputFileupload extends DeesElement {
|
|||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: String,
|
type: String,
|
||||||
|
reflect: true,
|
||||||
})
|
})
|
||||||
public key: string;
|
public key: string;
|
||||||
|
|
||||||
@ -122,7 +124,7 @@ export class DeesInputFileupload extends DeesElement {
|
|||||||
border-bottom: 1px dashed #444;
|
border-bottom: 1px dashed #444;
|
||||||
color: ${cssManager.bdTheme('#666', '#ccc')};
|
color: ${cssManager.bdTheme('#666', '#ccc')};
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
font-family: 'Inter';
|
font-family: 'Mona Sans', 'Inter', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uploadButton:hover .uploadCandidate {
|
.uploadButton:hover .uploadCandidate {
|
||||||
@ -154,7 +156,10 @@ export class DeesInputFileupload extends DeesElement {
|
|||||||
public async openFileSelector() {
|
public async openFileSelector() {
|
||||||
const inputFile: HTMLInputElement = this.shadowRoot.querySelector('input[type="file"]');
|
const inputFile: HTMLInputElement = this.shadowRoot.querySelector('input[type="file"]');
|
||||||
inputFile.click();
|
inputFile.click();
|
||||||
|
this.state = 'idle';
|
||||||
|
this.buttonText = 'Upload more files...';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public async updateValue(eventArg: Event) {
|
public async updateValue(eventArg: Event) {
|
||||||
const target: any = eventArg.target;
|
const target: any = eventArg.target;
|
||||||
@ -163,6 +168,20 @@ export class DeesInputFileupload extends DeesElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public firstUpdated() {
|
public firstUpdated() {
|
||||||
|
const inputFile: HTMLInputElement = this.shadowRoot.querySelector('input[type="file"]');
|
||||||
|
inputFile.addEventListener('change', (event: Event) => {
|
||||||
|
const target = event.target as HTMLInputElement;
|
||||||
|
for (const file of Array.from(target.files)) {
|
||||||
|
this.value.push(file);
|
||||||
|
}
|
||||||
|
this.requestUpdate();
|
||||||
|
console.log(`Got ${this.value.length} files!`);
|
||||||
|
// Reset the input value to allow selecting the same file again if needed
|
||||||
|
target.value = '';
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// lets handle drag and drop
|
||||||
const dropArea = this.shadowRoot.querySelector('.uploadButton');
|
const dropArea = this.shadowRoot.querySelector('.uploadButton');
|
||||||
const handlerFunction = (eventArg: DragEvent) => {
|
const handlerFunction = (eventArg: DragEvent) => {
|
||||||
eventArg.preventDefault();
|
eventArg.preventDefault();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { customElement, property, html, TemplateResult, DeesElement } from '@designestate/dees-element';
|
import { customElement, property, html, type TemplateResult, DeesElement, type CSSResult, } from '@design.estate/dees-element';
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -15,6 +15,12 @@ export class DeesInputQuantitySelector extends DeesElement {
|
|||||||
public changeSubject = new domtools.rxjs.Subject();
|
public changeSubject = new domtools.rxjs.Subject();
|
||||||
|
|
||||||
@property()
|
@property()
|
||||||
|
public label: string = 'Label';
|
||||||
|
|
||||||
|
@property({
|
||||||
|
type: String,
|
||||||
|
reflect: true,
|
||||||
|
})
|
||||||
public key: string;
|
public key: string;
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import {customElement, DeesElement, TemplateResult, property, html} from '@designestate/dees-element';
|
import {customElement, DeesElement, type TemplateResult, property, html, type CSSResult,} from '@design.estate/dees-element';
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -14,7 +14,10 @@ export class DeesInputRadio extends DeesElement {
|
|||||||
// INSTANCE
|
// INSTANCE
|
||||||
public changeSubject = new domtools.rxjs.Subject();
|
public changeSubject = new domtools.rxjs.Subject();
|
||||||
|
|
||||||
@property()
|
@property({
|
||||||
|
type: String,
|
||||||
|
reflect: true,
|
||||||
|
})
|
||||||
public key: string;
|
public key: string;
|
||||||
|
|
||||||
@property()
|
@property()
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import {customElement, DeesElement, TemplateResult, property, html, cssManager} from '@designestate/dees-element';
|
import {customElement, DeesElement, type TemplateResult, property, html, cssManager, type CSSResult,} from '@design.estate/dees-element';
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -10,7 +10,7 @@ declare global {
|
|||||||
@customElement('dees-input-text')
|
@customElement('dees-input-text')
|
||||||
export class DeesInputText extends DeesElement {
|
export class DeesInputText extends DeesElement {
|
||||||
public static demo = () => html`
|
public static demo = () => html`
|
||||||
<dees-input-text .label=${'this is a label'}></dees-input-text>
|
<dees-input-text .label=${'this is a label'} .value=${'test'}></dees-input-text>
|
||||||
<dees-input-text .isPasswordBool=${true}></dees-input-text>
|
<dees-input-text .isPasswordBool=${true}></dees-input-text>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@ -24,12 +24,14 @@ export class DeesInputText extends DeesElement {
|
|||||||
public label: string;
|
public label: string;
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: String
|
type: String,
|
||||||
|
reflect: true,
|
||||||
})
|
})
|
||||||
public key: string;
|
public key: string;
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: String
|
type: String,
|
||||||
|
reflect: true,
|
||||||
})
|
})
|
||||||
public value: string = '';
|
public value: string = '';
|
||||||
|
|
||||||
@ -127,7 +129,7 @@ export class DeesInputText extends DeesElement {
|
|||||||
</style>
|
</style>
|
||||||
<div class="maincontainer">
|
<div class="maincontainer">
|
||||||
${this.label ? html`<div class="label">${this.label}</div>` : html``}
|
${this.label ? html`<div class="label">${this.label}</div>` : html``}
|
||||||
<input type="${this.isPasswordBool && !this.showPasswordBool ? 'password' : 'text'}" value=${this.value} @input="${this.updateValue}" .disabled=${this.disabled} />
|
<input type="${this.isPasswordBool && !this.showPasswordBool ? 'password' : 'text'}" .value=${this.value} @input="${this.updateValue}" .disabled=${this.disabled} />
|
||||||
${this.isPasswordBool ? html`
|
${this.isPasswordBool ? html`
|
||||||
<div class="showPassword" @click=${this.togglePasswordView}>
|
<div class="showPassword" @click=${this.togglePasswordView}>
|
||||||
<dees-icon .iconFA=${this.showPasswordBool ? 'eye' : 'eyeSlash'}></dees-icon>
|
<dees-icon .iconFA=${this.showPasswordBool ? 'eye' : 'eyeSlash'}></dees-icon>
|
||||||
@ -162,4 +164,9 @@ export class DeesInputText extends DeesElement {
|
|||||||
const textInput = this.shadowRoot.querySelector('input');
|
const textInput = this.shadowRoot.querySelector('input');
|
||||||
textInput.focus();
|
textInput.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async blur() {
|
||||||
|
const textInput = this.shadowRoot.querySelector('input');
|
||||||
|
textInput.blur();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,38 +2,34 @@ import * as plugins from './plugins.js';
|
|||||||
import {
|
import {
|
||||||
cssManager,
|
cssManager,
|
||||||
css,
|
css,
|
||||||
|
type CSSResult,
|
||||||
customElement,
|
customElement,
|
||||||
DeesElement,
|
DeesElement,
|
||||||
domtools,
|
domtools,
|
||||||
html,
|
html,
|
||||||
property,
|
property,
|
||||||
} from '@designestate/dees-element';
|
} from '@design.estate/dees-element';
|
||||||
import { DeesWindowLayer } from './dees-windowlayer.js';
|
import { DeesWindowLayer } from './dees-windowlayer.js';
|
||||||
|
|
||||||
@customElement('dees-mobilenavigation')
|
@customElement('dees-mobilenavigation')
|
||||||
export class DeesMobilenavigation extends DeesElement {
|
export class DeesMobilenavigation extends DeesElement {
|
||||||
// STATIC
|
// STATIC
|
||||||
public static demo = () => html`
|
public static demo = () => html`
|
||||||
<dees-mobilenavigation
|
<dees-button @click=${() => {
|
||||||
.menuItems="${[
|
DeesMobilenavigation.createAndShow([
|
||||||
{
|
{
|
||||||
name: 'hello1',
|
name: 'Test',
|
||||||
action: async () => {},
|
action: async (deesMobileNav) => {
|
||||||
|
alert('test');
|
||||||
|
return null;
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
]);
|
||||||
name: 'hello2',
|
}}></dees-button>
|
||||||
action: async () => {},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'hello3',
|
|
||||||
action: async () => {},
|
|
||||||
},
|
|
||||||
]}"
|
|
||||||
></dees-mobilenavigation>
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
private static singletonRef: DeesMobilenavigation;
|
private static singletonRef: DeesMobilenavigation;
|
||||||
public static async createAndInit(menuItemsArg: plugins.tsclass.website.IMenuItem[]) {
|
public static async createAndShow(menuItemsArg: plugins.tsclass.website.IMenuItem<DeesMobilenavigation>[]) {
|
||||||
if (!this.singletonRef) {
|
if (!this.singletonRef) {
|
||||||
this.singletonRef = new DeesMobilenavigation();
|
this.singletonRef = new DeesMobilenavigation();
|
||||||
document.body.append(this.singletonRef);
|
document.body.append(this.singletonRef);
|
||||||
@ -56,7 +52,7 @@ export class DeesMobilenavigation extends DeesElement {
|
|||||||
})
|
})
|
||||||
public menuItems: plugins.tsclass.website.IMenuItem[] = [];
|
public menuItems: plugins.tsclass.website.IMenuItem[] = [];
|
||||||
|
|
||||||
readyDeferred = domtools.plugins.smartpromise.defer();
|
readyDeferred: plugins.smartpromise.Deferred<any> = domtools.plugins.smartpromise.defer();
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
@ -120,7 +116,7 @@ export class DeesMobilenavigation extends DeesElement {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
padding: 8px 0px;
|
padding: 8px 0px;
|
||||||
font-family: Inter;
|
font-family: 'Mona Sans', 'Inter', sans-serif;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
border-bottom: 1px dashed #444;
|
border-bottom: 1px dashed #444;
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
@ -139,7 +135,7 @@ export class DeesMobilenavigation extends DeesElement {
|
|||||||
class="menuItem"
|
class="menuItem"
|
||||||
@click="${() => {
|
@click="${() => {
|
||||||
this.hide();
|
this.hide();
|
||||||
menuItem.action();
|
menuItem.action(this);
|
||||||
}}"
|
}}"
|
||||||
>
|
>
|
||||||
${menuItem.name}
|
${menuItem.name}
|
||||||
|
37
ts_web/elements/dees-modal.demo.ts
Normal file
37
ts_web/elements/dees-modal.demo.ts
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { html } from '@design.estate/dees-element';
|
||||||
|
import { DeesModal } from './dees-modal.js';
|
||||||
|
|
||||||
|
export const demoFunc = () => html`
|
||||||
|
<dees-button @click=${() => {
|
||||||
|
DeesModal.createAndShow({
|
||||||
|
heading: 'This is a heading',
|
||||||
|
content: html`
|
||||||
|
<dees-form>
|
||||||
|
<dees-input-text
|
||||||
|
.label=${'Username'}
|
||||||
|
>
|
||||||
|
</dees-input-text>
|
||||||
|
<dees-input-text
|
||||||
|
.label=${'Password'}
|
||||||
|
>
|
||||||
|
</dees-input-text>
|
||||||
|
</dees-form>
|
||||||
|
`,
|
||||||
|
menuOptions: [{
|
||||||
|
name: 'Cancel',
|
||||||
|
iconName: null,
|
||||||
|
action: async (deesModalArg) => {
|
||||||
|
deesModalArg.destroy();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
name: 'Ok',
|
||||||
|
iconName: null,
|
||||||
|
action: async (deesModalArg) => {
|
||||||
|
deesModalArg.destroy();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
});
|
||||||
|
}}>open modal</dees-button>
|
||||||
|
`
|
186
ts_web/elements/dees-modal.ts
Normal file
186
ts_web/elements/dees-modal.ts
Normal file
@ -0,0 +1,186 @@
|
|||||||
|
import * as plugins from './plugins.js';
|
||||||
|
import { demoFunc } from './dees-modal.demo.js';
|
||||||
|
import {
|
||||||
|
customElement,
|
||||||
|
html,
|
||||||
|
DeesElement,
|
||||||
|
property,
|
||||||
|
type TemplateResult,
|
||||||
|
cssManager,
|
||||||
|
css,
|
||||||
|
type CSSResult,
|
||||||
|
unsafeCSS,
|
||||||
|
unsafeHTML,
|
||||||
|
state,
|
||||||
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
import { DeesWindowLayer } from './dees-windowlayer.js';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface HTMLElementTagNameMap {
|
||||||
|
'dees-modal': DeesModal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@customElement('dees-modal')
|
||||||
|
export class DeesModal extends DeesElement {
|
||||||
|
// STATIC
|
||||||
|
public static demo = demoFunc;
|
||||||
|
|
||||||
|
public static async createAndShow(optionsArg: {
|
||||||
|
heading: string;
|
||||||
|
content: TemplateResult;
|
||||||
|
menuOptions: plugins.tsclass.website.IMenuItem<DeesModal>[];
|
||||||
|
}) {
|
||||||
|
const body = document.body;
|
||||||
|
const modal = new DeesModal();
|
||||||
|
modal.heading = optionsArg.heading;
|
||||||
|
modal.content = optionsArg.content;
|
||||||
|
modal.menuOptions = optionsArg.menuOptions;
|
||||||
|
modal.windowLayer = await DeesWindowLayer.createAndShow();
|
||||||
|
modal.windowLayer.addEventListener('click', async () => {
|
||||||
|
await modal.destroy();
|
||||||
|
});
|
||||||
|
body.append(modal.windowLayer);
|
||||||
|
body.append(modal);
|
||||||
|
}
|
||||||
|
|
||||||
|
// INSTANCE
|
||||||
|
|
||||||
|
@property({
|
||||||
|
type: String,
|
||||||
|
})
|
||||||
|
public heading = '';
|
||||||
|
|
||||||
|
@state({})
|
||||||
|
public content: TemplateResult;
|
||||||
|
|
||||||
|
@state({})
|
||||||
|
public menuOptions: plugins.tsclass.website.IMenuItem<DeesModal>[] = [];
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static styles = [
|
||||||
|
cssManager.defaultStyles,
|
||||||
|
css`
|
||||||
|
:host {
|
||||||
|
font-family: 'Mona Sans', 'Inter', sans-serif;
|
||||||
|
color: ${cssManager.bdTheme('#333', '#fff')};
|
||||||
|
}
|
||||||
|
.modalContainer {
|
||||||
|
display: flex;
|
||||||
|
position: fixed;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
box-sizing: border-box;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
z-index: 2000;
|
||||||
|
}
|
||||||
|
.modal {
|
||||||
|
will-change: transform;
|
||||||
|
transform: translateY(10px);
|
||||||
|
opacity: 0;
|
||||||
|
width: 480px;
|
||||||
|
min-height: 120px;
|
||||||
|
background: #111;
|
||||||
|
border-radius: 8px;
|
||||||
|
border: 1px solid #222;
|
||||||
|
transition: all 0.2s;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal.show {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal .heading {
|
||||||
|
height: 32px;
|
||||||
|
font-family: 'Hubot Sans', 'Inter', sans-serif;
|
||||||
|
line-height: 32px;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 12px;
|
||||||
|
border-bottom: 1px solid #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal .content {
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
.modal .bottomButtons {
|
||||||
|
display: grid;
|
||||||
|
border-top: 1px solid #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal .bottomButtons .bottomButton {
|
||||||
|
height: 40px;
|
||||||
|
line-height: 40px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 14px;
|
||||||
|
border-right: 1px solid #222;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.modal .bottomButtons .bottomButton:hover {
|
||||||
|
background: #222;
|
||||||
|
}
|
||||||
|
.modal .bottomButtons .bottomButton:last-child {
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
];
|
||||||
|
|
||||||
|
public render(): TemplateResult {
|
||||||
|
return html`
|
||||||
|
<style>
|
||||||
|
.modal .bottomButtons {
|
||||||
|
grid-template-columns: ${cssManager.cssGridColumns(this.menuOptions.length, 0)};
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div class="modalContainer" @click=${this.handleOutsideClick}>
|
||||||
|
<div class="modal">
|
||||||
|
<div class="heading">${this.heading}</div>
|
||||||
|
<div class="content">${this.content}</div>
|
||||||
|
<div class="bottomButtons">
|
||||||
|
${this.menuOptions.map(
|
||||||
|
(actionArg) => html`
|
||||||
|
<div class="bottomButton" @click=${() => {
|
||||||
|
actionArg.action(this);
|
||||||
|
}}>${actionArg.name}</div>
|
||||||
|
`
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
private windowLayer: DeesWindowLayer;
|
||||||
|
public async firstUpdated(_changedProperties: Map<string | number | symbol, unknown>) {
|
||||||
|
super.firstUpdated(_changedProperties);
|
||||||
|
const domtools = await this.domtoolsPromise;
|
||||||
|
await domtools.convenience.smartdelay.delayFor(30);
|
||||||
|
const modal = this.shadowRoot.querySelector('.modal');
|
||||||
|
modal.classList.add('show');
|
||||||
|
}
|
||||||
|
|
||||||
|
public async handleOutsideClick(eventArg: MouseEvent) {
|
||||||
|
eventArg.stopPropagation();
|
||||||
|
const modalContainer = this.shadowRoot.querySelector('.modalContainer');
|
||||||
|
if (eventArg.target === modalContainer) {
|
||||||
|
await this.destroy();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async destroy() {
|
||||||
|
const domtools = await this.domtoolsPromise;
|
||||||
|
const modal = this.shadowRoot.querySelector('.modal');
|
||||||
|
modal.classList.remove('show');
|
||||||
|
await domtools.convenience.smartdelay.delayFor(200);
|
||||||
|
document.body.removeChild(this);
|
||||||
|
await this.windowLayer.destroy();
|
||||||
|
}
|
||||||
|
}
|
@ -1,8 +1,8 @@
|
|||||||
import { DeesElement, property, html, customElement, domtools, TemplateResult } from '@designestate/dees-element';
|
import { DeesElement, property, html, customElement, domtools, type TemplateResult, type CSSResult, } from '@design.estate/dees-element';
|
||||||
|
|
||||||
import { Deferred } from '@pushrocks/smartpromise';
|
import { Deferred } from '@push.rocks/smartpromise';
|
||||||
|
|
||||||
import type pdfjsTypes from 'pdfjs-dist';
|
// import type pdfjsTypes from 'pdfjs-dist';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -32,7 +32,7 @@ export class DeesPdf extends DeesElement {
|
|||||||
return html`
|
return html`
|
||||||
<style>
|
<style>
|
||||||
:host {
|
:host {
|
||||||
font-family: 'Inter', sans-serif;
|
font-family: 'Mona Sans', 'Inter', sans-serif;
|
||||||
display: block;
|
display: block;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
@ -51,7 +51,7 @@ export class DeesPdf extends DeesElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static pdfJsReady: Promise<any>;
|
public static pdfJsReady: Promise<any>;
|
||||||
public static pdfjsLib: typeof pdfjsTypes;
|
public static pdfjsLib: any // typeof pdfjsTypes;
|
||||||
public async connectedCallback() {
|
public async connectedCallback() {
|
||||||
super.connectedCallback();
|
super.connectedCallback();
|
||||||
if (!DeesPdf.pdfJsReady) {
|
if (!DeesPdf.pdfJsReady) {
|
||||||
|
5
ts_web/elements/dees-simple-appdash.demo.ts
Normal file
5
ts_web/elements/dees-simple-appdash.demo.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { html } from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
export const demoFunc = () => html`
|
||||||
|
<dees-simple-appdash>Hello there</dees-simple-appdash>
|
||||||
|
`;
|
74
ts_web/elements/dees-simple-appdash.ts
Normal file
74
ts_web/elements/dees-simple-appdash.ts
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
import { demoFunc } from './dees-simple-appdash.demo.js';
|
||||||
|
import {
|
||||||
|
customElement,
|
||||||
|
html,
|
||||||
|
DeesElement,
|
||||||
|
property,
|
||||||
|
type TemplateResult,
|
||||||
|
cssManager,
|
||||||
|
css,
|
||||||
|
unsafeCSS,
|
||||||
|
type CSSResult,
|
||||||
|
state,
|
||||||
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface HTMLElementTagNameMap {
|
||||||
|
'dees-simple-appdash': DeesSimpleAppDash;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@customElement('dees-simple-appdash')
|
||||||
|
export class DeesSimpleAppDash extends DeesElement {
|
||||||
|
// STATIC
|
||||||
|
public static demo = demoFunc;
|
||||||
|
// INSTANCE
|
||||||
|
|
||||||
|
@property()
|
||||||
|
public name = 'Dees Simple Login';
|
||||||
|
|
||||||
|
public static styles = [
|
||||||
|
cssManager.defaultStyles,
|
||||||
|
css`
|
||||||
|
:host {
|
||||||
|
color: ${cssManager.bdTheme('#333', '#fff')};
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.appbar {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
height: 40px;
|
||||||
|
width: 100%;
|
||||||
|
background: ${cssManager.bdTheme('#eeeeeb', '#000')};
|
||||||
|
border-bottom: 1px solid ${cssManager.bdTheme('#ccc', '#333')};
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 40px;
|
||||||
|
font-family: 'Hubot Sans', 'Inter', sans-serif;
|
||||||
|
padding: 0px 16px;
|
||||||
|
}
|
||||||
|
.appcontent {
|
||||||
|
position: absolute;
|
||||||
|
top: 40px;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
background: ${cssManager.bdTheme('#eeeeeb', '#000')};
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
];
|
||||||
|
|
||||||
|
public render(): TemplateResult {
|
||||||
|
return html`
|
||||||
|
<div class="appbar">
|
||||||
|
configvault v1.2.3
|
||||||
|
</div>
|
||||||
|
<div class="appcontent">
|
||||||
|
<slot></slot>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async firstUpdated(_changedProperties): Promise<void> {
|
||||||
|
const domtools = await this.domtoolsPromise;
|
||||||
|
super.firstUpdated(_changedProperties);
|
||||||
|
}
|
||||||
|
}
|
3
ts_web/elements/dees-simple-login.demo.ts
Normal file
3
ts_web/elements/dees-simple-login.demo.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import { html } from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
export const demoFunc = () => html` <dees-simple-login name="someapp"> Hello there </dees-simple-login> `;
|
120
ts_web/elements/dees-simple-login.ts
Normal file
120
ts_web/elements/dees-simple-login.ts
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
import { demoFunc } from './dees-simple-login.demo.js';
|
||||||
|
|
||||||
|
import {
|
||||||
|
customElement,
|
||||||
|
html,
|
||||||
|
DeesElement,
|
||||||
|
property,
|
||||||
|
type TemplateResult,
|
||||||
|
cssManager,
|
||||||
|
css,
|
||||||
|
unsafeCSS,
|
||||||
|
type CSSResult,
|
||||||
|
state,
|
||||||
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface HTMLElementTagNameMap {
|
||||||
|
'dees-simple-login': DeesSimpleLogin;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@customElement('dees-simple-login')
|
||||||
|
export class DeesSimpleLogin extends DeesElement {
|
||||||
|
// STATIC
|
||||||
|
public static demo = demoFunc
|
||||||
|
// INSTANCE
|
||||||
|
|
||||||
|
@property()
|
||||||
|
public name = 'Dees Simple Login';
|
||||||
|
|
||||||
|
public static styles = [
|
||||||
|
cssManager.defaultStyles,
|
||||||
|
css`
|
||||||
|
:host {
|
||||||
|
color: ${cssManager.bdTheme('#333', '#fff')};
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.loginContainer {
|
||||||
|
position: absolute;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center; /* aligns horizontally */
|
||||||
|
align-items: center; /* aligns vertically */
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.login {
|
||||||
|
min-width: 320px;
|
||||||
|
min-height: 100px;
|
||||||
|
background: ${cssManager.bdTheme('#eeeeeb', '#111')};
|
||||||
|
box-shadow: ${cssManager.bdTheme('0px 1px 4px rgba(0,0,0,0.3)', 'none')};
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 24px;
|
||||||
|
transition: opacity 0.3s, transform 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.slotContainer {
|
||||||
|
opacity:0;
|
||||||
|
transition: opacity 0.3s, transform 0.3s;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
];
|
||||||
|
|
||||||
|
public render(): TemplateResult {
|
||||||
|
return html`
|
||||||
|
<div class="loginContainer">
|
||||||
|
<div class="login">
|
||||||
|
<dees-form>
|
||||||
|
<div class="header">Login to ${this.name}</div>
|
||||||
|
<dees-input-text key="username" label="username" required></dees-input-text>
|
||||||
|
<dees-input-text key="password" label="password" isPasswordBool required></dees-input-text>
|
||||||
|
<dees-form-submit disabled>login</dees-form-submit>
|
||||||
|
</dees-form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="slotContainer">
|
||||||
|
<slot></slot>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async firstUpdated(_changedProperties): Promise<void> {
|
||||||
|
const domtools = await this.domtoolsPromise;
|
||||||
|
super.firstUpdated(_changedProperties);
|
||||||
|
const form = this.shadowRoot.querySelector('dees-form');
|
||||||
|
await form.readyDeferred.promise;
|
||||||
|
const username = this.shadowRoot.querySelector('dees-input-text[label="username"]');
|
||||||
|
const password = this.shadowRoot.querySelector('dees-input-text[label="password"]');
|
||||||
|
const submit = this.shadowRoot.querySelector('dees-form-submit');
|
||||||
|
form.addEventListener('formData', (event: CustomEvent) => {
|
||||||
|
this.dispatchEvent(new CustomEvent('login', { detail: event.detail }));
|
||||||
|
// this.switchToSlottedContent();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* allows switching to slotted content
|
||||||
|
*/
|
||||||
|
public async switchToSlottedContent() {
|
||||||
|
const domtools = await this.domtoolsPromise;
|
||||||
|
const loginDiv: HTMLDivElement = this.shadowRoot.querySelector('.login');
|
||||||
|
const loginContainerDiv: HTMLDivElement = this.shadowRoot.querySelector('.loginContainer');
|
||||||
|
const slotContainerDiv: HTMLDivElement = this.shadowRoot.querySelector('.slotContainer');
|
||||||
|
loginDiv.style.opacity = '0';
|
||||||
|
loginDiv.style.transform = 'translateY(20px)';
|
||||||
|
loginContainerDiv.style.pointerEvents = 'none';
|
||||||
|
slotContainerDiv.style.transform = 'translateY(20px)';
|
||||||
|
await domtools.convenience.smartdelay.delayFor(300);
|
||||||
|
slotContainerDiv.style.opacity = '1';
|
||||||
|
slotContainerDiv.style.transform = 'translateY(0px)';
|
||||||
|
await domtools.convenience.smartdelay.delayFor(300);
|
||||||
|
slotContainerDiv.style.pointerEvents = 'all';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -3,13 +3,14 @@ import {
|
|||||||
html,
|
html,
|
||||||
DeesElement,
|
DeesElement,
|
||||||
property,
|
property,
|
||||||
TemplateResult,
|
type TemplateResult,
|
||||||
cssManager,
|
cssManager,
|
||||||
css,
|
css,
|
||||||
|
type CSSResult,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
} from '@designestate/dees-element';
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
|
@ -3,13 +3,14 @@ import {
|
|||||||
html,
|
html,
|
||||||
DeesElement,
|
DeesElement,
|
||||||
property,
|
property,
|
||||||
TemplateResult,
|
type TemplateResult,
|
||||||
cssManager,
|
cssManager,
|
||||||
css,
|
css,
|
||||||
|
type CSSResult,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
} from '@designestate/dees-element';
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
|
@ -4,12 +4,13 @@ import {
|
|||||||
html,
|
html,
|
||||||
css,
|
css,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
|
type CSSResult,
|
||||||
cssManager,
|
cssManager,
|
||||||
property,
|
property,
|
||||||
TemplateResult,
|
type TemplateResult,
|
||||||
} from '@designestate/dees-element';
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
export interface IStep {
|
export interface IStep {
|
||||||
title: string;
|
title: string;
|
||||||
@ -48,15 +49,15 @@ export class DeesStepper extends DeesElement {
|
|||||||
`,
|
`,
|
||||||
validationFunc: async (stepperArg, elementArg) => {
|
validationFunc: async (stepperArg, elementArg) => {
|
||||||
const deesForm = elementArg.querySelector('dees-form');
|
const deesForm = elementArg.querySelector('dees-form');
|
||||||
deesForm.addEventListener('formData', eventArg => {
|
deesForm.addEventListener('formData', (eventArg) => {
|
||||||
stepperArg.goNext();
|
stepperArg.goNext();
|
||||||
})
|
});
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Whats your mobile number?',
|
title: 'Whats your mobile number?',
|
||||||
content: html``,
|
content: html``,
|
||||||
}
|
},
|
||||||
] as IStep[]}
|
] as IStep[]}
|
||||||
></dees-stepper>
|
></dees-stepper>
|
||||||
`;
|
`;
|
||||||
@ -153,7 +154,7 @@ export class DeesStepper extends DeesElement {
|
|||||||
.step .title {
|
.step .title {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding-top: 50px;
|
padding-top: 50px;
|
||||||
font-family: Inter;
|
font-family: 'Mona Sans', 'Inter', sans-serif;
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
}
|
}
|
||||||
@ -195,22 +196,26 @@ export class DeesStepper extends DeesElement {
|
|||||||
return this.steps.findIndex((stepArg2) => stepArg === stepArg2);
|
return this.steps.findIndex((stepArg2) => stepArg === stepArg2);
|
||||||
};
|
};
|
||||||
|
|
||||||
public firstUpdated() {
|
public async firstUpdated() {
|
||||||
|
await this.domtoolsPromise;
|
||||||
|
await this.domtools.convenience.smartdelay.delayFor(0);
|
||||||
this.selectedStep = this.steps[0];
|
this.selectedStep = this.steps[0];
|
||||||
this.setScrollStatus();
|
this.setScrollStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
public updated() {
|
public async updated() {
|
||||||
this.setScrollStatus();
|
this.setScrollStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
public scroller: typeof domtools.plugins.SweetScroll.prototype;
|
public scroller: typeof domtools.plugins.SweetScroll.prototype;
|
||||||
|
|
||||||
public async setScrollStatus() {
|
public async setScrollStatus() {
|
||||||
await domtools.plugins.smartdelay.delayFor(50);
|
|
||||||
const stepperContainer: HTMLElement = this.shadowRoot.querySelector('.stepperContainer');
|
const stepperContainer: HTMLElement = this.shadowRoot.querySelector('.stepperContainer');
|
||||||
const firstStepElement: HTMLElement = this.shadowRoot.querySelector('.step');
|
const firstStepElement: HTMLElement = this.shadowRoot.querySelector('.step');
|
||||||
const selectedStepElement: HTMLElement = this.shadowRoot.querySelector('.selected');
|
const selectedStepElement: HTMLElement = this.shadowRoot.querySelector('.selected');
|
||||||
|
if (!selectedStepElement) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (!stepperContainer.style.paddingTop) {
|
if (!stepperContainer.style.paddingTop) {
|
||||||
stepperContainer.style.paddingTop = `${
|
stepperContainer.style.paddingTop = `${
|
||||||
stepperContainer.offsetHeight / 2 - selectedStepElement.offsetHeight / 2
|
stepperContainer.offsetHeight / 2 - selectedStepElement.offsetHeight / 2
|
||||||
|
113
ts_web/elements/dees-table.demo.ts
Normal file
113
ts_web/elements/dees-table.demo.ts
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
import { type ITableAction } from './dees-table.js';
|
||||||
|
import * as plugins from './plugins.js';
|
||||||
|
import { html } from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
export const demoFunc = () => html`
|
||||||
|
<style>
|
||||||
|
.demoWrapper {
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
padding: 20px;
|
||||||
|
background: #000000;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div class="demoWrapper">
|
||||||
|
<dees-table
|
||||||
|
heading1="Current Account Statement"
|
||||||
|
heading2="Bunq - Payment Account 2 - April 2021"
|
||||||
|
.data=${[
|
||||||
|
{
|
||||||
|
date: '2021-04-01',
|
||||||
|
amount: '2464.65 €',
|
||||||
|
description: 'Printing Paper (Office Supplies) - STAPLES BREMEN',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
date: '2021-04-02',
|
||||||
|
amount: '165.65 €',
|
||||||
|
description: 'Logitech Mouse (Hardware) - logi.com OnlineShop',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
date: '2021-04-03',
|
||||||
|
amount: '2999,00 €',
|
||||||
|
description: 'Macbook Pro 16inch (Hardware) - Apple.de OnlineShop',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
date: '2021-04-01',
|
||||||
|
amount: '2464.65 €',
|
||||||
|
description: 'Office-Supplies - STAPLES BREMEN',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
date: '2021-04-01',
|
||||||
|
amount: '2464.65 €',
|
||||||
|
description: 'Office-Supplies - STAPLES BREMEN',
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
dataName="transactions"
|
||||||
|
.dataActions="${[
|
||||||
|
{
|
||||||
|
name: 'upload',
|
||||||
|
iconName: 'bell',
|
||||||
|
useTableBehaviour: 'upload',
|
||||||
|
type: ['inRow'],
|
||||||
|
actionFunc: async (itemArg: any) => {
|
||||||
|
alert(itemArg.amount);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'visibility',
|
||||||
|
iconName: 'copy',
|
||||||
|
type: ['inRow'],
|
||||||
|
useTableBehaviour: 'preview',
|
||||||
|
actionFunc: async (itemArg: any) => {},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'create new',
|
||||||
|
iconName: 'instagram',
|
||||||
|
type: ['header'],
|
||||||
|
useTableBehaviour: 'preview',
|
||||||
|
actionFunc: async (itemArg: any) => {},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'to gallery',
|
||||||
|
iconName: 'message',
|
||||||
|
type: ['footer'],
|
||||||
|
useTableBehaviour: 'preview',
|
||||||
|
actionFunc: async (itemArg: any) => {},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'copy',
|
||||||
|
iconName: 'copySolid',
|
||||||
|
type: ['contextmenu', 'inRow'],
|
||||||
|
action: async () => {
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'edit (from demo)',
|
||||||
|
iconName: 'penToSquare',
|
||||||
|
type: ['contextmenu'],
|
||||||
|
action: async () => {
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'paste',
|
||||||
|
iconName: 'pasteSolid',
|
||||||
|
type: ['contextmenu'],
|
||||||
|
action: async () => {
|
||||||
|
return null;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
] as ITableAction[]}"
|
||||||
|
.displayFunction=${(itemArg) => {
|
||||||
|
return {
|
||||||
|
...itemArg,
|
||||||
|
onlyDisplayProp: 'onlyDisplay',
|
||||||
|
};
|
||||||
|
}}
|
||||||
|
>This is a slotted Text</dees-table
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
`;
|
@ -1,16 +1,23 @@
|
|||||||
|
import * as plugins from './plugins.js';
|
||||||
|
import { demoFunc } from './dees-table.demo.js';
|
||||||
import {
|
import {
|
||||||
customElement,
|
customElement,
|
||||||
html,
|
html,
|
||||||
DeesElement,
|
DeesElement,
|
||||||
property,
|
property,
|
||||||
TemplateResult,
|
type TemplateResult,
|
||||||
cssManager,
|
cssManager,
|
||||||
css,
|
css,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
|
type CSSResult,
|
||||||
state,
|
state,
|
||||||
} from '@designestate/dees-element';
|
resolveExec,
|
||||||
|
} from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import { DeesContextmenu } from './dees-contextmenu.js';
|
||||||
|
|
||||||
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
import { type TIconKey } from './dees-icon.js';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -18,75 +25,39 @@ declare global {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IDataAction<T = any> {
|
// interfaces
|
||||||
|
export interface ITableAction<T = any> {
|
||||||
name: string;
|
name: string;
|
||||||
iconName: string;
|
iconName: TIconKey;
|
||||||
|
/**
|
||||||
|
* the table behaviour to use for this action
|
||||||
|
* e.g. upload: allows to upload files to the table
|
||||||
|
*/
|
||||||
useTableBehaviour?: 'upload' | 'cancelUpload' | 'none';
|
useTableBehaviour?: 'upload' | 'cancelUpload' | 'none';
|
||||||
|
/**
|
||||||
|
* the type of the action
|
||||||
|
*/
|
||||||
|
type: ('inRow' | 'contextmenu' | 'footer' | 'header' | 'preview' | 'keyCombination')[];
|
||||||
|
/**
|
||||||
|
* allows to check if the action is relevant for the given item
|
||||||
|
* @param itemArg
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
actionRelevancyCheckFunc?: (itemArg: T) => boolean;
|
||||||
|
/**
|
||||||
|
* the actual action function implementation
|
||||||
|
* @param itemArg
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
actionFunc: (itemArg: T) => Promise<any>;
|
actionFunc: (itemArg: T) => Promise<any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type TDisplayFunction<T = any> = (itemArg: T) => object;
|
||||||
|
|
||||||
|
// the table implementation
|
||||||
@customElement('dees-table')
|
@customElement('dees-table')
|
||||||
export class DeesTable<T> extends DeesElement {
|
export class DeesTable<T> extends DeesElement {
|
||||||
public static demo = () => html`
|
public static demo = demoFunc;
|
||||||
<style>
|
|
||||||
.demoWrapper {
|
|
||||||
box-sizing: border-box;
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
padding: 60px;
|
|
||||||
background: #000000;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div class="demoWrapper">
|
|
||||||
<dees-table
|
|
||||||
heading1="Current Account Statement"
|
|
||||||
heading2="Bunq - Payment Account 2 - April 2021"
|
|
||||||
.data=${[
|
|
||||||
{
|
|
||||||
date: '2021-04-01',
|
|
||||||
amount: '2464.65 €',
|
|
||||||
description: 'Printing Paper (Office Supplies) - STAPLES BREMEN',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
date: '2021-04-02',
|
|
||||||
amount: '165.65 €',
|
|
||||||
description: 'Logitech Mouse (Hardware) - logi.com OnlineShop',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
date: '2021-04-03',
|
|
||||||
amount: '2999,00 €',
|
|
||||||
description: 'Macbook Pro 16inch (Hardware) - Apple.de OnlineShop',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
date: '2021-04-01',
|
|
||||||
amount: '2464.65 €',
|
|
||||||
description: 'Office-Supplies - STAPLES BREMEN',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
date: '2021-04-01',
|
|
||||||
amount: '2464.65 €',
|
|
||||||
description: 'Office-Supplies - STAPLES BREMEN',
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
.dataActions="${[{
|
|
||||||
name: 'upload',
|
|
||||||
iconName: 'upload',
|
|
||||||
useTableBehaviour: 'upload',
|
|
||||||
actionFunc: async (itemArg: any) => {
|
|
||||||
|
|
||||||
},
|
|
||||||
},{
|
|
||||||
name: 'visibility',
|
|
||||||
iconName: 'visibility',
|
|
||||||
useTableBehaviour: 'preview',
|
|
||||||
actionFunc: async (itemArg: any) => {
|
|
||||||
|
|
||||||
},
|
|
||||||
}] as IDataAction[]}"
|
|
||||||
>This is a slotted Text</dees-table>
|
|
||||||
</div>
|
|
||||||
`;
|
|
||||||
|
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
@property({
|
@property({
|
||||||
@ -104,26 +75,27 @@ export class DeesTable<T> extends DeesElement {
|
|||||||
})
|
})
|
||||||
public data: T[] = [];
|
public data: T[] = [];
|
||||||
|
|
||||||
|
@property({
|
||||||
|
type: String,
|
||||||
|
reflect: true,
|
||||||
|
})
|
||||||
|
public dataName: string;
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: Array,
|
type: Array,
|
||||||
})
|
})
|
||||||
public dataActions: IDataAction[] = [];
|
public dataActions: ITableAction[] = [];
|
||||||
|
|
||||||
|
@property({
|
||||||
|
attribute: false,
|
||||||
|
})
|
||||||
|
public displayFunction: TDisplayFunction = (itemArg: T) => itemArg as any;
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: Object,
|
type: Object,
|
||||||
})
|
})
|
||||||
public selectedDataRow: T;
|
public selectedDataRow: T;
|
||||||
|
|
||||||
@property({
|
|
||||||
type: String,
|
|
||||||
})
|
|
||||||
public type: 'normal' | 'highlighted' | 'discreet' | 'big' = 'normal';
|
|
||||||
|
|
||||||
@property({
|
|
||||||
type: String,
|
|
||||||
})
|
|
||||||
public status: 'normal' | 'pending' | 'success' | 'error' = 'normal';
|
|
||||||
|
|
||||||
public files: File[] = [];
|
public files: File[] = [];
|
||||||
public fileWeakMap = new WeakMap();
|
public fileWeakMap = new WeakMap();
|
||||||
|
|
||||||
@ -136,9 +108,9 @@ export class DeesTable<T> extends DeesElement {
|
|||||||
css`
|
css`
|
||||||
.mainbox {
|
.mainbox {
|
||||||
color: ${cssManager.bdTheme('#333', '#fff')};
|
color: ${cssManager.bdTheme('#333', '#fff')};
|
||||||
font-family: 'Inter';
|
font-family: 'Mona Sans', 'Inter', sans-serif;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 16px;
|
font-size: 14px;
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -149,11 +121,49 @@ export class DeesTable<T> extends DeesElement {
|
|||||||
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
|
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.headingContainer {
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading {
|
||||||
|
font-family: 'Hubot Sans', 'Inter', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading1 {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.heading2 {
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
|
|
||||||
.headingSeparation {
|
.headingSeparation {
|
||||||
margin-top: 7px;
|
margin-top: 7px;
|
||||||
border-bottom: 1px solid ${cssManager.bdTheme('#bcbcbc', '#bcbcbc')};
|
border-bottom: 1px solid ${cssManager.bdTheme('#bcbcbc', '#bcbcbc')};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.headerActions {
|
||||||
|
margin-left: auto;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.headerAction {
|
||||||
|
display: flex;
|
||||||
|
color: ${cssManager.bdTheme('#333', '#ccc')};
|
||||||
|
}
|
||||||
|
|
||||||
|
.headerAction:hover {
|
||||||
|
color: ${cssManager.bdTheme('#555', '#fff')};
|
||||||
|
}
|
||||||
|
|
||||||
|
.headerAction dees-icon {
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
table,
|
table,
|
||||||
.noDataSet {
|
.noDataSet {
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
@ -185,7 +195,7 @@ export class DeesTable<T> extends DeesElement {
|
|||||||
background: none;
|
background: none;
|
||||||
}
|
}
|
||||||
tr.selected .innerCellContainer {
|
tr.selected .innerCellContainer {
|
||||||
background: ${cssManager.bdTheme('#22222220', '#ffffff20')};
|
background: ${cssManager.bdTheme('#22222220', '#ffffff40')};
|
||||||
}
|
}
|
||||||
th {
|
th {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -227,14 +237,37 @@ export class DeesTable<T> extends DeesElement {
|
|||||||
background: ${cssManager.bdTheme('#CCC', '#111')};
|
background: ${cssManager.bdTheme('#CCC', '#111')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.tableStatistics {
|
.footer {
|
||||||
padding: 4px 16px;
|
font-size: 14px;
|
||||||
font-size: 12px;
|
|
||||||
color: ${cssManager.bdTheme('#111', '#ffffff90')};
|
color: ${cssManager.bdTheme('#111', '#ffffff90')};
|
||||||
background: ${cssManager.bdTheme('#eeeeeb', '#00000050')};
|
background: ${cssManager.bdTheme('#eeeeeb', '#00000050')};
|
||||||
margin: 16px -16px -16px -16px;
|
margin: 16px -16px -16px -16px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tableStatistics {
|
||||||
|
padding: 8px 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerActions {
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerActions .footerAction {
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 8px 16px;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerActions .footerAction:hover {
|
||||||
|
background: ${cssManager.bdTheme('#CCC', '#111')};
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerActions dees-icon {
|
||||||
|
display: flex;
|
||||||
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
@ -243,15 +276,44 @@ export class DeesTable<T> extends DeesElement {
|
|||||||
return html`
|
return html`
|
||||||
<div class="mainbox">
|
<div class="mainbox">
|
||||||
<!-- the heading part -->
|
<!-- the heading part -->
|
||||||
<div>${this.heading1}</div>
|
<div class="header">
|
||||||
<div>${this.heading2}</div>
|
<div class="headingContainer">
|
||||||
|
<div class="heading heading1">${this.heading1}</div>
|
||||||
|
<div class="heading heading2">${this.heading2}</div>
|
||||||
|
</div>
|
||||||
|
<div class="headerActions">
|
||||||
|
${resolveExec(async () => {
|
||||||
|
const resultArray: TemplateResult[] = [];
|
||||||
|
for (const action of this.dataActions) {
|
||||||
|
if (!action.type.includes('header')) continue;
|
||||||
|
resultArray.push(
|
||||||
|
html`<div
|
||||||
|
class="headerAction"
|
||||||
|
@click=${() => {
|
||||||
|
action.actionFunc(this.selectedDataRow);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
${action.iconName
|
||||||
|
? html`<dees-icon .iconSize=${14} .iconFA=${action.iconName}></dees-icon>
|
||||||
|
${action.name}`
|
||||||
|
: action.name}
|
||||||
|
</div>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return resultArray;
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="headingSeparation"></div>
|
<div class="headingSeparation"></div>
|
||||||
|
|
||||||
<!-- the actual table -->
|
<!-- the actual table -->
|
||||||
<style></style>
|
<style></style>
|
||||||
${this.data.length > 0
|
${this.data.length > 0
|
||||||
? (() => {
|
? (() => {
|
||||||
const headings: string[] = Object.keys(this.data[0]);
|
// Only pick up the keys from the first transformed data object
|
||||||
|
// as all data objects are assumed to have the same structure
|
||||||
|
const firstTransformedItem = this.displayFunction(this.data[0]);
|
||||||
|
const headings: string[] = Object.keys(firstTransformedItem);
|
||||||
return html`
|
return html`
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
@ -272,32 +334,42 @@ export class DeesTable<T> extends DeesElement {
|
|||||||
}
|
}
|
||||||
})()}
|
})()}
|
||||||
</tr>
|
</tr>
|
||||||
${this.data.map(
|
${this.data.map((itemArg) => {
|
||||||
(itemArg) => html`
|
const transformedItem = this.displayFunction(itemArg);
|
||||||
|
const getTr = (elementArg: HTMLElement): HTMLElement => {
|
||||||
|
if (elementArg.tagName === 'TR') {
|
||||||
|
return elementArg;
|
||||||
|
} else {
|
||||||
|
return getTr(elementArg.parentElement);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return html`
|
||||||
<tr
|
<tr
|
||||||
@click=${() => {
|
@click=${() => {
|
||||||
this.selectedDataRow = itemArg;
|
this.selectedDataRow = itemArg;
|
||||||
}}
|
}}
|
||||||
@dragenter=${async (eventArg: DragEvent) => {
|
@dragenter=${async (eventArg: DragEvent) => {
|
||||||
console.log((eventArg.target as HTMLElement).tagName)
|
|
||||||
console.log('dragenter');
|
|
||||||
eventArg.preventDefault();
|
eventArg.preventDefault();
|
||||||
eventArg.stopPropagation();
|
eventArg.stopPropagation();
|
||||||
(eventArg.target as HTMLElement).parentElement.style.background = '#800000';
|
const realTarget = getTr(eventArg.target as HTMLElement);
|
||||||
|
console.log('dragenter');
|
||||||
|
console.log(realTarget);
|
||||||
|
setTimeout(() => {
|
||||||
|
realTarget.style.background = 'green';
|
||||||
|
}, 0);
|
||||||
}}
|
}}
|
||||||
@dragleave=${async (eventArg: DragEvent) => {
|
@dragleave=${async (eventArg: DragEvent) => {
|
||||||
console.log((eventArg.target as HTMLElement).tagName)
|
|
||||||
console.log('dragleave');
|
|
||||||
eventArg.preventDefault();
|
eventArg.preventDefault();
|
||||||
eventArg.stopPropagation();
|
eventArg.stopPropagation();
|
||||||
(eventArg.target as HTMLElement).parentElement.style.background = 'none';
|
const realTarget = getTr(eventArg.target as HTMLElement);
|
||||||
|
realTarget.style.background = 'none';
|
||||||
}}
|
}}
|
||||||
@dragover=${async (eventArg: DragEvent) => {
|
@dragover=${async (eventArg: DragEvent) => {
|
||||||
eventArg.preventDefault();
|
eventArg.preventDefault();
|
||||||
}}
|
}}
|
||||||
@drop=${async (eventArg: DragEvent) => {
|
@drop=${async (eventArg: DragEvent) => {
|
||||||
eventArg.preventDefault();
|
eventArg.preventDefault();
|
||||||
const newFiles = []
|
const newFiles = [];
|
||||||
for (const file of Array.from(eventArg.dataTransfer.files)) {
|
for (const file of Array.from(eventArg.dataTransfer.files)) {
|
||||||
this.files.push(file);
|
this.files.push(file);
|
||||||
newFiles.push(file);
|
newFiles.push(file);
|
||||||
@ -305,17 +377,30 @@ export class DeesTable<T> extends DeesElement {
|
|||||||
}
|
}
|
||||||
const result: File[] = this.fileWeakMap.get(itemArg as object);
|
const result: File[] = this.fileWeakMap.get(itemArg as object);
|
||||||
if (!result) {
|
if (!result) {
|
||||||
this.fileWeakMap.set(itemArg as object, newFiles)
|
this.fileWeakMap.set(itemArg as object, newFiles);
|
||||||
} else {
|
} else {
|
||||||
result.push(...newFiles);
|
result.push(...newFiles);
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
@contextmenu=${async (eventArg: MouseEvent) => {
|
||||||
|
DeesContextmenu.openContextMenuWithOptions(eventArg, this.getActionsForType('contextmenu').map(action => {
|
||||||
|
const menuItem: plugins.tsclass.website.IMenuItem = {
|
||||||
|
name: action.name,
|
||||||
|
iconName: action.iconName as any,
|
||||||
|
action: async () => {
|
||||||
|
await action.actionFunc(itemArg);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return menuItem;
|
||||||
|
}));
|
||||||
|
}}
|
||||||
class="${itemArg === this.selectedDataRow ? 'selected' : ''}"
|
class="${itemArg === this.selectedDataRow ? 'selected' : ''}"
|
||||||
>
|
>
|
||||||
${headings.map(
|
${headings.map(
|
||||||
(headingArg) => html`
|
(headingArg) => html`
|
||||||
<td>
|
<td>
|
||||||
<div class="innerCellContainer">${itemArg[headingArg]}</div>
|
<div class="innerCellContainer">${transformedItem[headingArg]}</div>
|
||||||
</td>
|
</td>
|
||||||
`
|
`
|
||||||
)}
|
)}
|
||||||
@ -324,36 +409,71 @@ export class DeesTable<T> extends DeesElement {
|
|||||||
return html`
|
return html`
|
||||||
<td>
|
<td>
|
||||||
<div class="innerCellContainer">
|
<div class="innerCellContainer">
|
||||||
${(() => {
|
${this.getActionsForType('inRow').map(
|
||||||
const actions: TemplateResult[] = [];
|
(actionArg) => html`<div
|
||||||
for (const action of this.dataActions) {
|
class="action"
|
||||||
actions.push(html`<div class="action">${action.iconName ? html`
|
@click=${() => actionArg.actionFunc(itemArg)}
|
||||||
<dees-icon .iconName=${'upload_file'}></dees-icon>
|
>
|
||||||
` : action.name}</div>`)
|
${actionArg.iconName
|
||||||
}
|
? html`
|
||||||
return actions;
|
<dees-icon .iconFA=${actionArg.iconName}></dees-icon>
|
||||||
})()}
|
`
|
||||||
|
: actionArg.name}
|
||||||
|
</div>`
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
})()}
|
})()}
|
||||||
</tr>
|
</tr>
|
||||||
`
|
`;
|
||||||
)}
|
})}
|
||||||
</table>
|
</table>
|
||||||
`;
|
`;
|
||||||
})()
|
})()
|
||||||
: html` <div class="noDataSet">No data set!</div> `}
|
: html` <div class="noDataSet">No data set!</div> `}
|
||||||
<div class="tableStatistics">
|
<div class="footer">
|
||||||
${this.data.length} data rows (total) |
|
<div class="tableStatistics">
|
||||||
${this.selectedDataRow
|
${this.data.length} ${this.dataName || 'data rows'} (total) |
|
||||||
? html`Row ${this.data.indexOf(this.selectedDataRow) + 1} selected`
|
${this.selectedDataRow ? '# ' + `${this.data.indexOf(this.selectedDataRow) + 1}` : `No`}
|
||||||
: html`No row selected`}
|
selected
|
||||||
|
</div>
|
||||||
|
<div class="footerActions">
|
||||||
|
${resolveExec(async () => {
|
||||||
|
const resultArray: TemplateResult[] = [];
|
||||||
|
for (const action of this.dataActions) {
|
||||||
|
if (!action.type.includes('footer')) continue;
|
||||||
|
resultArray.push(
|
||||||
|
html`<div
|
||||||
|
class="footerAction"
|
||||||
|
@click=${() => {
|
||||||
|
action.actionFunc(this.selectedDataRow);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
${action.iconName
|
||||||
|
? html`<dees-icon .iconSize=${14} .iconFA=${action.iconName}></dees-icon>
|
||||||
|
${action.name}`
|
||||||
|
: action.name}
|
||||||
|
</div>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return resultArray;
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async firstUpdated() {}
|
public async firstUpdated() {}
|
||||||
|
|
||||||
|
getActionsForType(typeArg: ITableAction['type'][0]) {
|
||||||
|
const actions: ITableAction[] = [];
|
||||||
|
for (const action of this.dataActions) {
|
||||||
|
if (!action.type.includes(typeArg)) continue;
|
||||||
|
actions.push(action);
|
||||||
|
}
|
||||||
|
return actions;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { customElement, DeesElement, TemplateResult, html } from '@designestate/dees-element';
|
import { customElement, DeesElement, type TemplateResult, html, type CSSResult, } from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
|
@ -1 +1 @@
|
|||||||
import {} from '@designestate/dees-element';
|
import {} from '@design.estate/dees-element';
|
@ -1,10 +1,10 @@
|
|||||||
import { customElement, DeesElement, TemplateResult, html, property } from '@designestate/dees-element';
|
import { customElement, DeesElement, type TemplateResult, html, property, type CSSResult, } from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
|
|
||||||
import './dees-windowlayer';
|
import './dees-windowlayer';
|
||||||
import { css, cssManager } from '@designestate/dees-element';
|
import { css, cssManager } from '@design.estate/dees-element';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { customElement, DeesElement, TemplateResult, html, property } from '@designestate/dees-element';
|
import { customElement, DeesElement, type TemplateResult, html, property, type CSSResult, } from '@design.estate/dees-element';
|
||||||
|
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@design.estate/dees-domtools';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -13,6 +13,15 @@ export class DeesWindowLayer extends DeesElement {
|
|||||||
// STATIC
|
// STATIC
|
||||||
public static demo = () => html`<dees-windowlayer></dees-windowlayer>`;
|
public static demo = () => html`<dees-windowlayer></dees-windowlayer>`;
|
||||||
|
|
||||||
|
public static async createAndShow() {
|
||||||
|
const domtoolsInstance = domtools.DomTools.getGlobalDomToolsSync();
|
||||||
|
const windowLayer = new DeesWindowLayer();
|
||||||
|
document.body.append(windowLayer);
|
||||||
|
await domtoolsInstance.convenience.smartdelay.delayFor(0);
|
||||||
|
windowLayer.show();
|
||||||
|
return windowLayer;
|
||||||
|
}
|
||||||
|
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
@property({
|
@property({
|
||||||
type: Boolean
|
type: Boolean
|
||||||
@ -29,7 +38,7 @@ export class DeesWindowLayer extends DeesElement {
|
|||||||
${domtools.elementBasic.styles}
|
${domtools.elementBasic.styles}
|
||||||
<style>
|
<style>
|
||||||
.windowOverlay {
|
.windowOverlay {
|
||||||
transition: all 0.3s;
|
transition: all 0.2s;
|
||||||
will-change: transform;
|
will-change: transform;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
@ -82,4 +91,11 @@ export class DeesWindowLayer extends DeesElement {
|
|||||||
await domtools.convenience.smartdelay.delayFor(0);
|
await domtools.convenience.smartdelay.delayFor(0);
|
||||||
this.visible = false;
|
this.visible = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async destroy() {
|
||||||
|
const domtools = await this.domtoolsPromise;
|
||||||
|
await this.hide();
|
||||||
|
await domtools.convenience.smartdelay.delayFor(300);
|
||||||
|
this.remove();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
3
ts_web/elements/helperclasses/formcontroller.ts
Normal file
3
ts_web/elements/helperclasses/formcontroller.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export class FormController {
|
||||||
|
|
||||||
|
}
|
@ -2,8 +2,10 @@ export * from './dees-button-exit.js';
|
|||||||
export * from './dees-button.js';
|
export * from './dees-button.js';
|
||||||
export * from './dees-chips.js';
|
export * from './dees-chips.js';
|
||||||
export * from './dees-contextmenu.js';
|
export * from './dees-contextmenu.js';
|
||||||
export * from './dees-form.js';
|
export * from './dees-dataview-codebox.js';
|
||||||
|
export * from './dees-dataview-statusobject.js';
|
||||||
export * from './dees-form-submit.js';
|
export * from './dees-form-submit.js';
|
||||||
|
export * from './dees-form.js';
|
||||||
export * from './dees-icon.js';
|
export * from './dees-icon.js';
|
||||||
export * from './dees-input-checkbox.js';
|
export * from './dees-input-checkbox.js';
|
||||||
export * from './dees-input-dropdown.js';
|
export * from './dees-input-dropdown.js';
|
||||||
@ -12,7 +14,10 @@ export * from './dees-input-quantityselector.js';
|
|||||||
export * from './dees-input-radio.js';
|
export * from './dees-input-radio.js';
|
||||||
export * from './dees-input-text.js';
|
export * from './dees-input-text.js';
|
||||||
export * from './dees-mobilenavigation.js';
|
export * from './dees-mobilenavigation.js';
|
||||||
|
export * from './dees-modal.js';
|
||||||
export * from './dees-pdf.js';
|
export * from './dees-pdf.js';
|
||||||
|
export * from './dees-simple-appdash.js';
|
||||||
|
export * from './dees-simple-login.js';
|
||||||
export * from './dees-speechbubble.js';
|
export * from './dees-speechbubble.js';
|
||||||
export * from './dees-spinner.js';
|
export * from './dees-spinner.js';
|
||||||
export * from './dees-stepper.js';
|
export * from './dees-stepper.js';
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
// @push.rocks scope
|
||||||
|
import * as smartpromise from '@push.rocks/smartpromise';
|
||||||
|
|
||||||
|
export {
|
||||||
|
smartpromise,
|
||||||
|
}
|
||||||
|
|
||||||
|
// @tsclass scope
|
||||||
import * as tsclass from '@tsclass/tsclass';
|
import * as tsclass from '@tsclass/tsclass';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
@ -5,6 +5,10 @@
|
|||||||
"target": "ES2022",
|
"target": "ES2022",
|
||||||
"module": "ES2022",
|
"module": "ES2022",
|
||||||
"moduleResolution": "nodenext",
|
"moduleResolution": "nodenext",
|
||||||
"esModuleInterop": true
|
"esModuleInterop": true,
|
||||||
}
|
"verbatimModuleSyntax": true
|
||||||
|
},
|
||||||
|
"exclude": [
|
||||||
|
"dist_*/**/*.d.ts"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user