1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

Add security & privacy "What's New" message (#16783)

This commit is contained in:
Alex Donesky 2022-12-02 17:59:41 -06:00 committed by GitHub
parent 5eb5b4c652
commit 05ab94fd1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 35 additions and 0 deletions

View File

@ -2438,6 +2438,15 @@
"notifications16Title": {
"message": "Improved token allowance experience"
},
"notifications17ActionText": {
"message": "Show Security & Privacy settings"
},
"notifications17Description": {
"message": "This update provides more options so you can better control your own privacy. We've added more transparency about how data is collected and clearer options for sharing it. Change your preferences or delete extension usage data via Security & Privacy settings."
},
"notifications17Title": {
"message": "Security & Privacy Settings"
},
"notifications1Description": {
"message": "MetaMask Mobile users can now swap tokens inside their mobile wallet. Scan the QR code to get the mobile app and start swapping.",
"description": "Description of a notification in the 'See What's New' popup. Describes the swapping on mobile feature."

View File

@ -82,6 +82,10 @@ export const UI_NOTIFICATIONS = {
id: 16,
date: null,
},
17: {
id: 17,
date: null,
},
};
export const getTranslatedUINotifications = (t, locale) => {
@ -239,5 +243,16 @@ export const getTranslatedUINotifications = (t, locale) => {
)
: '',
},
17: {
...UI_NOTIFICATIONS[17],
title: t('notifications17Title'),
description: t('notifications17Description'),
actionText: t('notifications17ActionText'),
date: UI_NOTIFICATIONS[17].date
? new Intl.DateTimeFormat(formattedLocale).format(
new Date(UI_NOTIFICATIONS[17].date),
)
: '',
},
};
};

View File

@ -110,6 +110,11 @@ function defaultFixture() {
id: 16,
isShown: true,
},
17: {
date: null,
id: 17,
isShown: true,
},
},
},
AppStateController: {

View File

@ -16,6 +16,7 @@ import {
BUILD_QUOTE_ROUTE,
ADVANCED_ROUTE,
EXPERIMENTAL_ROUTE,
SECURITY_ROUTE,
} from '../../../helpers/constants/routes';
import { TYPOGRAPHY } from '../../../helpers/constants/design-system';
import ZENDESK_URLS from '../../../helpers/constants/zendesk-url';
@ -62,6 +63,10 @@ function getActionFunctionById(id, history) {
updateViewedNotifications({ 16: true });
history.push(EXPERIMENTAL_ROUTE);
},
17: () => {
updateViewedNotifications({ 17: true });
history.push(SECURITY_ROUTE);
},
};
return actionFunctions[id];

View File

@ -981,6 +981,7 @@ function getAllowedAnnouncementIds(state) {
14: false,
15: false,
16: true,
17: true,
};
}