* Redesign the landing page, mount public timeline on it * Adjust the standalone mounted component to the lacking of router * Adjust auth layout pages to new design * Fix tests * Standalone public timeline polling every 5 seconds * Remove now obsolete translations * Add responsive design for new landing page * Address reviews * Add floating clouds behind frontpage form * Use access token from public page when available * Fix mentions and hashtags links, cursor on status content in standalone mode * Add footer link to source code * Fix errors on pages that don't embed the component, use classnames * Fix tests * Change anonymous autoPlayGif default to false * When gif autoplay is disabled, hover to play * Add option to hide the timeline preview * Slightly improve alt layout * Add elephant friend to new frontpage * Display "back to mastodon" in place of "login" when logged in on frontpage * Change polling time to 3s
		
			
				
	
	
		
			106 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import Dropdown, { DropdownTrigger, DropdownContent } from 'react-simple-dropdown';
 | |
| import PropTypes from 'prop-types';
 | |
| 
 | |
| export default class DropdownMenu extends React.PureComponent {
 | |
| 
 | |
|   static contextTypes = {
 | |
|     router: PropTypes.object,
 | |
|   };
 | |
| 
 | |
|   static propTypes = {
 | |
|     icon: PropTypes.string.isRequired,
 | |
|     items: PropTypes.array.isRequired,
 | |
|     size: PropTypes.number.isRequired,
 | |
|     direction: PropTypes.string,
 | |
|     ariaLabel: PropTypes.string,
 | |
|     disabled: PropTypes.bool,
 | |
|   };
 | |
| 
 | |
|   static defaultProps = {
 | |
|     ariaLabel: 'Menu',
 | |
|   };
 | |
| 
 | |
|   state = {
 | |
|     direction: 'left',
 | |
|     expanded: false,
 | |
|   };
 | |
| 
 | |
|   setRef = (c) => {
 | |
|     this.dropdown = c;
 | |
|   }
 | |
| 
 | |
|   handleClick = (e) => {
 | |
|     const i = Number(e.currentTarget.getAttribute('data-index'));
 | |
|     const { action, to } = this.props.items[i];
 | |
| 
 | |
|     // Don't call e.preventDefault() when the item uses 'href' property.
 | |
|     // ex. "Edit profile" on the account action bar
 | |
| 
 | |
|     if (typeof action === 'function') {
 | |
|       e.preventDefault();
 | |
|       action();
 | |
|     } else if (to) {
 | |
|       e.preventDefault();
 | |
|       this.context.router.history.push(to);
 | |
|     }
 | |
| 
 | |
|     this.dropdown.hide();
 | |
|   }
 | |
| 
 | |
|   handleShow = () => this.setState({ expanded: true })
 | |
| 
 | |
|   handleHide = () => this.setState({ expanded: false })
 | |
| 
 | |
|   renderItem = (item, i) => {
 | |
|     if (item === null) {
 | |
|       return <li key={`sep-${i}`} className='dropdown__sep' />;
 | |
|     }
 | |
| 
 | |
|     const { text, href = '#' } = item;
 | |
| 
 | |
|     return (
 | |
|       <li className='dropdown__content-list-item' key={`${text}-${i}`}>
 | |
|         <a href={href} target='_blank' rel='noopener' onClick={this.handleClick} data-index={i} className='dropdown__content-list-link'>
 | |
|           {text}
 | |
|         </a>
 | |
|       </li>
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   render () {
 | |
|     const { icon, items, size, direction, ariaLabel, disabled } = this.props;
 | |
|     const { expanded }   = this.state;
 | |
|     const directionClass = (direction === 'left') ? 'dropdown__left' : 'dropdown__right';
 | |
|     const iconStyle      = { fontSize: `${size}px`, width: `${size}px`, lineHeight: `${size}px` };
 | |
|     const iconClassname  = `fa fa-fw fa-${icon} dropdown__icon`;
 | |
| 
 | |
|     if (disabled) {
 | |
|       return (
 | |
|         <div className='icon-button disabled' style={iconStyle} aria-label={ariaLabel}>
 | |
|           <i className={iconClassname} aria-hidden />
 | |
|         </div>
 | |
|       );
 | |
|     }
 | |
| 
 | |
|     const dropdownItems = expanded && (
 | |
|       <ul className='dropdown__content-list'>
 | |
|         {items.map(this.renderItem)}
 | |
|       </ul>
 | |
|     );
 | |
| 
 | |
|     return (
 | |
|       <Dropdown ref={this.setRef} onShow={this.handleShow} onHide={this.handleHide}>
 | |
|         <DropdownTrigger className='icon-button' style={iconStyle} aria-label={ariaLabel}>
 | |
|           <i className={iconClassname} aria-hidden />
 | |
|         </DropdownTrigger>
 | |
| 
 | |
|         <DropdownContent className={directionClass}>
 | |
|           {dropdownItems}
 | |
|         </DropdownContent>
 | |
|       </Dropdown>
 | |
|     );
 | |
|   }
 | |
| 
 | |
| }
 |