153 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			153 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
//  Package imports.
 | 
						|
import PropTypes from 'prop-types';
 | 
						|
import { PureComponent } from 'react';
 | 
						|
 | 
						|
import { defineMessages, injectIntl } from 'react-intl';
 | 
						|
 | 
						|
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
						|
 | 
						|
import ForumIcon from '@/material-icons/400-24px/forum.svg?react';
 | 
						|
import HomeIcon from '@/material-icons/400-24px/home.svg?react';
 | 
						|
import ImageIcon from '@/material-icons/400-24px/image.svg?react';
 | 
						|
import InsertChartIcon from '@/material-icons/400-24px/insert_chart.svg?react';
 | 
						|
import LinkIcon from '@/material-icons/400-24px/link.svg?react';
 | 
						|
import MovieIcon from '@/material-icons/400-24px/movie.svg?react';
 | 
						|
import MusicNoteIcon from '@/material-icons/400-24px/music_note.svg?react';
 | 
						|
import { Icon } from 'flavours/glitch/components/icon';
 | 
						|
import { languages } from 'flavours/glitch/initial_state';
 | 
						|
 | 
						|
import { CollapseButton } from './collapse_button';
 | 
						|
import { VisibilityIcon } from './visibility_icon';
 | 
						|
 | 
						|
const messages = defineMessages({
 | 
						|
  collapse: { id: 'status.collapse', defaultMessage: 'Collapse' },
 | 
						|
  uncollapse: { id: 'status.uncollapse', defaultMessage: 'Uncollapse' },
 | 
						|
  inReplyTo: { id: 'status.in_reply_to', defaultMessage: 'This toot is a reply' },
 | 
						|
  previewCard: { id: 'status.has_preview_card', defaultMessage: 'Features an attached preview card' },
 | 
						|
  pictures: { id: 'status.has_pictures', defaultMessage: 'Features attached pictures' },
 | 
						|
  poll: { id: 'status.is_poll', defaultMessage: 'This toot is a poll' },
 | 
						|
  video: { id: 'status.has_video', defaultMessage: 'Features attached videos' },
 | 
						|
  audio: { id: 'status.has_audio', defaultMessage: 'Features attached audio files' },
 | 
						|
  localOnly: { id: 'status.local_only', defaultMessage: 'Only visible from your instance' },
 | 
						|
});
 | 
						|
 | 
						|
const LanguageIcon = ({ language }) => {
 | 
						|
  if (!languages) return null;
 | 
						|
 | 
						|
  const lang = languages.find((lang) => lang[0] === language);
 | 
						|
  if (!lang) return null;
 | 
						|
 | 
						|
  return (
 | 
						|
    <span className='text-icon' title={`${lang[2]} (${lang[1]})`} aria-hidden='true'>
 | 
						|
      {lang[0].toUpperCase()}
 | 
						|
    </span>
 | 
						|
  );
 | 
						|
};
 | 
						|
 | 
						|
LanguageIcon.propTypes = {
 | 
						|
  language: PropTypes.string.isRequired,
 | 
						|
};
 | 
						|
 | 
						|
class StatusIcons extends PureComponent {
 | 
						|
 | 
						|
  static propTypes = {
 | 
						|
    status: ImmutablePropTypes.map.isRequired,
 | 
						|
    mediaIcons: PropTypes.arrayOf(PropTypes.string),
 | 
						|
    collapsible: PropTypes.bool,
 | 
						|
    collapsed: PropTypes.bool,
 | 
						|
    setCollapsed: PropTypes.func.isRequired,
 | 
						|
    intl: PropTypes.object.isRequired,
 | 
						|
    settings: ImmutablePropTypes.map.isRequired,
 | 
						|
  };
 | 
						|
 | 
						|
  //  Handles clicks on collapsed button
 | 
						|
  handleCollapsedClick = (e) => {
 | 
						|
    const { collapsed, setCollapsed } = this.props;
 | 
						|
    if (e.button === 0) {
 | 
						|
      setCollapsed(!collapsed);
 | 
						|
      e.preventDefault();
 | 
						|
    }
 | 
						|
  };
 | 
						|
 | 
						|
  renderIcon (mediaIcon) {
 | 
						|
    const { intl } = this.props;
 | 
						|
 | 
						|
    let title, iconComponent;
 | 
						|
 | 
						|
    switch (mediaIcon) {
 | 
						|
    case 'link':
 | 
						|
      title = messages.previewCard;
 | 
						|
      iconComponent = LinkIcon;
 | 
						|
      break;
 | 
						|
    case 'picture-o':
 | 
						|
      title = messages.pictures;
 | 
						|
      iconComponent = ImageIcon;
 | 
						|
      break;
 | 
						|
    case 'tasks':
 | 
						|
      title = messages.poll;
 | 
						|
      iconComponent = InsertChartIcon;
 | 
						|
      break;
 | 
						|
    case 'video-camera':
 | 
						|
      title = messages.video;
 | 
						|
      iconComponent = MovieIcon;
 | 
						|
      break;
 | 
						|
    case 'music':
 | 
						|
      title = messages.audio;
 | 
						|
      iconComponent = MusicNoteIcon;
 | 
						|
      break;
 | 
						|
    }
 | 
						|
 | 
						|
    return (
 | 
						|
      <Icon
 | 
						|
        fixedWidth
 | 
						|
        className='status__media-icon'
 | 
						|
        key={`media-icon--${mediaIcon}`}
 | 
						|
        id={mediaIcon}
 | 
						|
        icon={iconComponent}
 | 
						|
        aria-hidden='true'
 | 
						|
        title={title && intl.formatMessage(title)}
 | 
						|
      />
 | 
						|
    );
 | 
						|
  }
 | 
						|
 | 
						|
  render () {
 | 
						|
    const {
 | 
						|
      status,
 | 
						|
      mediaIcons,
 | 
						|
      collapsible,
 | 
						|
      collapsed,
 | 
						|
      setCollapsed,
 | 
						|
      settings,
 | 
						|
      intl,
 | 
						|
    } = this.props;
 | 
						|
 | 
						|
    return (
 | 
						|
      <div className='status__info__icons'>
 | 
						|
        {settings.get('language') && status.get('language') && <LanguageIcon language={status.get('language')} />}
 | 
						|
        {settings.get('reply') && status.get('in_reply_to_id', null) !== null ? (
 | 
						|
          <Icon
 | 
						|
            className='status__reply-icon'
 | 
						|
            id='comment'
 | 
						|
            icon={ForumIcon}
 | 
						|
            aria-hidden='true'
 | 
						|
            title={intl.formatMessage(messages.inReplyTo)}
 | 
						|
          />
 | 
						|
        ) : null}
 | 
						|
        {settings.get('local_only') && status.get('local_only') &&
 | 
						|
          <Icon
 | 
						|
            id='home'
 | 
						|
            icon={HomeIcon}
 | 
						|
            aria-hidden='true'
 | 
						|
            title={intl.formatMessage(messages.localOnly)}
 | 
						|
          />}
 | 
						|
        {settings.get('media') && !!mediaIcons && mediaIcons.map(icon => this.renderIcon(icon))}
 | 
						|
        {settings.get('visibility') && <VisibilityIcon visibility={status.get('visibility')} />}
 | 
						|
        {collapsible && <CollapseButton collapsed={collapsed} setCollapsed={setCollapsed} />}
 | 
						|
      </div>
 | 
						|
    );
 | 
						|
  }
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
export default injectIntl(StatusIcons);
 |