This repository has been archived by the owner on Jul 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdojo.store.d.ts
248 lines (210 loc) · 6.16 KB
/
dojo.store.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
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
/************************************************************************/
/* Define dojo/store package */
/************************************************************************/
/// <reference path="dojo.types.d.ts"/>
interface _HTMLArray<T> extends Array<T> { }
declare module Dojo
{
module Store
{
// dojo/store/api/Store
class _Store<T extends Object, K>
{
idProperty: string;
queryEngine(query: string | AttributesMap | RegExp | ((item: T) => boolean), options?: QueryOptions): QueryEngine<T>;
PutDirectives: new () => PutDirectives<T, K>;
QueryOptions: new () => QueryOptions;
QueryResults: new () => QueryResults<T>;
SortInformation: new () => SortInformation;
}
class Store<T extends Object, K> extends _Store<T, K>
{
add(object: T, directives?: PutDirectives<T, K>): K;
get(id: K): T;
getChildren<V>(parent: T, options?: QueryOptions): QueryResults<V>;
getIdentity(object: T): K;
getMetadata(object: T): { [metadata: string]: any; };
put(object: T, directives?: PutDirectives<T, K>): K;
query(query: string | AttributesMap | ((item: T) => boolean), options?: QueryOptions): QueryResults<T>;
remove(id: K): boolean;
transaction(): Transaction;
Transaction: new () => Transaction;
}
class StoreAsync<T extends Object, K> extends _Store<T, K>
{
add(object: T, directives?: PutDirectives<T, K>): dojo.Promise<K>;
get(id: K): dojo.Promise<T>;
getChildren<V>(parent: T, options?: QueryOptions): dojo.Promise<QueryResults<V>>;
getIdentity(object: T): dojo.Promise<K>;
getMetadata(object: T): dojo.Promise<Object>;
put(object: T, directives?: PutDirectives<T, K>): dojo.Promise<K>;
query(query: string | AttributesMap | ((item: T) => boolean), options?: QueryOptions): dojo.Promise<QueryResults<T>>;
remove(id: K): boolean;
transaction(): TransactionAsync;
Transaction: new () => TransactionAsync;
}
// Query Engine
interface QueryEngine<T extends Object>
{
(query: string | AttributesMap | RegExp | ((item: T) => boolean), options?: QueryOptions): (data: T[]) => T[];
matches?: (data: T) => boolean;
}
// dojo/store/api/Store.PutDirectives
interface PutDirectives<T extends Object, K>
{
id?: K;
before?: T;
parent?: Object;
overwrite?: boolean;
}
// dojo/store/api/Store.QueryOptions
interface QueryOptions
{
start?: number;
count?: number;
sort?: SortInformation[];
}
// dojo/store/api/Store.QueryResults
// NOTE - QueryResults may be a simple array or a promise
interface QueryResults<T extends Object> extends _HTMLArray<T>
{
total: number;
filter(callback: (item: T, index: number, array: T[]) => boolean, thisObject?: Object): QueryResults<T>;
forEach(callback: (item: T, index: number, array: T[]) => void, thisObject?: Object): QueryResults<T>;
map<V extends Object>(callback: (item: T, index: number, array: T[]) => V, thisObject?: Object): QueryResults<V>;
// Added by dojo/store/Observable
observe?(listener: (object: T, removedFrom: number, insertedInto: number) => void, includeAllUpdates?: boolean): Dojo.CancellableHandle;
}
// dojo/store/api/Store.SortInformation
interface SortInformation
{
attribute: string;
descending?: boolean;
}
// dojo/store/api/Store.Transaction
interface Transaction
{
abort(callback?: Function, thisObject?: Object): boolean;
commit(): boolean;
}
interface TransactionAsync
{
abort(callback?: Function, thisObject?: Object): dojo.Promise<boolean>;
commit(): dojo.Promise<boolean>;
}
// Create options
interface CreateOptions
{
idProperty?: string;
[member: string]: any;
}
// dojo/store/Memory
module Memory
{
interface CreateOptions<T extends Object> extends Dojo.Store.CreateOptions
{
data?: T[];
}
class Store<T extends Object, K> extends Dojo.Store.Store<T, K> implements CreateOptions<T>
{
constructor(options: CreateOptions<T>);
idProperty: string;
data: T[];
index: Dojo.Dictionary<number>;
}
}
// dojo/store/DataStore
module DataStore
{
interface CreateOptions extends Dojo.Store.CreateOptions
{
target?: string;
store?: Object; // Should be DojoDataStore, but needs to pull in dojo_data.ts and dojo.ts, so don't do it
}
class Store<T extends Object, K> extends Dojo.Store.Store<T, K> implements CreateOptions
{
constructor(options: CreateOptions);
idProperty: string;
target: string;
store: Object;
}
class StoreAsync<T extends Object, K> extends Dojo.Store.StoreAsync<T, K> implements CreateOptions
{
constructor(options: CreateOptions);
idProperty: string;
target: string;
store: Object;
}
}
// dojo/store/JsonRest
module JsonRest
{
interface CreateOptions extends Dojo.Store.CreateOptions
{
target?: string;
accepts?: string;
ascendingPrefix?: string;
descendingPrefix?: string;
headers?: { [header: string]: string; };
}
class Store<T extends Object, K> extends Dojo.Store.StoreAsync<T, K> implements CreateOptions
{
constructor(options: CreateOptions);
idProperty: string;
target: string;
accepts: string;
ascendingPrefix: string;
descendingPrefix: string;
headers: { [header: string]: string; };
}
}
}
}
// Module definitions
declare module "dojo/store/Memory"
{
var Memory: typeof Dojo.Store.Memory.Store;
export = Memory;
}
declare module "dojo/store/DataStore"
{
var DataStore: typeof Dojo.Store.DataStore.Store;
export = DataStore;
}
declare module "dojo/store/JsonRest"
{
var JsonRest: typeof Dojo.Store.JsonRest.Store;
export = JsonRest;
}
// dojo/store/Observable
declare module Dojo
{
module Store
{
interface Observable
{
<T extends Object, K>(store: _Store<T, K>): _Store<T, K>;
}
}
}
declare module "dojo/store/Observable"
{
var Observable: Dojo.Store.Observable;
export = Observable;
}
// dojo/store/Cache
declare module Dojo
{
module Store
{
interface Cache
{
<T extends Object, K>(masterStore: _Store<T, K>, cachingStore: _Store<T, K>, options?: { isLoaded?: (item: T) => boolean; }): _Store<T, K>;
}
}
}
declare module "dojo/store/Cache"
{
var Cache: Dojo.Store.Cache;
export = Cache;
}