jp.ui.app.toolkit 1.0.50 → 1.0.51
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.
- package/dist/index.d.ts +256 -1177
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/app/dummy-application.d.ts +6 -0
- package/dist/src/data/hooks.d.ts +24 -2
- package/dist/src/data/middleware/index.d.ts +2 -1
- package/dist/src/data/middleware/one-table-tournament-status/one-table-tournament-status-screen-middleware.d.ts +1 -0
- package/dist/src/data/requests/index.d.ts +2 -0
- package/dist/src/data/requests/many-tables-tournament/index.d.ts +7 -0
- package/dist/src/data/requests/many-tables-tournament/many-tables-tournament-buy-ticket-request.d.ts +2 -0
- package/dist/src/data/requests/many-tables-tournament/many-tables-tournament-join-tournament-request.d.ts +2 -0
- package/dist/src/data/requests/many-tables-tournament/many-tables-tournament-leave-tournament-request.d.ts +2 -0
- package/dist/src/data/requests/many-tables-tournament/many-tables-tournament-move-on-the-table-request.d.ts +2 -0
- package/dist/src/data/requests/many-tables-tournament/many-tables-tournament-status-request.d.ts +3 -0
- package/dist/src/data/requests/many-tables-tournament/many-tables-tournament-table-list-request.d.ts +3 -0
- package/dist/src/data/requests/many-tables-tournament/many-tables-tournament-watch-the-table-request.d.ts +2 -0
- package/dist/src/data/requests/one-table-tournament/index.d.ts +5 -0
- package/dist/src/data/requests/one-table-tournament/one-table-tournament-join-tournament-request.d.ts +2 -0
- package/dist/src/data/requests/one-table-tournament/one-table-tournament-leave-tournament-request.d.ts +2 -0
- package/dist/src/data/requests/one-table-tournament/one-table-tournament-move-on-the-table-request.d.ts +2 -0
- package/dist/src/data/requests/one-table-tournament/one-table-tournament-status-request.d.ts +3 -0
- package/dist/src/data/requests/one-table-tournament/one-table-tournament-watch-the-table-request.d.ts +2 -0
- package/dist/src/data/slices/index.d.ts +79 -14
- package/dist/src/data/slices/many-tables-tournament-status-screen-slice.d.ts +31 -0
- package/dist/src/data/slices/many-tables-tournament-table-list-screen-slice.d.ts +31 -0
- package/dist/src/data/slices/menu-screen-slice.d.ts +4 -4
- package/dist/src/data/slices/one-table-tournament-status-screen-slice.d.ts +31 -0
- package/dist/src/data/slices/shop-screen-slice.d.ts +4 -4
- package/dist/src/data/slices/tables-screen-slice.d.ts +4 -4
- package/dist/src/data/slices/ws-connector-slice.d.ts +1 -1
- package/dist/src/data/store.d.ts +25 -1
- package/dist/src/screens/index.d.ts +3 -1
- package/dist/src/screens/many-tables-tournament-status/many-tables-tournament-status-screen.d.ts +2 -0
- package/dist/src/screens/many-tables-tournament-table-list/many-tables-tournament-table-list-screen.d.ts +2 -0
- package/dist/src/screens/one-table-tournament-status/one-table-tournament-status-screen.d.ts +2 -0
- package/dist/src/types/route.type.d.ts +1 -1
- package/dist/src/utils/config.d.ts +14 -2
- package/dist/src/utils/global-storage.enum.d.ts +14 -2
- package/dist/src/utils/ws-connector.d.ts +2 -2
- package/package.json +1 -1
- package/dist/src/app/poker-application.d.ts +0 -6
- package/dist/src/data/app-state.d.ts +0 -4
- package/dist/src/data/middleware/table/game-table-deactivate-screen-middleware.d.ts +0 -3
- package/dist/src/data/middleware/table/game-table-init-screen-middleware.d.ts +0 -3
- package/dist/src/data/middleware/table/game-table-screen-back-click-middleware.d.ts +0 -3
- package/dist/src/data/middleware/table/game-table-screen-move-button-click-middleware.d.ts +0 -3
- package/dist/src/data/middleware/ws/ws-connector-middleware.d.ts +0 -1
- package/dist/src/data/slices/game-table-screen-slice/actions/action-types.d.ts +0 -12
- package/dist/src/data/slices/game-table-screen-slice/actions/actions.d.ts +0 -24
- package/dist/src/data/slices/game-table-screen-slice/index.d.ts +0 -13
- package/dist/src/data/slices/game-table-screen-slice/reducer/reducer.d.ts +0 -9
- package/dist/src/data/slices/game-table-screen-slice/selectors/base-selectors.d.ts +0 -1296
- package/dist/src/data/slices/game-table-screen-slice/selectors/cards-selectors.d.ts +0 -901
- package/dist/src/screens/table/table-screen.d.ts +0 -6
- package/dist/src/utils/jp-client-logger.d.ts +0 -20
package/dist/index.d.ts
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import React__default, { JSX, Component } from 'react';
|
|
3
3
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
4
|
-
import { Store, PayloadAction, ListenerEffectAPI } from '@reduxjs/toolkit';
|
|
4
|
+
import { Store, PayloadAction, ListenerMiddleware, ListenerEffectAPI } from '@reduxjs/toolkit';
|
|
5
5
|
import * as redux from 'redux';
|
|
6
|
-
import * as jp_common_models from 'jp.common.models';
|
|
7
|
-
import { IBaseTableGameState, IBaseTableGameStateMovesPanel, IBaseTableGameStateSummary, ICardsPanelState } from 'jp.common.models';
|
|
8
6
|
import * as immer from 'immer';
|
|
9
7
|
import * as jp_common_view from 'jp.common.view';
|
|
10
8
|
import { AppScreenTypes, AppScreenSectionListItem, BaseAppScreen, ClientInfoType } from 'jp.common.view';
|
|
11
9
|
import { AxiosResponse } from 'axios';
|
|
12
10
|
import { DictionaryItem } from 'jp.ui.app.ds/dist/just_poker/bottom-selection-panel/bottom-selection-panel';
|
|
13
11
|
import { NavigateFunction } from 'react-router';
|
|
14
|
-
import * as reselect from 'reselect';
|
|
15
12
|
|
|
16
13
|
type RouteType = {
|
|
17
14
|
route: string;
|
|
@@ -32,15 +29,6 @@ declare abstract class BaseApplication extends Component<BaseApplicationProps, B
|
|
|
32
29
|
render(): React__default.JSX.Element;
|
|
33
30
|
}
|
|
34
31
|
|
|
35
|
-
interface IBaseTableScreenState {
|
|
36
|
-
isLoading: boolean;
|
|
37
|
-
isError: boolean;
|
|
38
|
-
data?: IBaseTableGameState;
|
|
39
|
-
}
|
|
40
|
-
declare const reducer: redux.Reducer<IBaseTableScreenState> & {
|
|
41
|
-
getInitialState: () => IBaseTableScreenState;
|
|
42
|
-
};
|
|
43
|
-
|
|
44
32
|
interface WsConnectorState {
|
|
45
33
|
isConnected: boolean;
|
|
46
34
|
error: object | null;
|
|
@@ -64,6 +52,90 @@ declare const wsConnectorSlice: _reduxjs_toolkit.Slice<WsConnectorState, {
|
|
|
64
52
|
getIsConnected: (sliceState: WsConnectorState) => boolean;
|
|
65
53
|
}>;
|
|
66
54
|
|
|
55
|
+
interface ManyTablesTournamentTableListScreenState {
|
|
56
|
+
isLoading: boolean;
|
|
57
|
+
isError: boolean;
|
|
58
|
+
data: AppScreenTypes | undefined;
|
|
59
|
+
}
|
|
60
|
+
declare const manyTablesTournamentTableListScreenSlice: _reduxjs_toolkit.Slice<ManyTablesTournamentTableListScreenState, {
|
|
61
|
+
start: (state: ManyTablesTournamentTableListScreenState) => {
|
|
62
|
+
isLoading: boolean;
|
|
63
|
+
isError: boolean;
|
|
64
|
+
data: undefined;
|
|
65
|
+
};
|
|
66
|
+
error: (state: ManyTablesTournamentTableListScreenState) => {
|
|
67
|
+
isLoading: boolean;
|
|
68
|
+
isError: boolean;
|
|
69
|
+
data: AppScreenTypes | undefined;
|
|
70
|
+
};
|
|
71
|
+
success: (state: ManyTablesTournamentTableListScreenState, action: PayloadAction<AppScreenTypes | undefined>) => {
|
|
72
|
+
isLoading: boolean;
|
|
73
|
+
isError: boolean;
|
|
74
|
+
data: AppScreenTypes | undefined;
|
|
75
|
+
};
|
|
76
|
+
init: (state: Map<immer.Draft<K>, immer.Draft<V>>) => Map<immer.Draft<K>, immer.Draft<V>>;
|
|
77
|
+
}, "manyTablesTournamentTableListScreenSlice", "manyTablesTournamentTableListScreenSlice", {
|
|
78
|
+
getScreen: (sliceState: ManyTablesTournamentTableListScreenState) => AppScreenTypes | undefined;
|
|
79
|
+
isLoading: (sliceState: ManyTablesTournamentTableListScreenState) => boolean;
|
|
80
|
+
isError: (sliceState: ManyTablesTournamentTableListScreenState) => boolean;
|
|
81
|
+
}>;
|
|
82
|
+
|
|
83
|
+
interface ManyTablesTournamentStatusScreenState {
|
|
84
|
+
isLoading: boolean;
|
|
85
|
+
isError: boolean;
|
|
86
|
+
data: AppScreenTypes | undefined;
|
|
87
|
+
}
|
|
88
|
+
declare const manyTablesTournamentStatusScreenSlice: _reduxjs_toolkit.Slice<ManyTablesTournamentStatusScreenState, {
|
|
89
|
+
start: (state: ManyTablesTournamentStatusScreenState) => {
|
|
90
|
+
isLoading: boolean;
|
|
91
|
+
isError: boolean;
|
|
92
|
+
data: undefined;
|
|
93
|
+
};
|
|
94
|
+
error: (state: ManyTablesTournamentStatusScreenState) => {
|
|
95
|
+
isLoading: boolean;
|
|
96
|
+
isError: boolean;
|
|
97
|
+
data: AppScreenTypes | undefined;
|
|
98
|
+
};
|
|
99
|
+
success: (state: ManyTablesTournamentStatusScreenState, action: PayloadAction<AppScreenTypes | undefined>) => {
|
|
100
|
+
isLoading: boolean;
|
|
101
|
+
isError: boolean;
|
|
102
|
+
data: AppScreenTypes | undefined;
|
|
103
|
+
};
|
|
104
|
+
init: (state: Map<immer.Draft<K>, immer.Draft<V>>) => Map<immer.Draft<K>, immer.Draft<V>>;
|
|
105
|
+
}, "manyTablesTournamentStatusScreenSlice", "manyTablesTournamentStatusScreenSlice", {
|
|
106
|
+
getScreen: (sliceState: ManyTablesTournamentStatusScreenState) => AppScreenTypes | undefined;
|
|
107
|
+
isLoading: (sliceState: ManyTablesTournamentStatusScreenState) => boolean;
|
|
108
|
+
isError: (sliceState: ManyTablesTournamentStatusScreenState) => boolean;
|
|
109
|
+
}>;
|
|
110
|
+
|
|
111
|
+
interface OneTableTournamentStatusScreenState {
|
|
112
|
+
isLoading: boolean;
|
|
113
|
+
isError: boolean;
|
|
114
|
+
data: AppScreenTypes | undefined;
|
|
115
|
+
}
|
|
116
|
+
declare const oneTableTournamentStatusScreenSlice: _reduxjs_toolkit.Slice<OneTableTournamentStatusScreenState, {
|
|
117
|
+
start: (state: OneTableTournamentStatusScreenState) => {
|
|
118
|
+
isLoading: boolean;
|
|
119
|
+
isError: boolean;
|
|
120
|
+
data: undefined;
|
|
121
|
+
};
|
|
122
|
+
error: (state: OneTableTournamentStatusScreenState) => {
|
|
123
|
+
isLoading: boolean;
|
|
124
|
+
isError: boolean;
|
|
125
|
+
data: AppScreenTypes | undefined;
|
|
126
|
+
};
|
|
127
|
+
success: (state: OneTableTournamentStatusScreenState, action: PayloadAction<AppScreenTypes | undefined>) => {
|
|
128
|
+
isLoading: boolean;
|
|
129
|
+
isError: boolean;
|
|
130
|
+
data: AppScreenTypes | undefined;
|
|
131
|
+
};
|
|
132
|
+
init: (state: Map<immer.Draft<K>, immer.Draft<V>>) => Map<immer.Draft<K>, immer.Draft<V>>;
|
|
133
|
+
}, "oneTableTournamentStatusScreenSlice", "oneTableTournamentStatusScreenSlice", {
|
|
134
|
+
getScreen: (sliceState: OneTableTournamentStatusScreenState) => AppScreenTypes | undefined;
|
|
135
|
+
isLoading: (sliceState: OneTableTournamentStatusScreenState) => boolean;
|
|
136
|
+
isError: (sliceState: OneTableTournamentStatusScreenState) => boolean;
|
|
137
|
+
}>;
|
|
138
|
+
|
|
67
139
|
interface ReactionBottomSheetBlockState {
|
|
68
140
|
isOpen: boolean;
|
|
69
141
|
}
|
|
@@ -95,18 +167,18 @@ declare const raiseBottomSheetBlockSlice: _reduxjs_toolkit.Slice<RaiseBottomShee
|
|
|
95
167
|
interface TablesScreenState {
|
|
96
168
|
isLoading: boolean;
|
|
97
169
|
isError: boolean;
|
|
98
|
-
data?: AppScreenTypes;
|
|
170
|
+
data?: AppScreenTypes | undefined;
|
|
99
171
|
}
|
|
100
172
|
declare const tablesScreenSlice: _reduxjs_toolkit.Slice<TablesScreenState, {
|
|
101
173
|
start: (state: TablesScreenState) => {
|
|
102
174
|
isLoading: boolean;
|
|
103
|
-
isError:
|
|
104
|
-
data:
|
|
175
|
+
isError: boolean;
|
|
176
|
+
data: undefined;
|
|
105
177
|
};
|
|
106
178
|
error: (state: TablesScreenState) => {
|
|
107
179
|
isLoading: boolean;
|
|
108
180
|
isError: boolean;
|
|
109
|
-
data?: AppScreenTypes;
|
|
181
|
+
data?: AppScreenTypes | undefined;
|
|
110
182
|
};
|
|
111
183
|
success: (state: TablesScreenState, action: PayloadAction<AppScreenTypes | undefined>) => {
|
|
112
184
|
isLoading: boolean;
|
|
@@ -124,18 +196,18 @@ declare const tablesScreenSlice: _reduxjs_toolkit.Slice<TablesScreenState, {
|
|
|
124
196
|
interface ShopScreenState {
|
|
125
197
|
isLoading: boolean;
|
|
126
198
|
isError: boolean;
|
|
127
|
-
data
|
|
199
|
+
data: AppScreenTypes | undefined;
|
|
128
200
|
}
|
|
129
201
|
declare const shopScreenSlice: _reduxjs_toolkit.Slice<ShopScreenState, {
|
|
130
202
|
start: (state: ShopScreenState) => {
|
|
131
203
|
isLoading: boolean;
|
|
132
|
-
isError:
|
|
133
|
-
data:
|
|
204
|
+
isError: boolean;
|
|
205
|
+
data: undefined;
|
|
134
206
|
};
|
|
135
207
|
error: (state: ShopScreenState) => {
|
|
136
208
|
isLoading: boolean;
|
|
137
209
|
isError: boolean;
|
|
138
|
-
data
|
|
210
|
+
data: AppScreenTypes | undefined;
|
|
139
211
|
};
|
|
140
212
|
success: (state: ShopScreenState, action: PayloadAction<AppScreenTypes | undefined>) => {
|
|
141
213
|
isLoading: boolean;
|
|
@@ -152,18 +224,18 @@ declare const shopScreenSlice: _reduxjs_toolkit.Slice<ShopScreenState, {
|
|
|
152
224
|
interface MenuScreenState {
|
|
153
225
|
isLoading: boolean;
|
|
154
226
|
isError: boolean;
|
|
155
|
-
data
|
|
227
|
+
data: AppScreenTypes | undefined;
|
|
156
228
|
}
|
|
157
229
|
declare const menuScreenSlice: _reduxjs_toolkit.Slice<MenuScreenState, {
|
|
158
230
|
start: (state: MenuScreenState) => {
|
|
159
231
|
isLoading: boolean;
|
|
160
|
-
isError:
|
|
161
|
-
data:
|
|
232
|
+
isError: boolean;
|
|
233
|
+
data: undefined;
|
|
162
234
|
};
|
|
163
235
|
error: (state: MenuScreenState) => {
|
|
164
236
|
isLoading: boolean;
|
|
165
237
|
isError: boolean;
|
|
166
|
-
data
|
|
238
|
+
data: AppScreenTypes | undefined;
|
|
167
239
|
};
|
|
168
240
|
success: (state: MenuScreenState, action: PayloadAction<AppScreenTypes | undefined>) => {
|
|
169
241
|
isLoading: boolean;
|
|
@@ -210,1135 +282,6 @@ declare const appSlice: _reduxjs_toolkit.Slice<AppSlice, {
|
|
|
210
282
|
isError: (sliceState: AppSlice) => boolean;
|
|
211
283
|
}>;
|
|
212
284
|
|
|
213
|
-
declare enum TableScreenSliceActionTypes {
|
|
214
|
-
INIT = "@tableScreenSlice/init",
|
|
215
|
-
DEACTIVATE = "@tableScreenSlice/deactivate",
|
|
216
|
-
BACK_CLICK = "@tableScreenSlice/backClick",
|
|
217
|
-
START = "@tableScreenSlice/start",
|
|
218
|
-
SUCCESS = "@tableScreenSlice/success",
|
|
219
|
-
ERROR = "@tableScreenSlice/error",
|
|
220
|
-
MOVE_BUTTON_CLICK = "@tableScreenSlice/moveButtonClick",
|
|
221
|
-
SET_WS_TABLE_STATE = "@tableScreenSlice/setWsTableState",
|
|
222
|
-
DECREMENT_PLAYERS_TURN_TIMEOUT_TIMER = "@tableScreenSlice/decrementPlayersTurnTimeoutTimer",
|
|
223
|
-
DECREMENT_RESTART_TIMEOUT_TIMER = "@tableScreenSlice/decrementRestartTimeoutTimer"
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
declare const actions: {
|
|
227
|
-
start: _reduxjs_toolkit.ActionCreatorWithoutPayload<TableScreenSliceActionTypes.START>;
|
|
228
|
-
success: _reduxjs_toolkit.ActionCreatorWithPayload<IBaseTableGameState, string>;
|
|
229
|
-
error: _reduxjs_toolkit.ActionCreatorWithoutPayload<TableScreenSliceActionTypes.ERROR>;
|
|
230
|
-
init: _reduxjs_toolkit.ActionCreatorWithoutPayload<TableScreenSliceActionTypes.INIT>;
|
|
231
|
-
deactivate: _reduxjs_toolkit.ActionCreatorWithoutPayload<TableScreenSliceActionTypes.DEACTIVATE>;
|
|
232
|
-
backClick: _reduxjs_toolkit.ActionCreatorWithoutPayload<TableScreenSliceActionTypes.BACK_CLICK>;
|
|
233
|
-
moveButtonClick: _reduxjs_toolkit.ActionCreatorWithPayload<string, string>;
|
|
234
|
-
setWsTableState: _reduxjs_toolkit.ActionCreatorWithPayload<IBaseTableGameState, string>;
|
|
235
|
-
decrementPlayersTurnTimeoutTimer: _reduxjs_toolkit.ActionCreatorWithoutPayload<TableScreenSliceActionTypes.DECREMENT_PLAYERS_TURN_TIMEOUT_TIMER>;
|
|
236
|
-
decrementRestartTimeoutTimer: _reduxjs_toolkit.ActionCreatorWithoutPayload<TableScreenSliceActionTypes.DECREMENT_RESTART_TIMEOUT_TIMER>;
|
|
237
|
-
};
|
|
238
|
-
|
|
239
|
-
declare const store: any;
|
|
240
|
-
type RootState = ReturnType<typeof store.getState>;
|
|
241
|
-
|
|
242
|
-
declare const baseSelectors: {
|
|
243
|
-
isError: ((state: any, ...params: any) => boolean) & {
|
|
244
|
-
clearCache: () => void;
|
|
245
|
-
resultsCount: () => number;
|
|
246
|
-
resetResultsCount: () => void;
|
|
247
|
-
} & {
|
|
248
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => boolean;
|
|
249
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => boolean) & {
|
|
250
|
-
clearCache: () => void;
|
|
251
|
-
resultsCount: () => number;
|
|
252
|
-
resetResultsCount: () => void;
|
|
253
|
-
};
|
|
254
|
-
lastResult: () => boolean;
|
|
255
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
256
|
-
recomputations: () => number;
|
|
257
|
-
resetRecomputations: () => void;
|
|
258
|
-
dependencyRecomputations: () => number;
|
|
259
|
-
resetDependencyRecomputations: () => void;
|
|
260
|
-
} & {
|
|
261
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
262
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
263
|
-
};
|
|
264
|
-
isLoading: ((state: any, ...params: any) => boolean) & {
|
|
265
|
-
clearCache: () => void;
|
|
266
|
-
resultsCount: () => number;
|
|
267
|
-
resetResultsCount: () => void;
|
|
268
|
-
} & {
|
|
269
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => boolean;
|
|
270
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => boolean) & {
|
|
271
|
-
clearCache: () => void;
|
|
272
|
-
resultsCount: () => number;
|
|
273
|
-
resetResultsCount: () => void;
|
|
274
|
-
};
|
|
275
|
-
lastResult: () => boolean;
|
|
276
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
277
|
-
recomputations: () => number;
|
|
278
|
-
resetRecomputations: () => void;
|
|
279
|
-
dependencyRecomputations: () => number;
|
|
280
|
-
resetDependencyRecomputations: () => void;
|
|
281
|
-
} & {
|
|
282
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
283
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
284
|
-
};
|
|
285
|
-
getRoomId: ((state: any, ...params: any) => string) & {
|
|
286
|
-
clearCache: () => void;
|
|
287
|
-
resultsCount: () => number;
|
|
288
|
-
resetResultsCount: () => void;
|
|
289
|
-
} & {
|
|
290
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => string;
|
|
291
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => string) & {
|
|
292
|
-
clearCache: () => void;
|
|
293
|
-
resultsCount: () => number;
|
|
294
|
-
resetResultsCount: () => void;
|
|
295
|
-
};
|
|
296
|
-
lastResult: () => string;
|
|
297
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
298
|
-
clearCache: () => void;
|
|
299
|
-
resultsCount: () => number;
|
|
300
|
-
resetResultsCount: () => void;
|
|
301
|
-
} & {
|
|
302
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
303
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
304
|
-
clearCache: () => void;
|
|
305
|
-
resultsCount: () => number;
|
|
306
|
-
resetResultsCount: () => void;
|
|
307
|
-
};
|
|
308
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
309
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
310
|
-
recomputations: () => number;
|
|
311
|
-
resetRecomputations: () => void;
|
|
312
|
-
dependencyRecomputations: () => number;
|
|
313
|
-
resetDependencyRecomputations: () => void;
|
|
314
|
-
} & {
|
|
315
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
316
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
317
|
-
}];
|
|
318
|
-
recomputations: () => number;
|
|
319
|
-
resetRecomputations: () => void;
|
|
320
|
-
dependencyRecomputations: () => number;
|
|
321
|
-
resetDependencyRecomputations: () => void;
|
|
322
|
-
} & {
|
|
323
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
324
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
325
|
-
};
|
|
326
|
-
getTableId: ((state: any, ...params: any) => string) & {
|
|
327
|
-
clearCache: () => void;
|
|
328
|
-
resultsCount: () => number;
|
|
329
|
-
resetResultsCount: () => void;
|
|
330
|
-
} & {
|
|
331
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => string;
|
|
332
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => string) & {
|
|
333
|
-
clearCache: () => void;
|
|
334
|
-
resultsCount: () => number;
|
|
335
|
-
resetResultsCount: () => void;
|
|
336
|
-
};
|
|
337
|
-
lastResult: () => string;
|
|
338
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
339
|
-
clearCache: () => void;
|
|
340
|
-
resultsCount: () => number;
|
|
341
|
-
resetResultsCount: () => void;
|
|
342
|
-
} & {
|
|
343
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
344
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
345
|
-
clearCache: () => void;
|
|
346
|
-
resultsCount: () => number;
|
|
347
|
-
resetResultsCount: () => void;
|
|
348
|
-
};
|
|
349
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
350
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
351
|
-
recomputations: () => number;
|
|
352
|
-
resetRecomputations: () => void;
|
|
353
|
-
dependencyRecomputations: () => number;
|
|
354
|
-
resetDependencyRecomputations: () => void;
|
|
355
|
-
} & {
|
|
356
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
357
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
358
|
-
}];
|
|
359
|
-
recomputations: () => number;
|
|
360
|
-
resetRecomputations: () => void;
|
|
361
|
-
dependencyRecomputations: () => number;
|
|
362
|
-
resetDependencyRecomputations: () => void;
|
|
363
|
-
} & {
|
|
364
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
365
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
366
|
-
};
|
|
367
|
-
getGameId: ((state: any, ...params: any) => string) & {
|
|
368
|
-
clearCache: () => void;
|
|
369
|
-
resultsCount: () => number;
|
|
370
|
-
resetResultsCount: () => void;
|
|
371
|
-
} & {
|
|
372
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => string;
|
|
373
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => string) & {
|
|
374
|
-
clearCache: () => void;
|
|
375
|
-
resultsCount: () => number;
|
|
376
|
-
resetResultsCount: () => void;
|
|
377
|
-
};
|
|
378
|
-
lastResult: () => string;
|
|
379
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
380
|
-
clearCache: () => void;
|
|
381
|
-
resultsCount: () => number;
|
|
382
|
-
resetResultsCount: () => void;
|
|
383
|
-
} & {
|
|
384
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
385
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
386
|
-
clearCache: () => void;
|
|
387
|
-
resultsCount: () => number;
|
|
388
|
-
resetResultsCount: () => void;
|
|
389
|
-
};
|
|
390
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
391
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
392
|
-
recomputations: () => number;
|
|
393
|
-
resetRecomputations: () => void;
|
|
394
|
-
dependencyRecomputations: () => number;
|
|
395
|
-
resetDependencyRecomputations: () => void;
|
|
396
|
-
} & {
|
|
397
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
398
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
399
|
-
}];
|
|
400
|
-
recomputations: () => number;
|
|
401
|
-
resetRecomputations: () => void;
|
|
402
|
-
dependencyRecomputations: () => number;
|
|
403
|
-
resetDependencyRecomputations: () => void;
|
|
404
|
-
} & {
|
|
405
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
406
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
407
|
-
};
|
|
408
|
-
getTableSize: ((state: any, ...params: any) => number) & {
|
|
409
|
-
clearCache: () => void;
|
|
410
|
-
resultsCount: () => number;
|
|
411
|
-
resetResultsCount: () => void;
|
|
412
|
-
} & {
|
|
413
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => number;
|
|
414
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => number) & {
|
|
415
|
-
clearCache: () => void;
|
|
416
|
-
resultsCount: () => number;
|
|
417
|
-
resetResultsCount: () => void;
|
|
418
|
-
};
|
|
419
|
-
lastResult: () => number;
|
|
420
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
421
|
-
clearCache: () => void;
|
|
422
|
-
resultsCount: () => number;
|
|
423
|
-
resetResultsCount: () => void;
|
|
424
|
-
} & {
|
|
425
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
426
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
427
|
-
clearCache: () => void;
|
|
428
|
-
resultsCount: () => number;
|
|
429
|
-
resetResultsCount: () => void;
|
|
430
|
-
};
|
|
431
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
432
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
433
|
-
recomputations: () => number;
|
|
434
|
-
resetRecomputations: () => void;
|
|
435
|
-
dependencyRecomputations: () => number;
|
|
436
|
-
resetDependencyRecomputations: () => void;
|
|
437
|
-
} & {
|
|
438
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
439
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
440
|
-
}];
|
|
441
|
-
recomputations: () => number;
|
|
442
|
-
resetRecomputations: () => void;
|
|
443
|
-
dependencyRecomputations: () => number;
|
|
444
|
-
resetDependencyRecomputations: () => void;
|
|
445
|
-
} & {
|
|
446
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
447
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
448
|
-
};
|
|
449
|
-
getCheckPlayersTurnTimerRemain: ((state: any, ...params: any) => number | undefined) & {
|
|
450
|
-
clearCache: () => void;
|
|
451
|
-
resultsCount: () => number;
|
|
452
|
-
resetResultsCount: () => void;
|
|
453
|
-
} & {
|
|
454
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => number | undefined;
|
|
455
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => number | undefined) & {
|
|
456
|
-
clearCache: () => void;
|
|
457
|
-
resultsCount: () => number;
|
|
458
|
-
resetResultsCount: () => void;
|
|
459
|
-
};
|
|
460
|
-
lastResult: () => number | undefined;
|
|
461
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
462
|
-
clearCache: () => void;
|
|
463
|
-
resultsCount: () => number;
|
|
464
|
-
resetResultsCount: () => void;
|
|
465
|
-
} & {
|
|
466
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
467
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
468
|
-
clearCache: () => void;
|
|
469
|
-
resultsCount: () => number;
|
|
470
|
-
resetResultsCount: () => void;
|
|
471
|
-
};
|
|
472
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
473
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
474
|
-
recomputations: () => number;
|
|
475
|
-
resetRecomputations: () => void;
|
|
476
|
-
dependencyRecomputations: () => number;
|
|
477
|
-
resetDependencyRecomputations: () => void;
|
|
478
|
-
} & {
|
|
479
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
480
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
481
|
-
}];
|
|
482
|
-
recomputations: () => number;
|
|
483
|
-
resetRecomputations: () => void;
|
|
484
|
-
dependencyRecomputations: () => number;
|
|
485
|
-
resetDependencyRecomputations: () => void;
|
|
486
|
-
} & {
|
|
487
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
488
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
489
|
-
};
|
|
490
|
-
getRestartTimerRemain: ((state: any, ...params: any) => number | undefined) & {
|
|
491
|
-
clearCache: () => void;
|
|
492
|
-
resultsCount: () => number;
|
|
493
|
-
resetResultsCount: () => void;
|
|
494
|
-
} & {
|
|
495
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => number | undefined;
|
|
496
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => number | undefined) & {
|
|
497
|
-
clearCache: () => void;
|
|
498
|
-
resultsCount: () => number;
|
|
499
|
-
resetResultsCount: () => void;
|
|
500
|
-
};
|
|
501
|
-
lastResult: () => number | undefined;
|
|
502
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
503
|
-
clearCache: () => void;
|
|
504
|
-
resultsCount: () => number;
|
|
505
|
-
resetResultsCount: () => void;
|
|
506
|
-
} & {
|
|
507
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
508
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
509
|
-
clearCache: () => void;
|
|
510
|
-
resultsCount: () => number;
|
|
511
|
-
resetResultsCount: () => void;
|
|
512
|
-
};
|
|
513
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
514
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
515
|
-
recomputations: () => number;
|
|
516
|
-
resetRecomputations: () => void;
|
|
517
|
-
dependencyRecomputations: () => number;
|
|
518
|
-
resetDependencyRecomputations: () => void;
|
|
519
|
-
} & {
|
|
520
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
521
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
522
|
-
}];
|
|
523
|
-
recomputations: () => number;
|
|
524
|
-
resetRecomputations: () => void;
|
|
525
|
-
dependencyRecomputations: () => number;
|
|
526
|
-
resetDependencyRecomputations: () => void;
|
|
527
|
-
} & {
|
|
528
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
529
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
530
|
-
};
|
|
531
|
-
getMovesPanel: ((state: any, ...params: any) => IBaseTableGameStateMovesPanel) & {
|
|
532
|
-
clearCache: () => void;
|
|
533
|
-
resultsCount: () => number;
|
|
534
|
-
resetResultsCount: () => void;
|
|
535
|
-
} & {
|
|
536
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => IBaseTableGameStateMovesPanel;
|
|
537
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => IBaseTableGameStateMovesPanel) & {
|
|
538
|
-
clearCache: () => void;
|
|
539
|
-
resultsCount: () => number;
|
|
540
|
-
resetResultsCount: () => void;
|
|
541
|
-
};
|
|
542
|
-
lastResult: () => IBaseTableGameStateMovesPanel;
|
|
543
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
544
|
-
clearCache: () => void;
|
|
545
|
-
resultsCount: () => number;
|
|
546
|
-
resetResultsCount: () => void;
|
|
547
|
-
} & {
|
|
548
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
549
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
550
|
-
clearCache: () => void;
|
|
551
|
-
resultsCount: () => number;
|
|
552
|
-
resetResultsCount: () => void;
|
|
553
|
-
};
|
|
554
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
555
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
556
|
-
recomputations: () => number;
|
|
557
|
-
resetRecomputations: () => void;
|
|
558
|
-
dependencyRecomputations: () => number;
|
|
559
|
-
resetDependencyRecomputations: () => void;
|
|
560
|
-
} & {
|
|
561
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
562
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
563
|
-
}];
|
|
564
|
-
recomputations: () => number;
|
|
565
|
-
resetRecomputations: () => void;
|
|
566
|
-
dependencyRecomputations: () => number;
|
|
567
|
-
resetDependencyRecomputations: () => void;
|
|
568
|
-
} & {
|
|
569
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
570
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
571
|
-
};
|
|
572
|
-
getMovesPanelIsOpen: ((state: any, ...params: any) => boolean) & {
|
|
573
|
-
clearCache: () => void;
|
|
574
|
-
resultsCount: () => number;
|
|
575
|
-
resetResultsCount: () => void;
|
|
576
|
-
} & {
|
|
577
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameStateMovesPanel) => boolean;
|
|
578
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameStateMovesPanel) => boolean) & {
|
|
579
|
-
clearCache: () => void;
|
|
580
|
-
resultsCount: () => number;
|
|
581
|
-
resetResultsCount: () => void;
|
|
582
|
-
};
|
|
583
|
-
lastResult: () => boolean;
|
|
584
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameStateMovesPanel) & {
|
|
585
|
-
clearCache: () => void;
|
|
586
|
-
resultsCount: () => number;
|
|
587
|
-
resetResultsCount: () => void;
|
|
588
|
-
} & {
|
|
589
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => IBaseTableGameStateMovesPanel;
|
|
590
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => IBaseTableGameStateMovesPanel) & {
|
|
591
|
-
clearCache: () => void;
|
|
592
|
-
resultsCount: () => number;
|
|
593
|
-
resetResultsCount: () => void;
|
|
594
|
-
};
|
|
595
|
-
lastResult: () => IBaseTableGameStateMovesPanel;
|
|
596
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
597
|
-
clearCache: () => void;
|
|
598
|
-
resultsCount: () => number;
|
|
599
|
-
resetResultsCount: () => void;
|
|
600
|
-
} & {
|
|
601
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
602
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
603
|
-
clearCache: () => void;
|
|
604
|
-
resultsCount: () => number;
|
|
605
|
-
resetResultsCount: () => void;
|
|
606
|
-
};
|
|
607
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
608
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
609
|
-
recomputations: () => number;
|
|
610
|
-
resetRecomputations: () => void;
|
|
611
|
-
dependencyRecomputations: () => number;
|
|
612
|
-
resetDependencyRecomputations: () => void;
|
|
613
|
-
} & {
|
|
614
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
615
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
616
|
-
}];
|
|
617
|
-
recomputations: () => number;
|
|
618
|
-
resetRecomputations: () => void;
|
|
619
|
-
dependencyRecomputations: () => number;
|
|
620
|
-
resetDependencyRecomputations: () => void;
|
|
621
|
-
} & {
|
|
622
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
623
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
624
|
-
}];
|
|
625
|
-
recomputations: () => number;
|
|
626
|
-
resetRecomputations: () => void;
|
|
627
|
-
dependencyRecomputations: () => number;
|
|
628
|
-
resetDependencyRecomputations: () => void;
|
|
629
|
-
} & {
|
|
630
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
631
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
632
|
-
};
|
|
633
|
-
getMovesPanelMoves: ((state: any, ...params: any) => jp_common_models.IBaseTableGameStateYoursActionItem[]) & {
|
|
634
|
-
clearCache: () => void;
|
|
635
|
-
resultsCount: () => number;
|
|
636
|
-
resetResultsCount: () => void;
|
|
637
|
-
} & {
|
|
638
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameStateMovesPanel) => jp_common_models.IBaseTableGameStateYoursActionItem[];
|
|
639
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameStateMovesPanel) => jp_common_models.IBaseTableGameStateYoursActionItem[]) & {
|
|
640
|
-
clearCache: () => void;
|
|
641
|
-
resultsCount: () => number;
|
|
642
|
-
resetResultsCount: () => void;
|
|
643
|
-
};
|
|
644
|
-
lastResult: () => jp_common_models.IBaseTableGameStateYoursActionItem[];
|
|
645
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameStateMovesPanel) & {
|
|
646
|
-
clearCache: () => void;
|
|
647
|
-
resultsCount: () => number;
|
|
648
|
-
resetResultsCount: () => void;
|
|
649
|
-
} & {
|
|
650
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => IBaseTableGameStateMovesPanel;
|
|
651
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => IBaseTableGameStateMovesPanel) & {
|
|
652
|
-
clearCache: () => void;
|
|
653
|
-
resultsCount: () => number;
|
|
654
|
-
resetResultsCount: () => void;
|
|
655
|
-
};
|
|
656
|
-
lastResult: () => IBaseTableGameStateMovesPanel;
|
|
657
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
658
|
-
clearCache: () => void;
|
|
659
|
-
resultsCount: () => number;
|
|
660
|
-
resetResultsCount: () => void;
|
|
661
|
-
} & {
|
|
662
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
663
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
664
|
-
clearCache: () => void;
|
|
665
|
-
resultsCount: () => number;
|
|
666
|
-
resetResultsCount: () => void;
|
|
667
|
-
};
|
|
668
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
669
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
670
|
-
recomputations: () => number;
|
|
671
|
-
resetRecomputations: () => void;
|
|
672
|
-
dependencyRecomputations: () => number;
|
|
673
|
-
resetDependencyRecomputations: () => void;
|
|
674
|
-
} & {
|
|
675
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
676
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
677
|
-
}];
|
|
678
|
-
recomputations: () => number;
|
|
679
|
-
resetRecomputations: () => void;
|
|
680
|
-
dependencyRecomputations: () => number;
|
|
681
|
-
resetDependencyRecomputations: () => void;
|
|
682
|
-
} & {
|
|
683
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
684
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
685
|
-
}];
|
|
686
|
-
recomputations: () => number;
|
|
687
|
-
resetRecomputations: () => void;
|
|
688
|
-
dependencyRecomputations: () => number;
|
|
689
|
-
resetDependencyRecomputations: () => void;
|
|
690
|
-
} & {
|
|
691
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
692
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
693
|
-
};
|
|
694
|
-
getYoursMessage: ((state: any, ...params: any) => string) & {
|
|
695
|
-
clearCache: () => void;
|
|
696
|
-
resultsCount: () => number;
|
|
697
|
-
resetResultsCount: () => void;
|
|
698
|
-
} & {
|
|
699
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => string;
|
|
700
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => string) & {
|
|
701
|
-
clearCache: () => void;
|
|
702
|
-
resultsCount: () => number;
|
|
703
|
-
resetResultsCount: () => void;
|
|
704
|
-
};
|
|
705
|
-
lastResult: () => string;
|
|
706
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
707
|
-
clearCache: () => void;
|
|
708
|
-
resultsCount: () => number;
|
|
709
|
-
resetResultsCount: () => void;
|
|
710
|
-
} & {
|
|
711
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
712
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
713
|
-
clearCache: () => void;
|
|
714
|
-
resultsCount: () => number;
|
|
715
|
-
resetResultsCount: () => void;
|
|
716
|
-
};
|
|
717
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
718
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
719
|
-
recomputations: () => number;
|
|
720
|
-
resetRecomputations: () => void;
|
|
721
|
-
dependencyRecomputations: () => number;
|
|
722
|
-
resetDependencyRecomputations: () => void;
|
|
723
|
-
} & {
|
|
724
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
725
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
726
|
-
}];
|
|
727
|
-
recomputations: () => number;
|
|
728
|
-
resetRecomputations: () => void;
|
|
729
|
-
dependencyRecomputations: () => number;
|
|
730
|
-
resetDependencyRecomputations: () => void;
|
|
731
|
-
} & {
|
|
732
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
733
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
734
|
-
};
|
|
735
|
-
getExtraButtons: ((state: any, ...params: any) => jp_common_models.IBaseTableGameStateExtraButtons | undefined) & {
|
|
736
|
-
clearCache: () => void;
|
|
737
|
-
resultsCount: () => number;
|
|
738
|
-
resetResultsCount: () => void;
|
|
739
|
-
} & {
|
|
740
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => jp_common_models.IBaseTableGameStateExtraButtons | undefined;
|
|
741
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => jp_common_models.IBaseTableGameStateExtraButtons | undefined) & {
|
|
742
|
-
clearCache: () => void;
|
|
743
|
-
resultsCount: () => number;
|
|
744
|
-
resetResultsCount: () => void;
|
|
745
|
-
};
|
|
746
|
-
lastResult: () => jp_common_models.IBaseTableGameStateExtraButtons | undefined;
|
|
747
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
748
|
-
clearCache: () => void;
|
|
749
|
-
resultsCount: () => number;
|
|
750
|
-
resetResultsCount: () => void;
|
|
751
|
-
} & {
|
|
752
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
753
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
754
|
-
clearCache: () => void;
|
|
755
|
-
resultsCount: () => number;
|
|
756
|
-
resetResultsCount: () => void;
|
|
757
|
-
};
|
|
758
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
759
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
760
|
-
recomputations: () => number;
|
|
761
|
-
resetRecomputations: () => void;
|
|
762
|
-
dependencyRecomputations: () => number;
|
|
763
|
-
resetDependencyRecomputations: () => void;
|
|
764
|
-
} & {
|
|
765
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
766
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
767
|
-
}];
|
|
768
|
-
recomputations: () => number;
|
|
769
|
-
resetRecomputations: () => void;
|
|
770
|
-
dependencyRecomputations: () => number;
|
|
771
|
-
resetDependencyRecomputations: () => void;
|
|
772
|
-
} & {
|
|
773
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
774
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
775
|
-
};
|
|
776
|
-
getSummary: ((state: any, ...params: any) => IBaseTableGameStateSummary) & {
|
|
777
|
-
clearCache: () => void;
|
|
778
|
-
resultsCount: () => number;
|
|
779
|
-
resetResultsCount: () => void;
|
|
780
|
-
} & {
|
|
781
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => IBaseTableGameStateSummary;
|
|
782
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => IBaseTableGameStateSummary) & {
|
|
783
|
-
clearCache: () => void;
|
|
784
|
-
resultsCount: () => number;
|
|
785
|
-
resetResultsCount: () => void;
|
|
786
|
-
};
|
|
787
|
-
lastResult: () => IBaseTableGameStateSummary;
|
|
788
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
789
|
-
clearCache: () => void;
|
|
790
|
-
resultsCount: () => number;
|
|
791
|
-
resetResultsCount: () => void;
|
|
792
|
-
} & {
|
|
793
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
794
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
795
|
-
clearCache: () => void;
|
|
796
|
-
resultsCount: () => number;
|
|
797
|
-
resetResultsCount: () => void;
|
|
798
|
-
};
|
|
799
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
800
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
801
|
-
recomputations: () => number;
|
|
802
|
-
resetRecomputations: () => void;
|
|
803
|
-
dependencyRecomputations: () => number;
|
|
804
|
-
resetDependencyRecomputations: () => void;
|
|
805
|
-
} & {
|
|
806
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
807
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
808
|
-
}];
|
|
809
|
-
recomputations: () => number;
|
|
810
|
-
resetRecomputations: () => void;
|
|
811
|
-
dependencyRecomputations: () => number;
|
|
812
|
-
resetDependencyRecomputations: () => void;
|
|
813
|
-
} & {
|
|
814
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
815
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
816
|
-
};
|
|
817
|
-
getSummaryList: ((state: any, ...params: any) => jp_common_models.IBaseTableGameStateSummaryItem[]) & {
|
|
818
|
-
clearCache: () => void;
|
|
819
|
-
resultsCount: () => number;
|
|
820
|
-
resetResultsCount: () => void;
|
|
821
|
-
} & {
|
|
822
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameStateSummary) => jp_common_models.IBaseTableGameStateSummaryItem[];
|
|
823
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameStateSummary) => jp_common_models.IBaseTableGameStateSummaryItem[]) & {
|
|
824
|
-
clearCache: () => void;
|
|
825
|
-
resultsCount: () => number;
|
|
826
|
-
resetResultsCount: () => void;
|
|
827
|
-
};
|
|
828
|
-
lastResult: () => jp_common_models.IBaseTableGameStateSummaryItem[];
|
|
829
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameStateSummary) & {
|
|
830
|
-
clearCache: () => void;
|
|
831
|
-
resultsCount: () => number;
|
|
832
|
-
resetResultsCount: () => void;
|
|
833
|
-
} & {
|
|
834
|
-
resultFunc: (resultFuncArgs_0: IBaseTableGameState | undefined) => IBaseTableGameStateSummary;
|
|
835
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableGameState | undefined) => IBaseTableGameStateSummary) & {
|
|
836
|
-
clearCache: () => void;
|
|
837
|
-
resultsCount: () => number;
|
|
838
|
-
resetResultsCount: () => void;
|
|
839
|
-
};
|
|
840
|
-
lastResult: () => IBaseTableGameStateSummary;
|
|
841
|
-
dependencies: [((state: any, ...params: any) => IBaseTableGameState | undefined) & {
|
|
842
|
-
clearCache: () => void;
|
|
843
|
-
resultsCount: () => number;
|
|
844
|
-
resetResultsCount: () => void;
|
|
845
|
-
} & {
|
|
846
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined;
|
|
847
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => IBaseTableGameState | undefined) & {
|
|
848
|
-
clearCache: () => void;
|
|
849
|
-
resultsCount: () => number;
|
|
850
|
-
resetResultsCount: () => void;
|
|
851
|
-
};
|
|
852
|
-
lastResult: () => IBaseTableGameState | undefined;
|
|
853
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
854
|
-
recomputations: () => number;
|
|
855
|
-
resetRecomputations: () => void;
|
|
856
|
-
dependencyRecomputations: () => number;
|
|
857
|
-
resetDependencyRecomputations: () => void;
|
|
858
|
-
} & {
|
|
859
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
860
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
861
|
-
}];
|
|
862
|
-
recomputations: () => number;
|
|
863
|
-
resetRecomputations: () => void;
|
|
864
|
-
dependencyRecomputations: () => number;
|
|
865
|
-
resetDependencyRecomputations: () => void;
|
|
866
|
-
} & {
|
|
867
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
868
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
869
|
-
}];
|
|
870
|
-
recomputations: () => number;
|
|
871
|
-
resetRecomputations: () => void;
|
|
872
|
-
dependencyRecomputations: () => number;
|
|
873
|
-
resetDependencyRecomputations: () => void;
|
|
874
|
-
} & {
|
|
875
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
876
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
877
|
-
};
|
|
878
|
-
};
|
|
879
|
-
|
|
880
|
-
declare const cardsSelectors: {
|
|
881
|
-
getCardPlayers: ((state: any, ...params: any) => jp_common_models.ICardPlayerState[]) & {
|
|
882
|
-
clearCache: () => void;
|
|
883
|
-
resultsCount: () => number;
|
|
884
|
-
resetResultsCount: () => void;
|
|
885
|
-
} & {
|
|
886
|
-
resultFunc: (resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => jp_common_models.ICardPlayerState[];
|
|
887
|
-
memoizedResultFunc: ((resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => jp_common_models.ICardPlayerState[]) & {
|
|
888
|
-
clearCache: () => void;
|
|
889
|
-
resultsCount: () => number;
|
|
890
|
-
resetResultsCount: () => void;
|
|
891
|
-
};
|
|
892
|
-
lastResult: () => jp_common_models.ICardPlayerState[];
|
|
893
|
-
dependencies: [((state: any, ...params: any) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
894
|
-
clearCache: () => void;
|
|
895
|
-
resultsCount: () => number;
|
|
896
|
-
resetResultsCount: () => void;
|
|
897
|
-
} & {
|
|
898
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined;
|
|
899
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
900
|
-
clearCache: () => void;
|
|
901
|
-
resultsCount: () => number;
|
|
902
|
-
resetResultsCount: () => void;
|
|
903
|
-
};
|
|
904
|
-
lastResult: () => jp_common_models.IBaseTableGameState | undefined;
|
|
905
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
906
|
-
recomputations: () => number;
|
|
907
|
-
resetRecomputations: () => void;
|
|
908
|
-
dependencyRecomputations: () => number;
|
|
909
|
-
resetDependencyRecomputations: () => void;
|
|
910
|
-
} & {
|
|
911
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
912
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
913
|
-
}];
|
|
914
|
-
recomputations: () => number;
|
|
915
|
-
resetRecomputations: () => void;
|
|
916
|
-
dependencyRecomputations: () => number;
|
|
917
|
-
resetDependencyRecomputations: () => void;
|
|
918
|
-
} & {
|
|
919
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
920
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
921
|
-
};
|
|
922
|
-
getBaseCard: ((state: any, ...params: any) => jp_common_models.ICardState | undefined) & {
|
|
923
|
-
clearCache: () => void;
|
|
924
|
-
resultsCount: () => number;
|
|
925
|
-
resetResultsCount: () => void;
|
|
926
|
-
} & {
|
|
927
|
-
resultFunc: (resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => jp_common_models.ICardState | undefined;
|
|
928
|
-
memoizedResultFunc: ((resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => jp_common_models.ICardState | undefined) & {
|
|
929
|
-
clearCache: () => void;
|
|
930
|
-
resultsCount: () => number;
|
|
931
|
-
resetResultsCount: () => void;
|
|
932
|
-
};
|
|
933
|
-
lastResult: () => jp_common_models.ICardState | undefined;
|
|
934
|
-
dependencies: [((state: any, ...params: any) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
935
|
-
clearCache: () => void;
|
|
936
|
-
resultsCount: () => number;
|
|
937
|
-
resetResultsCount: () => void;
|
|
938
|
-
} & {
|
|
939
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined;
|
|
940
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
941
|
-
clearCache: () => void;
|
|
942
|
-
resultsCount: () => number;
|
|
943
|
-
resetResultsCount: () => void;
|
|
944
|
-
};
|
|
945
|
-
lastResult: () => jp_common_models.IBaseTableGameState | undefined;
|
|
946
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
947
|
-
recomputations: () => number;
|
|
948
|
-
resetRecomputations: () => void;
|
|
949
|
-
dependencyRecomputations: () => number;
|
|
950
|
-
resetDependencyRecomputations: () => void;
|
|
951
|
-
} & {
|
|
952
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
953
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
954
|
-
}];
|
|
955
|
-
recomputations: () => number;
|
|
956
|
-
resetRecomputations: () => void;
|
|
957
|
-
dependencyRecomputations: () => number;
|
|
958
|
-
resetDependencyRecomputations: () => void;
|
|
959
|
-
} & {
|
|
960
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
961
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
962
|
-
};
|
|
963
|
-
getGameCards: ((state: any, ...params: any) => jp_common_models.ICardState[]) & {
|
|
964
|
-
clearCache: () => void;
|
|
965
|
-
resultsCount: () => number;
|
|
966
|
-
resetResultsCount: () => void;
|
|
967
|
-
} & {
|
|
968
|
-
resultFunc: (resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => jp_common_models.ICardState[];
|
|
969
|
-
memoizedResultFunc: ((resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => jp_common_models.ICardState[]) & {
|
|
970
|
-
clearCache: () => void;
|
|
971
|
-
resultsCount: () => number;
|
|
972
|
-
resetResultsCount: () => void;
|
|
973
|
-
};
|
|
974
|
-
lastResult: () => jp_common_models.ICardState[];
|
|
975
|
-
dependencies: [((state: any, ...params: any) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
976
|
-
clearCache: () => void;
|
|
977
|
-
resultsCount: () => number;
|
|
978
|
-
resetResultsCount: () => void;
|
|
979
|
-
} & {
|
|
980
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined;
|
|
981
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
982
|
-
clearCache: () => void;
|
|
983
|
-
resultsCount: () => number;
|
|
984
|
-
resetResultsCount: () => void;
|
|
985
|
-
};
|
|
986
|
-
lastResult: () => jp_common_models.IBaseTableGameState | undefined;
|
|
987
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
988
|
-
recomputations: () => number;
|
|
989
|
-
resetRecomputations: () => void;
|
|
990
|
-
dependencyRecomputations: () => number;
|
|
991
|
-
resetDependencyRecomputations: () => void;
|
|
992
|
-
} & {
|
|
993
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
994
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
995
|
-
}];
|
|
996
|
-
recomputations: () => number;
|
|
997
|
-
resetRecomputations: () => void;
|
|
998
|
-
dependencyRecomputations: () => number;
|
|
999
|
-
resetDependencyRecomputations: () => void;
|
|
1000
|
-
} & {
|
|
1001
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1002
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1003
|
-
};
|
|
1004
|
-
getGameCardsPair: ((state: any, ...params: any) => jp_common_models.ICardPairSlotState[]) & {
|
|
1005
|
-
clearCache: () => void;
|
|
1006
|
-
resultsCount: () => number;
|
|
1007
|
-
resetResultsCount: () => void;
|
|
1008
|
-
} & {
|
|
1009
|
-
resultFunc: (resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => jp_common_models.ICardPairSlotState[];
|
|
1010
|
-
memoizedResultFunc: ((resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => jp_common_models.ICardPairSlotState[]) & {
|
|
1011
|
-
clearCache: () => void;
|
|
1012
|
-
resultsCount: () => number;
|
|
1013
|
-
resetResultsCount: () => void;
|
|
1014
|
-
};
|
|
1015
|
-
lastResult: () => jp_common_models.ICardPairSlotState[];
|
|
1016
|
-
dependencies: [((state: any, ...params: any) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1017
|
-
clearCache: () => void;
|
|
1018
|
-
resultsCount: () => number;
|
|
1019
|
-
resetResultsCount: () => void;
|
|
1020
|
-
} & {
|
|
1021
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined;
|
|
1022
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1023
|
-
clearCache: () => void;
|
|
1024
|
-
resultsCount: () => number;
|
|
1025
|
-
resetResultsCount: () => void;
|
|
1026
|
-
};
|
|
1027
|
-
lastResult: () => jp_common_models.IBaseTableGameState | undefined;
|
|
1028
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
1029
|
-
recomputations: () => number;
|
|
1030
|
-
resetRecomputations: () => void;
|
|
1031
|
-
dependencyRecomputations: () => number;
|
|
1032
|
-
resetDependencyRecomputations: () => void;
|
|
1033
|
-
} & {
|
|
1034
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1035
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1036
|
-
}];
|
|
1037
|
-
recomputations: () => number;
|
|
1038
|
-
resetRecomputations: () => void;
|
|
1039
|
-
dependencyRecomputations: () => number;
|
|
1040
|
-
resetDependencyRecomputations: () => void;
|
|
1041
|
-
} & {
|
|
1042
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1043
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1044
|
-
};
|
|
1045
|
-
getCardsPanel: ((state: any, ...params: any) => ICardsPanelState) & {
|
|
1046
|
-
clearCache: () => void;
|
|
1047
|
-
resultsCount: () => number;
|
|
1048
|
-
resetResultsCount: () => void;
|
|
1049
|
-
} & {
|
|
1050
|
-
resultFunc: (resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => ICardsPanelState;
|
|
1051
|
-
memoizedResultFunc: ((resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => ICardsPanelState) & {
|
|
1052
|
-
clearCache: () => void;
|
|
1053
|
-
resultsCount: () => number;
|
|
1054
|
-
resetResultsCount: () => void;
|
|
1055
|
-
};
|
|
1056
|
-
lastResult: () => ICardsPanelState;
|
|
1057
|
-
dependencies: [((state: any, ...params: any) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1058
|
-
clearCache: () => void;
|
|
1059
|
-
resultsCount: () => number;
|
|
1060
|
-
resetResultsCount: () => void;
|
|
1061
|
-
} & {
|
|
1062
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined;
|
|
1063
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1064
|
-
clearCache: () => void;
|
|
1065
|
-
resultsCount: () => number;
|
|
1066
|
-
resetResultsCount: () => void;
|
|
1067
|
-
};
|
|
1068
|
-
lastResult: () => jp_common_models.IBaseTableGameState | undefined;
|
|
1069
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
1070
|
-
recomputations: () => number;
|
|
1071
|
-
resetRecomputations: () => void;
|
|
1072
|
-
dependencyRecomputations: () => number;
|
|
1073
|
-
resetDependencyRecomputations: () => void;
|
|
1074
|
-
} & {
|
|
1075
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1076
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1077
|
-
}];
|
|
1078
|
-
recomputations: () => number;
|
|
1079
|
-
resetRecomputations: () => void;
|
|
1080
|
-
dependencyRecomputations: () => number;
|
|
1081
|
-
resetDependencyRecomputations: () => void;
|
|
1082
|
-
} & {
|
|
1083
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1084
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1085
|
-
};
|
|
1086
|
-
getCardsPanelIsOpen: ((state: any, ...params: any) => boolean) & {
|
|
1087
|
-
clearCache: () => void;
|
|
1088
|
-
resultsCount: () => number;
|
|
1089
|
-
resetResultsCount: () => void;
|
|
1090
|
-
} & {
|
|
1091
|
-
resultFunc: (resultFuncArgs_0: ICardsPanelState) => boolean;
|
|
1092
|
-
memoizedResultFunc: ((resultFuncArgs_0: ICardsPanelState) => boolean) & {
|
|
1093
|
-
clearCache: () => void;
|
|
1094
|
-
resultsCount: () => number;
|
|
1095
|
-
resetResultsCount: () => void;
|
|
1096
|
-
};
|
|
1097
|
-
lastResult: () => boolean;
|
|
1098
|
-
dependencies: [((state: any, ...params: any) => ICardsPanelState) & {
|
|
1099
|
-
clearCache: () => void;
|
|
1100
|
-
resultsCount: () => number;
|
|
1101
|
-
resetResultsCount: () => void;
|
|
1102
|
-
} & {
|
|
1103
|
-
resultFunc: (resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => ICardsPanelState;
|
|
1104
|
-
memoizedResultFunc: ((resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => ICardsPanelState) & {
|
|
1105
|
-
clearCache: () => void;
|
|
1106
|
-
resultsCount: () => number;
|
|
1107
|
-
resetResultsCount: () => void;
|
|
1108
|
-
};
|
|
1109
|
-
lastResult: () => ICardsPanelState;
|
|
1110
|
-
dependencies: [((state: any, ...params: any) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1111
|
-
clearCache: () => void;
|
|
1112
|
-
resultsCount: () => number;
|
|
1113
|
-
resetResultsCount: () => void;
|
|
1114
|
-
} & {
|
|
1115
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined;
|
|
1116
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1117
|
-
clearCache: () => void;
|
|
1118
|
-
resultsCount: () => number;
|
|
1119
|
-
resetResultsCount: () => void;
|
|
1120
|
-
};
|
|
1121
|
-
lastResult: () => jp_common_models.IBaseTableGameState | undefined;
|
|
1122
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
1123
|
-
recomputations: () => number;
|
|
1124
|
-
resetRecomputations: () => void;
|
|
1125
|
-
dependencyRecomputations: () => number;
|
|
1126
|
-
resetDependencyRecomputations: () => void;
|
|
1127
|
-
} & {
|
|
1128
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1129
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1130
|
-
}];
|
|
1131
|
-
recomputations: () => number;
|
|
1132
|
-
resetRecomputations: () => void;
|
|
1133
|
-
dependencyRecomputations: () => number;
|
|
1134
|
-
resetDependencyRecomputations: () => void;
|
|
1135
|
-
} & {
|
|
1136
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1137
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1138
|
-
}];
|
|
1139
|
-
recomputations: () => number;
|
|
1140
|
-
resetRecomputations: () => void;
|
|
1141
|
-
dependencyRecomputations: () => number;
|
|
1142
|
-
resetDependencyRecomputations: () => void;
|
|
1143
|
-
} & {
|
|
1144
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1145
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1146
|
-
};
|
|
1147
|
-
getCardsPanelBackdropVisible: ((state: any, ...params: any) => boolean) & {
|
|
1148
|
-
clearCache: () => void;
|
|
1149
|
-
resultsCount: () => number;
|
|
1150
|
-
resetResultsCount: () => void;
|
|
1151
|
-
} & {
|
|
1152
|
-
resultFunc: (resultFuncArgs_0: ICardsPanelState) => boolean;
|
|
1153
|
-
memoizedResultFunc: ((resultFuncArgs_0: ICardsPanelState) => boolean) & {
|
|
1154
|
-
clearCache: () => void;
|
|
1155
|
-
resultsCount: () => number;
|
|
1156
|
-
resetResultsCount: () => void;
|
|
1157
|
-
};
|
|
1158
|
-
lastResult: () => boolean;
|
|
1159
|
-
dependencies: [((state: any, ...params: any) => ICardsPanelState) & {
|
|
1160
|
-
clearCache: () => void;
|
|
1161
|
-
resultsCount: () => number;
|
|
1162
|
-
resetResultsCount: () => void;
|
|
1163
|
-
} & {
|
|
1164
|
-
resultFunc: (resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => ICardsPanelState;
|
|
1165
|
-
memoizedResultFunc: ((resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => ICardsPanelState) & {
|
|
1166
|
-
clearCache: () => void;
|
|
1167
|
-
resultsCount: () => number;
|
|
1168
|
-
resetResultsCount: () => void;
|
|
1169
|
-
};
|
|
1170
|
-
lastResult: () => ICardsPanelState;
|
|
1171
|
-
dependencies: [((state: any, ...params: any) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1172
|
-
clearCache: () => void;
|
|
1173
|
-
resultsCount: () => number;
|
|
1174
|
-
resetResultsCount: () => void;
|
|
1175
|
-
} & {
|
|
1176
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined;
|
|
1177
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1178
|
-
clearCache: () => void;
|
|
1179
|
-
resultsCount: () => number;
|
|
1180
|
-
resetResultsCount: () => void;
|
|
1181
|
-
};
|
|
1182
|
-
lastResult: () => jp_common_models.IBaseTableGameState | undefined;
|
|
1183
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
1184
|
-
recomputations: () => number;
|
|
1185
|
-
resetRecomputations: () => void;
|
|
1186
|
-
dependencyRecomputations: () => number;
|
|
1187
|
-
resetDependencyRecomputations: () => void;
|
|
1188
|
-
} & {
|
|
1189
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1190
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1191
|
-
}];
|
|
1192
|
-
recomputations: () => number;
|
|
1193
|
-
resetRecomputations: () => void;
|
|
1194
|
-
dependencyRecomputations: () => number;
|
|
1195
|
-
resetDependencyRecomputations: () => void;
|
|
1196
|
-
} & {
|
|
1197
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1198
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1199
|
-
}];
|
|
1200
|
-
recomputations: () => number;
|
|
1201
|
-
resetRecomputations: () => void;
|
|
1202
|
-
dependencyRecomputations: () => number;
|
|
1203
|
-
resetDependencyRecomputations: () => void;
|
|
1204
|
-
} & {
|
|
1205
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1206
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1207
|
-
};
|
|
1208
|
-
getCardsPanelCards: ((state: any, ...params: any) => jp_common_models.ICardState[]) & {
|
|
1209
|
-
clearCache: () => void;
|
|
1210
|
-
resultsCount: () => number;
|
|
1211
|
-
resetResultsCount: () => void;
|
|
1212
|
-
} & {
|
|
1213
|
-
resultFunc: (resultFuncArgs_0: ICardsPanelState) => jp_common_models.ICardState[];
|
|
1214
|
-
memoizedResultFunc: ((resultFuncArgs_0: ICardsPanelState) => jp_common_models.ICardState[]) & {
|
|
1215
|
-
clearCache: () => void;
|
|
1216
|
-
resultsCount: () => number;
|
|
1217
|
-
resetResultsCount: () => void;
|
|
1218
|
-
};
|
|
1219
|
-
lastResult: () => jp_common_models.ICardState[];
|
|
1220
|
-
dependencies: [((state: any, ...params: any) => ICardsPanelState) & {
|
|
1221
|
-
clearCache: () => void;
|
|
1222
|
-
resultsCount: () => number;
|
|
1223
|
-
resetResultsCount: () => void;
|
|
1224
|
-
} & {
|
|
1225
|
-
resultFunc: (resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => ICardsPanelState;
|
|
1226
|
-
memoizedResultFunc: ((resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => ICardsPanelState) & {
|
|
1227
|
-
clearCache: () => void;
|
|
1228
|
-
resultsCount: () => number;
|
|
1229
|
-
resetResultsCount: () => void;
|
|
1230
|
-
};
|
|
1231
|
-
lastResult: () => ICardsPanelState;
|
|
1232
|
-
dependencies: [((state: any, ...params: any) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1233
|
-
clearCache: () => void;
|
|
1234
|
-
resultsCount: () => number;
|
|
1235
|
-
resetResultsCount: () => void;
|
|
1236
|
-
} & {
|
|
1237
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined;
|
|
1238
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1239
|
-
clearCache: () => void;
|
|
1240
|
-
resultsCount: () => number;
|
|
1241
|
-
resetResultsCount: () => void;
|
|
1242
|
-
};
|
|
1243
|
-
lastResult: () => jp_common_models.IBaseTableGameState | undefined;
|
|
1244
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
1245
|
-
recomputations: () => number;
|
|
1246
|
-
resetRecomputations: () => void;
|
|
1247
|
-
dependencyRecomputations: () => number;
|
|
1248
|
-
resetDependencyRecomputations: () => void;
|
|
1249
|
-
} & {
|
|
1250
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1251
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1252
|
-
}];
|
|
1253
|
-
recomputations: () => number;
|
|
1254
|
-
resetRecomputations: () => void;
|
|
1255
|
-
dependencyRecomputations: () => number;
|
|
1256
|
-
resetDependencyRecomputations: () => void;
|
|
1257
|
-
} & {
|
|
1258
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1259
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1260
|
-
}];
|
|
1261
|
-
recomputations: () => number;
|
|
1262
|
-
resetRecomputations: () => void;
|
|
1263
|
-
dependencyRecomputations: () => number;
|
|
1264
|
-
resetDependencyRecomputations: () => void;
|
|
1265
|
-
} & {
|
|
1266
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1267
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1268
|
-
};
|
|
1269
|
-
getCardsPanelMoves: ((state: any, ...params: any) => jp_common_models.IBaseTableGameStateYoursActionItem[]) & {
|
|
1270
|
-
clearCache: () => void;
|
|
1271
|
-
resultsCount: () => number;
|
|
1272
|
-
resetResultsCount: () => void;
|
|
1273
|
-
} & {
|
|
1274
|
-
resultFunc: (resultFuncArgs_0: ICardsPanelState) => jp_common_models.IBaseTableGameStateYoursActionItem[];
|
|
1275
|
-
memoizedResultFunc: ((resultFuncArgs_0: ICardsPanelState) => jp_common_models.IBaseTableGameStateYoursActionItem[]) & {
|
|
1276
|
-
clearCache: () => void;
|
|
1277
|
-
resultsCount: () => number;
|
|
1278
|
-
resetResultsCount: () => void;
|
|
1279
|
-
};
|
|
1280
|
-
lastResult: () => jp_common_models.IBaseTableGameStateYoursActionItem[];
|
|
1281
|
-
dependencies: [((state: any, ...params: any) => ICardsPanelState) & {
|
|
1282
|
-
clearCache: () => void;
|
|
1283
|
-
resultsCount: () => number;
|
|
1284
|
-
resetResultsCount: () => void;
|
|
1285
|
-
} & {
|
|
1286
|
-
resultFunc: (resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => ICardsPanelState;
|
|
1287
|
-
memoizedResultFunc: ((resultFuncArgs_0: jp_common_models.IBaseTableGameState | undefined) => ICardsPanelState) & {
|
|
1288
|
-
clearCache: () => void;
|
|
1289
|
-
resultsCount: () => number;
|
|
1290
|
-
resetResultsCount: () => void;
|
|
1291
|
-
};
|
|
1292
|
-
lastResult: () => ICardsPanelState;
|
|
1293
|
-
dependencies: [((state: any, ...params: any) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1294
|
-
clearCache: () => void;
|
|
1295
|
-
resultsCount: () => number;
|
|
1296
|
-
resetResultsCount: () => void;
|
|
1297
|
-
} & {
|
|
1298
|
-
resultFunc: (resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined;
|
|
1299
|
-
memoizedResultFunc: ((resultFuncArgs_0: IBaseTableScreenState) => jp_common_models.IBaseTableGameState | undefined) & {
|
|
1300
|
-
clearCache: () => void;
|
|
1301
|
-
resultsCount: () => number;
|
|
1302
|
-
resetResultsCount: () => void;
|
|
1303
|
-
};
|
|
1304
|
-
lastResult: () => jp_common_models.IBaseTableGameState | undefined;
|
|
1305
|
-
dependencies: [(state: RootState) => IBaseTableScreenState];
|
|
1306
|
-
recomputations: () => number;
|
|
1307
|
-
resetRecomputations: () => void;
|
|
1308
|
-
dependencyRecomputations: () => number;
|
|
1309
|
-
resetDependencyRecomputations: () => void;
|
|
1310
|
-
} & {
|
|
1311
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1312
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1313
|
-
}];
|
|
1314
|
-
recomputations: () => number;
|
|
1315
|
-
resetRecomputations: () => void;
|
|
1316
|
-
dependencyRecomputations: () => number;
|
|
1317
|
-
resetDependencyRecomputations: () => void;
|
|
1318
|
-
} & {
|
|
1319
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1320
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1321
|
-
}];
|
|
1322
|
-
recomputations: () => number;
|
|
1323
|
-
resetRecomputations: () => void;
|
|
1324
|
-
dependencyRecomputations: () => number;
|
|
1325
|
-
resetDependencyRecomputations: () => void;
|
|
1326
|
-
} & {
|
|
1327
|
-
argsMemoize: typeof reselect.weakMapMemoize;
|
|
1328
|
-
memoize: typeof reselect.weakMapMemoize;
|
|
1329
|
-
};
|
|
1330
|
-
};
|
|
1331
|
-
|
|
1332
|
-
type GameTableScreenSliceType = {
|
|
1333
|
-
actions: typeof actions;
|
|
1334
|
-
reducer: typeof reducer;
|
|
1335
|
-
selectors: {
|
|
1336
|
-
base: typeof baseSelectors;
|
|
1337
|
-
cards: typeof cardsSelectors;
|
|
1338
|
-
};
|
|
1339
|
-
};
|
|
1340
|
-
declare const gameTableScreenSlice: GameTableScreenSliceType;
|
|
1341
|
-
|
|
1342
285
|
declare function getBaseSlices(): (_reduxjs_toolkit.Slice<AppSlice, {
|
|
1343
286
|
initApp: (state: AppSlice) => {
|
|
1344
287
|
isLoading: boolean;
|
|
@@ -1367,13 +310,13 @@ declare function getBaseSlices(): (_reduxjs_toolkit.Slice<AppSlice, {
|
|
|
1367
310
|
}> | _reduxjs_toolkit.Slice<MenuScreenState, {
|
|
1368
311
|
start: (state: MenuScreenState) => {
|
|
1369
312
|
isLoading: boolean;
|
|
1370
|
-
isError:
|
|
1371
|
-
data:
|
|
313
|
+
isError: boolean;
|
|
314
|
+
data: undefined;
|
|
1372
315
|
};
|
|
1373
316
|
error: (state: MenuScreenState) => {
|
|
1374
317
|
isLoading: boolean;
|
|
1375
318
|
isError: boolean;
|
|
1376
|
-
data
|
|
319
|
+
data: jp_common_view.AppScreenTypes | undefined;
|
|
1377
320
|
};
|
|
1378
321
|
success: (state: MenuScreenState, action: _reduxjs_toolkit.PayloadAction<jp_common_view.AppScreenTypes | undefined>) => {
|
|
1379
322
|
isLoading: boolean;
|
|
@@ -1389,13 +332,13 @@ declare function getBaseSlices(): (_reduxjs_toolkit.Slice<AppSlice, {
|
|
|
1389
332
|
}> | _reduxjs_toolkit.Slice<ShopScreenState, {
|
|
1390
333
|
start: (state: ShopScreenState) => {
|
|
1391
334
|
isLoading: boolean;
|
|
1392
|
-
isError:
|
|
1393
|
-
data:
|
|
335
|
+
isError: boolean;
|
|
336
|
+
data: undefined;
|
|
1394
337
|
};
|
|
1395
338
|
error: (state: ShopScreenState) => {
|
|
1396
339
|
isLoading: boolean;
|
|
1397
340
|
isError: boolean;
|
|
1398
|
-
data
|
|
341
|
+
data: jp_common_view.AppScreenTypes | undefined;
|
|
1399
342
|
};
|
|
1400
343
|
success: (state: ShopScreenState, action: _reduxjs_toolkit.PayloadAction<jp_common_view.AppScreenTypes | undefined>) => {
|
|
1401
344
|
isLoading: boolean;
|
|
@@ -1410,13 +353,13 @@ declare function getBaseSlices(): (_reduxjs_toolkit.Slice<AppSlice, {
|
|
|
1410
353
|
}> | _reduxjs_toolkit.Slice<TablesScreenState, {
|
|
1411
354
|
start: (state: TablesScreenState) => {
|
|
1412
355
|
isLoading: boolean;
|
|
1413
|
-
isError:
|
|
1414
|
-
data:
|
|
356
|
+
isError: boolean;
|
|
357
|
+
data: undefined;
|
|
1415
358
|
};
|
|
1416
359
|
error: (state: TablesScreenState) => {
|
|
1417
360
|
isLoading: boolean;
|
|
1418
361
|
isError: boolean;
|
|
1419
|
-
data?: jp_common_view.AppScreenTypes;
|
|
362
|
+
data?: jp_common_view.AppScreenTypes | undefined;
|
|
1420
363
|
};
|
|
1421
364
|
success: (state: TablesScreenState, action: _reduxjs_toolkit.PayloadAction<jp_common_view.AppScreenTypes | undefined>) => {
|
|
1422
365
|
isLoading: boolean;
|
|
@@ -1447,6 +390,69 @@ declare function getBaseSlices(): (_reduxjs_toolkit.Slice<AppSlice, {
|
|
|
1447
390
|
};
|
|
1448
391
|
}, "reactionBottomSheetBlockSlice", "reactionBottomSheetBlockSlice", {
|
|
1449
392
|
getIsOpen: (sliceState: ReactionBottomSheetBlockState) => boolean;
|
|
393
|
+
}> | _reduxjs_toolkit.Slice<OneTableTournamentStatusScreenState, {
|
|
394
|
+
start: (state: OneTableTournamentStatusScreenState) => {
|
|
395
|
+
isLoading: boolean;
|
|
396
|
+
isError: boolean;
|
|
397
|
+
data: undefined;
|
|
398
|
+
};
|
|
399
|
+
error: (state: OneTableTournamentStatusScreenState) => {
|
|
400
|
+
isLoading: boolean;
|
|
401
|
+
isError: boolean;
|
|
402
|
+
data: jp_common_view.AppScreenTypes | undefined;
|
|
403
|
+
};
|
|
404
|
+
success: (state: OneTableTournamentStatusScreenState, action: _reduxjs_toolkit.PayloadAction<jp_common_view.AppScreenTypes | undefined>) => {
|
|
405
|
+
isLoading: boolean;
|
|
406
|
+
isError: boolean;
|
|
407
|
+
data: jp_common_view.AppScreenTypes | undefined;
|
|
408
|
+
};
|
|
409
|
+
init: (state: Map<immer.Draft<K>, immer.Draft<V>>) => Map<immer.Draft<K>, immer.Draft<V>>;
|
|
410
|
+
}, "oneTableTournamentStatusScreenSlice", "oneTableTournamentStatusScreenSlice", {
|
|
411
|
+
getScreen: (sliceState: OneTableTournamentStatusScreenState) => jp_common_view.AppScreenTypes | undefined;
|
|
412
|
+
isLoading: (sliceState: OneTableTournamentStatusScreenState) => boolean;
|
|
413
|
+
isError: (sliceState: OneTableTournamentStatusScreenState) => boolean;
|
|
414
|
+
}> | _reduxjs_toolkit.Slice<ManyTablesTournamentStatusScreenState, {
|
|
415
|
+
start: (state: ManyTablesTournamentStatusScreenState) => {
|
|
416
|
+
isLoading: boolean;
|
|
417
|
+
isError: boolean;
|
|
418
|
+
data: undefined;
|
|
419
|
+
};
|
|
420
|
+
error: (state: ManyTablesTournamentStatusScreenState) => {
|
|
421
|
+
isLoading: boolean;
|
|
422
|
+
isError: boolean;
|
|
423
|
+
data: jp_common_view.AppScreenTypes | undefined;
|
|
424
|
+
};
|
|
425
|
+
success: (state: ManyTablesTournamentStatusScreenState, action: _reduxjs_toolkit.PayloadAction<jp_common_view.AppScreenTypes | undefined>) => {
|
|
426
|
+
isLoading: boolean;
|
|
427
|
+
isError: boolean;
|
|
428
|
+
data: jp_common_view.AppScreenTypes | undefined;
|
|
429
|
+
};
|
|
430
|
+
init: (state: Map<immer.Draft<K>, immer.Draft<V>>) => Map<immer.Draft<K>, immer.Draft<V>>;
|
|
431
|
+
}, "manyTablesTournamentStatusScreenSlice", "manyTablesTournamentStatusScreenSlice", {
|
|
432
|
+
getScreen: (sliceState: ManyTablesTournamentStatusScreenState) => jp_common_view.AppScreenTypes | undefined;
|
|
433
|
+
isLoading: (sliceState: ManyTablesTournamentStatusScreenState) => boolean;
|
|
434
|
+
isError: (sliceState: ManyTablesTournamentStatusScreenState) => boolean;
|
|
435
|
+
}> | _reduxjs_toolkit.Slice<ManyTablesTournamentTableListScreenState, {
|
|
436
|
+
start: (state: ManyTablesTournamentTableListScreenState) => {
|
|
437
|
+
isLoading: boolean;
|
|
438
|
+
isError: boolean;
|
|
439
|
+
data: undefined;
|
|
440
|
+
};
|
|
441
|
+
error: (state: ManyTablesTournamentTableListScreenState) => {
|
|
442
|
+
isLoading: boolean;
|
|
443
|
+
isError: boolean;
|
|
444
|
+
data: jp_common_view.AppScreenTypes | undefined;
|
|
445
|
+
};
|
|
446
|
+
success: (state: ManyTablesTournamentTableListScreenState, action: _reduxjs_toolkit.PayloadAction<jp_common_view.AppScreenTypes | undefined>) => {
|
|
447
|
+
isLoading: boolean;
|
|
448
|
+
isError: boolean;
|
|
449
|
+
data: jp_common_view.AppScreenTypes | undefined;
|
|
450
|
+
};
|
|
451
|
+
init: (state: Map<immer.Draft<K>, immer.Draft<V>>) => Map<immer.Draft<K>, immer.Draft<V>>;
|
|
452
|
+
}, "manyTablesTournamentTableListScreenSlice", "manyTablesTournamentTableListScreenSlice", {
|
|
453
|
+
getScreen: (sliceState: ManyTablesTournamentTableListScreenState) => jp_common_view.AppScreenTypes | undefined;
|
|
454
|
+
isLoading: (sliceState: ManyTablesTournamentTableListScreenState) => boolean;
|
|
455
|
+
isError: (sliceState: ManyTablesTournamentTableListScreenState) => boolean;
|
|
1450
456
|
}> | _reduxjs_toolkit.Slice<WsConnectorState, {
|
|
1451
457
|
connect: (state: WsConnectorState) => {
|
|
1452
458
|
isConnected: boolean;
|
|
@@ -1472,13 +478,13 @@ declare function getBaseSlicesReducer(): {
|
|
|
1472
478
|
tablesScreenSlice: redux.Reducer<TablesScreenState>;
|
|
1473
479
|
raiseBottomSheetBlockSlice: redux.Reducer<RaiseBottomSheetBlockState>;
|
|
1474
480
|
reactionBottomSheetBlockSlice: redux.Reducer<ReactionBottomSheetBlockState>;
|
|
481
|
+
oneTableTournamentStatusScreenSlice: redux.Reducer<OneTableTournamentStatusScreenState>;
|
|
482
|
+
manyTablesTournamentStatusScreenSlice: redux.Reducer<ManyTablesTournamentStatusScreenState>;
|
|
483
|
+
manyTablesTournamentTableListScreenSlice: redux.Reducer<ManyTablesTournamentTableListScreenState>;
|
|
1475
484
|
wsConnectorSlice: redux.Reducer<WsConnectorState>;
|
|
1476
|
-
gameTableScreenSlice: redux.Reducer<IBaseTableScreenState> & {
|
|
1477
|
-
getInitialState: () => IBaseTableScreenState;
|
|
1478
|
-
};
|
|
1479
485
|
};
|
|
1480
486
|
|
|
1481
|
-
declare function getBaseMiddlewares():
|
|
487
|
+
declare function getBaseMiddlewares(): Array<ListenerMiddleware>;
|
|
1482
488
|
|
|
1483
489
|
type AuthResponse = {
|
|
1484
490
|
token: string;
|
|
@@ -1511,16 +517,41 @@ type PlayerCheckStateDto = {
|
|
|
1511
517
|
};
|
|
1512
518
|
declare function playerCheckStateRequest(): Promise<AxiosResponse<PlayerCheckStateDto>>;
|
|
1513
519
|
|
|
520
|
+
declare function oneTableTournamentStatusRequest(tournamentId: string): Promise<AxiosResponse<BaseAppScreen>>;
|
|
521
|
+
|
|
522
|
+
declare function oneTableTournamentWatchTheTableRequest<GS>(tableId: string): Promise<AxiosResponse<GS>>;
|
|
523
|
+
|
|
524
|
+
declare function oneTableTournamentMoveOnTheTableRequest<GS, MD>(tableId: string, moveData: MD): Promise<AxiosResponse<GS>>;
|
|
525
|
+
|
|
526
|
+
declare function oneTableTournamentJoinTournament(tournamentId: string): Promise<AxiosResponse<object>>;
|
|
527
|
+
|
|
528
|
+
declare function oneTableTournamentLeaveTournament(tournamentId: string): Promise<AxiosResponse<object>>;
|
|
529
|
+
|
|
530
|
+
declare function manyTablesTournamentStatusRequest(tournamentId: string): Promise<AxiosResponse<BaseAppScreen>>;
|
|
531
|
+
|
|
532
|
+
declare function manyTablesTournamentTableListRequest(tournamentId: string): Promise<AxiosResponse<BaseAppScreen>>;
|
|
533
|
+
|
|
534
|
+
declare function manyTablesTournamentWatchTheTableRequest<GS>(tableId: string): Promise<AxiosResponse<GS>>;
|
|
535
|
+
|
|
536
|
+
declare function manyTablesTournamentMoveOnTheTableRequest<GS, MD>(tableId: string, moveData: MD): Promise<AxiosResponse<GS>>;
|
|
537
|
+
|
|
538
|
+
declare function manyTablesTournamentJoinTournament(tournamentId: string): Promise<AxiosResponse<object>>;
|
|
539
|
+
|
|
540
|
+
declare function manyTablesTournamentLeaveTournament(tournamentId: string): Promise<AxiosResponse<object>>;
|
|
541
|
+
|
|
542
|
+
declare function manyTablesTournamentBuyTicket(tournamentId: string): Promise<AxiosResponse<object>>;
|
|
543
|
+
|
|
1514
544
|
declare const MenuScreen: () => React.JSX.Element;
|
|
1515
545
|
|
|
1516
546
|
declare const ShopScreen: () => React.JSX.Element;
|
|
1517
547
|
|
|
1518
548
|
declare const TablesScreen: () => React.JSX.Element;
|
|
1519
549
|
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
550
|
+
declare const OneTableTournamentStatusScreen: () => React.JSX.Element;
|
|
551
|
+
|
|
552
|
+
declare const ManyTablesTournamentStatusScreen: () => React.JSX.Element;
|
|
553
|
+
|
|
554
|
+
declare const ManyTablesTournamentTableListScreen: () => React.JSX.Element;
|
|
1524
555
|
|
|
1525
556
|
type RaiseBottomSheetBlockProps = {
|
|
1526
557
|
items: Array<DictionaryItem>;
|
|
@@ -1538,11 +569,12 @@ type ReactionBottomSheetBlockProps = {
|
|
|
1538
569
|
};
|
|
1539
570
|
declare const ReactionBottomSheetBlock: ({ items, itemClick, title, closeTitle }: ReactionBottomSheetBlockProps) => React.JSX.Element;
|
|
1540
571
|
|
|
572
|
+
declare function getClientVersion(): any;
|
|
573
|
+
declare function isAppDevelopment(): boolean;
|
|
1541
574
|
declare function getClientBaseHost(): string;
|
|
1542
575
|
declare function getClientGame(): string;
|
|
1543
576
|
declare function getClientChannel(): string;
|
|
1544
577
|
declare function getClientAppEnv(): string;
|
|
1545
|
-
declare function isAppDevelopment(): boolean;
|
|
1546
578
|
declare function getClientAuthVKUrl(): string;
|
|
1547
579
|
declare function getClientAuthYAUrl(): string;
|
|
1548
580
|
declare function getClientAuthWEBUrl(): string;
|
|
@@ -1555,7 +587,18 @@ declare function getClientExitTheTableUrl(): string;
|
|
|
1555
587
|
declare function getClientMoveOnTheTableUrl(): string;
|
|
1556
588
|
declare function getClientPlayerCheckStateUrl(): string;
|
|
1557
589
|
declare function getClientSupportLogUrl(): string;
|
|
1558
|
-
declare function
|
|
590
|
+
declare function getClientOneTableTournamentStatusUrl(): string;
|
|
591
|
+
declare function getClientOneTableTournamentWatchTheTableUrl(): string;
|
|
592
|
+
declare function getClientOneTableTournamentMoveOnTheTableUrl(): string;
|
|
593
|
+
declare function getClientOneTableTournamentJoinTournamentUrl(): string;
|
|
594
|
+
declare function getClientOneTableTournamentLeaveTournamentUrl(): string;
|
|
595
|
+
declare function getClientManyTablesTournamentStatusUrl(): string;
|
|
596
|
+
declare function getClientManyTablesTournamentTableListUrl(): string;
|
|
597
|
+
declare function getClientManyTablesTournamentWatchTheTableUrl(): string;
|
|
598
|
+
declare function getClientManyTablesTournamentMoveOnTheTableUrl(): string;
|
|
599
|
+
declare function getClientManyTablesTournamentJoinTournamentUrl(): string;
|
|
600
|
+
declare function getClientManyTablesTournamentLeaveTournamentUrl(): string;
|
|
601
|
+
declare function getClientManyTablesTournamentBuyTickettUrl(): string;
|
|
1559
602
|
|
|
1560
603
|
declare const config_d_getClientAppEnv: typeof getClientAppEnv;
|
|
1561
604
|
declare const config_d_getClientAuthVKUrl: typeof getClientAuthVKUrl;
|
|
@@ -1566,8 +609,20 @@ declare const config_d_getClientChannel: typeof getClientChannel;
|
|
|
1566
609
|
declare const config_d_getClientEnterTheTableUrl: typeof getClientEnterTheTableUrl;
|
|
1567
610
|
declare const config_d_getClientExitTheTableUrl: typeof getClientExitTheTableUrl;
|
|
1568
611
|
declare const config_d_getClientGame: typeof getClientGame;
|
|
612
|
+
declare const config_d_getClientManyTablesTournamentBuyTickettUrl: typeof getClientManyTablesTournamentBuyTickettUrl;
|
|
613
|
+
declare const config_d_getClientManyTablesTournamentJoinTournamentUrl: typeof getClientManyTablesTournamentJoinTournamentUrl;
|
|
614
|
+
declare const config_d_getClientManyTablesTournamentLeaveTournamentUrl: typeof getClientManyTablesTournamentLeaveTournamentUrl;
|
|
615
|
+
declare const config_d_getClientManyTablesTournamentMoveOnTheTableUrl: typeof getClientManyTablesTournamentMoveOnTheTableUrl;
|
|
616
|
+
declare const config_d_getClientManyTablesTournamentStatusUrl: typeof getClientManyTablesTournamentStatusUrl;
|
|
617
|
+
declare const config_d_getClientManyTablesTournamentTableListUrl: typeof getClientManyTablesTournamentTableListUrl;
|
|
618
|
+
declare const config_d_getClientManyTablesTournamentWatchTheTableUrl: typeof getClientManyTablesTournamentWatchTheTableUrl;
|
|
1569
619
|
declare const config_d_getClientMenuUrl: typeof getClientMenuUrl;
|
|
1570
620
|
declare const config_d_getClientMoveOnTheTableUrl: typeof getClientMoveOnTheTableUrl;
|
|
621
|
+
declare const config_d_getClientOneTableTournamentJoinTournamentUrl: typeof getClientOneTableTournamentJoinTournamentUrl;
|
|
622
|
+
declare const config_d_getClientOneTableTournamentLeaveTournamentUrl: typeof getClientOneTableTournamentLeaveTournamentUrl;
|
|
623
|
+
declare const config_d_getClientOneTableTournamentMoveOnTheTableUrl: typeof getClientOneTableTournamentMoveOnTheTableUrl;
|
|
624
|
+
declare const config_d_getClientOneTableTournamentStatusUrl: typeof getClientOneTableTournamentStatusUrl;
|
|
625
|
+
declare const config_d_getClientOneTableTournamentWatchTheTableUrl: typeof getClientOneTableTournamentWatchTheTableUrl;
|
|
1571
626
|
declare const config_d_getClientPlayerCheckStateUrl: typeof getClientPlayerCheckStateUrl;
|
|
1572
627
|
declare const config_d_getClientShopUrl: typeof getClientShopUrl;
|
|
1573
628
|
declare const config_d_getClientSupportLogUrl: typeof getClientSupportLogUrl;
|
|
@@ -1586,8 +641,20 @@ declare namespace config_d {
|
|
|
1586
641
|
config_d_getClientEnterTheTableUrl as getClientEnterTheTableUrl,
|
|
1587
642
|
config_d_getClientExitTheTableUrl as getClientExitTheTableUrl,
|
|
1588
643
|
config_d_getClientGame as getClientGame,
|
|
644
|
+
config_d_getClientManyTablesTournamentBuyTickettUrl as getClientManyTablesTournamentBuyTickettUrl,
|
|
645
|
+
config_d_getClientManyTablesTournamentJoinTournamentUrl as getClientManyTablesTournamentJoinTournamentUrl,
|
|
646
|
+
config_d_getClientManyTablesTournamentLeaveTournamentUrl as getClientManyTablesTournamentLeaveTournamentUrl,
|
|
647
|
+
config_d_getClientManyTablesTournamentMoveOnTheTableUrl as getClientManyTablesTournamentMoveOnTheTableUrl,
|
|
648
|
+
config_d_getClientManyTablesTournamentStatusUrl as getClientManyTablesTournamentStatusUrl,
|
|
649
|
+
config_d_getClientManyTablesTournamentTableListUrl as getClientManyTablesTournamentTableListUrl,
|
|
650
|
+
config_d_getClientManyTablesTournamentWatchTheTableUrl as getClientManyTablesTournamentWatchTheTableUrl,
|
|
1589
651
|
config_d_getClientMenuUrl as getClientMenuUrl,
|
|
1590
652
|
config_d_getClientMoveOnTheTableUrl as getClientMoveOnTheTableUrl,
|
|
653
|
+
config_d_getClientOneTableTournamentJoinTournamentUrl as getClientOneTableTournamentJoinTournamentUrl,
|
|
654
|
+
config_d_getClientOneTableTournamentLeaveTournamentUrl as getClientOneTableTournamentLeaveTournamentUrl,
|
|
655
|
+
config_d_getClientOneTableTournamentMoveOnTheTableUrl as getClientOneTableTournamentMoveOnTheTableUrl,
|
|
656
|
+
config_d_getClientOneTableTournamentStatusUrl as getClientOneTableTournamentStatusUrl,
|
|
657
|
+
config_d_getClientOneTableTournamentWatchTheTableUrl as getClientOneTableTournamentWatchTheTableUrl,
|
|
1591
658
|
config_d_getClientPlayerCheckStateUrl as getClientPlayerCheckStateUrl,
|
|
1592
659
|
config_d_getClientShopUrl as getClientShopUrl,
|
|
1593
660
|
config_d_getClientSupportLogUrl as getClientSupportLogUrl,
|
|
@@ -1624,7 +691,7 @@ declare class WSConnector {
|
|
|
1624
691
|
private _authToken;
|
|
1625
692
|
private static _instance;
|
|
1626
693
|
static getInstance(): WSConnector;
|
|
1627
|
-
connect(address: string, authToken:
|
|
694
|
+
connect(address: string, authToken: string, listenerApi: ListenerEffectAPI<any, any>): void;
|
|
1628
695
|
sendMessage(message: object): void;
|
|
1629
696
|
private _openConnectionHandler;
|
|
1630
697
|
private _closeConnectionHandler;
|
|
@@ -1652,12 +719,24 @@ declare enum GlobalStorageEnum {
|
|
|
1652
719
|
CLIENT_MENU_URL = "CLIENT_MENU_URL",
|
|
1653
720
|
CLIENT_SHOP_URL = "CLIENT_SHOP_URL",
|
|
1654
721
|
CLIENT_TABLES_URL = "CLIENT_TABLES_URL",
|
|
722
|
+
CLIENT_PLAYER_CHECK_STATE_URL = "CLIENT_PLAYER_CHECK_STATE_URL",
|
|
723
|
+
CLIENT_SUPPORT_LOG_URL = "CLIENT_SUPPORT_LOG_URL",
|
|
1655
724
|
CLIENT_WATCH_THE_TABLE_URL = "CLIENT_WATCH_THE_TABLE_URL",
|
|
1656
725
|
CLIENT_ENTER_THE_TABLE_URL = "CLIENT_ENTER_THE_TABLE_URL",
|
|
1657
726
|
CLIENT_EXIT_THE_TABLE_URL = "CLIENT_EXIT_THE_TABLE_URL",
|
|
1658
727
|
CLIENT_MOVE_ON_THE_TABLE_URL = "CLIENT_MOVE_ON_THE_TABLE_URL",
|
|
1659
|
-
|
|
1660
|
-
|
|
728
|
+
CLIENT_ONE_TABLE_TOURNAMENT_STATUS_URL = "CLIENT_ONE_TABLE_TOURNAMENT_STATUS_URL",
|
|
729
|
+
CLIENT_ONE_TABLE_TOURNAMENT_WATCH_THE_TABLE_URL = "CLIENT_ONE_TABLE_TOURNAMENT_WATCH_THE_TABLE_URL",
|
|
730
|
+
CLIENT_ONE_TABLE_TOURNAMENT_MOVE_ON_THE_TABLE_URL = "CLIENT_ONE_TABLE_TOURNAMENT_MOVE_ON_THE_TABLE_URL",
|
|
731
|
+
CLIENT_ONE_TABLE_TOURNAMENT_JOIN_TOURNAMENT_URL = "CLIENT_ONE_TABLE_TOURNAMENT_JOIN_TOURNAMENT_URL",
|
|
732
|
+
CLIENT_ONE_TABLE_TOURNAMENT_LEAVE_TOURNAMENT_URL = "CLIENT_ONE_TABLE_TOURNAMENT_LEAVE_TOURNAMENT_URL",
|
|
733
|
+
CLIENT_MANY_TABLES_TOURNAMENT_STATUS_URL = "CLIENT_MANY_TABLES_TOURNAMENT_STATUS_URL",
|
|
734
|
+
CLIENT_MANY_TABLES_TOURNAMENT_TABLE_LIST_URL = "CLIENT_MANY_TABLES_TOURNAMENT_TABLE_LIST_URL",
|
|
735
|
+
CLIENT_MANY_TABLES_TOURNAMENT_WATCH_THE_TABLE_URL = "CLIENT_MANY_TABLES_TOURNAMENT_WATCH_THE_TABLE_URL",
|
|
736
|
+
CLIENT_MANY_TABLES_TOURNAMENT_MOVE_ON_THE_TABLE_URL = "CLIENT_MANY_TABLES_TOURNAMENT_MOVE_ON_THE_TABLE_URL",
|
|
737
|
+
CLIENT_MANY_TABLES_TOURNAMENT_JOIN_TOURNAMENT_URL = "CLIENT_MANY_TABLES_TOURNAMENT_JOIN_TOURNAMENT_URL",
|
|
738
|
+
CLIENT_MANY_TABLES_TOURNAMENT_LEAVE_TOURNAMENT_URL = "CLIENT_MANY_TABLES_TOURNAMENT_LEAVE_TOURNAMENT_URL",
|
|
739
|
+
CLIENT_MANY_TABLES_TOURNAMENT_BUY_TICKET_URL = "CLIENT_MANY_TABLES_TOURNAMENT_BUY_TICKET_URL"
|
|
1661
740
|
}
|
|
1662
741
|
|
|
1663
742
|
declare class GlobalStorage {
|
|
@@ -1681,5 +760,5 @@ declare class Navigator {
|
|
|
1681
760
|
getParams(pathPattern: string): Record<string, string | undefined>;
|
|
1682
761
|
}
|
|
1683
762
|
|
|
1684
|
-
export { BaseApplication, ClientLogger, GlobalStorage, GlobalStorageEnum, MenuScreen, Navigator, RaiseBottomSheetBlock, ReactionBottomSheetBlock, ShopScreen,
|
|
763
|
+
export { BaseApplication, ClientLogger, GlobalStorage, GlobalStorageEnum, ManyTablesTournamentStatusScreen, ManyTablesTournamentTableListScreen, MenuScreen, Navigator, OneTableTournamentStatusScreen, RaiseBottomSheetBlock, ReactionBottomSheetBlock, ShopScreen, TablesScreen, WSConnector, appSlice, authRequest, config_d as config, enterTheTableRequest, exitTheTableRequest, getBaseMiddlewares, getBaseSlices, getBaseSlicesReducer, getClientInfo, getMenuRequest, getShopRequest, getTablesRequest, manyTablesTournamentBuyTicket, manyTablesTournamentJoinTournament, manyTablesTournamentLeaveTournament, manyTablesTournamentMoveOnTheTableRequest, manyTablesTournamentStatusRequest, manyTablesTournamentStatusScreenSlice, manyTablesTournamentTableListRequest, manyTablesTournamentTableListScreenSlice, manyTablesTournamentWatchTheTableRequest, menuScreenSlice, moveOnTheTableRequest, oneTableTournamentJoinTournament, oneTableTournamentLeaveTournament, oneTableTournamentMoveOnTheTableRequest, oneTableTournamentStatusRequest, oneTableTournamentStatusScreenSlice, oneTableTournamentWatchTheTableRequest, playerCheckStateRequest, raiseBottomSheetBlockSlice, reactionBottomSheetBlockSlice, shopScreenSlice, tablesScreenSlice, watchTheTableRequest, wsConnectorSlice };
|
|
1685
764
|
export type { RouteType };
|