From ad03e031d27b445084b63d57c9e3ac3b77ed9a0b Mon Sep 17 00:00:00 2001 From: Harminder Virk Date: Thu, 24 Aug 2023 11:07:37 +0530 Subject: [PATCH] refactor: assign props values to the props instance --- src/component/props.ts | 8 ++++++++ tests/props.spec.ts | 29 +++++++++++++++-------------- 2 files changed, 23 insertions(+), 14 deletions(-) diff --git a/src/component/props.ts b/src/component/props.ts index e50e829..6dcb4d7 100644 --- a/src/component/props.ts +++ b/src/component/props.ts @@ -20,6 +20,14 @@ export class ComponentProps { constructor(values: Record) { this.#values = values + Object.assign(this, values) + } + + /** + * Create a typed instance of Component props with properties + */ + static create>(values: T): ComponentProps & T { + return new ComponentProps(values) as ComponentProps & T } /** diff --git a/tests/props.spec.ts b/tests/props.spec.ts index d8193ae..4913732 100644 --- a/tests/props.spec.ts +++ b/tests/props.spec.ts @@ -12,17 +12,18 @@ import { ComponentProps } from '../src/component/props.js' test.group('ComponentProps', () => { test('get all props', ({ assert }) => { - const props = new ComponentProps({ title: 'Hello' }) + const props = ComponentProps.create({ title: 'Hello' }) assert.deepEqual(props.all(), { title: 'Hello' }) }) test('get value for a given key', ({ assert }) => { - const props = new ComponentProps({ title: 'Hello' }) + const props = ComponentProps.create({ title: 'Hello' }) assert.equal(props.get('title'), 'Hello') + assert.equal(props.title, 'Hello') }) test('cherry pick values from the props', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ title: 'Hello', label: 'Hello world', actionText: 'Confirm', @@ -35,7 +36,7 @@ test.group('ComponentProps', () => { }) test('get values except for the defined keys from the props', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ title: 'Hello', label: 'Hello world', actionText: 'Confirm', @@ -47,7 +48,7 @@ test.group('ComponentProps', () => { }) test('serialize props to html attributes', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ class: ['foo', 'bar'], onclick: 'foo = bar', }) @@ -55,7 +56,7 @@ test.group('ComponentProps', () => { }) test('serialize by merging custom properties', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ class: ['foo', 'bar'], onclick: 'foo = bar', }) @@ -66,7 +67,7 @@ test.group('ComponentProps', () => { }) test('serialize specific keys to html attributes', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ class: ['foo', 'bar'], onclick: 'foo = bar', }) @@ -74,7 +75,7 @@ test.group('ComponentProps', () => { }) test('serialize specific keys and merge custom properties', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ class: ['foo', 'bar'], onclick: 'foo = bar', }) @@ -82,7 +83,7 @@ test.group('ComponentProps', () => { }) test('serialize all except defined keys to html attributes', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ class: ['foo', 'bar'], onclick: 'foo = bar', }) @@ -91,7 +92,7 @@ test.group('ComponentProps', () => { }) test('serialize specific keys and merge custom properties', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ class: ['foo', 'bar'], onclick: 'foo = bar', }) @@ -103,7 +104,7 @@ test.group('ComponentProps', () => { }) test('merge default and user supplied classes', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ class: ['foo', 'bar'], onclick: 'foo = bar', }) @@ -118,7 +119,7 @@ test.group('ComponentProps', () => { }) test('merge default and user supplied classes as object', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ class: [ 'foo', { @@ -142,7 +143,7 @@ test.group('ComponentProps', () => { }) test('mergeUnless a conditional is true', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ class: [ 'foo', { @@ -167,7 +168,7 @@ test.group('ComponentProps', () => { }) test('mergeIf a conditional is true', ({ assert }) => { - const props = new ComponentProps({ + const props = ComponentProps.create({ class: [ 'foo', {