Enforce stricter rules for Typescript files (#24910)
This commit is contained in:
		
							parent
							
								
									64ec41d89c
								
							
						
					
					
						commit
						c8181eb0a4
					
				| 
						 | 
					@ -297,6 +297,12 @@ module.exports = {
 | 
				
			||||||
        '@typescript-eslint/no-explicit-any': 'off',
 | 
					        '@typescript-eslint/no-explicit-any': 'off',
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        'jsdoc/require-jsdoc': 'off',
 | 
					        'jsdoc/require-jsdoc': 'off',
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Those rules set stricter rules for TS files
 | 
				
			||||||
 | 
					        // to enforce better practices when converting from JS
 | 
				
			||||||
 | 
					        'import/no-default-export': 'warn',
 | 
				
			||||||
 | 
					        'react/prefer-stateless-function': 'warn',
 | 
				
			||||||
 | 
					        'react/function-component-definition': ['error', { namedComponents: 'arrow-function' }],
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
import api from '../api';
 | 
					import api from '../api';
 | 
				
			||||||
import { debounce } from 'lodash';
 | 
					import { debounce } from 'lodash';
 | 
				
			||||||
import compareId from '../compare_id';
 | 
					import { compareId } from '../compare_id';
 | 
				
			||||||
import { List as ImmutableList } from 'immutable';
 | 
					import { List as ImmutableList } from 'immutable';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const MARKERS_FETCH_REQUEST = 'MARKERS_FETCH_REQUEST';
 | 
					export const MARKERS_FETCH_REQUEST = 'MARKERS_FETCH_REQUEST';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -13,7 +13,7 @@ import { defineMessages } from 'react-intl';
 | 
				
			||||||
import { List as ImmutableList } from 'immutable';
 | 
					import { List as ImmutableList } from 'immutable';
 | 
				
			||||||
import { unescapeHTML } from '../utils/html';
 | 
					import { unescapeHTML } from '../utils/html';
 | 
				
			||||||
import { usePendingItems as preferPendingItems } from 'mastodon/initial_state';
 | 
					import { usePendingItems as preferPendingItems } from 'mastodon/initial_state';
 | 
				
			||||||
import compareId from 'mastodon/compare_id';
 | 
					import { compareId } from 'mastodon/compare_id';
 | 
				
			||||||
import { requestNotificationPermission } from '../utils/notifications';
 | 
					import { requestNotificationPermission } from '../utils/notifications';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const NOTIFICATIONS_UPDATE      = 'NOTIFICATIONS_UPDATE';
 | 
					export const NOTIFICATIONS_UPDATE      = 'NOTIFICATIONS_UPDATE';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ import { importFetchedStatus, importFetchedStatuses } from './importer';
 | 
				
			||||||
import { submitMarkers } from './markers';
 | 
					import { submitMarkers } from './markers';
 | 
				
			||||||
import api, { getLinks } from 'mastodon/api';
 | 
					import api, { getLinks } from 'mastodon/api';
 | 
				
			||||||
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
 | 
					import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
 | 
				
			||||||
import compareId from 'mastodon/compare_id';
 | 
					import { compareId } from 'mastodon/compare_id';
 | 
				
			||||||
import { usePendingItems as preferPendingItems } from 'mastodon/initial_state';
 | 
					import { usePendingItems as preferPendingItems } from 'mastodon/initial_state';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const TIMELINE_UPDATE  = 'TIMELINE_UPDATE';
 | 
					export const TIMELINE_UPDATE  = 'TIMELINE_UPDATE';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,4 +1,4 @@
 | 
				
			||||||
export default function compareId (id1: string, id2: string) {
 | 
					export function compareId (id1: string, id2: string) {
 | 
				
			||||||
  if (id1 === id2) {
 | 
					  if (id1 === id2) {
 | 
				
			||||||
    return 0;
 | 
					    return 0;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import renderer from 'react-test-renderer';
 | 
					import renderer from 'react-test-renderer';
 | 
				
			||||||
import { fromJS } from 'immutable';
 | 
					import { fromJS } from 'immutable';
 | 
				
			||||||
import Avatar from '../avatar';
 | 
					import { Avatar } from '../avatar';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
describe('<Avatar />', () => {
 | 
					describe('<Avatar />', () => {
 | 
				
			||||||
  const account = fromJS({
 | 
					  const account = fromJS({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import renderer from 'react-test-renderer';
 | 
					import renderer from 'react-test-renderer';
 | 
				
			||||||
import { fromJS } from 'immutable';
 | 
					import { fromJS } from 'immutable';
 | 
				
			||||||
import AvatarOverlay from '../avatar_overlay';
 | 
					import { AvatarOverlay } from '../avatar_overlay';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
describe('<AvatarOverlay', () => {
 | 
					describe('<AvatarOverlay', () => {
 | 
				
			||||||
  const account = fromJS({
 | 
					  const account = fromJS({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,19 +1,19 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import Avatar from './avatar';
 | 
					import { Avatar } from './avatar';
 | 
				
			||||||
import DisplayName from './display_name';
 | 
					import DisplayName from './display_name';
 | 
				
			||||||
import IconButton from './icon_button';
 | 
					import { IconButton } from './icon_button';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import { me } from '../initial_state';
 | 
					import { me } from '../initial_state';
 | 
				
			||||||
import RelativeTimestamp from './relative_timestamp';
 | 
					import { RelativeTimestamp } from './relative_timestamp';
 | 
				
			||||||
import Skeleton from 'mastodon/components/skeleton';
 | 
					import Skeleton from 'mastodon/components/skeleton';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
import { counterRenderer } from 'mastodon/components/common_counter';
 | 
					import { counterRenderer } from 'mastodon/components/common_counter';
 | 
				
			||||||
import ShortNumber from 'mastodon/components/short_number';
 | 
					import ShortNumber from 'mastodon/components/short_number';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import VerifiedBadge from 'mastodon/components/verified_badge';
 | 
					import { VerifiedBadge } from 'mastodon/components/verified_badge';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  follow: { id: 'account.follow', defaultMessage: 'Follow' },
 | 
					  follow: { id: 'account.follow', defaultMessage: 'Follow' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -54,5 +54,3 @@ export const AnimatedNumber: React.FC<Props> = ({
 | 
				
			||||||
    </TransitionMotion>
 | 
					    </TransitionMotion>
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default AnimatedNumber;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,7 +4,7 @@ import PropTypes from 'prop-types';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const filename = url => url.split('/').pop().split('#')[0].split('?')[0];
 | 
					const filename = url => url.split('/').pop().split('#')[0].split('?')[0];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -45,5 +45,3 @@ export const Avatar: React.FC<Props> = ({
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default Avatar;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import { autoPlayGif } from '../initial_state';
 | 
					import { autoPlayGif } from '../initial_state';
 | 
				
			||||||
import Avatar from './avatar';
 | 
					import { Avatar } from './avatar';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class AvatarComposite extends React.PureComponent {
 | 
					export default class AvatarComposite extends React.PureComponent {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -47,5 +47,3 @@ export const AvatarOverlay: React.FC<Props> = ({
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default AvatarOverlay;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,13 +9,13 @@ type Props = {
 | 
				
			||||||
  children?: never;
 | 
					  children?: never;
 | 
				
			||||||
  [key: string]: any;
 | 
					  [key: string]: any;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
function Blurhash({
 | 
					const Blurhash: React.FC<Props> = ({
 | 
				
			||||||
  hash,
 | 
					  hash,
 | 
				
			||||||
  width = 32,
 | 
					  width = 32,
 | 
				
			||||||
  height = width,
 | 
					  height = width,
 | 
				
			||||||
  dummy = false,
 | 
					  dummy = false,
 | 
				
			||||||
  ...canvasProps
 | 
					  ...canvasProps
 | 
				
			||||||
}: Props) {
 | 
					}) => {
 | 
				
			||||||
  const canvasRef = useRef<HTMLCanvasElement>(null);
 | 
					  const canvasRef = useRef<HTMLCanvasElement>(null);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  useEffect(() => {
 | 
					  useEffect(() => {
 | 
				
			||||||
| 
						 | 
					@ -40,6 +40,8 @@ function Blurhash({
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <canvas {...canvasProps} ref={canvasRef} width={width} height={height} />
 | 
					    <canvas {...canvasProps} ref={canvasRef} width={width} height={height} />
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
}
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default React.memo(Blurhash);
 | 
					const MemoizedBlurhash = React.memo(Blurhash);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export { MemoizedBlurhash as Blurhash };
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -5,5 +5,3 @@ export const Check: React.FC = () => (
 | 
				
			||||||
    <path fillRule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clipRule='evenodd' />
 | 
					    <path fillRule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clipRule='evenodd' />
 | 
				
			||||||
  </svg>
 | 
					  </svg>
 | 
				
			||||||
);
 | 
					);
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default Check;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { createPortal } from 'react-dom';
 | 
					import { createPortal } from 'react-dom';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class ColumnBackButton extends React.PureComponent {
 | 
					export default class ColumnBackButton extends React.PureComponent {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import ColumnBackButton from './column_back_button';
 | 
					import ColumnBackButton from './column_back_button';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class ColumnBackButtonSlim extends ColumnBackButton {
 | 
					export default class ColumnBackButtonSlim extends ColumnBackButton {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
 | 
				
			||||||
import { createPortal } from 'react-dom';
 | 
					import { createPortal } from 'react-dom';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import { FormattedMessage, injectIntl, defineMessages } from 'react-intl';
 | 
					import { FormattedMessage, injectIntl, defineMessages } from 'react-intl';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  show: { id: 'column_header.show_settings', defaultMessage: 'Show settings' },
 | 
					  show: { id: 'column_header.show_settings', defaultMessage: 'Show settings' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import IconButton from './icon_button';
 | 
					import { IconButton } from './icon_button';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { injectIntl, defineMessages } from 'react-intl';
 | 
					import { injectIntl, defineMessages } from 'react-intl';
 | 
				
			||||||
import { bannerSettings } from 'mastodon/settings';
 | 
					import { bannerSettings } from 'mastodon/settings';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
import React, { useCallback } from 'react';
 | 
					import React, { useCallback } from 'react';
 | 
				
			||||||
import IconButton from './icon_button';
 | 
					import { IconButton } from './icon_button';
 | 
				
			||||||
import { InjectedIntl, defineMessages, injectIntl } from 'react-intl';
 | 
					import { InjectedIntl, defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import IconButton from './icon_button';
 | 
					import { IconButton } from './icon_button';
 | 
				
			||||||
import Overlay from 'react-overlays/Overlay';
 | 
					import Overlay from 'react-overlays/Overlay';
 | 
				
			||||||
import { supportsPassiveEvents } from 'detect-passive-events';
 | 
					import { supportsPassiveEvents } from 'detect-passive-events';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,11 +1,11 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { FormattedMessage, injectIntl } from 'react-intl';
 | 
					import { FormattedMessage, injectIntl } from 'react-intl';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import DropdownMenu from './containers/dropdown_menu_container';
 | 
					import DropdownMenu from './containers/dropdown_menu_container';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import { openModal } from 'mastodon/actions/modal';
 | 
					import { openModal } from 'mastodon/actions/modal';
 | 
				
			||||||
import RelativeTimestamp from 'mastodon/components/relative_timestamp';
 | 
					import { RelativeTimestamp } from 'mastodon/components/relative_timestamp';
 | 
				
			||||||
import InlineAccount from 'mastodon/components/inline_account';
 | 
					import InlineAccount from 'mastodon/components/inline_account';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const mapDispatchToProps = (dispatch, { statusId }) => ({
 | 
					const mapDispatchToProps = (dispatch, { statusId }) => ({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -64,5 +64,3 @@ export const GIFV: React.FC<Props> = ({
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default GIFV;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -10,5 +10,3 @@ type Props = {
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
export const Icon: React.FC<Props> = ({ id, className, fixedWidth, ...other }) =>
 | 
					export const Icon: React.FC<Props> = ({ id, className, fixedWidth, ...other }) =>
 | 
				
			||||||
  <i className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} />;
 | 
					  <i className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} />;
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default Icon;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -30,7 +30,7 @@ type States = {
 | 
				
			||||||
  activate: boolean,
 | 
					  activate: boolean,
 | 
				
			||||||
  deactivate: boolean,
 | 
					  deactivate: boolean,
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
export default class IconButton extends React.PureComponent<Props, States> {
 | 
					export class IconButton extends React.PureComponent<Props, States> {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  static defaultProps = {
 | 
					  static defaultProps = {
 | 
				
			||||||
    size: 18,
 | 
					    size: 18,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,12 +9,10 @@ type Props = {
 | 
				
			||||||
  issueBadge: boolean;
 | 
					  issueBadge: boolean;
 | 
				
			||||||
  className: string;
 | 
					  className: string;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
const IconWithBadge: React.FC<Props> = ({ id, count, issueBadge, className }) => (
 | 
					export const IconWithBadge: React.FC<Props> = ({ id, count, issueBadge, className }) => (
 | 
				
			||||||
  <i className='icon-with-badge'>
 | 
					  <i className='icon-with-badge'>
 | 
				
			||||||
    <Icon id={id} fixedWidth className={className} />
 | 
					    <Icon id={id} fixedWidth className={className} />
 | 
				
			||||||
    {count > 0 && <i className='icon-with-badge__badge'>{formatNumber(count)}</i>}
 | 
					    {count > 0 && <i className='icon-with-badge__badge'>{formatNumber(count)}</i>}
 | 
				
			||||||
    {issueBadge && <i className='icon-with-badge__issue-badge' />}
 | 
					    {issueBadge && <i className='icon-with-badge__issue-badge' />}
 | 
				
			||||||
  </i>
 | 
					  </i>
 | 
				
			||||||
);
 | 
					);
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default IconWithBadge;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
import React, { useCallback, useState } from 'react';
 | 
					import React, { useCallback, useState } from 'react';
 | 
				
			||||||
import Blurhash from './blurhash';
 | 
					import { Blurhash } from './blurhash';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type Props = {
 | 
					type Props = {
 | 
				
			||||||
| 
						 | 
					@ -23,5 +23,3 @@ export const Image: React.FC<Props> = ({ src, srcSet, blurhash, className }) =>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default Image;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ import React from 'react';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import { makeGetAccount } from 'mastodon/selectors';
 | 
					import { makeGetAccount } from 'mastodon/selectors';
 | 
				
			||||||
import Avatar from 'mastodon/components/avatar';
 | 
					import { Avatar } from 'mastodon/components/avatar';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const makeMapStateToProps = () => {
 | 
					const makeMapStateToProps = () => {
 | 
				
			||||||
  const getAccount = makeGetAccount();
 | 
					  const getAccount = makeGetAccount();
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { injectIntl, defineMessages } from 'react-intl';
 | 
					import { injectIntl, defineMessages } from 'react-intl';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  load_more: { id: 'status.load_more', defaultMessage: 'Load more' },
 | 
					  load_more: { id: 'status.load_more', defaultMessage: 'Load more' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,12 +2,12 @@ import React from 'react';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { is } from 'immutable';
 | 
					import { is } from 'immutable';
 | 
				
			||||||
import IconButton from './icon_button';
 | 
					import { IconButton } from './icon_button';
 | 
				
			||||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
					import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import { autoPlayGif, cropImages, displayMedia, useBlurhash } from '../initial_state';
 | 
					import { autoPlayGif, cropImages, displayMedia, useBlurhash } from '../initial_state';
 | 
				
			||||||
import { debounce } from 'lodash';
 | 
					import { debounce } from 'lodash';
 | 
				
			||||||
import Blurhash from 'mastodon/components/blurhash';
 | 
					import { Blurhash } from 'mastodon/components/blurhash';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  toggle_visible: { id: 'media_gallery.toggle_visible', defaultMessage: '{number, plural, one {Hide image} other {Hide images}}' },
 | 
					  toggle_visible: { id: 'media_gallery.toggle_visible', defaultMessage: '{number, plural, one {Hide image} other {Hide images}}' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -8,5 +8,3 @@ export const NotSignedInIndicator: React.FC = () => (
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
);
 | 
					);
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default NotSignedInIndicator;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { removePictureInPicture } from 'mastodon/actions/picture_in_picture';
 | 
					import { removePictureInPicture } from 'mastodon/actions/picture_in_picture';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -8,8 +8,8 @@ import Motion from 'mastodon/features/ui/util/optional_motion';
 | 
				
			||||||
import spring from 'react-motion/lib/spring';
 | 
					import spring from 'react-motion/lib/spring';
 | 
				
			||||||
import escapeTextContentForBrowser from 'escape-html';
 | 
					import escapeTextContentForBrowser from 'escape-html';
 | 
				
			||||||
import emojify from 'mastodon/features/emoji/emoji';
 | 
					import emojify from 'mastodon/features/emoji/emoji';
 | 
				
			||||||
import RelativeTimestamp from './relative_timestamp';
 | 
					import { RelativeTimestamp } from './relative_timestamp';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  closed: {
 | 
					  closed: {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -26,5 +26,3 @@ export const RadioButton: React.FC<Props> = ({ name, value, checked, onChange, l
 | 
				
			||||||
    </label>
 | 
					    </label>
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default RadioButton;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -200,4 +200,6 @@ class RelativeTimestamp extends React.Component<Props, States> {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default injectIntl(RelativeTimestamp);
 | 
					const RelativeTimestampWithIntl = injectIntl(RelativeTimestamp);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export { RelativeTimestampWithIntl as RelativeTimestamp };
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,7 +7,7 @@ import ShortNumber from 'mastodon/components/short_number';
 | 
				
			||||||
import Skeleton from 'mastodon/components/skeleton';
 | 
					import Skeleton from 'mastodon/components/skeleton';
 | 
				
			||||||
import Account from 'mastodon/containers/account_container';
 | 
					import Account from 'mastodon/containers/account_container';
 | 
				
			||||||
import { domain } from 'mastodon/initial_state';
 | 
					import { domain } from 'mastodon/initial_state';
 | 
				
			||||||
import Image from 'mastodon/components/image';
 | 
					import { Image } from 'mastodon/components/image';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,9 +1,9 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import Avatar from './avatar';
 | 
					import { Avatar } from './avatar';
 | 
				
			||||||
import AvatarOverlay from './avatar_overlay';
 | 
					import { AvatarOverlay } from './avatar_overlay';
 | 
				
			||||||
import RelativeTimestamp from './relative_timestamp';
 | 
					import { RelativeTimestamp } from './relative_timestamp';
 | 
				
			||||||
import DisplayName from './display_name';
 | 
					import DisplayName from './display_name';
 | 
				
			||||||
import StatusContent from './status_content';
 | 
					import StatusContent from './status_content';
 | 
				
			||||||
import StatusActionBar from './status_action_bar';
 | 
					import StatusActionBar from './status_action_bar';
 | 
				
			||||||
| 
						 | 
					@ -14,7 +14,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import { MediaGallery, Video, Audio } from '../features/ui/util/async-components';
 | 
					import { MediaGallery, Video, Audio } from '../features/ui/util/async-components';
 | 
				
			||||||
import { HotKeys } from 'react-hotkeys';
 | 
					import { HotKeys } from 'react-hotkeys';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { displayMedia } from '../initial_state';
 | 
					import { displayMedia } from '../initial_state';
 | 
				
			||||||
import PictureInPicturePlaceholder from 'mastodon/components/picture_in_picture_placeholder';
 | 
					import PictureInPicturePlaceholder from 'mastodon/components/picture_in_picture_placeholder';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ import React from 'react';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import IconButton from './icon_button';
 | 
					import { IconButton } from './icon_button';
 | 
				
			||||||
import DropdownMenuContainer from '../containers/dropdown_menu_container';
 | 
					import DropdownMenuContainer from '../containers/dropdown_menu_container';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -6,7 +6,7 @@ import { Link } from 'react-router-dom';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import classnames from 'classnames';
 | 
					import classnames from 'classnames';
 | 
				
			||||||
import PollContainer from 'mastodon/containers/poll_container';
 | 
					import PollContainer from 'mastodon/containers/poll_container';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { autoPlayGif, languages as preloadedLanguages } from 'mastodon/initial_state';
 | 
					import { autoPlayGif, languages as preloadedLanguages } from 'mastodon/initial_state';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const MAX_HEIGHT = 706; // 22px * 32 (+ 2px padding at the top)
 | 
					const MAX_HEIGHT = 706; // 22px * 32 (+ 2px padding at the top)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -10,5 +10,3 @@ export const VerifiedBadge: React.FC<Props> = ({ link }) => (
 | 
				
			||||||
    <span dangerouslySetInnerHTML={{ __html: link }} />
 | 
					    <span dangerouslySetInnerHTML={{ __html: link }} />
 | 
				
			||||||
  </span>
 | 
					  </span>
 | 
				
			||||||
);
 | 
					);
 | 
				
			||||||
 | 
					 | 
				
			||||||
export default VerifiedBadge;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,9 +9,9 @@ import { Helmet } from 'react-helmet';
 | 
				
			||||||
import { fetchServer, fetchExtendedDescription, fetchDomainBlocks } from 'mastodon/actions/server';
 | 
					import { fetchServer, fetchExtendedDescription, fetchDomainBlocks } from 'mastodon/actions/server';
 | 
				
			||||||
import Account from 'mastodon/containers/account_container';
 | 
					import Account from 'mastodon/containers/account_container';
 | 
				
			||||||
import Skeleton from 'mastodon/components/skeleton';
 | 
					import Skeleton from 'mastodon/components/skeleton';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Image from 'mastodon/components/image';
 | 
					import { Image } from 'mastodon/components/image';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  title: { id: 'column.about', defaultMessage: 'About' },
 | 
					  title: { id: 'column.about', defaultMessage: 'About' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ import React from 'react';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class FollowRequestNote extends ImmutablePureComponent {
 | 
					export default class FollowRequestNote extends ImmutablePureComponent {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -6,9 +6,9 @@ import Button from 'mastodon/components/button';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import { autoPlayGif, me, domain } from 'mastodon/initial_state';
 | 
					import { autoPlayGif, me, domain } from 'mastodon/initial_state';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import IconButton from 'mastodon/components/icon_button';
 | 
					import { IconButton } from 'mastodon/components/icon_button';
 | 
				
			||||||
import Avatar from 'mastodon/components/avatar';
 | 
					import { Avatar } from 'mastodon/components/avatar';
 | 
				
			||||||
import { counterRenderer } from 'mastodon/components/common_counter';
 | 
					import { counterRenderer } from 'mastodon/components/common_counter';
 | 
				
			||||||
import ShortNumber from 'mastodon/components/short_number';
 | 
					import ShortNumber from 'mastodon/components/short_number';
 | 
				
			||||||
import { NavLink } from 'react-router-dom';
 | 
					import { NavLink } from 'react-router-dom';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
import Blurhash from 'mastodon/components/blurhash';
 | 
					import { Blurhash } from 'mastodon/components/blurhash';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { autoPlayGif, displayMedia, useBlurhash } from 'mastodon/initial_state';
 | 
					import { autoPlayGif, displayMedia, useBlurhash } from 'mastodon/initial_state';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ import React from 'react';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import AvatarOverlay from '../../../components/avatar_overlay';
 | 
					import { AvatarOverlay } from '../../../components/avatar_overlay';
 | 
				
			||||||
import DisplayName from '../../../components/display_name';
 | 
					import DisplayName from '../../../components/display_name';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,12 +2,12 @@ import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
 | 
					import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
 | 
				
			||||||
import { formatTime, getPointerPosition, fileNameFromURL } from 'mastodon/features/video';
 | 
					import { formatTime, getPointerPosition, fileNameFromURL } from 'mastodon/features/video';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import { throttle, debounce } from 'lodash';
 | 
					import { throttle, debounce } from 'lodash';
 | 
				
			||||||
import Visualizer from './visualizer';
 | 
					import Visualizer from './visualizer';
 | 
				
			||||||
import { displayMedia, useBlurhash } from '../../initial_state';
 | 
					import { displayMedia, useBlurhash } from '../../initial_state';
 | 
				
			||||||
import Blurhash from '../../components/blurhash';
 | 
					import { Blurhash } from '../../components/blurhash';
 | 
				
			||||||
import { is } from 'immutable';
 | 
					import { is } from 'immutable';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import Avatar from '../../../components/avatar';
 | 
					import { Avatar } from '../../../components/avatar';
 | 
				
			||||||
import DisplayName from '../../../components/display_name';
 | 
					import DisplayName from '../../../components/display_name';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,7 +19,7 @@ import LanguageDropdown from '../containers/language_dropdown_container';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import { length } from 'stringz';
 | 
					import { length } from 'stringz';
 | 
				
			||||||
import { countableText } from '../util/counter';
 | 
					import { countableText } from '../util/counter';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const allowedAroundShortCode = '><\u0085\u0020\u00a0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\u0009\u000a\u000b\u000c\u000d';
 | 
					const allowedAroundShortCode = '><\u0085\u0020\u00a0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\u0009\u000a\u000b\u000c\u000d';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,9 +2,9 @@ import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import ActionBar from './action_bar';
 | 
					import ActionBar from './action_bar';
 | 
				
			||||||
import Avatar from '../../../components/avatar';
 | 
					import { Avatar } from '../../../components/avatar';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,8 +3,8 @@ import PropTypes from 'prop-types';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
					import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
				
			||||||
import IconButton from 'mastodon/components/icon_button';
 | 
					import { IconButton } from 'mastodon/components/icon_button';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import AutosuggestInput from 'mastodon/components/autosuggest_input';
 | 
					import AutosuggestInput from 'mastodon/components/autosuggest_input';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,11 +1,11 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { injectIntl, defineMessages } from 'react-intl';
 | 
					import { injectIntl, defineMessages } from 'react-intl';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
import Overlay from 'react-overlays/Overlay';
 | 
					import Overlay from 'react-overlays/Overlay';
 | 
				
			||||||
import { supportsPassiveEvents } from 'detect-passive-events';
 | 
					import { supportsPassiveEvents } from 'detect-passive-events';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  public_short: { id: 'privacy.public.short', defaultMessage: 'Public' },
 | 
					  public_short: { id: 'privacy.public.short', defaultMessage: 'Public' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +1,8 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import Avatar from '../../../components/avatar';
 | 
					import { Avatar } from '../../../components/avatar';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
import DisplayName from '../../../components/display_name';
 | 
					import DisplayName from '../../../components/display_name';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
					import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
				
			||||||
import { searchEnabled } from 'mastodon/initial_state';
 | 
					import { searchEnabled } from 'mastodon/initial_state';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import { HASHTAG_REGEX } from 'mastodon/utils/hashtags';
 | 
					import { HASHTAG_REGEX } from 'mastodon/utils/hashtags';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -6,7 +6,7 @@ import AccountContainer from '../../../containers/account_container';
 | 
				
			||||||
import StatusContainer from '../../../containers/status_container';
 | 
					import StatusContainer from '../../../containers/status_container';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import { ImmutableHashtag as Hashtag } from '../../../components/hashtag';
 | 
					import { ImmutableHashtag as Hashtag } from '../../../components/hashtag';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { searchEnabled } from '../../../initial_state';
 | 
					import { searchEnabled } from '../../../initial_state';
 | 
				
			||||||
import LoadMore from 'mastodon/components/load_more';
 | 
					import LoadMore from 'mastodon/components/load_more';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,7 @@ import Motion from '../../ui/util/optional_motion';
 | 
				
			||||||
import spring from 'react-motion/lib/spring';
 | 
					import spring from 'react-motion/lib/spring';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class Upload extends ImmutablePureComponent {
 | 
					export default class Upload extends ImmutablePureComponent {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import Motion from '../../ui/util/optional_motion';
 | 
					import Motion from '../../ui/util/optional_motion';
 | 
				
			||||||
import spring from 'react-motion/lib/spring';
 | 
					import spring from 'react-motion/lib/spring';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class UploadProgress extends React.PureComponent {
 | 
					export default class UploadProgress extends React.PureComponent {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -14,7 +14,7 @@ import SearchResultsContainer from './containers/search_results_container';
 | 
				
			||||||
import { openModal } from 'mastodon/actions/modal';
 | 
					import { openModal } from 'mastodon/actions/modal';
 | 
				
			||||||
import elephantUIPlane from '../../../images/elephant_ui_plane.svg';
 | 
					import elephantUIPlane from '../../../images/elephant_ui_plane.svg';
 | 
				
			||||||
import { mascot } from '../../initial_state';
 | 
					import { mascot } from '../../initial_state';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { logOut } from 'mastodon/utils/log_out';
 | 
					import { logOut } from 'mastodon/utils/log_out';
 | 
				
			||||||
import Column from 'mastodon/components/column';
 | 
					import Column from 'mastodon/components/column';
 | 
				
			||||||
import { Helmet } from 'react-helmet';
 | 
					import { Helmet } from 'react-helmet';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -8,8 +8,8 @@ import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
				
			||||||
import DropdownMenuContainer from 'mastodon/containers/dropdown_menu_container';
 | 
					import DropdownMenuContainer from 'mastodon/containers/dropdown_menu_container';
 | 
				
			||||||
import AvatarComposite from 'mastodon/components/avatar_composite';
 | 
					import AvatarComposite from 'mastodon/components/avatar_composite';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
import IconButton from 'mastodon/components/icon_button';
 | 
					import { IconButton } from 'mastodon/components/icon_button';
 | 
				
			||||||
import RelativeTimestamp from 'mastodon/components/relative_timestamp';
 | 
					import { RelativeTimestamp } from 'mastodon/components/relative_timestamp';
 | 
				
			||||||
import { HotKeys } from 'react-hotkeys';
 | 
					import { HotKeys } from 'react-hotkeys';
 | 
				
			||||||
import { autoPlayGif } from 'mastodon/initial_state';
 | 
					import { autoPlayGif } from 'mastodon/initial_state';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,7 +4,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import { makeGetAccount } from 'mastodon/selectors';
 | 
					import { makeGetAccount } from 'mastodon/selectors';
 | 
				
			||||||
import Avatar from 'mastodon/components/avatar';
 | 
					import { Avatar } from 'mastodon/components/avatar';
 | 
				
			||||||
import DisplayName from 'mastodon/components/display_name';
 | 
					import DisplayName from 'mastodon/components/display_name';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
import Button from 'mastodon/components/button';
 | 
					import Button from 'mastodon/components/button';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,7 +9,7 @@ import { addColumn, removeColumn, moveColumn, changeColumnParams } from 'mastodo
 | 
				
			||||||
import { fetchDirectory, expandDirectory } from 'mastodon/actions/directory';
 | 
					import { fetchDirectory, expandDirectory } from 'mastodon/actions/directory';
 | 
				
			||||||
import { List as ImmutableList } from 'immutable';
 | 
					import { List as ImmutableList } from 'immutable';
 | 
				
			||||||
import AccountCard from './components/account_card';
 | 
					import AccountCard from './components/account_card';
 | 
				
			||||||
import RadioButton from 'mastodon/components/radio_button';
 | 
					import { RadioButton } from 'mastodon/components/radio_button';
 | 
				
			||||||
import LoadMore from 'mastodon/components/load_more';
 | 
					import LoadMore from 'mastodon/components/load_more';
 | 
				
			||||||
import ScrollContainer from 'mastodon/containers/scroll_container';
 | 
					import ScrollContainer from 'mastodon/containers/scroll_container';
 | 
				
			||||||
import LoadingIndicator from 'mastodon/components/loading_indicator';
 | 
					import LoadingIndicator from 'mastodon/components/loading_indicator';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import Blurhash from 'mastodon/components/blurhash';
 | 
					import { Blurhash } from 'mastodon/components/blurhash';
 | 
				
			||||||
import { accountsCountRenderer } from 'mastodon/components/hashtag';
 | 
					import { accountsCountRenderer } from 'mastodon/components/hashtag';
 | 
				
			||||||
import ShortNumber from 'mastodon/components/short_number';
 | 
					import ShortNumber from 'mastodon/components/short_number';
 | 
				
			||||||
import Skeleton from 'mastodon/components/skeleton';
 | 
					import Skeleton from 'mastodon/components/skeleton';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
					import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import ColumnHeader from 'mastodon/components/column_header';
 | 
					import ColumnHeader from 'mastodon/components/column_header';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { fetchFavourites } from 'mastodon/actions/interactions';
 | 
					import { fetchFavourites } from 'mastodon/actions/interactions';
 | 
				
			||||||
import LoadingIndicator from 'mastodon/components/loading_indicator';
 | 
					import LoadingIndicator from 'mastodon/components/loading_indicator';
 | 
				
			||||||
import ScrollableList from 'mastodon/components/scrollable_list';
 | 
					import ScrollableList from 'mastodon/components/scrollable_list';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,7 +4,7 @@ import { connect } from 'react-redux';
 | 
				
			||||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
					import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
				
			||||||
import { toServerSideType } from 'mastodon/utils/filters';
 | 
					import { toServerSideType } from 'mastodon/utils/filters';
 | 
				
			||||||
import { loupeIcon, deleteIcon } from 'mastodon/utils/icons';
 | 
					import { loupeIcon, deleteIcon } from 'mastodon/utils/icons';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import fuzzysort from 'fuzzysort';
 | 
					import fuzzysort from 'fuzzysort';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,9 +2,9 @@ import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
import Avatar from '../../../components/avatar';
 | 
					import { Avatar } from '../../../components/avatar';
 | 
				
			||||||
import DisplayName from '../../../components/display_name';
 | 
					import DisplayName from '../../../components/display_name';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,15 +3,15 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import ReactSwipeableViews from 'react-swipeable-views';
 | 
					import ReactSwipeableViews from 'react-swipeable-views';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import IconButton from 'mastodon/components/icon_button';
 | 
					import { IconButton } from 'mastodon/components/icon_button';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { defineMessages, injectIntl, FormattedMessage, FormattedDate } from 'react-intl';
 | 
					import { defineMessages, injectIntl, FormattedMessage, FormattedDate } from 'react-intl';
 | 
				
			||||||
import { autoPlayGif, reduceMotion, disableSwiping, mascot } from 'mastodon/initial_state';
 | 
					import { autoPlayGif, reduceMotion, disableSwiping, mascot } from 'mastodon/initial_state';
 | 
				
			||||||
import elephantUIPlane from 'mastodon/../images/elephant_ui_plane.svg';
 | 
					import elephantUIPlane from 'mastodon/../images/elephant_ui_plane.svg';
 | 
				
			||||||
import unicodeMapping from 'mastodon/features/emoji/emoji_unicode_mapping_light';
 | 
					import unicodeMapping from 'mastodon/features/emoji/emoji_unicode_mapping_light';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import EmojiPickerDropdown from 'mastodon/features/compose/containers/emoji_picker_dropdown_container';
 | 
					import EmojiPickerDropdown from 'mastodon/features/compose/containers/emoji_picker_dropdown_container';
 | 
				
			||||||
import AnimatedNumber from 'mastodon/components/animated_number';
 | 
					import { AnimatedNumber } from 'mastodon/components/animated_number';
 | 
				
			||||||
import TransitionMotion from 'react-motion/lib/TransitionMotion';
 | 
					import TransitionMotion from 'react-motion/lib/TransitionMotion';
 | 
				
			||||||
import spring from 'react-motion/lib/spring';
 | 
					import spring from 'react-motion/lib/spring';
 | 
				
			||||||
import { assetHost } from 'mastodon/utils/config';
 | 
					import { assetHost } from 'mastodon/utils/config';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -12,7 +12,7 @@ import { injectIntl, FormattedMessage, defineMessages } from 'react-intl';
 | 
				
			||||||
import { connectHashtagStream } from 'mastodon/actions/streaming';
 | 
					import { connectHashtagStream } from 'mastodon/actions/streaming';
 | 
				
			||||||
import { isEqual } from 'lodash';
 | 
					import { isEqual } from 'lodash';
 | 
				
			||||||
import { fetchHashtag, followHashtag, unfollowHashtag } from 'mastodon/actions/tags';
 | 
					import { fetchHashtag, followHashtag, unfollowHashtag } from 'mastodon/actions/tags';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import { Helmet } from 'react-helmet';
 | 
					import { Helmet } from 'react-helmet';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -12,8 +12,8 @@ import { Link } from 'react-router-dom';
 | 
				
			||||||
import { fetchAnnouncements, toggleShowAnnouncements } from 'mastodon/actions/announcements';
 | 
					import { fetchAnnouncements, toggleShowAnnouncements } from 'mastodon/actions/announcements';
 | 
				
			||||||
import AnnouncementsContainer from 'mastodon/features/getting_started/containers/announcements_container';
 | 
					import AnnouncementsContainer from 'mastodon/features/getting_started/containers/announcements_container';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import IconWithBadge from 'mastodon/components/icon_with_badge';
 | 
					import { IconWithBadge } from 'mastodon/components/icon_with_badge';
 | 
				
			||||||
import NotSignedInIndicator from 'mastodon/components/not_signed_in_indicator';
 | 
					import { NotSignedInIndicator } from 'mastodon/components/not_signed_in_indicator';
 | 
				
			||||||
import { Helmet } from 'react-helmet';
 | 
					import { Helmet } from 'react-helmet';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import { registrationsOpen } from 'mastodon/initial_state';
 | 
					import { registrationsOpen } from 'mastodon/initial_state';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import { openModal, closeModal } from 'mastodon/actions/modal';
 | 
					import { openModal, closeModal } from 'mastodon/actions/modal';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@ import { connect } from 'react-redux';
 | 
				
			||||||
import { makeGetAccount } from '../../../selectors';
 | 
					import { makeGetAccount } from '../../../selectors';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import Avatar from '../../../components/avatar';
 | 
					import { Avatar } from '../../../components/avatar';
 | 
				
			||||||
import DisplayName from '../../../components/display_name';
 | 
					import DisplayName from '../../../components/display_name';
 | 
				
			||||||
import { injectIntl } from 'react-intl';
 | 
					import { injectIntl } from 'react-intl';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,10 +3,10 @@ import PropTypes from 'prop-types';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton }  from '../../../components/icon_button';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
import { removeFromListAdder, addToListAdder } from '../../../actions/lists';
 | 
					import { removeFromListAdder, addToListAdder } from '../../../actions/lists';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  remove: { id: 'lists.account.remove', defaultMessage: 'Remove from list' },
 | 
					  remove: { id: 'lists.account.remove', defaultMessage: 'Remove from list' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,9 +4,9 @@ import { connect } from 'react-redux';
 | 
				
			||||||
import { makeGetAccount } from '../../../selectors';
 | 
					import { makeGetAccount } from '../../../selectors';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import Avatar from '../../../components/avatar';
 | 
					import { Avatar } from '../../../components/avatar';
 | 
				
			||||||
import DisplayName from '../../../components/display_name';
 | 
					import DisplayName from '../../../components/display_name';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
import { removeFromListEditor, addToListEditor } from '../../../actions/lists';
 | 
					import { removeFromListEditor, addToListEditor } from '../../../actions/lists';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ import React from 'react';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { changeListEditorTitle, submitListEditor } from '../../../actions/lists';
 | 
					import { changeListEditorTitle, submitListEditor } from '../../../actions/lists';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,7 +4,7 @@ import { connect } from 'react-redux';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
import { fetchListSuggestions, clearListSuggestions, changeListSuggestions } from '../../../actions/lists';
 | 
					import { fetchListSuggestions, clearListSuggestions, changeListSuggestions } from '../../../actions/lists';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  search: { id: 'lists.search', defaultMessage: 'Search among people you follow' },
 | 
					  search: { id: 'lists.search', defaultMessage: 'Search among people you follow' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -11,9 +11,9 @@ import { connectListStream } from 'mastodon/actions/streaming';
 | 
				
			||||||
import { expandListTimeline } from 'mastodon/actions/timelines';
 | 
					import { expandListTimeline } from 'mastodon/actions/timelines';
 | 
				
			||||||
import Column from 'mastodon/components/column';
 | 
					import Column from 'mastodon/components/column';
 | 
				
			||||||
import ColumnHeader from 'mastodon/components/column_header';
 | 
					import ColumnHeader from 'mastodon/components/column_header';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import LoadingIndicator from 'mastodon/components/loading_indicator';
 | 
					import LoadingIndicator from 'mastodon/components/loading_indicator';
 | 
				
			||||||
import RadioButton from 'mastodon/components/radio_button';
 | 
					import { RadioButton } from 'mastodon/components/radio_button';
 | 
				
			||||||
import StatusListContainer from 'mastodon/features/ui/containers/status_list_container';
 | 
					import StatusListContainer from 'mastodon/features/ui/containers/status_list_container';
 | 
				
			||||||
import BundleColumnError from 'mastodon/features/ui/components/bundle_column_error';
 | 
					import BundleColumnError from 'mastodon/features/ui/components/bundle_column_error';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class ClearColumnButton extends React.PureComponent {
 | 
					export default class ClearColumnButton extends React.PureComponent {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
					import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const tooltips = defineMessages({
 | 
					const tooltips = defineMessages({
 | 
				
			||||||
  mentions: { id: 'notifications.filter.mentions', defaultMessage: 'Mentions' },
 | 
					  mentions: { id: 'notifications.filter.mentions', defaultMessage: 'Mentions' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,10 +1,10 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import Avatar from 'mastodon/components/avatar';
 | 
					import { Avatar } from 'mastodon/components/avatar';
 | 
				
			||||||
import DisplayName from 'mastodon/components/display_name';
 | 
					import DisplayName from 'mastodon/components/display_name';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
import IconButton from 'mastodon/components/icon_button';
 | 
					import { IconButton } from 'mastodon/components/icon_button';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,7 +9,7 @@ import StatusContainer from 'mastodon/containers/status_container';
 | 
				
			||||||
import AccountContainer from 'mastodon/containers/account_container';
 | 
					import AccountContainer from 'mastodon/containers/account_container';
 | 
				
			||||||
import Report from './report';
 | 
					import Report from './report';
 | 
				
			||||||
import FollowRequestContainer from '../containers/follow_request_container';
 | 
					import FollowRequestContainer from '../containers/follow_request_container';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import Button from 'mastodon/components/button';
 | 
					import Button from 'mastodon/components/button';
 | 
				
			||||||
import IconButton from 'mastodon/components/icon_button';
 | 
					import { IconButton } from 'mastodon/components/icon_button';
 | 
				
			||||||
import { requestBrowserPermission } from 'mastodon/actions/notifications';
 | 
					import { requestBrowserPermission } from 'mastodon/actions/notifications';
 | 
				
			||||||
import { changeSetting } from 'mastodon/actions/settings';
 | 
					import { changeSetting } from 'mastodon/actions/settings';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,8 +3,8 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
 | 
					import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import AvatarOverlay from 'mastodon/components/avatar_overlay';
 | 
					import { AvatarOverlay } from 'mastodon/components/avatar_overlay';
 | 
				
			||||||
import RelativeTimestamp from 'mastodon/components/relative_timestamp';
 | 
					import { RelativeTimestamp } from 'mastodon/components/relative_timestamp';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  openReport: { id: 'report_notification.open', defaultMessage: 'Open report' },
 | 
					  openReport: { id: 'report_notification.open', defaultMessage: 'Open report' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -23,10 +23,10 @@ import { List as ImmutableList } from 'immutable';
 | 
				
			||||||
import { debounce } from 'lodash';
 | 
					import { debounce } from 'lodash';
 | 
				
			||||||
import ScrollableList from '../../components/scrollable_list';
 | 
					import ScrollableList from '../../components/scrollable_list';
 | 
				
			||||||
import LoadGap from '../../components/load_gap';
 | 
					import LoadGap from '../../components/load_gap';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import compareId from 'mastodon/compare_id';
 | 
					import { compareId } from 'mastodon/compare_id';
 | 
				
			||||||
import NotificationsPermissionBanner from './components/notifications_permission_banner';
 | 
					import NotificationsPermissionBanner from './components/notifications_permission_banner';
 | 
				
			||||||
import NotSignedInIndicator from 'mastodon/components/not_signed_in_indicator';
 | 
					import { NotSignedInIndicator } from 'mastodon/components/not_signed_in_indicator';
 | 
				
			||||||
import { Helmet } from 'react-helmet';
 | 
					import { Helmet } from 'react-helmet';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import Check from 'mastodon/components/check';
 | 
					import { Check } from 'mastodon/components/check';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const ProgressIndicator = ({ steps, completed }) => (
 | 
					const ProgressIndicator = ({ steps, completed }) => (
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import Check from 'mastodon/components/check';
 | 
					import { Check } from 'mastodon/components/check';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const Step = ({ label, description, icon, completed, onClick, href }) => {
 | 
					const Step = ({ label, description, icon, completed, onClick, href }) => {
 | 
				
			||||||
  const content = (
 | 
					  const content = (
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,7 +7,7 @@ import { connect } from 'react-redux';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import { defineMessages, injectIntl, FormattedMessage, FormattedHTMLMessage } from 'react-intl';
 | 
					import { defineMessages, injectIntl, FormattedMessage, FormattedHTMLMessage } from 'react-intl';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import ArrowSmallRight from './components/arrow_small_right';
 | 
					import ArrowSmallRight from './components/arrow_small_right';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
import SwipeableViews from 'react-swipeable-views';
 | 
					import SwipeableViews from 'react-swipeable-views';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@ import { connect } from 'react-redux';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import IconButton from 'mastodon/components/icon_button';
 | 
					import { IconButton } from 'mastodon/components/icon_button';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import { me, boostModal } from 'mastodon/initial_state';
 | 
					import { me, boostModal } from 'mastodon/initial_state';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,9 +3,9 @@ import { connect } from 'react-redux';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import IconButton from 'mastodon/components/icon_button';
 | 
					import { IconButton } from 'mastodon/components/icon_button';
 | 
				
			||||||
import { Link } from 'react-router-dom';
 | 
					import { Link } from 'react-router-dom';
 | 
				
			||||||
import Avatar from 'mastodon/components/avatar';
 | 
					import { Avatar } from 'mastodon/components/avatar';
 | 
				
			||||||
import DisplayName from 'mastodon/components/display_name';
 | 
					import DisplayName from 'mastodon/components/display_name';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,7 +9,7 @@ import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
				
			||||||
import AccountContainer from '../../containers/account_container';
 | 
					import AccountContainer from '../../containers/account_container';
 | 
				
			||||||
import Column from '../ui/components/column';
 | 
					import Column from '../ui/components/column';
 | 
				
			||||||
import ScrollableList from '../../components/scrollable_list';
 | 
					import ScrollableList from '../../components/scrollable_list';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import ColumnHeader from '../../components/column_header';
 | 
					import ColumnHeader from '../../components/column_header';
 | 
				
			||||||
import { Helmet } from 'react-helmet';
 | 
					import { Helmet } from 'react-helmet';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Check from 'mastodon/components/check';
 | 
					import { Check } from 'mastodon/components/check';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class Option extends React.PureComponent {
 | 
					export default class Option extends React.PureComponent {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,13 +2,13 @@ import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import StatusContent from 'mastodon/components/status_content';
 | 
					import StatusContent from 'mastodon/components/status_content';
 | 
				
			||||||
import Avatar from 'mastodon/components/avatar';
 | 
					import { Avatar } from 'mastodon/components/avatar';
 | 
				
			||||||
import DisplayName from 'mastodon/components/display_name';
 | 
					import DisplayName from 'mastodon/components/display_name';
 | 
				
			||||||
import RelativeTimestamp from 'mastodon/components/relative_timestamp';
 | 
					import { RelativeTimestamp } from 'mastodon/components/relative_timestamp';
 | 
				
			||||||
import Option from './option';
 | 
					import Option from './option';
 | 
				
			||||||
import MediaAttachments from 'mastodon/components/media_attachments';
 | 
					import MediaAttachments from 'mastodon/components/media_attachments';
 | 
				
			||||||
import { injectIntl, defineMessages } from 'react-intl';
 | 
					import { injectIntl, defineMessages } from 'react-intl';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  public_short: { id: 'privacy.public.short', defaultMessage: 'Public' },
 | 
					  public_short: { id: 'privacy.public.short', defaultMessage: 'Public' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { connect } from 'react-redux';
 | 
					import { connect } from 'react-redux';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import DropdownMenuContainer from '../../../containers/dropdown_menu_container';
 | 
					import DropdownMenuContainer from '../../../containers/dropdown_menu_container';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -5,9 +5,9 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
import punycode from 'punycode';
 | 
					import punycode from 'punycode';
 | 
				
			||||||
import classnames from 'classnames';
 | 
					import classnames from 'classnames';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { useBlurhash } from 'mastodon/initial_state';
 | 
					import { useBlurhash } from 'mastodon/initial_state';
 | 
				
			||||||
import Blurhash from 'mastodon/components/blurhash';
 | 
					import { Blurhash } from 'mastodon/components/blurhash';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const IDNA_PREFIX = 'xn--';
 | 
					const IDNA_PREFIX = 'xn--';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import Avatar from '../../../components/avatar';
 | 
					import { Avatar } from '../../../components/avatar';
 | 
				
			||||||
import DisplayName from '../../../components/display_name';
 | 
					import DisplayName from '../../../components/display_name';
 | 
				
			||||||
import StatusContent from '../../../components/status_content';
 | 
					import StatusContent from '../../../components/status_content';
 | 
				
			||||||
import MediaGallery from '../../../components/media_gallery';
 | 
					import MediaGallery from '../../../components/media_gallery';
 | 
				
			||||||
| 
						 | 
					@ -13,8 +13,8 @@ import Video from '../../video';
 | 
				
			||||||
import Audio from '../../audio';
 | 
					import Audio from '../../audio';
 | 
				
			||||||
import scheduleIdleTask from '../../ui/util/schedule_idle_task';
 | 
					import scheduleIdleTask from '../../ui/util/schedule_idle_task';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import AnimatedNumber from 'mastodon/components/animated_number';
 | 
					import { AnimatedNumber } from 'mastodon/components/animated_number';
 | 
				
			||||||
import PictureInPicturePlaceholder from 'mastodon/components/picture_in_picture_placeholder';
 | 
					import PictureInPicturePlaceholder from 'mastodon/components/picture_in_picture_placeholder';
 | 
				
			||||||
import EditedTimestamp from 'mastodon/components/edited_timestamp';
 | 
					import EditedTimestamp from 'mastodon/components/edited_timestamp';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -58,7 +58,7 @@ import { HotKeys } from 'react-hotkeys';
 | 
				
			||||||
import { boostModal, deleteModal } from '../../initial_state';
 | 
					import { boostModal, deleteModal } from '../../initial_state';
 | 
				
			||||||
import { attachFullscreenListener, detachFullscreenListener, isFullscreen } from '../ui/util/fullscreen';
 | 
					import { attachFullscreenListener, detachFullscreenListener, isFullscreen } from '../ui/util/fullscreen';
 | 
				
			||||||
import { textForScreenReader, defaultMediaVisibility } from '../../components/status';
 | 
					import { textForScreenReader, defaultMediaVisibility } from '../../components/status';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import { Helmet } from 'react-helmet';
 | 
					import { Helmet } from 'react-helmet';
 | 
				
			||||||
import BundleColumnError from 'mastodon/features/ui/components/bundle_column_error';
 | 
					import BundleColumnError from 'mastodon/features/ui/components/bundle_column_error';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -8,7 +8,7 @@ import { is, List as ImmutableList, Set as ImmutableSet } from 'immutable';
 | 
				
			||||||
import { languages as preloadedLanguages } from 'mastodon/initial_state';
 | 
					import { languages as preloadedLanguages } from 'mastodon/initial_state';
 | 
				
			||||||
import Option from 'mastodon/features/report/components/option';
 | 
					import Option from 'mastodon/features/report/components/option';
 | 
				
			||||||
import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
 | 
					import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
 | 
				
			||||||
import IconButton from 'mastodon/components/icon_button';
 | 
					import { IconButton } from 'mastodon/components/icon_button';
 | 
				
			||||||
import Button from 'mastodon/components/button';
 | 
					import Button from 'mastodon/components/button';
 | 
				
			||||||
import { followAccount } from 'mastodon/actions/accounts';
 | 
					import { followAccount } from 'mastodon/actions/accounts';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
					import ImmutablePropTypes from 'react-immutable-proptypes';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class ActionsModal extends ImmutablePureComponent {
 | 
					export default class ActionsModal extends ImmutablePureComponent {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -5,11 +5,11 @@ import PropTypes from 'prop-types';
 | 
				
			||||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
					import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
 | 
				
			||||||
import Button from '../../../components/button';
 | 
					import Button from '../../../components/button';
 | 
				
			||||||
import StatusContent from '../../../components/status_content';
 | 
					import StatusContent from '../../../components/status_content';
 | 
				
			||||||
import Avatar from '../../../components/avatar';
 | 
					import { Avatar } from '../../../components/avatar';
 | 
				
			||||||
import RelativeTimestamp from '../../../components/relative_timestamp';
 | 
					import { RelativeTimestamp } from '../../../components/relative_timestamp';
 | 
				
			||||||
import DisplayName from '../../../components/display_name';
 | 
					import DisplayName from '../../../components/display_name';
 | 
				
			||||||
import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
					import ImmutablePureComponent from 'react-immutable-pure-component';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
import AttachmentList from 'mastodon/components/attachment_list';
 | 
					import AttachmentList from 'mastodon/components/attachment_list';
 | 
				
			||||||
import PrivacyDropdown from 'mastodon/features/compose/components/privacy_dropdown';
 | 
					import PrivacyDropdown from 'mastodon/features/compose/components/privacy_dropdown';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,7 +2,7 @@ import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import { defineMessages, injectIntl } from 'react-intl';
 | 
					import { defineMessages, injectIntl } from 'react-intl';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import IconButton from '../../../components/icon_button';
 | 
					import { IconButton } from '../../../components/icon_button';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const messages = defineMessages({
 | 
					const messages = defineMessages({
 | 
				
			||||||
  error: { id: 'bundle_modal_error.message', defaultMessage: 'Something went wrong while loading this component.' },
 | 
					  error: { id: 'bundle_modal_error.message', defaultMessage: 'Something went wrong while loading this component.' },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					import PropTypes from 'prop-types';
 | 
				
			||||||
import classNames from 'classnames';
 | 
					import classNames from 'classnames';
 | 
				
			||||||
import Icon from 'mastodon/components/icon';
 | 
					import { Icon }  from 'mastodon/components/icon';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class ColumnHeader extends React.PureComponent {
 | 
					export default class ColumnHeader extends React.PureComponent {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
		Reference in New Issue