UI loading improvements
Fixed: Caching for dynamically loaded JS files Fixed: Incorrect caching of initialize.js
This commit is contained in:
parent
f62bc59a73
commit
f0cb5b81f1
|
@ -36,7 +36,7 @@ module.exports = (env) => {
|
||||||
},
|
},
|
||||||
|
|
||||||
entry: {
|
entry: {
|
||||||
index: 'index.js'
|
index: 'index.ts'
|
||||||
},
|
},
|
||||||
|
|
||||||
resolve: {
|
resolve: {
|
||||||
|
@ -67,17 +67,13 @@ module.exports = (env) => {
|
||||||
output: {
|
output: {
|
||||||
path: distFolder,
|
path: distFolder,
|
||||||
publicPath: '/',
|
publicPath: '/',
|
||||||
filename: '[name].js',
|
filename: '[name].[contenthash].js',
|
||||||
sourceMapFilename: '[file].map'
|
sourceMapFilename: '[file]-[contenthash].map'
|
||||||
},
|
},
|
||||||
|
|
||||||
optimization: {
|
optimization: {
|
||||||
moduleIds: 'deterministic',
|
moduleIds: 'deterministic',
|
||||||
chunkIds: 'named',
|
chunkIds: 'named'
|
||||||
splitChunks: {
|
|
||||||
chunks: 'initial',
|
|
||||||
name: 'vendors'
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
performance: {
|
performance: {
|
||||||
|
@ -101,7 +97,8 @@ module.exports = (env) => {
|
||||||
new HtmlWebpackPlugin({
|
new HtmlWebpackPlugin({
|
||||||
template: 'frontend/src/index.ejs',
|
template: 'frontend/src/index.ejs',
|
||||||
filename: 'index.html',
|
filename: 'index.html',
|
||||||
publicPath: '/'
|
publicPath: '/',
|
||||||
|
inject: false
|
||||||
}),
|
}),
|
||||||
|
|
||||||
new FileManagerPlugin({
|
new FileManagerPlugin({
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
import { createBrowserHistory } from 'history';
|
||||||
|
import React from 'react';
|
||||||
|
import { render } from 'react-dom';
|
||||||
|
import createAppStore from 'Store/createAppStore';
|
||||||
|
import { fetchTranslations } from 'Utilities/String/translate';
|
||||||
|
import App from './App/App';
|
||||||
|
|
||||||
|
import 'Diag/ConsoleApi';
|
||||||
|
|
||||||
|
export async function bootstrap() {
|
||||||
|
const history = createBrowserHistory();
|
||||||
|
const store = createAppStore(history);
|
||||||
|
const hasTranslationsError = !(await fetchTranslations());
|
||||||
|
|
||||||
|
render(
|
||||||
|
<App
|
||||||
|
store={store}
|
||||||
|
history={history}
|
||||||
|
hasTranslationsError={hasTranslationsError}
|
||||||
|
/>,
|
||||||
|
document.getElementById('root')
|
||||||
|
);
|
||||||
|
}
|
|
@ -48,7 +48,15 @@
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/Content/Fonts/fonts.css">
|
<link rel="stylesheet" type="text/css" href="/Content/Fonts/fonts.css">
|
||||||
<!-- webpack bundles head -->
|
|
||||||
|
<script>
|
||||||
|
window.Sonarr = {
|
||||||
|
urlBase: '__URL_BASE__'
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<% for (key in htmlWebpackPlugin.files.js) { %><script type="text/javascript" src="<%= htmlWebpackPlugin.files.js[key] %>" data-no-hash></script><% } %>
|
||||||
|
<% for (key in htmlWebpackPlugin.files.css) { %><link href="<%= htmlWebpackPlugin.files.css[key] %>" rel="stylesheet"></link><% } %>
|
||||||
|
|
||||||
<title>Sonarr</title>
|
<title>Sonarr</title>
|
||||||
|
|
||||||
|
@ -77,7 +85,4 @@
|
||||||
<div id="portal-root"></div>
|
<div id="portal-root"></div>
|
||||||
<div id="root" class="root"></div>
|
<div id="root" class="root"></div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
<script src="/initialize.js" data-no-hash></script>
|
|
||||||
<!-- webpack bundles body -->
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
import { createBrowserHistory } from 'history';
|
|
||||||
import React from 'react';
|
|
||||||
import { render } from 'react-dom';
|
|
||||||
import { fetchTranslations } from 'Utilities/String/translate';
|
|
||||||
|
|
||||||
import './preload';
|
|
||||||
import './polyfills';
|
|
||||||
import 'Diag/ConsoleApi';
|
|
||||||
import 'Styles/globals.css';
|
|
||||||
import './index.css';
|
|
||||||
|
|
||||||
const history = createBrowserHistory();
|
|
||||||
const hasTranslationsError = !await fetchTranslations();
|
|
||||||
|
|
||||||
const { default: createAppStore } = await import('Store/createAppStore');
|
|
||||||
const { default: App } = await import('./App/App');
|
|
||||||
|
|
||||||
const store = createAppStore(history);
|
|
||||||
|
|
||||||
render(
|
|
||||||
<App
|
|
||||||
store={store}
|
|
||||||
history={history}
|
|
||||||
hasTranslationsError={hasTranslationsError}
|
|
||||||
/>,
|
|
||||||
document.getElementById('root')
|
|
||||||
);
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
import './polyfills';
|
||||||
|
import 'Styles/globals.css';
|
||||||
|
import './index.css';
|
||||||
|
|
||||||
|
const initializeUrl = `${
|
||||||
|
window.Sonarr.urlBase
|
||||||
|
}/initialize.json?t=${Date.now()}`;
|
||||||
|
const response = await fetch(initializeUrl);
|
||||||
|
|
||||||
|
window.Sonarr = await response.json();
|
||||||
|
|
||||||
|
/* eslint-disable no-undef, @typescript-eslint/ban-ts-comment */
|
||||||
|
// @ts-ignore 2304
|
||||||
|
__webpack_public_path__ = `${window.Sonarr.urlBase}/`;
|
||||||
|
/* eslint-enable no-undef, @typescript-eslint/ban-ts-comment */
|
||||||
|
|
||||||
|
const { bootstrap } = await import('./bootstrap');
|
||||||
|
|
||||||
|
await bootstrap();
|
|
@ -1,2 +0,0 @@
|
||||||
/* eslint no-undef: 0 */
|
|
||||||
__webpack_public_path__ = `${window.Sonarr.urlBase}/`;
|
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es6",
|
"target": "esnext",
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"checkJs": false,
|
"checkJs": false,
|
||||||
"baseUrl": "src",
|
"baseUrl": "src",
|
||||||
"jsx": "react",
|
"jsx": "react",
|
||||||
"module": "commonjs",
|
"module": "esnext",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
"author": "Team Sonarr",
|
"author": "Team Sonarr",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"readmeFilename": "readme.md",
|
"readmeFilename": "readme.md",
|
||||||
"main": "index.js",
|
"main": "index.ts",
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"defaults"
|
"defaults"
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,65 +0,0 @@
|
||||||
using System.Text;
|
|
||||||
using Microsoft.AspNetCore.Authorization;
|
|
||||||
using Microsoft.AspNetCore.Mvc;
|
|
||||||
using NzbDrone.Common;
|
|
||||||
using NzbDrone.Common.EnvironmentInfo;
|
|
||||||
using NzbDrone.Core.Analytics;
|
|
||||||
using NzbDrone.Core.Configuration;
|
|
||||||
|
|
||||||
namespace Sonarr.Http.Frontend
|
|
||||||
{
|
|
||||||
[Authorize(Policy = "UI")]
|
|
||||||
[ApiController]
|
|
||||||
public class InitializeJsController : Controller
|
|
||||||
{
|
|
||||||
private readonly IConfigFileProvider _configFileProvider;
|
|
||||||
private readonly IAnalyticsService _analyticsService;
|
|
||||||
|
|
||||||
private static string _apiKey;
|
|
||||||
private static string _urlBase;
|
|
||||||
private string _generatedContent;
|
|
||||||
|
|
||||||
public InitializeJsController(IConfigFileProvider configFileProvider,
|
|
||||||
IAnalyticsService analyticsService)
|
|
||||||
{
|
|
||||||
_configFileProvider = configFileProvider;
|
|
||||||
_analyticsService = analyticsService;
|
|
||||||
|
|
||||||
_apiKey = configFileProvider.ApiKey;
|
|
||||||
_urlBase = configFileProvider.UrlBase;
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpGet("/initialize.js")]
|
|
||||||
public IActionResult Index()
|
|
||||||
{
|
|
||||||
return Content(GetContent(), "application/javascript");
|
|
||||||
}
|
|
||||||
|
|
||||||
private string GetContent()
|
|
||||||
{
|
|
||||||
if (RuntimeInfo.IsProduction && _generatedContent != null)
|
|
||||||
{
|
|
||||||
return _generatedContent;
|
|
||||||
}
|
|
||||||
|
|
||||||
var builder = new StringBuilder();
|
|
||||||
builder.AppendLine("window.Sonarr = {");
|
|
||||||
builder.AppendLine($" apiRoot: '{_urlBase}/api/v3',");
|
|
||||||
builder.AppendLine($" apiKey: '{_apiKey}',");
|
|
||||||
builder.AppendLine($" release: '{BuildInfo.Release}',");
|
|
||||||
builder.AppendLine($" version: '{BuildInfo.Version.ToString()}',");
|
|
||||||
builder.AppendLine($" instanceName: '{_configFileProvider.InstanceName.ToString()}',");
|
|
||||||
builder.AppendLine($" theme: '{_configFileProvider.Theme.ToString()}',");
|
|
||||||
builder.AppendLine($" branch: '{_configFileProvider.Branch.ToLower()}',");
|
|
||||||
builder.AppendLine($" analytics: {_analyticsService.IsEnabled.ToString().ToLowerInvariant()},");
|
|
||||||
builder.AppendLine($" userHash: '{HashUtil.AnonymousToken()}',");
|
|
||||||
builder.AppendLine($" urlBase: '{_urlBase}',");
|
|
||||||
builder.AppendLine($" isProduction: {RuntimeInfo.IsProduction.ToString().ToLowerInvariant()}");
|
|
||||||
builder.AppendLine("};");
|
|
||||||
|
|
||||||
_generatedContent = builder.ToString();
|
|
||||||
|
|
||||||
return _generatedContent;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,65 @@
|
||||||
|
using System.Text;
|
||||||
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using NzbDrone.Common;
|
||||||
|
using NzbDrone.Common.EnvironmentInfo;
|
||||||
|
using NzbDrone.Core.Analytics;
|
||||||
|
using NzbDrone.Core.Configuration;
|
||||||
|
|
||||||
|
namespace Sonarr.Http.Frontend
|
||||||
|
{
|
||||||
|
[Authorize(Policy = "UI")]
|
||||||
|
[ApiController]
|
||||||
|
public class InitializeJsonController : Controller
|
||||||
|
{
|
||||||
|
private readonly IConfigFileProvider _configFileProvider;
|
||||||
|
private readonly IAnalyticsService _analyticsService;
|
||||||
|
|
||||||
|
private static string _apiKey;
|
||||||
|
private static string _urlBase;
|
||||||
|
private string _generatedContent;
|
||||||
|
|
||||||
|
public InitializeJsonController(IConfigFileProvider configFileProvider,
|
||||||
|
IAnalyticsService analyticsService)
|
||||||
|
{
|
||||||
|
_configFileProvider = configFileProvider;
|
||||||
|
_analyticsService = analyticsService;
|
||||||
|
|
||||||
|
_apiKey = configFileProvider.ApiKey;
|
||||||
|
_urlBase = configFileProvider.UrlBase;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("/initialize.json")]
|
||||||
|
public IActionResult Index()
|
||||||
|
{
|
||||||
|
return Content(GetContent(), "application/json");
|
||||||
|
}
|
||||||
|
|
||||||
|
private string GetContent()
|
||||||
|
{
|
||||||
|
if (RuntimeInfo.IsProduction && _generatedContent != null)
|
||||||
|
{
|
||||||
|
return _generatedContent;
|
||||||
|
}
|
||||||
|
|
||||||
|
var builder = new StringBuilder();
|
||||||
|
builder.AppendLine("{");
|
||||||
|
builder.AppendLine($" \"apiRoot\": \"{_urlBase}/api/v3\",");
|
||||||
|
builder.AppendLine($" \"apiKey\": \"{_apiKey}\",");
|
||||||
|
builder.AppendLine($" \"release\": \"{BuildInfo.Release}\",");
|
||||||
|
builder.AppendLine($" \"version\": \"{BuildInfo.Version.ToString()}\",");
|
||||||
|
builder.AppendLine($" \"instanceName\": \"{_configFileProvider.InstanceName.ToString()}\",");
|
||||||
|
builder.AppendLine($" \"theme\": \"{_configFileProvider.Theme.ToString()}\",");
|
||||||
|
builder.AppendLine($" \"branch\": \"{_configFileProvider.Branch.ToLower()}\",");
|
||||||
|
builder.AppendLine($" \"analytics\": {_analyticsService.IsEnabled.ToString().ToLowerInvariant()},");
|
||||||
|
builder.AppendLine($" \"userHash\": \"{HashUtil.AnonymousToken()}\",");
|
||||||
|
builder.AppendLine($" \"urlBase\": \"{_urlBase}\",");
|
||||||
|
builder.AppendLine($" \"isProduction\": {RuntimeInfo.IsProduction.ToString().ToLowerInvariant()}");
|
||||||
|
builder.AppendLine("}");
|
||||||
|
|
||||||
|
_generatedContent = builder.ToString();
|
||||||
|
|
||||||
|
return _generatedContent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -62,9 +62,11 @@ namespace Sonarr.Http.Frontend.Mappers
|
||||||
url = cacheBreakProvider.AddCacheBreakerToPath(match.Groups["path"].Value);
|
url = cacheBreakProvider.AddCacheBreakerToPath(match.Groups["path"].Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
return string.Format("{0}=\"{1}{2}\"", match.Groups["attribute"].Value, UrlBase, url);
|
return $"{match.Groups["attribute"].Value}=\"{UrlBase}{url}\"";
|
||||||
});
|
});
|
||||||
|
|
||||||
|
text = text.Replace("__URL_BASE__", UrlBase);
|
||||||
|
|
||||||
_generatedContent = text;
|
_generatedContent = text;
|
||||||
|
|
||||||
return _generatedContent;
|
return _generatedContent;
|
||||||
|
|
|
@ -37,7 +37,7 @@ namespace Sonarr.Http.Frontend.Mappers
|
||||||
}
|
}
|
||||||
|
|
||||||
return resourceUrl.StartsWith("/content") ||
|
return resourceUrl.StartsWith("/content") ||
|
||||||
(resourceUrl.EndsWith(".js") && !resourceUrl.EndsWith("initialize.js")) ||
|
resourceUrl.EndsWith(".js") ||
|
||||||
resourceUrl.EndsWith(".map") ||
|
resourceUrl.EndsWith(".map") ||
|
||||||
resourceUrl.EndsWith(".css") ||
|
resourceUrl.EndsWith(".css") ||
|
||||||
(resourceUrl.EndsWith(".ico") && !resourceUrl.Equals("/favicon.ico")) ||
|
(resourceUrl.EndsWith(".ico") && !resourceUrl.Equals("/favicon.ico")) ||
|
||||||
|
|
|
@ -46,7 +46,7 @@ namespace Sonarr.Http.Middleware
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (path.EndsWith("/initialize.js"))
|
if (path.EndsWith("/initialize.json"))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue