forked from thepeacockproject/Peacock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMissionEndNotReadyTemplate.json
82 lines (82 loc) · 2.6 KB
/
MissionEndNotReadyTemplate.json
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
{
"controller": "group",
"id": "mission_rewards",
"selectable": false,
"pressable": false,
"children": [
{
"view": "menu3.MissionRewardPage",
"selectable": false,
"pressable": false,
"data": {
"loading": true
}
}
],
"post-load-action": {
"$if $gt ($.retryCount,45)": {
"$then": {
"trigger-action": {
"target": "mission_rewards",
"name": "handle-error"
}
},
"$else": {
"load-async": {
"onfailurebehaviour": "ignorefailures",
"showloadingindicator": true,
"from": {
"url": "missionendready",
"args": {
"contractSessionId": "$.contractSessionId",
"retryCount": "$.retryCount"
}
},
"target": "mission_rewards"
}
}
}
},
"on-error-action": {
"trigger-action": {
"target": "mission_rewards",
"name": "handle-error"
}
},
"actions": {
"handle-error": {
"show-modal": {
"config": {
"view": "menu3.modal.ModalDialogGeneric",
"buttons": [
"$loc UI_CONNECTION_STATUS_CONNECTING_PROMPT_RETRY",
"$loc UI_CONNECTION_STATUS_DISCONNECTED_GO_TO_HUB"
],
"data": {
"title": "$loc UI_DIALOG_ERROR",
"description": "$loc UI_MENU_PAGE_OPEN_FAILED_DESCRIPTION"
}
},
"onbutton": [
{
"load-async": {
"onfailurebehaviour": "ignorefailures",
"showloadingindicator": true,
"from": {
"url": "missionendready",
"args": {
"contractSessionId": "$.contractSessionId",
"retryCount": 0
}
},
"target": "mission_rewards"
}
},
{
"exit-to-main-menu": {}
}
]
}
}
}
}