-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathaction.ts
632 lines (576 loc) · 24.2 KB
/
action.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
import {
BranchStyle,
Direction,
ExtendedInterchangeInfo,
Facilities,
Name,
RMGParam,
Services,
ShortDirection,
StationDict,
StationInfo,
TEMP,
} from '../../constants/constants';
import { RootDispatch, RootState } from '../index';
import * as paramSlice from './param-slice';
import { updateHelper } from '../helper/helper-slice';
import { LanguageCode } from '@railmapgen/rmg-translate';
export const setFullParam = (fullParam: RMGParam) => {
return (dispatch: RootDispatch) => {
dispatch(paramSlice.setFullParam(fullParam));
dispatch(updateHelper(fullParam.stn_list));
};
};
export const setStation = (stationId: string, station: StationInfo) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const { stn_list } = getState().param;
const nextStationList = {
...stn_list,
[stationId]: station,
};
dispatch(setStationsBulk(nextStationList));
// console.log('set bulk done');
};
};
export const setStationsBulk = (stations: StationDict) => {
return (dispatch: RootDispatch) => {
dispatch(paramSlice.setStations(stations));
dispatch(updateHelper(stations));
};
};
/**
* @param flipBranch Set as false if you want to rotate the line but keeping the topology ordering (TPO). Set as true if you want to flip branches and break the TPO (for SHMetro).
*/
export const reverseStations = (flipBranch = false) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const { stn_list } = getState().param;
const newStationList = Object.keys(stn_list).reduce(
(acc, stnId) => ({
...acc,
[stnId]: (id => {
switch (id) {
case 'linestart':
return {
...stn_list.lineend,
parents: [],
children: flipBranch ? stn_list.lineend.parents : stn_list.lineend.parents.toReversed(),
branch: { right: stn_list.lineend.branch?.left },
};
case 'lineend':
return {
...stn_list.linestart,
parents: flipBranch
? stn_list.linestart.children
: stn_list.linestart.children.toReversed(),
children: [],
branch: { left: stn_list.linestart.branch?.right },
};
default: {
const mappedParents = stn_list[id].children.map(id =>
id === 'linestart' ? 'lineend' : id === 'lineend' ? 'linestart' : id
);
const mappedChildren = stn_list[id].parents.map(id =>
id === 'linestart' ? 'lineend' : id === 'lineend' ? 'linestart' : id
);
return {
...stn_list[id],
parents: flipBranch ? mappedParents : mappedParents.reverse(),
children: flipBranch ? mappedChildren : mappedChildren.reverse(),
branch: {
left: stn_list[id].branch?.right,
right: stn_list[id].branch?.left,
},
};
}
}
})(stnId),
}),
{} as StationDict
);
dispatch(setStationsBulk(newStationList));
};
};
export const rotateStations = (clockwise: boolean) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const { stn_list: stationList } = getState().param;
const { branches } = getState().helper;
const firstStation = branches[0][1];
const secondStation = branches[0][2];
const lastStation = branches[0].slice(-2)[0];
const lastButOneStation = branches[0].slice(-3)[0];
if (!clockwise) {
const newStationList = {
...stationList,
linestart: {
...stationList.linestart,
children: stationList.linestart.children.map(stnId =>
stnId === firstStation ? lastStation : stnId
),
},
[firstStation]: {
...stationList[firstStation],
parent: stationList[firstStation].parents.map(stnId =>
stnId === 'linestart' ? lastStation : stnId
),
},
[lastButOneStation]: {
...stationList[lastButOneStation],
children: stationList[lastButOneStation].children.map(stnId =>
stnId === lastStation ? 'lineend' : stnId
),
},
[lastStation]: {
...stationList[lastStation],
parents: stationList[lastStation].parents.map(stnId =>
stnId === lastButOneStation ? 'linestart' : stnId
),
children: stationList[lastStation].children.map(stnId =>
stnId === 'lineend' ? firstStation : stnId
),
},
lineend: {
...stationList.lineend,
parents: stationList.lineend.parents.map(stnId =>
stnId === lastStation ? lastButOneStation : stnId
),
},
};
dispatch(setStationsBulk(newStationList));
} else {
const newStationList = {
...stationList,
linestart: {
...stationList.linestart,
children: stationList.linestart.children.map(stnId =>
stnId === firstStation ? secondStation : stnId
),
},
[firstStation]: {
...stationList[firstStation],
parent: stationList[firstStation].parents.map(stnId =>
stnId === 'linestart' ? lastStation : stnId
),
children: stationList[firstStation].children.map(stnId =>
stnId === secondStation ? 'lineend' : stnId
),
},
[secondStation]: {
...stationList[secondStation],
parent: stationList[secondStation].parents.map(stnId =>
stnId === firstStation ? 'linestart' : stnId
),
},
[lastStation]: {
...stationList[lastStation],
children: stationList[lastStation].children.map(stnId =>
stnId === 'lineend' ? firstStation : stnId
),
},
lineend: {
...stationList.lineend,
parents: stationList.lineend.parents.map(stnId => (stnId === lastStation ? firstStation : stnId)),
},
};
dispatch(setStationsBulk(newStationList));
}
};
};
export const updateStationName = (stationId: string, lang: LanguageCode, value: string) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(
setStation(stationId, {
...stationInfo,
localisedName: { ...stationInfo.localisedName, [lang]: value },
})
);
};
};
export const toggleStationSecondaryName = (stationId: string, flag: boolean) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const { localisedSecondaryName, ...stationInfo } = getState().param.stn_list[stationId];
if (flag) {
dispatch(setStation(stationId, { ...stationInfo, localisedSecondaryName: {} }));
} else {
dispatch(setStation(stationId, stationInfo));
}
};
};
export const updateStationSecondaryName = (stationId: string, lang: LanguageCode, value: string) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(
setStation(stationId, {
...stationInfo,
localisedSecondaryName: { ...stationInfo.localisedSecondaryName, [lang]: value },
})
);
};
};
export const updateStationNum = (stationId: string, num: string) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(setStation(stationId, { ...stationInfo, num }));
};
};
/**
*
* @param stationId
* @param setIndex - set 0: within-station interchange. set 1: Out of station(OSI) transfer. set 2: Out of system(OSysI) transfer
* @param interchangeInfo
*/
export const addInterchange = (stationId: string, setIndex: number, interchangeInfo: ExtendedInterchangeInfo) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
const newTransferGroups = stationInfo.transfer.groups.map(group => ({ ...group }));
if (newTransferGroups.length > setIndex) {
newTransferGroups[setIndex] = {
...newTransferGroups[setIndex],
lines: (newTransferGroups[setIndex].lines ?? []).concat(interchangeInfo),
};
} else {
for (let i = newTransferGroups.length; i < setIndex; i++) {
newTransferGroups[i] = { lines: [] };
}
newTransferGroups[setIndex] = { lines: [interchangeInfo] };
}
dispatch(
setStation(stationId, {
...stationInfo,
transfer: {
...stationInfo.transfer,
groups: [newTransferGroups[0], ...(newTransferGroups.slice(1) ?? [])],
},
})
);
};
};
export const removeInterchange = (stationId: string, groupIndex: number, interchangeIndex: number) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
if (
stationInfo.transfer.groups.length > groupIndex &&
(stationInfo.transfer.groups[groupIndex].lines?.length || 0) > interchangeIndex
) {
const newTransferGroups = stationInfo.transfer.groups.map((group, groupIdx) =>
groupIdx === groupIndex
? {
...group,
lines: group.lines?.filter((_, intIdx) => intIdx !== interchangeIndex),
}
: group
);
dispatch(
setStation(stationId, {
...stationInfo,
transfer: {
...stationInfo.transfer,
groups: [newTransferGroups[0], ...(newTransferGroups.slice(1) ?? [])],
},
})
);
}
};
};
export const updateInterchange = (
stationId: string,
groupIndex: number,
interchangeIndex: number,
interchangeInfo: ExtendedInterchangeInfo
) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
if (
stationInfo.transfer.groups.length > groupIndex &&
(stationInfo.transfer.groups[groupIndex].lines?.length || 0) > interchangeIndex
) {
const newTransferGroups = stationInfo.transfer.groups.map((group, groupIdx) =>
groupIdx === groupIndex
? {
...group,
lines: group.lines?.map((line, lineIdx) =>
lineIdx === interchangeIndex ? interchangeInfo : line
),
}
: group
);
dispatch(
setStation(stationId, {
...stationInfo,
transfer: {
...stationInfo.transfer,
groups: [newTransferGroups[0], ...(newTransferGroups.slice(1) ?? [])],
},
})
);
}
};
};
export const updateStationOsiName = (stationId: string, groupIndex: number, osiName: Name) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
const newTransferGroups = stationInfo.transfer.groups.map(group => ({ ...group }));
if (newTransferGroups.length > groupIndex) {
newTransferGroups[groupIndex] = { ...newTransferGroups[groupIndex], name: osiName };
dispatch(
setStation(stationId, {
...stationInfo,
transfer: {
...stationInfo.transfer,
groups: [newTransferGroups[0], ...(newTransferGroups.slice(1) ?? [])],
},
})
);
}
};
};
export const updateStationTickDirection = (stationId: string, tickDirection: ShortDirection) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(
setStation(stationId, {
...stationInfo,
transfer: { ...stationInfo.transfer, tick_direc: tickDirection },
})
);
};
};
export const updateStationPaidArea = (stationId: string, isPaidArea: boolean) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(
setStation(stationId, {
...stationInfo,
transfer: { ...stationInfo.transfer, paid_area: isPaidArea },
})
);
};
};
export const updateStationBranchType = (stationId: string, direction: Direction, branchStyle: BranchStyle) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(
setStation(stationId, {
...stationInfo,
branch: {
...stationInfo.branch,
[direction]: stationInfo.branch?.[direction]?.with(0, branchStyle),
},
})
);
};
};
// TODO: replace with branch swapping in future change
export const updateStationBranchFirstStation = (stationId: string, direction: Direction, firstId: string) => {
// update both end of the branch
return (dispatch: RootDispatch, getState: () => RootState) => {
const branches = getState().helper.branches;
const arg = { stnId: stationId, direction, first: firstId };
if (direction === Direction.left) {
const branchStartId = branches.slice(1).find(branch => branch.slice(-1)[0] === stationId)?.[0];
if (branchStartId) {
const branchStartFirstId = branches[0][branches[0].indexOf(branchStartId) + 1];
dispatch(
updateStationBranchFirstStationLegacy([
arg,
{
stnId: branchStartId,
direction: Direction.right,
first: branchStartFirstId,
},
])
);
}
} else {
const branchEndId = branches
.slice(1)
.find(branch => branch[0] === stationId)
?.slice(-1)?.[0];
if (branchEndId) {
const branchEndFirstId = branches[0][branches[0].indexOf(branchEndId) - 1];
dispatch(
updateStationBranchFirstStationLegacy([
arg,
{
stnId: branchEndId,
direction: Direction.left,
first: branchEndFirstId,
},
])
);
}
}
};
};
export type UpdateStationBranchFirstStationLegacyArgType = { stnId: string; direction: Direction; first: string };
/**
* @deprecated For V3 legacy support
*/
export const updateStationBranchFirstStationLegacy = (
branches: [UpdateStationBranchFirstStationLegacyArgType, UpdateStationBranchFirstStationLegacyArgType]
) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const { stn_list } = getState().param;
dispatch(
setStationsBulk({
...stn_list,
[branches[0].stnId]: {
...stn_list[branches[0].stnId],
branch: {
...stn_list[branches[0].stnId].branch,
[branches[0].direction]: stn_list[branches[0].stnId].branch?.[branches[0].direction]?.with(
1,
branches[0].first
),
},
},
[branches[1].stnId]: {
...stn_list[branches[1].stnId],
branch: {
...stn_list[branches[1].stnId].branch,
[branches[1].direction]: stn_list[branches[1].stnId].branch?.[branches[1].direction]?.with(
1,
branches[1].first
),
},
},
})
);
};
};
export const flipStationBranchPosition = (stationId: string, direction: Direction) => {
// flip both end of the branch
return (dispatch: RootDispatch, getState: () => RootState) => {
const branches = getState().helper.branches;
if (direction === Direction.left) {
const branchStartId = branches.slice(1).find(branch => branch.slice(-1)[0] === stationId)?.[0];
if (branchStartId) dispatch(flipStationBranchPositionLegacy(stationId, branchStartId));
} else {
const branchEndId = branches
.slice(1)
.find(branch => branch[0] === stationId)
?.slice(-1)?.[0];
if (branchEndId) dispatch(flipStationBranchPositionLegacy(branchEndId, stationId));
}
};
};
/**
* @deprecated For V3 legacy support
*/
export const flipStationBranchPositionLegacy = (left: string, right: string) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const { stn_list } = getState().param;
dispatch(
setStationsBulk({
...stn_list,
[left]: { ...stn_list[left], parents: stn_list[left].parents.slice().reverse() },
[right]: { ...stn_list[right], children: stn_list[right].children.slice().reverse() },
})
);
};
};
export const updateStationFacility = (stationId: string, facility: Facilities | '') => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(setStation(stationId, { ...stationInfo, facility: facility || undefined }));
};
};
export const updateStationServices = (stationId: string, services: Services[]) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(setStation(stationId, { ...stationInfo, services }));
};
};
export const updateStationUnderConstruction = (stationId: string, underConstruction: boolean | TEMP) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(setStation(stationId, { ...stationInfo, underConstruction }));
};
};
export const addStationService = (stationId: string, service: Services) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
if (!stationInfo.services.includes(service)) {
dispatch(setStation(stationId, { ...stationInfo, services: stationInfo.services.concat(service) }));
}
};
};
export const removeStationService = (stationId: string, service: Services) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
if (stationInfo.services.includes(service)) {
dispatch(
setStation(stationId, {
...stationInfo,
services: stationInfo.services.filter(s => s !== service),
})
);
}
};
};
export const updateStationLoopPivot = (stationId: string, loop_pivot: boolean) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(setStation(stationId, { ...stationInfo, loop_pivot }));
};
};
export const updateStationOneLine = (stationId: string, one_line: boolean) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(setStation(stationId, { ...stationInfo, one_line }));
};
};
export const updateStationIntPadding = (stationId: string, int_padding: number) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(setStation(stationId, { ...stationInfo, int_padding }));
};
};
export const updateStationIntPaddingToAll = (stationId: string) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
const int_padding = stationInfo.int_padding;
const stationList = structuredClone(getState().param.stn_list);
Object.values(stationList).forEach(stnInfo => {
stnInfo.int_padding = int_padding;
});
dispatch(setStationsBulk(stationList));
};
};
export const updateStationCharacterSpacing = (stationId: string, character_spacing: number) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
dispatch(setStation(stationId, { ...stationInfo, character_spacing }));
};
};
export const updateStationCharacterSpacingToAll = (stationId: string) => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationInfo = getState().param.stn_list[stationId];
const character_spacing = stationInfo.character_spacing;
const stationList = structuredClone(getState().param.stn_list);
Object.values(stationList).forEach(stnInfo => {
stnInfo.character_spacing = character_spacing;
});
dispatch(setStationsBulk(stationList));
};
};
export const autoNumbering = (branchIndex: number, from: number, maxLength = 2, sort: 'asc' | 'desc' = 'asc') => {
return (dispatch: RootDispatch, getState: () => RootState) => {
const stationList = getState().param.stn_list;
const branches = getState().helper.branches;
// not altering station code of linestart, lineend, branch out station
const branch = branches[branchIndex]?.slice(1, -1);
if (branch) {
const nextStationList = branch.reduce((acc, cur, idx) => {
return {
...acc,
[cur]: {
...stationList[cur],
num: (from + idx * (sort === 'desc' ? -1 : 1)).toString().padStart(maxLength, '0'),
},
};
}, stationList);
dispatch(setStationsBulk(nextStationList));
}
};
};