From 3ff4387c4991642365925653ecb2b55fb93d96cd Mon Sep 17 00:00:00 2001 From: Richard Herman Date: Thu, 7 Nov 2024 17:41:43 +0000 Subject: [PATCH] feat: add text count --- src/ui/components/text-field.ts | 102 ++++++++++++++++++++++---------- 1 file changed, 71 insertions(+), 31 deletions(-) diff --git a/src/ui/components/text-field.ts b/src/ui/components/text-field.ts index eea62cf..0d6ec3d 100644 --- a/src/ui/components/text-field.ts +++ b/src/ui/components/text-field.ts @@ -17,19 +17,44 @@ export class SDTextFieldElement extends Input(LitElement) { public static styles = [ super.styles ?? [], css` - input { + .container { + align-items: center; background-color: var(--color-surface); - border: none; border-radius: var(--rounding-m); + box-sizing: border-box; + display: flex; + gap: var(--size-xs); + width: 240px; + + &:has(input:focus), + &:has(input:invalid) { + box-shadow: var(--highlight-box-shadow); + outline-offset: var(--highlight-outline-offset); + } + + &:has(input:focus), + &:has(input:focus:invalid) { + outline: var(--highlight-outline--focus); + } + + &:has(input:invalid) { + outline: var(--highlight-outline--invalid); + } + } + + input { + background-color: transparent; + border: none; color: var(--color-content-primary); + flex: 1 1 auto; font-family: var(--typography-body-m-family); font-size: var(--typography-body-m-size); font-weight: var(--typography-body-m-weight); height: var(--size-2xl); min-height: var(--size-2xl); outline: none; - padding: 0 var(--space-xs); - width: 224px; + padding: 0 0 0 var(--size-xs); + width: 100%; &::placeholder { color: var(--color-content-secondary); @@ -39,21 +64,21 @@ export class SDTextFieldElement extends Input(LitElement) { &:disabled::placeholder { color: var(--color-content-disabled); } + } - &:focus, - &:invalid { - box-shadow: var(--highlight-box-shadow); - outline-offset: var(--highlight-outline-offset); - } + .counter { + color: var(--color-content-secondary); + flex: 1 1 auto; + padding-right: var(--size-xs); + user-select: none; - &:focus, - &:focus:invalid { - outline: var(--highlight-outline--focus); + & span { + margin: 0 var(--size-3xs); } + } - &:invalid { - outline: var(--highlight-outline--invalid); - } + input:not(:disabled) + .counter { + cursor: text; } `, ]; @@ -114,24 +139,39 @@ export class SDTextFieldElement extends Input(LitElement) { */ public override render(): TemplateResult { return html` - { - this.#userHasInteracted = true; - }} - @input=${(ev: HTMLInputEvent): void => { - this.value = ev.target.value; - }} - /> + `; } + + /** + * Gets the counter text, displayed in the lower right corner of the text area. + * @returns The counter element. + */ + #getCounter(): TemplateResult | undefined { + if (this.maxLength) { + return html`${this.value?.length ?? 0}/${this.maxLength}`; + } + + return undefined; + } } declare global {