Page MenuHomePhabricator

[native] implement screen for testing Tunnelbroker
ClosedPublic

Authored by kamil on Oct 27 2023, 4:43 AM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Dec 20, 10:26 AM
Unknown Object (File)
Sat, Dec 14, 6:22 PM
Unknown Object (File)
Sat, Dec 14, 6:22 PM
Unknown Object (File)
Sat, Dec 14, 6:22 PM
Unknown Object (File)
Sat, Dec 14, 6:21 PM
Unknown Object (File)
Sat, Dec 14, 6:12 PM
Unknown Object (File)
Tue, Dec 10, 2:04 PM
Unknown Object (File)
Sat, Nov 30, 3:15 PM
Subscribers

Details

Summary

This is a screen for testing Tunnelbroker utilities. It might be helpful for testing on production.

Styles/components are mostly copied from other places in the codebase which visually look similar. This is only for devs/staff and will be removed in the future.

Depends on D9617

Test Plan

See example here.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

kamil held this revision as a draft.
kamil published this revision for review.Oct 27 2023, 5:42 AM
native/navigation/route-names.js
112 ↗(On Diff #32457)

Typo

native/profile/tunnelbroker-menu.react.js
27–29 ↗(On Diff #32457)

We should cleanup listeners

This revision is now accepted and ready to land.Nov 3 2023, 6:50 AM
native/profile/tunnelbroker-menu.react.js
88–92

We should avoid control flow inside JSX... same principle as "no ternary inside JSX" here:

This breaks expectations around indentation usage and can hide code branches.

native/profile/tunnelbroker-menu.react.js
88–92

We should avoid control flow inside JSX... same principle as "no ternary inside JSX" here:

This breaks expectations around indentation usage and can hide code branches.

D9747