You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
import React, { useContext } from 'react';
|
|
|
|
import { SUPPORT_REQUEST_LINK } from '../../../helpers/constants/common';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import {
|
|
EVENT,
|
|
EVENT_NAMES,
|
|
CONTEXT_PROPS,
|
|
} from '../../../../shared/constants/metametrics';
|
|
import { MetaMetricsContext } from '../../../contexts/metametrics';
|
|
|
|
const BetaHomeFooter = () => {
|
|
const t = useI18nContext();
|
|
const trackEvent = useContext(MetaMetricsContext);
|
|
|
|
return (
|
|
<>
|
|
<a
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href={SUPPORT_REQUEST_LINK}
|
|
onClick={() => {
|
|
trackEvent(
|
|
{
|
|
category: EVENT.CATEGORIES.FOOTER,
|
|
event: EVENT_NAMES.SUPPORT_LINK_CLICKED,
|
|
properties: {
|
|
url: SUPPORT_REQUEST_LINK,
|
|
},
|
|
},
|
|
{
|
|
contextPropsIntoEventProperties: [CONTEXT_PROPS.PAGE_TITLE],
|
|
},
|
|
);
|
|
}}
|
|
>
|
|
{t('needHelpSubmitTicket')}
|
|
</a>{' '}
|
|
|{' '}
|
|
<a
|
|
href="https://community.metamask.io/c/metamask-beta"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{t('needHelpFeedback')}
|
|
</a>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default BetaHomeFooter;
|
|
|