This repository has been archived by the owner on Mar 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 868
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f80b831
commit c0f85b2
Showing
5 changed files
with
182 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
export type ExtractAttribute = | ||
(entity: any) => string; | ||
|
||
export type AssignEntity = | ||
(obj: any, key: string, entity: any, input: any, schema: SchemaValue) => void; | ||
|
||
export type MergeIntoEntity = | ||
(entityA: any, entityB: any, entityKey: string) => void; | ||
|
||
export type SchemaOptions = { | ||
idAttribute?: string | ExtractAttribute; | ||
meta?: any; | ||
assignEntity?: AssignEntity; | ||
} | ||
|
||
export type IterableSchemaOptions = { | ||
schemaAttribute?: string | ExtractAttribute; | ||
} | ||
|
||
export type UnionSchemaOptions = { | ||
schemaAttribute: string | ExtractAttribute; | ||
} | ||
|
||
export type NormalizeOptions = { | ||
assignEntity?: AssignEntity; | ||
mergeIntoEntity?: MergeIntoEntity; | ||
} | ||
|
||
export type NormalizeInput = Object | Array<Object>; | ||
|
||
export type NormalizeOutput = { | ||
result: any; | ||
entities?: any; | ||
} | ||
|
||
export class Schema { | ||
constructor (key: string, options?: SchemaOptions); | ||
|
||
define(schema: SchemaMap): void; | ||
getKey(): string; | ||
getIdAttribute(): string; | ||
getMeta(prop: string): any; | ||
} | ||
|
||
export class IterableSchema { | ||
constructor (schema: SchemaValue, options?: IterableSchemaOptions); | ||
|
||
getItemSchema(): SchemaValue; | ||
} | ||
|
||
export class UnionSchema { | ||
constructor (schema: SchemaValue, options: UnionSchemaOptions); | ||
|
||
getItemSchema(): SchemaValue; | ||
} | ||
|
||
export type SchemaValue = Schema | IterableSchema | UnionSchema | SchemaMap; | ||
|
||
export type SchemaMap = { | ||
[key: string]: SchemaValue; | ||
} | ||
|
||
export function arrayOf( | ||
schema: SchemaValue, | ||
options?: IterableSchemaOptions | ||
): IterableSchema; | ||
|
||
export function valuesOf( | ||
schema: SchemaValue, | ||
options?: IterableSchemaOptions | ||
): IterableSchema; | ||
|
||
export function unionOf( | ||
schema: SchemaValue, | ||
options?: UnionSchemaOptions | ||
): UnionSchema; | ||
|
||
export function normalize( | ||
input: NormalizeInput, | ||
schema: SchemaValue, | ||
options?: NormalizeOptions | ||
): NormalizeOutput; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import * as tt from 'typescript-definition-tester'; | ||
|
||
describe('TypeScript definitions', function () { | ||
this.timeout(0); | ||
|
||
it('compile against index.d.ts', (done) => { | ||
tt.compileDirectory( | ||
__dirname + '/typescript', | ||
fileName => fileName.match(/\.ts$/), | ||
() => done() | ||
); | ||
}); | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import {Schema, normalize, arrayOf, unionOf, valuesOf} from "../../index.d.ts"; | ||
|
||
const isObject = function (obj: any) { | ||
return typeof obj === 'object'; | ||
}; | ||
|
||
const assignEntity = function (output: any, key: string, value: any) { | ||
if (key === "timestamp") { | ||
output[key] = Date.now() | ||
} | ||
output[key] = value; | ||
}; | ||
|
||
const mergeIntoEntity = function (entityA: any, entityB: any, entityKey: string) { | ||
for (const key in entityB) { | ||
if (!entityB.hasOwnProperty(key)) { | ||
continue; | ||
} | ||
|
||
if (!entityA.hasOwnProperty(key)) { | ||
entityA[key] = entityB[key]; | ||
continue; | ||
} | ||
|
||
if (isObject(entityA[key]) && isObject(entityB[key])) { | ||
// Merge the two entities. | ||
continue; | ||
} | ||
} | ||
}; | ||
|
||
const user = new Schema("users"); | ||
const group = new Schema("groups", { assignEntity }); | ||
const member = unionOf({ users: user, groups: group }, { schemaAttribute: "type" }); | ||
|
||
group.define({ | ||
members: arrayOf(member), | ||
owner: member, | ||
relations: valuesOf(member) | ||
}); | ||
|
||
const normalizeWithObject = normalize({}, { group }); | ||
const normalizeWithArray = normalize([], { groups: arrayOf(group) }); | ||
const normalizeWithAssignEntity = normalize([], { groups: arrayOf(group) }, { assignEntity }); | ||
const normalizeWithMergeIntoEntity = normalize([], { groups: arrayOf(group) }, { mergeIntoEntity }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import {Schema, IterableSchema, UnionSchema, SchemaValue} from "../../index.d.ts"; | ||
|
||
const idAttribute = "slug"; | ||
const meta = { removeProps: ["year", "publisher"] }; | ||
|
||
const generateSlug = function (entity: any) { | ||
if (entity.slug != null) { | ||
return "slug"; | ||
} | ||
return "id"; | ||
}; | ||
|
||
const assignEntity = function (output: any, key: string, value: any, input: any, schema: SchemaValue) { | ||
const itemSchema = (schema instanceof IterableSchema || schema instanceof UnionSchema) ? | ||
schema.getItemSchema() : schema; | ||
const removeProps = (itemSchema instanceof Schema) ? | ||
itemSchema.getMeta("removeProps") : null; | ||
if (!removeProps || removeProps.indexOf(key) < 0) { | ||
output[key] = value; | ||
} | ||
}; | ||
|
||
const schemaWithKey = new Schema("articles"); | ||
const schemaWithStringIdAttribute = new Schema("articles", { idAttribute }); | ||
const schemaWithFunctionIdAttribute = new Schema("articles", { idAttribute: generateSlug }); | ||
const schemaWithMeta = new Schema("articles", { meta }); | ||
const schemaWithAssignEntity = new Schema("articles", { meta, assignEntity }); | ||
|
||
const someKey: string = schemaWithKey.getKey(); | ||
const someIdAttribute: string = schemaWithStringIdAttribute.getIdAttribute(); | ||
const someOtherIdAttribute: string = schemaWithFunctionIdAttribute.getIdAttribute(); | ||
const someMeta: any = schemaWithMeta.getMeta("removeProps"); | ||
|
||
const article = new Schema("articles"); | ||
const user = new Schema("users"); | ||
article.define({ | ||
author: user | ||
}); |