uicore-ts 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. package/.idea/misc.xml +6 -0
  2. package/.idea/modules.xml +8 -0
  3. package/.idea/uicore.iml +9 -0
  4. package/.idea/vcs.xml +6 -0
  5. package/LICENSE +21 -0
  6. package/README.md +5 -0
  7. package/compiledScripts/UIActionIndicator.d.ts +12 -0
  8. package/compiledScripts/UIActionIndicator.js +54 -0
  9. package/compiledScripts/UIActionIndicator.js.map +1 -0
  10. package/compiledScripts/UIBaseButton.d.ts +52 -0
  11. package/compiledScripts/UIBaseButton.js +268 -0
  12. package/compiledScripts/UIBaseButton.js.map +1 -0
  13. package/compiledScripts/UIButton.d.ts +54 -0
  14. package/compiledScripts/UIButton.js +247 -0
  15. package/compiledScripts/UIButton.js.map +1 -0
  16. package/compiledScripts/UIColor.d.ts +41 -0
  17. package/compiledScripts/UIColor.js +286 -0
  18. package/compiledScripts/UIColor.js.map +1 -0
  19. package/compiledScripts/UICore.d.ts +27 -0
  20. package/compiledScripts/UICore.js +105 -0
  21. package/compiledScripts/UICore.js.map +1 -0
  22. package/compiledScripts/UICoreExtensions.d.ts +60 -0
  23. package/compiledScripts/UICoreExtensions.js +527 -0
  24. package/compiledScripts/UICoreExtensions.js.map +1 -0
  25. package/compiledScripts/UIDateTimeInput.d.ts +40 -0
  26. package/compiledScripts/UIDateTimeInput.js +38 -0
  27. package/compiledScripts/UIDateTimeInput.js.map +1 -0
  28. package/compiledScripts/UIDialogView.d.ts +23 -0
  29. package/compiledScripts/UIDialogView.js +118 -0
  30. package/compiledScripts/UIDialogView.js.map +1 -0
  31. package/compiledScripts/UIImageView.d.ts +36 -0
  32. package/compiledScripts/UIImageView.js +170 -0
  33. package/compiledScripts/UIImageView.js.map +1 -0
  34. package/compiledScripts/UIKeyValueStringFilter.d.ts +21 -0
  35. package/compiledScripts/UIKeyValueStringFilter.js +98 -0
  36. package/compiledScripts/UIKeyValueStringFilter.js.map +1 -0
  37. package/compiledScripts/UIKeyValueStringSorter.d.ts +38 -0
  38. package/compiledScripts/UIKeyValueStringSorter.js +117 -0
  39. package/compiledScripts/UIKeyValueStringSorter.js.map +1 -0
  40. package/compiledScripts/UILayoutGrid.d.ts +8 -0
  41. package/compiledScripts/UILayoutGrid.js +22 -0
  42. package/compiledScripts/UILayoutGrid.js.map +1 -0
  43. package/compiledScripts/UILink.d.ts +25 -0
  44. package/compiledScripts/UILink.js +81 -0
  45. package/compiledScripts/UILink.js.map +1 -0
  46. package/compiledScripts/UILinkButton.d.ts +18 -0
  47. package/compiledScripts/UILinkButton.js +60 -0
  48. package/compiledScripts/UILinkButton.js.map +1 -0
  49. package/compiledScripts/UINativeScrollView.d.ts +20 -0
  50. package/compiledScripts/UINativeScrollView.js +121 -0
  51. package/compiledScripts/UINativeScrollView.js.map +1 -0
  52. package/compiledScripts/UIObject.d.ts +69 -0
  53. package/compiledScripts/UIObject.js +442 -0
  54. package/compiledScripts/UIObject.js.map +1 -0
  55. package/compiledScripts/UIPoint.d.ts +18 -0
  56. package/compiledScripts/UIPoint.js +68 -0
  57. package/compiledScripts/UIPoint.js.map +1 -0
  58. package/compiledScripts/UIRectangle.d.ts +61 -0
  59. package/compiledScripts/UIRectangle.js +421 -0
  60. package/compiledScripts/UIRectangle.js.map +1 -0
  61. package/compiledScripts/UIRoute.d.ts +39 -0
  62. package/compiledScripts/UIRoute.js +202 -0
  63. package/compiledScripts/UIRoute.js.map +1 -0
  64. package/compiledScripts/UIScrollView.d.ts +19 -0
  65. package/compiledScripts/UIScrollView.js +121 -0
  66. package/compiledScripts/UIScrollView.js.map +1 -0
  67. package/compiledScripts/UISlideScrollerView.d.ts +40 -0
  68. package/compiledScripts/UISlideScrollerView.js +242 -0
  69. package/compiledScripts/UISlideScrollerView.js.map +1 -0
  70. package/compiledScripts/UIStringFilter.d.ts +26 -0
  71. package/compiledScripts/UIStringFilter.js +107 -0
  72. package/compiledScripts/UIStringFilter.js.map +1 -0
  73. package/compiledScripts/UITableView.d.ts +61 -0
  74. package/compiledScripts/UITableView.js +383 -0
  75. package/compiledScripts/UITableView.js.map +1 -0
  76. package/compiledScripts/UITextArea.d.ts +7 -0
  77. package/compiledScripts/UITextArea.js +27 -0
  78. package/compiledScripts/UITextArea.js.map +1 -0
  79. package/compiledScripts/UITextField.d.ts +44 -0
  80. package/compiledScripts/UITextField.js +83 -0
  81. package/compiledScripts/UITextField.js.map +1 -0
  82. package/compiledScripts/UITextView.d.ts +89 -0
  83. package/compiledScripts/UITextView.js +237 -0
  84. package/compiledScripts/UITextView.js.map +1 -0
  85. package/compiledScripts/UITimer.d.ts +13 -0
  86. package/compiledScripts/UITimer.js +45 -0
  87. package/compiledScripts/UITimer.js.map +1 -0
  88. package/compiledScripts/UIView.d.ts +330 -0
  89. package/compiledScripts/UIView.js +1533 -0
  90. package/compiledScripts/UIView.js.map +1 -0
  91. package/compiledScripts/UIViewController.d.ts +38 -0
  92. package/compiledScripts/UIViewController.js +153 -0
  93. package/compiledScripts/UIViewController.js.map +1 -0
  94. package/compiledScripts/index.d.ts +29 -0
  95. package/compiledScripts/index.js +46 -0
  96. package/compiledScripts/index.js.map +1 -0
  97. package/package.json +36 -0
  98. package/scripts/UIActionIndicator.ts +139 -0
  99. package/scripts/UIBaseButton.ts +563 -0
  100. package/scripts/UIButton.ts +552 -0
  101. package/scripts/UIColor.ts +427 -0
  102. package/scripts/UICore.ts +223 -0
  103. package/scripts/UICoreExtensions.ts +949 -0
  104. package/scripts/UIDateTimeInput.ts +109 -0
  105. package/scripts/UIDialogView.ts +297 -0
  106. package/scripts/UIImageView.ts +366 -0
  107. package/scripts/UIKeyValueStringFilter.ts +260 -0
  108. package/scripts/UIKeyValueStringSorter.ts +337 -0
  109. package/scripts/UILayoutGrid.ts +83 -0
  110. package/scripts/UILink.ts +292 -0
  111. package/scripts/UILinkButton.ts +238 -0
  112. package/scripts/UINativeScrollView.ts +254 -0
  113. package/scripts/UIObject.ts +827 -0
  114. package/scripts/UIPoint.ts +123 -0
  115. package/scripts/UIRectangle.ts +730 -0
  116. package/scripts/UIRoute.ts +391 -0
  117. package/scripts/UIScrollView.ts +290 -0
  118. package/scripts/UISlideScrollerView.ts +530 -0
  119. package/scripts/UIStringFilter.ts +293 -0
  120. package/scripts/UITableView.ts +790 -0
  121. package/scripts/UITextArea.ts +91 -0
  122. package/scripts/UITextField.ts +218 -0
  123. package/scripts/UITextView.ts +561 -0
  124. package/scripts/UITimer.ts +107 -0
  125. package/scripts/UIView.ts +2789 -0
  126. package/scripts/UIViewController.ts +304 -0
  127. package/scripts/index.ts +36 -0
  128. package/tsconfig.json +59 -0
