-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathJsonaTypes.ts
202 lines (169 loc) · 6.18 KB
/
JsonaTypes.ts
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
type AtLeastOneProperty<T, U = {[K in keyof T]: Pick<T, K> }> = Partial<T> & U[keyof U];
export interface IModelPropertiesMapper {
getId(model: TJsonaModel): string | number;
getType(model: TJsonaModel): string;
getAttributes(model: TJsonaModel): TAnyKeyValueObject;
getRelationships(model: TJsonaModel): TJsonaRelationships;
}
export interface IJsonPropertiesMapper {
createModel(type: string): TJsonaModel;
setId(model: TJsonaModel, id: string | number): void;
setAttributes(model: TJsonaModel, attributes: TAnyKeyValueObject): void;
setMeta(model: TJsonaModel, meta: TAnyKeyValueObject): void;
setLinks(model: TJsonaModel, links: TAnyKeyValueObject): void;
setResourceIdObjMeta(model: TJsonaModel, meta: unknown): void;
setRelationships(model: TJsonaModel, relationships: TJsonaRelationships): void;
setRelationshipLinks(parentModel: TJsonaModel, relationName: string, links: TJsonApiLinks): void;
setRelationshipMeta(parentModel: TJsonaModel, relationName: string, meta: TAnyKeyValueObject): void;
}
export interface IJsonaModelBuilder {
build(): TJsonaModel | Array<TJsonaModel>;
}
export interface IDeserializeCache {
getCachedModel(data: TJsonApiData, resourceIdObject: TResourceIdObj): TJsonaModel | null;
handleModel(model: TJsonaModel, data: TJsonApiData, resourceIdObject: TResourceIdObj): void;
createCacheKey(data: TJsonApiData, resourceIdObject: TResourceIdObj): string;
}
export interface IDeserializeCacheConstructor {
new(): IDeserializeCache;
}
export interface IJsonaDeserializer extends IJsonaModelBuilder {
setDeserializeCache(dc: IDeserializeCache): void;
setPropertiesMapper(pm: IJsonPropertiesMapper): void;
setJsonParsedObject(body: TJsonApiBody): void;
buildModelByData(data: TJsonApiData): TJsonaModel;
buildRelationsByData(data: TJsonApiData, model: TJsonaModel): TJsonaRelationships | null;
buildDataFromIncludedOrData(id: string | number, type: string): TJsonApiData;
buildDataInObject(): { [key: string]: TJsonApiData };
buildIncludedInObject(): { [key: string]: TJsonApiData };
}
export interface IJsonDeserializerConstructor {
new(propertiesMapper: IJsonPropertiesMapper, deserializeCache: IDeserializeCache, options?: TDeserializeOptions): IJsonaDeserializer;
}
export interface IModelsSerializer {
setPropertiesMapper(propertiesMapper: IModelPropertiesMapper): void;
setStuff(stuff: TJsonaModel | TJsonaModel[]): void;
setIncludeNames(includeNames: TJsonaDenormalizedIncludeNames | TJsonaNormalizedIncludeNamesTree): void;
build(): TJsonApiBody;
buildDataByModel(model: TJsonaModel | null): TJsonApiData;
buildRelationshipsByModel(model: TJsonaModel): TJsonApiRelationships;
buildIncludedByModel(
model: TJsonaModel,
includeTree: TJsonaNormalizedIncludeNamesTree,
builtIncluded: TJsonaUniqueIncluded
): void;
buildIncludedItem(
relationModel: TJsonaModel,
subIncludeTree: TJsonaNormalizedIncludeNamesTree,
builtIncluded: TJsonaUniqueIncluded
): void;
}
export interface IModelsSerializerConstructor {
new(propertiesMapper?: IModelPropertiesMapper): IModelsSerializer;
}
export type TDeserializeOptions = {
preferNestedDataFromData?: boolean,
}
export type TAnyKeyValueObject = {
[key: string]: any
};
export type TJsonApiBody = {
data?: TJsonApiData | TJsonApiData[];
included?: Array<TJsonApiData>;
};
export type TJsonApiData = {
type: string;
id?: string|number;
attributes?: TAnyKeyValueObject;
meta?: TAnyKeyValueObject;
links?: TJsonApiLinks;
relationships?: TJsonApiRelationships;
};
export type TJsonApiRelationshipData = {
type: string;
id: string | number;
meta?: TAnyKeyValueObject
[propertyName: string]: any
};
type FullTJsonApiRelation = {
data: TJsonApiRelationshipData | Array<TJsonApiRelationshipData> | null
links: TJsonApiLinks
meta: TAnyKeyValueObject
}
export type TJsonApiRelation = AtLeastOneProperty<FullTJsonApiRelation>;
type LinkKey = "self" | "related" | "first" | "prev" | "next" | "last";
// https://jsonapi.org/format/#document-links
type LinkObjectMember = string | { href?: string; meta?: TAnyKeyValueObject } | null;
export type TJsonApiLinks = {
[key in LinkKey]?: LinkObjectMember;
};
export type TJsonApiRelationships = {
[relationName: string]: TJsonApiRelation
};
export type TJsonaUniqueIncluded = {
[entityTypeId: string]: TJsonApiData
};
/**
* TJsonaDenormalizedIncludeNames example:
* 'user.town.country'
*/
export type TJsonaIncludeNamesChain = string;
/**
* TJsonaDenormalizedIncludeNames example:
* ['user', 'user.town', 'user.town.country', 'comments', 'comments.author']
*/
export type TJsonaDenormalizedIncludeNames = Array<TJsonaIncludeNamesChain>;
/**
* TJsonaNormalizedIncludeNamesTree example:
* {
* user: {
* town: {
* country: null
* }
* comments: {
* author: null
* }
*/
export type TJsonaNormalizedIncludeNamesTree = {
[relationName: string]: null | TJsonaNormalizedIncludeNamesTree
};
export type TJsonaModel = {
[propertyName: string]: any
};
export type TResourceIdObj = TJsonApiRelationshipData & {
type: string,
};
export type TJsonaRelationshipBuild = () => (TJsonaModel | Array<TJsonaModel>);
export type TJsonaRelationships = {
[relationName: string]: TJsonaRelationshipBuild | TJsonaModel | Array<TJsonaModel>
};
export type TReduxObject = {
[entityType: string]: {
[entityId: string]: TReduxObjectModel
}
};
export type TReduxObjectModel = {
id: number | string,
attributes?: TAnyKeyValueObject,
relationships?: TJsonApiRelationships
};
export type TReduxObjectRelation = {
data: {
// '1' or something like '1,12,44' for one-to-many relationships, ['1', '12', '44'] is reserved for future
id: string | Array<string>,
type: string,
}
}
export type SwitchCaseModelMapperOptionsType = {
switchAttributes?: boolean,
switchRelationships?: boolean,
switchType?: boolean,
switchChar?: string,
};
export type SwitchCaseJsonMapperOptionsType = {
camelizeAttributes?: boolean,
camelizeRelationships?: boolean,
camelizeType?: boolean,
camelizeMeta?: boolean,
switchChar?: string,
};