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)
Wed, Oct 2, 1:08 PM
Unknown Object (File)
Wed, Oct 2, 1:08 PM
Unknown Object (File)
Wed, Oct 2, 1:07 PM
Unknown Object (File)
Wed, Oct 2, 6:01 AM
Unknown Object (File)
Mon, Sep 23, 4:24 PM
Unknown Object (File)
Aug 29 2024, 2:35 AM
Unknown Object (File)
Aug 28 2024, 11:02 PM
Unknown Object (File)
Aug 24 2024, 3:38 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
No Lint Coverage
Unit
No Test Coverage

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 ↗(On Diff #32808)

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 ↗(On Diff #32808)

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