Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3387237
D13044.id43296.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
D13044.id43296.diff
View Options
diff --git a/lib/selectors/user-selectors.js b/lib/selectors/user-selectors.js
--- a/lib/selectors/user-selectors.js
+++ b/lib/selectors/user-selectors.js
@@ -276,6 +276,15 @@
),
);
+const getOwnPrimaryDeviceID: (state: BaseAppState<>) => ?string =
+ createSelector(
+ (state: BaseAppState<>) => state.auxUserStore.auxUserInfos,
+ (state: BaseAppState<>) =>
+ state.currentUserInfo && state.currentUserInfo.id,
+ (auxUserInfos: AuxUserInfos, currentUserID: ?string): ?string =>
+ currentUserID && auxUserInfos[currentUserID]?.deviceList?.devices[0],
+ );
+
export {
userIDsToRelativeUserInfos,
getRelativeMemberInfos,
@@ -290,4 +299,5 @@
getForeignPeerDevices,
getAllPeerDevices,
getAllPeerUserIDAndDeviceIDs,
+ getOwnPrimaryDeviceID,
};
diff --git a/native/profile/profile-screen.react.js b/native/profile/profile-screen.react.js
--- a/native/profile/profile-screen.react.js
+++ b/native/profile/profile-screen.react.js
@@ -11,9 +11,11 @@
} from 'lib/actions/user-actions.js';
import { useStringForUser } from 'lib/hooks/ens-cache.js';
import { createLoadingStatusSelector } from 'lib/selectors/loading-selectors.js';
+import { getOwnPrimaryDeviceID } from 'lib/selectors/user-selectors.js';
import { accountHasPassword } from 'lib/shared/account-utils.js';
import type { LogOutResult } from 'lib/types/account-types.js';
import { type CurrentUserInfo } from 'lib/types/user-types.js';
+import { getContentSigningKey } from 'lib/utils/crypto-utils.js';
import {
useDispatchActionPromise,
type DispatchActionPromise,
@@ -155,6 +157,7 @@
type Props = {
...BaseProps,
+currentUserInfo: ?CurrentUserInfo,
+ +primaryDeviceID: ?string,
+logOutLoading: boolean,
+colors: Colors,
+styles: $ReadOnly<typeof unboundStyles>,
@@ -259,13 +262,8 @@
<>
<ProfileRow
danger
- content="Log out (primary device)"
- onPress={this.onPressPrimaryDeviceLogout}
- />
- <ProfileRow
- danger
- content="Log out (secondary device)"
- onPress={this.onPressSecondaryDeviceLogout}
+ content="Log out (new flow)"
+ onPress={this.onPressNewLogout}
/>
</>
);
@@ -380,44 +378,40 @@
);
};
- onPressPrimaryDeviceLogout = () => {
- if (this.loggedOutOrLoggingOut) {
- return;
- }
- // TODO: Add check for primary device
- Alert.alert(
- 'Log out primary device',
- 'Are you sure you want to log out all devices?',
- [
- { text: 'No', style: 'cancel' },
- {
- text: 'Yes',
- onPress: this.logOutPrimaryDevice,
- style: 'destructive',
- },
- ],
- { cancelable: true },
- );
- };
+ onPressNewLogout = () => {
+ void (async () => {
+ if (this.loggedOutOrLoggingOut) {
+ return;
+ }
+ const { primaryDeviceID } = this.props;
+ const currentDeviceID = await getContentSigningKey();
+ const isPrimaryDevice = currentDeviceID === primaryDeviceID;
+
+ let alertTitle, alertMessage, onPressAction;
+ if (isPrimaryDevice) {
+ alertTitle = 'Log out primary device';
+ alertMessage = 'Are you sure you want to log out all devices?';
+ onPressAction = this.logOutPrimaryDevice;
+ } else {
+ alertTitle = 'Log out secondary device';
+ alertMessage = 'Are you sure you want to log out this device?';
+ onPressAction = this.logOutSecondaryDevice;
+ }
- onPressSecondaryDeviceLogout = () => {
- if (this.loggedOutOrLoggingOut) {
- return;
- }
- // TODO: Add check for secondary device
- Alert.alert(
- 'Log out secondary device',
- 'Are you sure you want to log out this device?',
- [
- { text: 'No', style: 'cancel' },
- {
- text: 'Yes',
- onPress: this.logOutSecondaryDevice,
- style: 'destructive',
- },
- ],
- { cancelable: true },
- );
+ Alert.alert(
+ alertTitle,
+ alertMessage,
+ [
+ { text: 'No', style: 'cancel' },
+ {
+ text: 'Yes',
+ onPress: onPressAction,
+ style: 'destructive',
+ },
+ ],
+ { cancelable: true },
+ );
+ })();
};
logOutWithoutDeletingNativeCredentialsWrapper = () => {
@@ -531,6 +525,7 @@
const ConnectedProfileScreen: React.ComponentType<BaseProps> =
React.memo<BaseProps>(function ConnectedProfileScreen(props: BaseProps) {
const currentUserInfo = useSelector(state => state.currentUserInfo);
+ const primaryDeviceID = useSelector(getOwnPrimaryDeviceID);
const logOutLoading =
useSelector(logOutLoadingStatusSelector) === 'loading';
const colors = useColors();
@@ -549,6 +544,7 @@
<ProfileScreen
{...props}
currentUserInfo={currentUserInfo}
+ primaryDeviceID={primaryDeviceID}
logOutLoading={logOutLoading}
colors={colors}
styles={styles}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 30, 8:24 AM (20 h, 34 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2600255
Default Alt Text
D13044.id43296.diff (4 KB)
Attached To
Mode
D13044: [native] Select logout flow basing on being primary device
Attached
Detach File
Event Timeline
Log In to Comment