forked from ZeusLN/zeus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavigation.ts
444 lines (429 loc) · 11.6 KB
/
Navigation.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
import { createAppContainer } from 'react-navigation';
import { createStackNavigator } from 'react-navigation-stack';
// Views
import Transaction from './views/Transaction';
import Wallet from './views/Wallet/Wallet';
import Send from './views/Send';
import LnurlPay from './views/LnurlPay/LnurlPay';
import LnurlChannel from './views/LnurlChannel';
import LnurlAuth from './views/LnurlAuth';
import Receive from './views/Receive';
import PaymentRequest from './views/PaymentRequest';
import HandleAnythingQRScanner from './views/handleAnythingQRScanner';
import NodeQRScanner from './views/NodeQRScanner';
import OpenChannel from './views/OpenChannel';
import SendingOnChain from './views/SendingOnChain';
import SendingLightning from './views/SendingLightning';
import Channel from './views/Channels/Channel';
import Payment from './views/Payment';
import PaymentPaths from './views/PaymentPaths';
import Invoice from './views/Invoice';
import Sweep from './views/Sweep';
import SparkQRScanner from './views/SparkQRScanner';
import NodeInfo from './views/NodeInfo';
import NetworkInfo from './views/NetworkInfo';
import Lockscreen from './views/Lockscreen';
import NostrContacts from './views/NostrContacts';
import ContactQR from './views/ContactQR';
// Settings views
import Settings from './views/Settings/Settings';
import NodeConfiguration from './views/Settings/NodeConfiguration';
import Nodes from './views/Settings/Nodes';
import Privacy from './views/Settings/Privacy';
import Security from './views/Settings/Security';
import SetPassword from './views/Settings/SetPassword';
import SetDuressPassword from './views/Settings/SetDuressPassword';
import SetPin from './views/Settings/SetPin';
import SetDuressPin from './views/Settings/SetDuressPin';
import Language from './views/Settings/Language';
import Currency from './views/Settings/Currency';
import SelectCurrency from './views/Settings/SelectCurrency';
import Display from './views/Settings/Display';
import CertInstallInstructions from './views/Settings/CertInstallInstructions';
import SignVerifyMessage from './views/Settings/SignVerifyMessage';
import Support from './views/Settings/Support';
import Help from './views/Settings/Help';
import SocialMedia from './views/Settings/SocialMedia';
import Sponsors from './views/Settings/Sponsors';
import Olympians from './views/Settings/Olympians';
import Gods from './views/Settings/Gods';
import Mortals from './views/Settings/Mortals';
import PointOfSale from './views/Settings/PointOfSale';
import PointOfSaleRecon from './views/Settings/PointOfSaleRecon';
import PointOfSaleReconExport from './views/Settings/PointOfSaleReconExport';
import Categories from './views/POS/Categories';
import ProductCategoryDetails from './views/POS/ProductCategoryDetails';
import Products from './views/POS/Products';
import ProductDetails from './views/POS/ProductDetails';
import PaymentsSettings from './views/Settings/PaymentsSettings';
import InvoicesSettings from './views/Settings/InvoicesSettings';
import LSP from './views/Settings/LSP';
import Bolt12Address from './views/Settings/Bolt12Address';
// Lightning address
import LightningAddress from './views/Settings/LightningAddress';
import LightningAddressInfo from './views/Settings/LightningAddress/LightningAddressInfo';
import LightningAddressSettings from './views/Settings/LightningAddress/LightningAddressSettings';
import Attestation from './views/Settings/LightningAddress/Attestation';
import Attestations from './views/Settings/LightningAddress/Attestations';
import NostrKeys from './views/Settings/LightningAddress/NostrKeys';
import NostrRelays from './views/Settings/LightningAddress/NostrRelays';
import ChangeAddress from './views/Settings/LightningAddress/ChangeAddress';
//Embedded Node
import EmbeddedNode from './views/Settings/EmbeddedNode';
import DisasterRecovery from './views/Settings/EmbeddedNode/DisasterRecovery';
import DisasterRecoveryAdvanced from './views/Settings/EmbeddedNode/DisasterRecoveryAdvanced';
import Pathfinding from './views/Settings/EmbeddedNode/Pathfinding';
import ExpressGraphSync from './views/Settings/EmbeddedNode/ExpressGraphSync';
import LNDLogs from './views/Settings/EmbeddedNode/LNDLogs';
import Peers from './views/Settings/EmbeddedNode/Peers';
import NeutrinoPeers from './views/Settings/EmbeddedNode/Peers/NeutrinoPeers';
import ZeroConfPeers from './views/Settings/EmbeddedNode/Peers/ZeroConfPeers';
import Advanced from './views/Settings/EmbeddedNode/Advanced';
// Routing
import Routing from './views/Routing/Routing';
import RoutingEvent from './views/Routing/RoutingEvent';
import SetFees from './views/Routing/SetFees';
// new views
import Activity from './views/Activity/Activity';
import ActivityFilter from './views/Activity/ActivityFilter';
import CoinControl from './views/UTXOs/CoinControl';
import Utxo from './views/UTXOs/UTXO';
import Accounts from './views/Accounts/Accounts';
import ImportAccount from './views/Accounts/ImportAccount';
import ImportAccountQRScanner from './views/Accounts/ImportAccountQRScanner';
import BumpFee from './views/BumpFee';
import QR from './views/QR';
import AddNotes from './views/AddNotes';
import Contacts from './views/Settings/Contacts';
import AddContact from './views/Settings/AddContact';
import ContactDetails from './views/ContactDetails';
// POS
import Order from './views/Order';
import Intro from './views/Intro';
import IntroSplash from './views/IntroSplash';
import EditFee from './views/EditFee';
// Embedded LND
import Seed from './views/Settings/Seed';
import Sync from './views/Sync';
import LspExplanationFees from './views/Explanations/LspExplanationFees';
import LspExplanationRouting from './views/Explanations/LspExplanationRouting';
import LspExplanationWrappedInvoices from './views/Explanations/LspExplanationWrappedInvoices';
import LspExplanationOverview from './views/Explanations/LspExplanationOverview';
import RawTxHex from './views/RawTxHex';
const AppScenes = {
Wallet: {
screen: Wallet
},
IntroSplash: {
screen: IntroSplash
},
Intro: {
screen: Intro
},
Lockscreen: {
screen: Lockscreen
},
Accounts: {
screen: Accounts
},
Send: {
screen: Send
},
Sweep: {
screen: Sweep
},
EditFee: {
screen: EditFee
},
Settings: {
screen: Settings
},
NodeConfiguration: {
screen: NodeConfiguration
},
Nodes: {
screen: Nodes
},
Privacy: {
screen: Privacy
},
Security: {
screen: Security
},
SetPassword: {
screen: SetPassword
},
SetDuressPassword: {
screen: SetDuressPassword
},
SetPin: {
screen: SetPin
},
SetDuressPin: {
screen: SetDuressPin
},
Language: {
screen: Language
},
Currency: {
screen: Currency
},
SelectCurrency: {
screen: SelectCurrency
},
Display: {
screen: Display
},
Support: {
screen: Support
},
Help: {
screen: Help
},
Sponsors: {
screen: Sponsors
},
Olympians: {
screen: Olympians
},
Gods: {
screen: Gods
},
Mortals: {
screen: Mortals
},
CertInstallInstructions: {
screen: CertInstallInstructions
},
SignVerifyMessage: {
screen: SignVerifyMessage
},
Transaction: {
screen: Transaction
},
Channel: {
screen: Channel
},
Payment: {
screen: Payment
},
PaymentPaths: {
screen: PaymentPaths
},
Invoice: {
screen: Invoice
},
LnurlPay: {
screen: LnurlPay
},
Receive: {
screen: Receive
},
LnurlChannel: {
screen: LnurlChannel
},
LnurlAuth: {
screen: LnurlAuth
},
PaymentRequest: {
screen: PaymentRequest
},
OpenChannel: {
screen: OpenChannel
},
SendingOnChain: {
screen: SendingOnChain
},
SendingLightning: {
screen: SendingLightning
},
NetworkInfo: {
screen: NetworkInfo
},
NodeInfo: {
screen: NodeInfo
},
Routing: {
screen: Routing
},
RoutingEvent: {
screen: RoutingEvent
},
SetFees: {
screen: SetFees
},
Activity: {
screen: Activity
},
ActivityFilter: {
screen: ActivityFilter
},
CoinControl: {
screen: CoinControl
},
Utxo: {
screen: Utxo
},
ImportAccount: {
screen: ImportAccount
},
HandleAnythingQRScanner: {
screen: HandleAnythingQRScanner
},
NodeQRCodeScanner: {
screen: NodeQRScanner
},
ImportAccountQRScanner: {
screen: ImportAccountQRScanner
},
SparkQRScanner: {
screen: SparkQRScanner
},
Order: {
screen: Order
},
PointOfSaleSettings: {
screen: PointOfSale
},
PointOfSaleRecon: {
screen: PointOfSaleRecon
},
PointOfSaleReconExport: {
screen: PointOfSaleReconExport
},
Categories: {
screen: Categories
},
ProductCategoryDetails: {
screen: ProductCategoryDetails
},
Products: {
screen: Products
},
ProductDetails: {
screen: ProductDetails
},
PaymentsSettings: {
screen: PaymentsSettings
},
InvoicesSettings: {
screen: InvoicesSettings
},
Seed: {
screen: Seed
},
Sync: {
screen: Sync
},
BumpFee: {
screen: BumpFee
},
QR: {
screen: QR
},
AddNotes: {
screen: AddNotes
},
LspExplanationFees: {
screen: LspExplanationFees
},
LspExplanationRouting: {
screen: LspExplanationRouting
},
LspExplanationWrappedInvoices: {
screen: LspExplanationWrappedInvoices
},
LspExplanationOverview: {
screen: LspExplanationOverview
},
EmbeddedNodeSettings: {
screen: EmbeddedNode
},
DisasterRecovery: {
screen: DisasterRecovery
},
DisasterRecoveryAdvanced: {
screen: DisasterRecoveryAdvanced
},
Pathfinding: {
screen: Pathfinding
},
ExpressGraphSync: {
screen: ExpressGraphSync
},
LNDLogs: {
screen: LNDLogs
},
Peers: {
screen: Peers
},
NeutrinoPeers: {
screen: NeutrinoPeers
},
ZeroConfPeers: {
screen: ZeroConfPeers
},
EmbeddedNodeSettingsAdvanced: {
screen: Advanced
},
LSPSettings: {
screen: LSP
},
LightningAddress: {
screen: LightningAddress
},
LightningAddressInfo: {
screen: LightningAddressInfo
},
LightningAddressSettings: {
screen: LightningAddressSettings
},
Attestations: {
screen: Attestations
},
Attestation: {
screen: Attestation
},
Contacts: {
screen: Contacts
},
AddContact: {
screen: AddContact
},
ContactDetails: {
screen: ContactDetails
},
Bolt12Address: {
screen: Bolt12Address
},
NostrKeys: {
screen: NostrKeys
},
NostrRelays: {
screen: NostrRelays
},
ChangeAddress: {
screen: ChangeAddress
},
SocialMedia: {
screen: SocialMedia
},
NostrContacts: {
screen: NostrContacts
},
ContactQR: {
screen: ContactQR
},
RawTxHex: {
screen: RawTxHex
}
};
const AppNavigator = createStackNavigator(AppScenes, {
headerMode: 'none',
mode: 'modal',
defaultNavigationOptions: {
gestureEnabled: false
}
});
const Navigation = createAppContainer(AppNavigator);
export default Navigation;