Skip to content

Commit 72fc09a

Browse files
committed
feat: autofix, ensure all items have an id field
1 parent 538cda7 commit 72fc09a

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

src/service.test.ts

+12-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ParsedUrlQuery } from 'querystring'
66

77
import { Data, Item, PaginatedItems, Service } from './service.js'
88

9-
const defaultData = { posts: [] }
9+
const defaultData = { posts: [], comments: [], object: {} }
1010
const adapter = new Memory<Data>()
1111
const db = new Low<Data>(adapter, defaultData)
1212
const service = new Service(db)
@@ -62,6 +62,17 @@ type Test = {
6262
error?: Error
6363
}
6464

65+
await test('constructor', () => {
66+
const defaultData = { posts: [{ id: '1' }, {}], object: {} } satisfies Data
67+
const db = new Low<Data>(adapter, defaultData)
68+
new Service(db)
69+
if (Array.isArray(db.data['posts'])) {
70+
const id = db.data['posts']?.at(1)?.['id']
71+
assert.ok(id instanceof String, 'id should be a string')
72+
assert.ok(id.length > 0, 'id should not be empty')
73+
}
74+
})
75+
6576
await test('findById', () => {
6677
reset()
6778
if (!Array.isArray(db.data?.[POSTS]))

src/service.ts

+26-1
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,35 @@ function deleteDependents(db: Low<Data>, name: string, dependents: string[]) {
105105
})
106106
}
107107

108+
function randomId(): string {
109+
return randomBytes(2).toString('hex')
110+
}
111+
112+
function ensureItemsHaveIds(items: Item[]): Item[] {
113+
return items.map((item) => {
114+
if (item['id'] === undefined) {
115+
return { ...item, id: randomId() }
116+
}
117+
return item
118+
})
119+
}
120+
121+
// Ensure all items have an id
122+
function ensureAllItemsHaveIds(data: Data): Data {
123+
return Object.entries(data).reduce(
124+
(acc, [key, value]) => ({
125+
...acc,
126+
[key]: Array.isArray(value) ? ensureItemsHaveIds(value) : value,
127+
}),
128+
{},
129+
)
130+
}
131+
108132
export class Service {
109133
#db: Low<Data>
110134

111135
constructor(db: Low<Data>) {
136+
db.data = ensureAllItemsHaveIds(db.data)
112137
this.#db = db
113138
}
114139

@@ -317,7 +342,7 @@ export class Service {
317342
const items = this.#get(name)
318343
if (items === undefined || !Array.isArray(items)) return
319344

320-
const item = { id: randomBytes(2).toString('hex'), ...data }
345+
const item = { id: randomId(), ...data }
321346
items.push(item)
322347

323348
await this.#db.write()

0 commit comments

Comments
 (0)