diff --git a/packages/dapp-kit-ui/index.html b/packages/dapp-kit-ui/index.html index 4fd8dca5..136551b8 100644 --- a/packages/dapp-kit-ui/index.html +++ b/packages/dapp-kit-ui/index.html @@ -9,7 +9,7 @@ diff --git a/packages/dapp-kit-ui/package.json b/packages/dapp-kit-ui/package.json index 87a5c91f..cfe9e5f2 100644 --- a/packages/dapp-kit-ui/package.json +++ b/packages/dapp-kit-ui/package.json @@ -17,7 +17,7 @@ "scripts": { "build": "tsup", "clean": "rm -rf dist .turbo", - "dev": "parcel --no-cache index.html", + "dev": "rm -rf ../../.parcel-cache; parcel --no-cache index.html", "format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write", "lint": "tsc --noEmit && eslint src --ext .js,.jsx,.ts,.tsx", "purge": "yarn clean && rm -rf node_modules", diff --git a/packages/dapp-kit-ui/src/assets/icons/check.ts b/packages/dapp-kit-ui/src/assets/icons/check.ts new file mode 100644 index 00000000..b82e7ec1 --- /dev/null +++ b/packages/dapp-kit-ui/src/assets/icons/check.ts @@ -0,0 +1,9 @@ +import { html } from 'lit'; + +export const CheckSvg = html` + + + +`; diff --git a/packages/dapp-kit-ui/src/assets/icons/copy.ts b/packages/dapp-kit-ui/src/assets/icons/copy.ts index 7e60a386..c7604f44 100644 --- a/packages/dapp-kit-ui/src/assets/icons/copy.ts +++ b/packages/dapp-kit-ui/src/assets/icons/copy.ts @@ -1,17 +1,26 @@ import { html, svg } from 'lit'; export const CopySvg = svg` - + `; export const LightCopySvg = html` - + ${CopySvg} `; export const DarkCopySvg = html` - + ${CopySvg} `; diff --git a/packages/dapp-kit-ui/src/assets/icons/index.ts b/packages/dapp-kit-ui/src/assets/icons/index.ts index 59b757cc..da2a86cc 100644 --- a/packages/dapp-kit-ui/src/assets/icons/index.ts +++ b/packages/dapp-kit-ui/src/assets/icons/index.ts @@ -1,3 +1,4 @@ export * from './close'; export * from './chevron-left'; export * from './copy'; +export * from './check'; diff --git a/packages/dapp-kit-ui/src/components/base/vwk-base-modal/index.ts b/packages/dapp-kit-ui/src/components/base/vwk-base-modal/index.ts index 5ba42946..04f08872 100644 --- a/packages/dapp-kit-ui/src/components/base/vwk-base-modal/index.ts +++ b/packages/dapp-kit-ui/src/components/base/vwk-base-modal/index.ts @@ -1,6 +1,6 @@ import type { TemplateResult } from 'lit'; -import { LitElement, css, html } from 'lit'; -import { customElement, property } from 'lit/decorators.js'; +import { css, html, LitElement } from 'lit'; +import { customElement, property, query } from 'lit/decorators.js'; import { Breakpoint, Colors } from '../../../constants'; import type { Theme, ThemeMode } from '../../../constants/theme'; @@ -17,11 +17,23 @@ export class Modal extends LitElement { width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); + opacity: 1; + transition: opacity 0.3s; + } + .modal-container.hidden { + opacity: 0; + pointer-events: none; } .modal { position: absolute; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); + transition: height 0.2s, opacity 0.3s; + overflow: hidden; + opacity: 1; + } + .modal-container.hidden .modal { + opacity: 0; } .modal.LIGHT { @@ -55,6 +67,30 @@ export class Modal extends LitElement { } } `; + + changeHeightOnResize = (): void => { + if (!this.modalSubContainer) { + return; + } + this.modalHeight = this.modalSubContainer.clientHeight; + new ResizeObserver(() => { + this.modalHeight = this.modalSubContainer?.clientHeight ?? 0; + }).observe(this.modalSubContainer); + }; + + override connectedCallback(): void { + super.connectedCallback(); + addEventListener('load', this.changeHeightOnResize); + } + override disconnectedCallback(): void { + super.disconnectedCallback(); + window.removeEventListener('load', this.changeHeightOnResize); + } + + @query('.modal-sub-container') + modalSubContainer?: Element; + @property() + modalHeight?: number; @property({ type: Boolean }) open = false; @property() @@ -70,14 +106,21 @@ export class Modal extends LitElement { }; override render(): TemplateResult { - if (!this.open) return html``; return html` - @@ -105,6 +151,10 @@ export class WalletConnectQrCode extends LitElement { private onCopy = async (): Promise => { await navigator.clipboard.writeText(this.walletConnectQRcode || ''); + this.showCopiedIcon = true; + setTimeout(() => { + this.showCopiedIcon = false; + }, 3000); }; private svgWCQrCode(uri: string): TemplateResult { diff --git a/packages/dapp-kit-ui/test/listeners.test.ts b/packages/dapp-kit-ui/test/listeners.test.ts new file mode 100644 index 00000000..e0d55d37 --- /dev/null +++ b/packages/dapp-kit-ui/test/listeners.test.ts @@ -0,0 +1,24 @@ +import { vi } from 'vitest'; +import { addResizeListeners } from '../src/utils/listeners'; // Replace 'yourModule' with the actual module path + +describe('addResizeListeners', () => { + it('should call the callback when the window loads', () => { + const callback = vi.fn(); + addResizeListeners(callback); + + // Simulate a 'load' event on the window + window.dispatchEvent(new Event('load')); + + expect(callback).toHaveBeenCalled(); + }); + + it('should call the callback when the window resizes', () => { + const callback = vi.fn(); + addResizeListeners(callback); + + // Simulate a 'resize' event on the window + window.dispatchEvent(new Event('resize')); + + expect(callback).toHaveBeenCalled(); + }); +}); diff --git a/packages/dapp-kit-ui/tsconfig.json b/packages/dapp-kit-ui/tsconfig.json index 49edcff3..17cd689c 100644 --- a/packages/dapp-kit-ui/tsconfig.json +++ b/packages/dapp-kit-ui/tsconfig.json @@ -4,6 +4,6 @@ "target": "es2021", "experimentalDecorators": true }, - "include": ["src/**/*.ts"], + "include": ["src/**/*.ts", "test/listeners.test.ts"], "exclude": [] }