This repository was archived by the owner on Mar 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdddbase.d.ts
100 lines (100 loc) · 4.13 KB
/
dddbase.d.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
declare module DDD {
class Identity<T> {
private value;
constructor(value: T);
public getValue(): T;
public equals(that: Identity<T>): boolean;
}
class NumberIdentity extends Identity<number> {
constructor(value: number);
}
}
declare module DDD {
class Entity<ID extends DDD.Identity<any>> {
private identity;
constructor(identity: ID);
public getIdentity(): ID;
public equals(that: Entity<ID>): boolean;
}
}
declare module DDD {
interface IRepository<ID extends DDD.Identity<any>, E extends DDD.Entity<any>> {
resolveOption(identity: ID): monapt.Option<E>;
resolve(identity: ID): E;
store(entity: E): E;
storeList(entityList: E[]): E[];
deleteByEntity(entity: E): IRepository<ID, E>;
deleteByIdentity(identity: ID): IRepository<ID, E>;
}
}
declare module DDD {
class AsyncRepository<ID extends DDD.Identity<any>, E extends DDD.Entity<any>> {
private core;
constructor(core: DDD.IRepository<ID, E>);
public resolve(identity: ID): monapt.Future<E>;
public store(entity: E): monapt.Future<E>;
public storeList(entityList: E[]): monapt.Future<E[]>;
public deleteByEntity(entity: E): monapt.Future<AsyncRepository<ID, E>>;
public deleteByIdentity(identity: ID): monapt.Future<AsyncRepository<ID, E>>;
}
}
declare module DDD {
interface ILocalStorageMapper<E extends DDD.Entity<any>> {
parse(json: Object): E;
stringify(entity: E): string;
}
class OnLocalStorageRepository<ID extends DDD.Identity<any>, E extends DDD.Entity<any>> implements DDD.IRepository<ID, E> {
constructor(mapper: ILocalStorageMapper<E>);
public parse: (json: Object) => E;
public stringify: (entity: E) => string;
public resolveOption(identity: ID): monapt.Option<E>;
public resolve(identity: ID): E;
public store(entity: E): E;
public storeList(entityList: E[]): E[];
public deleteByEntity(entity: E): OnLocalStorageRepository<ID, E>;
public deleteByIdentity(identity: ID): OnLocalStorageRepository<ID, E>;
}
}
declare module DDD {
class AsyncOnLocalStorageRepository<ID extends DDD.Identity<any>, E extends DDD.Entity<any>> extends DDD.AsyncRepository<ID, E> {
constructor(mapper: DDD.ILocalStorageMapper<E>);
}
}
declare module DDD {
class OnMemoryRepository<ID extends DDD.Identity<any>, E extends DDD.Entity<any>> implements DDD.IRepository<ID, E> {
private entities;
public resolveOption(identity: ID): monapt.Option<E>;
public resolve(identity: ID): E;
public store(entity: E): E;
public storeList(entityList: E[]): E[];
public deleteByEntity(entity: E): OnMemoryRepository<ID, E>;
public deleteByIdentity(identity: ID): OnMemoryRepository<ID, E>;
}
}
declare module DDD {
class AsyncOnMemoryRepository<ID extends DDD.Identity<any>, E extends DDD.Entity<any>> extends DDD.AsyncRepository<ID, E> {
constructor();
}
}
declare module DDD {
interface ISessionStorageMapper<E extends DDD.Entity<any>> {
parse(json: Object): E;
stringify(entity: E): string;
}
class OnSessionStorageRepository<ID extends DDD.Identity<any>, E extends DDD.Entity<any>> implements DDD.IRepository<ID, E> {
constructor(mapper: ISessionStorageMapper<E>);
public parse: (json: Object) => E;
public stringify: (entity: E) => string;
public resolveOption(identity: ID): monapt.Option<E>;
public resolve(identity: ID): E;
public store(entity: E): E;
public storeList(entityList: E[]): E[];
public deleteByEntity(entity: E): OnSessionStorageRepository<ID, E>;
public deleteByIdentity(identity: ID): OnSessionStorageRepository<ID, E>;
}
}
declare module DDD {
class AsyncOnSessionStorageRepository<ID extends DDD.Identity<any>, E extends DDD.Entity<any>> extends DDD.AsyncRepository<ID, E> {
constructor(mapper: DDD.ISessionStorageMapper<E>);
}
}