mirror of
				https://github.com/elyby/accounts-frontend.git
				synced 2025-05-31 14:11:58 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import React, { ComponentType, MouseEventHandler, useCallback } from 'react';
 | 
						|
import { useDispatch } from 'react-redux';
 | 
						|
import { Link } from 'react-router-dom';
 | 
						|
import { FormattedMessage as Message } from 'react-intl';
 | 
						|
import LanguageSwitcher from 'app/components/languageSwitcher';
 | 
						|
import { create as createPopup } from 'app/components/ui/popup/actions';
 | 
						|
import { ContactLink } from 'app/components/contact';
 | 
						|
 | 
						|
import styles from './footerMenu.scss';
 | 
						|
import messages from './footerMenu.intl.json';
 | 
						|
 | 
						|
const FooterMenu: ComponentType = () => {
 | 
						|
  const dispatch = useDispatch();
 | 
						|
  const onLanguageSwitcherClick = useCallback<MouseEventHandler>(
 | 
						|
    event => {
 | 
						|
      event.preventDefault();
 | 
						|
      dispatch(createPopup({ Popup: LanguageSwitcher }));
 | 
						|
    },
 | 
						|
    [dispatch],
 | 
						|
  );
 | 
						|
 | 
						|
  return (
 | 
						|
    <div className={styles.footerMenu} data-testid="footer">
 | 
						|
      <Link to="/rules" className={styles.footerItem}>
 | 
						|
        <Message {...messages.rules} />
 | 
						|
      </Link>
 | 
						|
      <ContactLink className={styles.footerItem}>
 | 
						|
        <Message {...messages.contactUs} />
 | 
						|
      </ContactLink>
 | 
						|
      <Link to="/dev" className={styles.footerItem}>
 | 
						|
        <Message {...messages.forDevelopers} />
 | 
						|
      </Link>
 | 
						|
 | 
						|
      <div className={styles.langTriggerContainer}>
 | 
						|
        <a
 | 
						|
          href="#"
 | 
						|
          className={styles.langTrigger}
 | 
						|
          onClick={onLanguageSwitcherClick}
 | 
						|
        >
 | 
						|
          <span className={styles.langTriggerIcon} />
 | 
						|
          <Message {...messages.siteLanguage} />
 | 
						|
        </a>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  );
 | 
						|
};
 | 
						|
 | 
						|
export default FooterMenu;
 |