Fix /share and cleanup and reorganize frontend locale loading (#25240)
				
					
				
			This commit is contained in:
		@@ -1,24 +1,19 @@
 | 
			
		||||
import PropTypes from 'prop-types';
 | 
			
		||||
import { PureComponent } from 'react';
 | 
			
		||||
 | 
			
		||||
import { IntlProvider } from 'react-intl';
 | 
			
		||||
 | 
			
		||||
import { getLocale, onProviderError } from '../locales';
 | 
			
		||||
 | 
			
		||||
const { messages } = getLocale();
 | 
			
		||||
import { IntlProvider } from 'mastodon/locales';
 | 
			
		||||
 | 
			
		||||
export default class AdminComponent extends PureComponent {
 | 
			
		||||
 | 
			
		||||
  static propTypes = {
 | 
			
		||||
    locale: PropTypes.string.isRequired,
 | 
			
		||||
    children: PropTypes.node.isRequired,
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  render () {
 | 
			
		||||
    const { locale, children } = this.props;
 | 
			
		||||
    const { children } = this.props;
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
      <IntlProvider locale={locale} messages={messages} onError={onProviderError}>
 | 
			
		||||
      <IntlProvider>
 | 
			
		||||
        {children}
 | 
			
		||||
      </IntlProvider>
 | 
			
		||||
    );
 | 
			
		||||
 
 | 
			
		||||
@@ -1,18 +1,14 @@
 | 
			
		||||
import PropTypes from 'prop-types';
 | 
			
		||||
import { PureComponent } from 'react';
 | 
			
		||||
 | 
			
		||||
import { IntlProvider } from 'react-intl';
 | 
			
		||||
 | 
			
		||||
import { Provider } from 'react-redux';
 | 
			
		||||
 | 
			
		||||
import { fetchCustomEmojis } from '../actions/custom_emojis';
 | 
			
		||||
import { hydrateStore } from '../actions/store';
 | 
			
		||||
import Compose from '../features/standalone/compose';
 | 
			
		||||
import initialState from '../initial_state';
 | 
			
		||||
import { getLocale, onProviderError } from '../locales';
 | 
			
		||||
import { IntlProvider } from '../locales';
 | 
			
		||||
import { store } from '../store';
 | 
			
		||||
 | 
			
		||||
const { messages } = getLocale();
 | 
			
		||||
 | 
			
		||||
if (initialState) {
 | 
			
		||||
  store.dispatch(hydrateStore(initialState));
 | 
			
		||||
@@ -20,17 +16,11 @@ if (initialState) {
 | 
			
		||||
 | 
			
		||||
store.dispatch(fetchCustomEmojis());
 | 
			
		||||
 | 
			
		||||
export default class TimelineContainer extends PureComponent {
 | 
			
		||||
 | 
			
		||||
  static propTypes = {
 | 
			
		||||
    locale: PropTypes.string.isRequired,
 | 
			
		||||
  };
 | 
			
		||||
export default class ComposeContainer extends PureComponent {
 | 
			
		||||
 | 
			
		||||
  render () {
 | 
			
		||||
    const { locale } = this.props;
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
      <IntlProvider locale={locale} messages={messages} onError={onProviderError}>
 | 
			
		||||
      <IntlProvider>
 | 
			
		||||
        <Provider store={store}>
 | 
			
		||||
          <Compose />
 | 
			
		||||
        </Provider>
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,6 @@
 | 
			
		||||
import PropTypes from 'prop-types';
 | 
			
		||||
import { PureComponent } from 'react';
 | 
			
		||||
 | 
			
		||||
import { IntlProvider } from 'react-intl';
 | 
			
		||||
 | 
			
		||||
import { Helmet } from 'react-helmet';
 | 
			
		||||
import { BrowserRouter, Route } from 'react-router-dom';
 | 
			
		||||
 | 
			
		||||
@@ -16,11 +14,9 @@ import { connectUserStream } from 'mastodon/actions/streaming';
 | 
			
		||||
import ErrorBoundary from 'mastodon/components/error_boundary';
 | 
			
		||||
import UI from 'mastodon/features/ui';
 | 
			
		||||
import initialState, { title as siteTitle } from 'mastodon/initial_state';
 | 
			
		||||
import { getLocale, onProviderError } from 'mastodon/locales';
 | 
			
		||||
import { IntlProvider } from 'mastodon/locales';
 | 
			
		||||
import { store } from 'mastodon/store';
 | 
			
		||||
 | 
			
		||||
const { messages } = getLocale();
 | 
			
		||||
 | 
			
		||||
const title = process.env.NODE_ENV === 'production' ? siteTitle : `${siteTitle} (Dev)`;
 | 
			
		||||
 | 
			
		||||
const hydrateAction = hydrateStore(initialState);
 | 
			
		||||
@@ -40,10 +36,6 @@ const createIdentityContext = state => ({
 | 
			
		||||
 | 
			
		||||
export default class Mastodon extends PureComponent {
 | 
			
		||||
 | 
			
		||||
  static propTypes = {
 | 
			
		||||
    locale: PropTypes.string.isRequired,
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  static childContextTypes = {
 | 
			
		||||
    identity: PropTypes.shape({
 | 
			
		||||
      signedIn: PropTypes.bool.isRequired,
 | 
			
		||||
@@ -79,10 +71,8 @@ export default class Mastodon extends PureComponent {
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  render () {
 | 
			
		||||
    const { locale } = this.props;
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
      <IntlProvider locale={locale} messages={messages} onError={onProviderError}>
 | 
			
		||||
      <IntlProvider>
 | 
			
		||||
        <ReduxProvider store={store}>
 | 
			
		||||
          <ErrorBoundary>
 | 
			
		||||
            <BrowserRouter>
 | 
			
		||||
 
 | 
			
		||||
@@ -2,8 +2,6 @@ import PropTypes from 'prop-types';
 | 
			
		||||
import { PureComponent } from 'react';
 | 
			
		||||
import { createPortal } from 'react-dom';
 | 
			
		||||
 | 
			
		||||
import { IntlProvider } from 'react-intl';
 | 
			
		||||
 | 
			
		||||
import { fromJS } from 'immutable';
 | 
			
		||||
 | 
			
		||||
import { ImmutableHashtag as Hashtag } from 'mastodon/components/hashtag';
 | 
			
		||||
@@ -14,17 +12,14 @@ import Audio from 'mastodon/features/audio';
 | 
			
		||||
import Card from 'mastodon/features/status/components/card';
 | 
			
		||||
import MediaModal from 'mastodon/features/ui/components/media_modal';
 | 
			
		||||
import Video from 'mastodon/features/video';
 | 
			
		||||
import { getLocale, onProviderError } from 'mastodon/locales';
 | 
			
		||||
import { IntlProvider } from 'mastodon/locales';
 | 
			
		||||
import { getScrollbarWidth } from 'mastodon/utils/scrollbar';
 | 
			
		||||
 | 
			
		||||
const { messages } = getLocale();
 | 
			
		||||
 | 
			
		||||
const MEDIA_COMPONENTS = { MediaGallery, Video, Card, Poll, Hashtag, Audio };
 | 
			
		||||
 | 
			
		||||
export default class MediaContainer extends PureComponent {
 | 
			
		||||
 | 
			
		||||
  static propTypes = {
 | 
			
		||||
    locale: PropTypes.string.isRequired,
 | 
			
		||||
    components: PropTypes.object.isRequired,
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
@@ -73,7 +68,7 @@ export default class MediaContainer extends PureComponent {
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  render () {
 | 
			
		||||
    const { locale, components } = this.props;
 | 
			
		||||
    const { components } = this.props;
 | 
			
		||||
 | 
			
		||||
    let handleOpenVideo;
 | 
			
		||||
 | 
			
		||||
@@ -83,7 +78,7 @@ export default class MediaContainer extends PureComponent {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
      <IntlProvider locale={locale} messages={messages} onError={onProviderError}>
 | 
			
		||||
      <IntlProvider>
 | 
			
		||||
        <>
 | 
			
		||||
          {[].map.call(components, (component, i) => {
 | 
			
		||||
            const componentName = component.getAttribute('data-component');
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user