@@ -0,0 +1,293 @@
1
+ import { IS, IS_NOT, MAKE_ID, NO, UIObject, YES } from "./UIObject"
2
+
3
+
4
+ export class UIStringFilter extends UIObject {
5
+
6
+
7
+
8
+
9
+ static _sharedWebWorkerHolder = { webWorker: new Worker("compiledScripts//UIStringFilterWebWorker.js") };
10
+
11
+ static _instanceNumber = -1
12
+
13
+
14
+ _instanceNumber: number
15
+
16
+ _isThreadClosed = NO
17
+
18
+ private readonly _webWorkerHolder = UIStringFilter._sharedWebWorkerHolder
19
+
20
+
21
+
22
+ constructor(useSeparateWebWorkerHolder = NO) {
23
+
24
+
25
+ super()
26
+
27
+ this._class = UIStringFilter
28
+ this.superclass = UIObject
29
+
30
+
31
+ if (useSeparateWebWorkerHolder) {
32
+
33
+ this._webWorkerHolder = { webWorker: new Worker("compiledScripts//UIStringFilterWebWorker.js") }
34
+
35
+ }
36
+
37
+ UIStringFilter._instanceNumber = UIStringFilter._instanceNumber + 1
38
+ this._instanceNumber = UIStringFilter._instanceNumber
39
+
40
+ if (IS_NOT(this._webWorkerHolder.webWorker.onmessage)) {
41
+
42
+ this._webWorkerHolder.webWorker.onmessage = message => {
43
+
44
+ this.isWorkerBusy = NO;
45
+ this.postNextMessageIfNeeded();
46
+
47
+ const key = "" + message.data.identifier + message.data.instanceIdentifier
48
+
49
+ const completionFunction = this.completionFunctions[key]
50
+
51
+ if (IS(completionFunction)) {
52
+
53
+ //console.log("Filtering took " + (Date.now() - startTime) + " ms");
54
+
55
+ completionFunction(message.data.filteredData, message.data.filteredIndexes, message.data.identifier)
56
+
57
+ }
58
+
59
+ delete this.completionFunctions[key];
60
+
61
+ var asd = 1;
62
+
63
+ }
64
+
65
+ }
66
+
67
+
68
+
69
+
70
+
71
+ }
72
+
73
+
74
+
75
+
76
+
77
+ get instanceIdentifier() {
78
+
79
+ return this._instanceNumber
80
+
81
+ }
82
+
83
+
84
+ get completionFunctions() {
85
+
86
+ const key = "UICore_completionFunctions";
87
+ var result: {
88
+
89
+ [x: string]: (filteredData: string[], filteredIndexes: number[], identifier: any) => void;
90
+
91
+ } = this._webWorkerHolder[key];
92
+
93
+ if (IS_NOT(result)) {
94
+
95
+ result = {};
96
+ this._webWorkerHolder[key] = result;
97
+
98
+ }
99
+
100
+ return result;
101
+
102
+ }
103
+
104
+ get messagesToPost() {
105
+
106
+ const key = "UICore_messagesToPost";
107
+ var result: any[] = this._webWorkerHolder[key];
108
+
109
+ if (IS_NOT(result)) {
110
+
111
+ result = [];
112
+ this._webWorkerHolder[key] = result;
113
+
114
+ }
115
+
116
+ return result;
117
+
118
+ }
119
+
120
+
121
+ set isWorkerBusy(isWorkerBusy: boolean) {
122
+
123
+ this._webWorkerHolder["UICore_isWorking"] = isWorkerBusy;
124
+
125
+ }
126
+
127
+ get isWorkerBusy() {
128
+
129
+ return IS(this._webWorkerHolder["UICore_isWorking"]);
130
+
131
+ }
132
+
133
+
134
+
135
+ postNextMessageIfNeeded() {
136
+
137
+ if (this.messagesToPost.length && IS_NOT(this.isWorkerBusy)) {
138
+
139
+ this._webWorkerHolder.webWorker.postMessage(this.messagesToPost.firstElement);
140
+ this.messagesToPost.removeElementAtIndex(0);
141
+
142
+ this.isWorkerBusy = YES;
143
+
144
+ }
145
+
146
+ }
147
+
148
+
149
+
150
+
151
+
152
+ filterData(
153
+ filteringString: string,
154
+ data: string[],
155
+ excludedData: string[],
156
+ identifier: any,
157
+ completion: (filteredData: string[], filteredIndexes: number[], identifier: any) => void
158
+ ) {
159
+
160
+
161
+ if (this._isThreadClosed) {
162
+
163
+ return
164
+
165
+ }
166
+
167
+ //var startTime = Date.now();
168
+
169
+ const instanceIdentifier = this.instanceIdentifier
170
+
171
+ const key = "" + identifier + instanceIdentifier
172
+
173
+ this.completionFunctions[key] = completion
174
+
175
+ this.messagesToPost.push({
176
+
177
+ "filteringString": filteringString,
178
+ "data": data,
179
+ "excludedData": excludedData,
180
+ "identifier": identifier,
181
+ "instanceIdentifier": instanceIdentifier
182
+
183
+ });
184
+
185
+ this.postNextMessageIfNeeded();
186
+
187
+
188
+ }
189
+
190
+
191
+ filteredData(
192
+ filteringString: string,
193
+ data: string[],
194
+ excludedData: string[] = [],
195
+ identifier: any = MAKE_ID()
196
+ ) {
197
+
198
+
199
+ const result: Promise<{
200
+
201
+ filteredData: string[],
202
+ filteredIndexes: number[],
203
+ identifier: any
204
+
205
+ }> = new Promise((resolve, reject) => {
206
+
207
+ this.filterData(filteringString, data, excludedData, identifier,
208
+ (filteredData, filteredIndexes, filteredIdentifier) => {
209
+
210
+ if (filteredIdentifier == identifier) {
211
+
212
+ resolve({
213
+
214
+ filteredData: filteredData,
215
+ filteredIndexes: filteredIndexes,
216
+ identifier: filteredIdentifier
217
+
218
+ })
219
+
220
+ }
221
+
222
+
223
+ }
224
+ )
225
+
226
+
227
+ })
228
+
229
+ return result
230
+
231
+
232
+ }
233
+
234
+
235
+
236
+
237
+
238
+ closeThread() {
239
+
240
+ this._isThreadClosed = YES
241
+
242
+ if (this._webWorkerHolder != UIStringFilter._sharedWebWorkerHolder) {
243
+
244
+ this._webWorkerHolder.webWorker.terminate();
245
+
246
+ }
247
+
248
+
249
+
250
+ }
251
+
252
+
253
+
254
+
255
+
256
+ }
257
+
258
+
259
+
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+
276
+
277
+
278
+
279
+
280
+
281
+
282
+
283
+
284
+
285
+
286
+
287
+
288
+
289
+
290
+
291
+
292
+
293
+