Skip to content

Commit

Permalink
Fixed: Ensure translations are fetched before loading app
Browse files Browse the repository at this point in the history
(cherry picked from commit ad2721dc55f3233e4c299babe5744418bc530418)

Closes #3868
Closes #3871
  • Loading branch information
markus101 authored and mynameisbogdan committed Jul 15, 2023
1 parent 34ad4ef commit eeaea17
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 17 deletions.
4 changes: 4 additions & 0 deletions frontend/build/webpack.config.js
Expand Up @@ -84,6 +84,10 @@ module.exports = (env) => {
hints: false
},

experiments: {
topLevelAwait: true
},

plugins: [
new webpack.DefinePlugin({
__DEV__: !isProduction,
Expand Down
7 changes: 4 additions & 3 deletions frontend/src/App/App.js
Expand Up @@ -7,13 +7,13 @@ import PageConnector from 'Components/Page/PageConnector';
import ApplyTheme from './ApplyTheme';
import AppRoutes from './AppRoutes';

function App({ store, history }) {
function App({ store, history, hasTranslationsError }) {
return (
<DocumentTitle title={window.Lidarr.instanceName}>
<Provider store={store}>
<ConnectedRouter history={history}>
<ApplyTheme>
<PageConnector>
<PageConnector hasTranslationsError={hasTranslationsError}>
<AppRoutes app={App} />
</PageConnector>
</ApplyTheme>
Expand All @@ -25,7 +25,8 @@ function App({ store, history }) {

App.propTypes = {
store: PropTypes.object.isRequired,
history: PropTypes.object.isRequired
history: PropTypes.object.isRequired,
hasTranslationsError: PropTypes.bool.isRequired
};

export default App;
4 changes: 4 additions & 0 deletions frontend/src/Components/Page/ErrorPage.js
Expand Up @@ -7,6 +7,7 @@ function ErrorPage(props) {
const {
version,
isLocalStorageSupported,
hasTranslationsError,
artistError,
customFiltersError,
tagsError,
Expand All @@ -20,6 +21,8 @@ function ErrorPage(props) {

if (!isLocalStorageSupported) {
errorMessage = 'Local Storage is not supported or disabled. A plugin or private browsing may have disabled it.';
} else if (hasTranslationsError) {
errorMessage = 'Failed to load translations from API';
} else if (artistError) {
errorMessage = getErrorMessage(artistError, 'Failed to load artist from API');
} else if (customFiltersError) {
Expand Down Expand Up @@ -52,6 +55,7 @@ function ErrorPage(props) {
ErrorPage.propTypes = {
version: PropTypes.string.isRequired,
isLocalStorageSupported: PropTypes.bool.isRequired,
hasTranslationsError: PropTypes.bool.isRequired,
artistError: PropTypes.object,
customFiltersError: PropTypes.object,
tagsError: PropTypes.object,
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/Components/Page/PageConnector.js
Expand Up @@ -220,6 +220,7 @@ class PageConnector extends Component {

render() {
const {
hasTranslationsError,
isPopulated,
hasError,
dispatchFetchArtist,
Expand All @@ -233,11 +234,12 @@ class PageConnector extends Component {
...otherProps
} = this.props;

if (hasError || !this.state.isLocalStorageSupported) {
if (hasTranslationsError || hasError || !this.state.isLocalStorageSupported) {
return (
<ErrorPage
{...this.state}
{...otherProps}
hasTranslationsError={hasTranslationsError}
/>
);
}
Expand All @@ -258,6 +260,7 @@ class PageConnector extends Component {
}

PageConnector.propTypes = {
hasTranslationsError: PropTypes.bool.isRequired,
isPopulated: PropTypes.bool.isRequired,
hasError: PropTypes.bool.isRequired,
isSidebarVisible: PropTypes.bool.isRequired,
Expand Down
29 changes: 17 additions & 12 deletions frontend/src/Utilities/String/translate.js
@@ -1,22 +1,27 @@
import createAjaxRequest from 'Utilities/createAjaxRequest';

function getTranslations() {
let localization = null;
const ajaxOptions = {
async: false,
return createAjaxRequest({
global: false,
dataType: 'json',
url: '/localization',
success: function(data) {
localization = data.strings;
}
};
url: '/localization'
}).request;
}

createAjaxRequest(ajaxOptions);
let translations = {};

return localization;
}
export function fetchTranslations() {
return new Promise(async(resolve) => {
try {
const data = await getTranslations();
translations = data.strings;

const translations = getTranslations();
resolve(true);
} catch (error) {
resolve(false);
}
});
}

export default function translate(key, args = []) {
const translation = translations[key] || key;
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/index.js
Expand Up @@ -2,7 +2,7 @@ import { createBrowserHistory } from 'history';
import React from 'react';
import { render } from 'react-dom';
import createAppStore from 'Store/createAppStore';
import App from './App/App';
import { fetchTranslations } from 'Utilities/String/translate';

import 'Diag/ConsoleApi';
import './preload';
Expand All @@ -12,11 +12,14 @@ import './index.css';

const history = createBrowserHistory();
const store = createAppStore(history);
const hasTranslationsError = !await fetchTranslations();
const { default: App } = await import('./App/App');

render(
<App
store={store}
history={history}
hasTranslationsError={hasTranslationsError}
/>,
document.getElementById('root')
);

0 comments on commit eeaea17

Please sign in to comment.