-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreateRelationColumn.test.tsx
More file actions
253 lines (229 loc) · 7.38 KB
/
createRelationColumn.test.tsx
File metadata and controls
253 lines (229 loc) · 7.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/**
* Tests for createRelationColumn factory:
* - Produces ColumnLeafProps with correct metadata (relatedEntityName, filterName, etc.)
* - renderFilter is set when uiConfig provides it
* - renderCellWrapper is set when uiConfig provides it
* - filter defaults to enabled
* - filter can be disabled
* - children render function flows through to renderFilterItem and renderCell
*/
import '../../setup'
import { describe, test, expect } from 'bun:test'
import React from 'react'
import {
createRelationColumn,
hasOneCellConfig,
hasManyCellConfig,
hasOneColumnDef,
hasManyColumnDef,
extractColumnLeaves,
type RelationFilterContext,
type RelationCellWrapperContext,
} from '@contember/bindx-dataview'
import {
defineSchema,
scalar,
hasOne,
hasMany,
createCollectorProxy,
} from '@contember/bindx-react'
import { SelectionScope, SchemaRegistry } from '@contember/bindx'
// ============================================================================
// Schema
// ============================================================================
interface Organization {
id: string
name: string
}
interface Tag {
id: string
label: string
}
interface Project {
id: string
name: string
organization: Organization | null
tags: Tag[]
}
interface TestSchema {
Project: Project
Organization: Organization
Tag: Tag
}
const testSchema = defineSchema<TestSchema>({
entities: {
Project: {
fields: {
id: scalar(),
name: scalar(),
organization: hasOne('Organization'),
tags: hasMany('Tag'),
},
},
Organization: {
fields: {
id: scalar(),
name: scalar(),
},
},
Tag: {
fields: {
id: scalar(),
label: scalar(),
},
},
},
})
const schemaRegistry = new SchemaRegistry(testSchema)
function createProjectProxy() {
const scope = new SelectionScope()
return createCollectorProxy<Project>(scope, 'Project', schemaRegistry)
}
// ============================================================================
// HasOne Column Tests
// ============================================================================
describe('createRelationColumn — hasOne', () => {
const HeadlessHasOneColumn = createRelationColumn(hasOneColumnDef, hasOneCellConfig)
test('produces leaf with correct metadata', () => {
const proxy = createProjectProxy()
const jsx = (
<HeadlessHasOneColumn field={proxy.organization!} header="Org">
{(org: any) => org.name.value}
</HeadlessHasOneColumn>
)
const leaves = extractColumnLeaves(jsx)
expect(leaves).toHaveLength(1)
const leaf = leaves[0]!
expect(leaf.fieldName).toBe('organization')
expect(leaf.columnType).toBe('hasOne')
expect(leaf.relatedEntityName).toBe('Organization')
expect(leaf.filterName).toBe('organization')
expect(leaf.header).toBe('Org')
expect(leaf.filterHandler).toBeDefined()
expect(leaf.renderFilterItem).toBeTypeOf('function')
expect(leaf.renderCell).toBeTypeOf('function')
expect(leaf.collectSelection).toBeTypeOf('function')
})
test('filter is enabled by default', () => {
const proxy = createProjectProxy()
const jsx = (
<HeadlessHasOneColumn field={proxy.organization!}>
{(org: any) => org.name.value}
</HeadlessHasOneColumn>
)
const leaf = extractColumnLeaves(jsx)[0]!
expect(leaf.filterName).toBe('organization')
expect(leaf.filterHandler).toBeDefined()
})
test('filter can be disabled', () => {
const proxy = createProjectProxy()
const jsx = (
<HeadlessHasOneColumn field={proxy.organization!} filter={false}>
{(org: any) => org.name.value}
</HeadlessHasOneColumn>
)
const leaf = extractColumnLeaves(jsx)[0]!
expect(leaf.filterName).toBeNull()
expect(leaf.filterHandler).toBeUndefined()
})
test('headless column has no renderFilter', () => {
const proxy = createProjectProxy()
const jsx = (
<HeadlessHasOneColumn field={proxy.organization!}>
{(org: any) => org.name.value}
</HeadlessHasOneColumn>
)
const leaf = extractColumnLeaves(jsx)[0]!
expect(leaf.renderFilter).toBeUndefined()
})
test('UI config renderFilter is set on leaf', () => {
const mockRenderFilter = (ctx: RelationFilterContext) => <div>filter for {ctx.entityName}</div>
const StyledHasOneColumn = createRelationColumn(hasOneColumnDef, hasOneCellConfig, {
renderFilter: mockRenderFilter,
})
const proxy = createProjectProxy()
const jsx = (
<StyledHasOneColumn field={proxy.organization!}>
{(org: any) => org.name.value}
</StyledHasOneColumn>
)
const leaf = extractColumnLeaves(jsx)[0]!
expect(leaf.renderFilter).toBeTypeOf('function')
})
test('UI config renderCellWrapper is set on leaf', () => {
const mockWrapper = (ctx: RelationCellWrapperContext) => <span>{ctx.content}</span>
const StyledHasOneColumn = createRelationColumn(hasOneColumnDef, hasOneCellConfig, {
renderCellWrapper: mockWrapper,
})
const proxy = createProjectProxy()
const jsx = (
<StyledHasOneColumn field={proxy.organization!}>
{(org: any) => org.name.value}
</StyledHasOneColumn>
)
const leaf = extractColumnLeaves(jsx)[0]!
expect(leaf.renderCellWrapper).toBeTypeOf('function')
})
test('user renderCellWrapper prop overrides UI config', () => {
const uiWrapper = (ctx: RelationCellWrapperContext) => <span>ui</span>
const userWrapper = (_content: React.ReactNode, _item: any) => <span>user</span>
const StyledHasOneColumn = createRelationColumn(hasOneColumnDef, hasOneCellConfig, {
renderCellWrapper: uiWrapper,
})
const proxy = createProjectProxy()
const jsx = (
<StyledHasOneColumn field={proxy.organization!} renderCellWrapper={userWrapper}>
{(org: any) => org.name.value}
</StyledHasOneColumn>
)
const leaf = extractColumnLeaves(jsx)[0]!
expect(leaf.renderCellWrapper).toBe(userWrapper)
})
test('relatedSelection captures fields from children', () => {
const proxy = createProjectProxy()
const jsx = (
<HeadlessHasOneColumn field={proxy.organization!}>
{(org: any) => org.name.value}
</HeadlessHasOneColumn>
)
const leaf = extractColumnLeaves(jsx)[0]!
expect(leaf.relatedSelection).toBeDefined()
expect(leaf.relatedSelection?.fields.has('name')).toBe(true)
})
})
// ============================================================================
// HasMany Column Tests
// ============================================================================
describe('createRelationColumn — hasMany', () => {
const HeadlessHasManyColumn = createRelationColumn(hasManyColumnDef, hasManyCellConfig)
test('produces leaf with correct metadata', () => {
const proxy = createProjectProxy()
const jsx = (
<HeadlessHasManyColumn field={proxy.tags}>
{(tag: any) => tag.label.value}
</HeadlessHasManyColumn>
)
const leaves = extractColumnLeaves(jsx)
expect(leaves).toHaveLength(1)
const leaf = leaves[0]!
expect(leaf.fieldName).toBe('tags')
expect(leaf.columnType).toBe('hasMany')
expect(leaf.relatedEntityName).toBe('Tag')
expect(leaf.filterName).toBe('tags')
expect(leaf.filterHandler).toBeDefined()
})
test('UI config renderFilter is set on leaf', () => {
const mockRenderFilter = (ctx: RelationFilterContext) => <div>filter</div>
const StyledHasManyColumn = createRelationColumn(hasManyColumnDef, hasManyCellConfig, {
renderFilter: mockRenderFilter,
})
const proxy = createProjectProxy()
const jsx = (
<StyledHasManyColumn field={proxy.tags}>
{(tag: any) => tag.label.value}
</StyledHasManyColumn>
)
const leaf = extractColumnLeaves(jsx)[0]!
expect(leaf.renderFilter).toBeTypeOf('function')
})
})