mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 06:27:09 +01:00
[Remote] Full PWA support, misc bugfixes (#280)
- Fix setting remote port properly - Add web worker support (so it can be installed as an "app") - build fixes/removing stray console.log
This commit is contained in:
parent
fe298d3232
commit
9964f95d5d
@ -9,112 +9,119 @@ import checkNodeEnv from '../scripts/check-node-env';
|
|||||||
import baseConfig from './webpack.config.base';
|
import baseConfig from './webpack.config.base';
|
||||||
import webpackPaths from './webpack.paths';
|
import webpackPaths from './webpack.paths';
|
||||||
|
|
||||||
|
const { version } = require('../../package.json');
|
||||||
|
|
||||||
// When an ESLint server is running, we can't set the NODE_ENV so we'll check if it's
|
// When an ESLint server is running, we can't set the NODE_ENV so we'll check if it's
|
||||||
// at the dev webpack config is not accidentally run in a production environment
|
// at the dev webpack config is not accidentally run in a production environment
|
||||||
if (process.env.NODE_ENV === 'production') {
|
if (process.env.NODE_ENV === 'production') {
|
||||||
checkNodeEnv('development');
|
checkNodeEnv('development');
|
||||||
}
|
}
|
||||||
|
|
||||||
const port = process.env.PORT || 4343;
|
|
||||||
|
|
||||||
const configuration: webpack.Configuration = {
|
const configuration: webpack.Configuration = {
|
||||||
devtool: 'inline-source-map',
|
devtool: 'inline-source-map',
|
||||||
|
|
||||||
mode: 'development',
|
mode: 'development',
|
||||||
|
|
||||||
target: ['web'],
|
target: ['web'],
|
||||||
|
|
||||||
entry: [path.join(webpackPaths.srcRemotePath, 'index.tsx')],
|
entry: {
|
||||||
|
remote: path.join(webpackPaths.srcRemotePath, 'index.tsx'),
|
||||||
output: {
|
worker: path.join(webpackPaths.srcRemotePath, 'service-worker.ts'),
|
||||||
path: webpackPaths.dllPath,
|
|
||||||
publicPath: '/',
|
|
||||||
filename: 'remote.js',
|
|
||||||
library: {
|
|
||||||
type: 'umd',
|
|
||||||
},
|
},
|
||||||
},
|
|
||||||
|
|
||||||
module: {
|
output: {
|
||||||
rules: [
|
path: webpackPaths.dllPath,
|
||||||
{
|
publicPath: '/',
|
||||||
test: /\.s?css$/,
|
filename: '[name].js',
|
||||||
use: [
|
library: {
|
||||||
'style-loader',
|
type: 'umd',
|
||||||
{
|
},
|
||||||
loader: 'css-loader',
|
},
|
||||||
options: {
|
|
||||||
modules: true,
|
module: {
|
||||||
sourceMap: true,
|
rules: [
|
||||||
importLoaders: 1,
|
{
|
||||||
|
test: /\.s?css$/,
|
||||||
|
use: [
|
||||||
|
'style-loader',
|
||||||
|
{
|
||||||
|
loader: 'css-loader',
|
||||||
|
options: {
|
||||||
|
modules: true,
|
||||||
|
sourceMap: true,
|
||||||
|
importLoaders: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'sass-loader',
|
||||||
|
],
|
||||||
|
include: /\.module\.s?(c|a)ss$/,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
test: /\.s?css$/,
|
||||||
|
use: ['style-loader', 'css-loader', 'sass-loader'],
|
||||||
|
exclude: /\.module\.s?(c|a)ss$/,
|
||||||
|
},
|
||||||
|
// Fonts
|
||||||
|
{
|
||||||
|
test: /\.(woff|woff2|eot|ttf|otf)$/i,
|
||||||
|
type: 'asset/resource',
|
||||||
|
},
|
||||||
|
// Images
|
||||||
|
{
|
||||||
|
test: /\.(png|svg|jpg|jpeg|gif)$/i,
|
||||||
|
type: 'asset/resource',
|
||||||
},
|
},
|
||||||
},
|
|
||||||
'sass-loader',
|
|
||||||
],
|
],
|
||||||
include: /\.module\.s?(c|a)ss$/,
|
},
|
||||||
},
|
plugins: [
|
||||||
{
|
new webpack.NoEmitOnErrorsPlugin(),
|
||||||
test: /\.s?css$/,
|
|
||||||
use: ['style-loader', 'css-loader', 'sass-loader'],
|
/**
|
||||||
exclude: /\.module\.s?(c|a)ss$/,
|
* Create global constants which can be configured at compile time.
|
||||||
},
|
*
|
||||||
// Fonts
|
* Useful for allowing different behaviour between development builds and
|
||||||
{
|
* release builds
|
||||||
test: /\.(woff|woff2|eot|ttf|otf)$/i,
|
*
|
||||||
type: 'asset/resource',
|
* NODE_ENV should be production so that modules do not perform certain
|
||||||
},
|
* development checks
|
||||||
// Images
|
*
|
||||||
{
|
* By default, use 'development' as NODE_ENV. This can be overriden with
|
||||||
test: /\.(png|svg|jpg|jpeg|gif)$/i,
|
* 'staging', for example, by changing the ENV variables in the npm scripts
|
||||||
type: 'asset/resource',
|
*/
|
||||||
},
|
new webpack.EnvironmentPlugin({
|
||||||
|
NODE_ENV: 'development',
|
||||||
|
}),
|
||||||
|
|
||||||
|
new webpack.LoaderOptionsPlugin({
|
||||||
|
debug: true,
|
||||||
|
}),
|
||||||
|
|
||||||
|
new HtmlWebpackPlugin({
|
||||||
|
filename: path.join('index.html'),
|
||||||
|
template: path.join(webpackPaths.srcRemotePath, 'index.ejs'),
|
||||||
|
favicon: path.join(webpackPaths.assetsPath, 'icons', 'favicon.ico'),
|
||||||
|
minify: {
|
||||||
|
collapseWhitespace: true,
|
||||||
|
removeAttributeQuotes: true,
|
||||||
|
removeComments: true,
|
||||||
|
},
|
||||||
|
isBrowser: true,
|
||||||
|
env: process.env.NODE_ENV,
|
||||||
|
isDevelopment: process.env.NODE_ENV !== 'production',
|
||||||
|
nodeModules: webpackPaths.appNodeModulesPath,
|
||||||
|
templateParameters: {
|
||||||
|
version,
|
||||||
|
prod: false,
|
||||||
|
},
|
||||||
|
}),
|
||||||
],
|
],
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
new webpack.NoEmitOnErrorsPlugin(),
|
|
||||||
|
|
||||||
/**
|
node: {
|
||||||
* Create global constants which can be configured at compile time.
|
__dirname: false,
|
||||||
*
|
__filename: false,
|
||||||
* Useful for allowing different behaviour between development builds and
|
},
|
||||||
* release builds
|
|
||||||
*
|
|
||||||
* NODE_ENV should be production so that modules do not perform certain
|
|
||||||
* development checks
|
|
||||||
*
|
|
||||||
* By default, use 'development' as NODE_ENV. This can be overriden with
|
|
||||||
* 'staging', for example, by changing the ENV variables in the npm scripts
|
|
||||||
*/
|
|
||||||
new webpack.EnvironmentPlugin({
|
|
||||||
NODE_ENV: 'development',
|
|
||||||
}),
|
|
||||||
|
|
||||||
new webpack.LoaderOptionsPlugin({
|
watch: true,
|
||||||
debug: true,
|
|
||||||
}),
|
|
||||||
|
|
||||||
new HtmlWebpackPlugin({
|
|
||||||
filename: path.join('index.html'),
|
|
||||||
template: path.join(webpackPaths.srcRemotePath, 'index.ejs'),
|
|
||||||
favicon: path.join(webpackPaths.assetsPath, 'icons', 'favicon.ico'),
|
|
||||||
minify: {
|
|
||||||
collapseWhitespace: true,
|
|
||||||
removeAttributeQuotes: true,
|
|
||||||
removeComments: true,
|
|
||||||
},
|
|
||||||
isBrowser: true,
|
|
||||||
env: process.env.NODE_ENV,
|
|
||||||
isDevelopment: process.env.NODE_ENV !== 'production',
|
|
||||||
nodeModules: webpackPaths.appNodeModulesPath,
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
|
|
||||||
node: {
|
|
||||||
__dirname: false,
|
|
||||||
__filename: false,
|
|
||||||
},
|
|
||||||
|
|
||||||
watch: true,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default merge(baseConfig, configuration);
|
export default merge(baseConfig, configuration);
|
||||||
|
@ -17,116 +17,126 @@ import deleteSourceMaps from '../scripts/delete-source-maps';
|
|||||||
import baseConfig from './webpack.config.base';
|
import baseConfig from './webpack.config.base';
|
||||||
import webpackPaths from './webpack.paths';
|
import webpackPaths from './webpack.paths';
|
||||||
|
|
||||||
|
const { version } = require('../../package.json');
|
||||||
|
|
||||||
checkNodeEnv('production');
|
checkNodeEnv('production');
|
||||||
deleteSourceMaps();
|
deleteSourceMaps();
|
||||||
|
|
||||||
const devtoolsConfig =
|
const devtoolsConfig =
|
||||||
process.env.DEBUG_PROD === 'true'
|
process.env.DEBUG_PROD === 'true'
|
||||||
? {
|
? {
|
||||||
devtool: 'source-map',
|
devtool: 'source-map',
|
||||||
}
|
}
|
||||||
: {};
|
: {};
|
||||||
|
|
||||||
const configuration: webpack.Configuration = {
|
const configuration: webpack.Configuration = {
|
||||||
...devtoolsConfig,
|
...devtoolsConfig,
|
||||||
|
|
||||||
mode: 'production',
|
mode: 'production',
|
||||||
|
|
||||||
target: ['web'],
|
target: ['web'],
|
||||||
|
|
||||||
entry: [path.join(webpackPaths.srcRemotePath, 'index.tsx')],
|
entry: {
|
||||||
|
remote: path.join(webpackPaths.srcRemotePath, 'index.tsx'),
|
||||||
output: {
|
worker: path.join(webpackPaths.srcRemotePath, 'service-worker.ts'),
|
||||||
path: webpackPaths.distRemotePath,
|
|
||||||
publicPath: './',
|
|
||||||
filename: 'remote.js',
|
|
||||||
library: {
|
|
||||||
type: 'umd',
|
|
||||||
},
|
},
|
||||||
},
|
|
||||||
|
|
||||||
module: {
|
output: {
|
||||||
rules: [
|
path: webpackPaths.distRemotePath,
|
||||||
{
|
publicPath: './',
|
||||||
test: /\.s?(a|c)ss$/,
|
filename: '[name].js',
|
||||||
use: [
|
library: {
|
||||||
MiniCssExtractPlugin.loader,
|
type: 'umd',
|
||||||
{
|
},
|
||||||
loader: 'css-loader',
|
},
|
||||||
options: {
|
|
||||||
modules: true,
|
module: {
|
||||||
sourceMap: true,
|
rules: [
|
||||||
importLoaders: 1,
|
{
|
||||||
|
test: /\.s?(a|c)ss$/,
|
||||||
|
use: [
|
||||||
|
MiniCssExtractPlugin.loader,
|
||||||
|
{
|
||||||
|
loader: 'css-loader',
|
||||||
|
options: {
|
||||||
|
modules: true,
|
||||||
|
sourceMap: true,
|
||||||
|
importLoaders: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'sass-loader',
|
||||||
|
],
|
||||||
|
include: /\.module\.s?(c|a)ss$/,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
test: /\.s?(a|c)ss$/,
|
||||||
|
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
|
||||||
|
exclude: /\.module\.s?(c|a)ss$/,
|
||||||
|
},
|
||||||
|
// Fonts
|
||||||
|
{
|
||||||
|
test: /\.(woff|woff2|eot|ttf|otf)$/i,
|
||||||
|
type: 'asset/resource',
|
||||||
|
},
|
||||||
|
// Images
|
||||||
|
{
|
||||||
|
test: /\.(png|svg|jpg|jpeg|gif)$/i,
|
||||||
|
type: 'asset/resource',
|
||||||
},
|
},
|
||||||
},
|
|
||||||
'sass-loader',
|
|
||||||
],
|
],
|
||||||
include: /\.module\.s?(c|a)ss$/,
|
},
|
||||||
},
|
|
||||||
{
|
optimization: {
|
||||||
test: /\.s?(a|c)ss$/,
|
minimize: true,
|
||||||
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
|
minimizer: [
|
||||||
exclude: /\.module\.s?(c|a)ss$/,
|
new TerserPlugin({
|
||||||
},
|
parallel: true,
|
||||||
// Fonts
|
}),
|
||||||
{
|
new CssMinimizerPlugin(),
|
||||||
test: /\.(woff|woff2|eot|ttf|otf)$/i,
|
],
|
||||||
type: 'asset/resource',
|
},
|
||||||
},
|
|
||||||
// Images
|
plugins: [
|
||||||
{
|
/**
|
||||||
test: /\.(png|svg|jpg|jpeg|gif)$/i,
|
* Create global constants which can be configured at compile time.
|
||||||
type: 'asset/resource',
|
*
|
||||||
},
|
* Useful for allowing different behaviour between development builds and
|
||||||
|
* release builds
|
||||||
|
*
|
||||||
|
* NODE_ENV should be production so that modules do not perform certain
|
||||||
|
* development checks
|
||||||
|
*/
|
||||||
|
new webpack.EnvironmentPlugin({
|
||||||
|
NODE_ENV: 'production',
|
||||||
|
DEBUG_PROD: false,
|
||||||
|
}),
|
||||||
|
|
||||||
|
new MiniCssExtractPlugin({
|
||||||
|
filename: 'remote.css',
|
||||||
|
}),
|
||||||
|
|
||||||
|
new BundleAnalyzerPlugin({
|
||||||
|
analyzerMode: process.env.ANALYZE === 'true' ? 'server' : 'disabled',
|
||||||
|
}),
|
||||||
|
|
||||||
|
new HtmlWebpackPlugin({
|
||||||
|
filename: 'index.html',
|
||||||
|
template: path.join(webpackPaths.srcRemotePath, 'index.ejs'),
|
||||||
|
favicon: path.join(webpackPaths.assetsPath, 'icons', 'favicon.ico'),
|
||||||
|
minify: {
|
||||||
|
collapseWhitespace: true,
|
||||||
|
removeAttributeQuotes: true,
|
||||||
|
removeComments: true,
|
||||||
|
},
|
||||||
|
isBrowser: true,
|
||||||
|
env: process.env.NODE_ENV,
|
||||||
|
isDevelopment: process.env.NODE_ENV !== 'production',
|
||||||
|
templateParameters: {
|
||||||
|
version,
|
||||||
|
prod: true,
|
||||||
|
},
|
||||||
|
}),
|
||||||
],
|
],
|
||||||
},
|
|
||||||
|
|
||||||
optimization: {
|
|
||||||
minimize: true,
|
|
||||||
minimizer: [
|
|
||||||
new TerserPlugin({
|
|
||||||
parallel: true,
|
|
||||||
}),
|
|
||||||
new CssMinimizerPlugin(),
|
|
||||||
],
|
|
||||||
},
|
|
||||||
|
|
||||||
plugins: [
|
|
||||||
/**
|
|
||||||
* Create global constants which can be configured at compile time.
|
|
||||||
*
|
|
||||||
* Useful for allowing different behaviour between development builds and
|
|
||||||
* release builds
|
|
||||||
*
|
|
||||||
* NODE_ENV should be production so that modules do not perform certain
|
|
||||||
* development checks
|
|
||||||
*/
|
|
||||||
new webpack.EnvironmentPlugin({
|
|
||||||
NODE_ENV: 'production',
|
|
||||||
DEBUG_PROD: false,
|
|
||||||
}),
|
|
||||||
|
|
||||||
new MiniCssExtractPlugin({
|
|
||||||
filename: 'remote.css',
|
|
||||||
}),
|
|
||||||
|
|
||||||
new BundleAnalyzerPlugin({
|
|
||||||
analyzerMode: process.env.ANALYZE === 'true' ? 'server' : 'disabled',
|
|
||||||
}),
|
|
||||||
|
|
||||||
new HtmlWebpackPlugin({
|
|
||||||
filename: 'index.html',
|
|
||||||
template: path.join(webpackPaths.srcRendererPath, 'index.ejs'),
|
|
||||||
favicon: path.join(webpackPaths.assetsPath, 'icons', 'favicon.ico'),
|
|
||||||
minify: {
|
|
||||||
collapseWhitespace: true,
|
|
||||||
removeAttributeQuotes: true,
|
|
||||||
removeComments: true,
|
|
||||||
},
|
|
||||||
isBrowser: false,
|
|
||||||
isDevelopment: process.env.NODE_ENV !== 'production',
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default merge(baseConfig, configuration);
|
export default merge(baseConfig, configuration);
|
||||||
|
@ -6,6 +6,7 @@ import { deflate, gzip } from 'zlib';
|
|||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import { app, ipcMain } from 'electron';
|
import { app, ipcMain } from 'electron';
|
||||||
import { Server as WsServer, WebSocketServer, WebSocket } from 'ws';
|
import { Server as WsServer, WebSocketServer, WebSocket } from 'ws';
|
||||||
|
import manifest from './manifest.json';
|
||||||
import { ClientEvent, ServerEvent } from '../../../../remote/types';
|
import { ClientEvent, ServerEvent } from '../../../../remote/types';
|
||||||
import { PlayerRepeat, SongUpdate } from '../../../../renderer/types';
|
import { PlayerRepeat, SongUpdate } from '../../../../renderer/types';
|
||||||
import { getMainWindow } from '../../../main';
|
import { getMainWindow } from '../../../main';
|
||||||
@ -297,6 +298,12 @@ const enableServer = (config: RemoteConfig): Promise<void> => {
|
|||||||
await serveFile(req, 'remote', 'js', res);
|
await serveFile(req, 'remote', 'js', res);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case '/manifest.json': {
|
||||||
|
res.statusCode = 200;
|
||||||
|
res.setHeader('Content-Type', 'application/json');
|
||||||
|
res.end(JSON.stringify(manifest));
|
||||||
|
break;
|
||||||
|
}
|
||||||
case '/credentials': {
|
case '/credentials': {
|
||||||
res.statusCode = 200;
|
res.statusCode = 200;
|
||||||
res.setHeader('Content-Type', 'text/plain');
|
res.setHeader('Content-Type', 'text/plain');
|
||||||
@ -304,9 +311,13 @@ const enableServer = (config: RemoteConfig): Promise<void> => {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
res.statusCode = 404;
|
if (req.url?.startsWith('/worker.js')) {
|
||||||
res.setHeader('Content-Type', 'text/plain');
|
await serveFile(req, 'worker', 'js', res);
|
||||||
res.end('Not FOund');
|
} else {
|
||||||
|
res.statusCode = 404;
|
||||||
|
res.setHeader('Content-Type', 'text/plain');
|
||||||
|
res.end('Not Found');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
17
src/main/features/core/remote/manifest.json
Normal file
17
src/main/features/core/remote/manifest.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "Feishin Remote",
|
||||||
|
"short_name": "Feishin Remote",
|
||||||
|
"start_url": "/",
|
||||||
|
"background_color": "#000100",
|
||||||
|
"theme_color": "#E7E7E7",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "favicon.ico",
|
||||||
|
"sizes": "32x32",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable any"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"display": "standalone",
|
||||||
|
"orientation": "portrait"
|
||||||
|
}
|
@ -6,6 +6,14 @@
|
|||||||
<meta http-equiv="Content-Security-Policy" />
|
<meta http-equiv="Content-Security-Policy" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>Feishin Remote</title>
|
<title>Feishin Remote</title>
|
||||||
|
<link rel="manifest" href="manifest.json">
|
||||||
|
<script>
|
||||||
|
if ('serviceWorker' in navigator) {
|
||||||
|
const version = encodeURIComponent("<%= version %>");
|
||||||
|
const prod = encodeURIComponent("<%= prod %>");
|
||||||
|
navigator.serviceWorker.register(`/worker.js?version=${version}&prod=${prod}`);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
17
src/remote/manifest.json
Normal file
17
src/remote/manifest.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "Feishin Remote",
|
||||||
|
"short_name": "Feishin Remote",
|
||||||
|
"start_url": "/",
|
||||||
|
"background_color": "#FFDCB5",
|
||||||
|
"theme_color": "#1E003D",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "favicon.ico",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable any"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"display": "standalone",
|
||||||
|
"orientation": "portrait"
|
||||||
|
}
|
48
src/remote/service-worker.ts
Normal file
48
src/remote/service-worker.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
/// <reference lib="WebWorker" />
|
||||||
|
|
||||||
|
export type {};
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
|
declare const self: ServiceWorkerGlobalScope;
|
||||||
|
|
||||||
|
// eslint-disable-next-line no-restricted-globals
|
||||||
|
const url = new URL(location.toString());
|
||||||
|
const version = url.searchParams.get('version');
|
||||||
|
const prod = url.searchParams.get('prod') === 'true';
|
||||||
|
const cacheName = `Feishin-remote-${version}`;
|
||||||
|
|
||||||
|
const resourcesToCache = ['./', './remote.js', './favicon.ico'];
|
||||||
|
|
||||||
|
if (prod) {
|
||||||
|
resourcesToCache.push('./remote.css');
|
||||||
|
}
|
||||||
|
|
||||||
|
self.addEventListener('install', (e) => {
|
||||||
|
e.waitUntil(
|
||||||
|
caches.open(cacheName).then((cache) => {
|
||||||
|
return cache.addAll(resourcesToCache);
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
self.addEventListener('fetch', (e) => {
|
||||||
|
e.respondWith(
|
||||||
|
caches.match(e.request).then((response) => {
|
||||||
|
return response || fetch(e.request);
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
self.addEventListener('activate', (e) => {
|
||||||
|
e.waitUntil(
|
||||||
|
caches.keys().then((keyList) => {
|
||||||
|
return Promise.all(
|
||||||
|
keyList.map((key) => {
|
||||||
|
if (key !== cacheName) {
|
||||||
|
return caches.delete(key);
|
||||||
|
}
|
||||||
|
return Promise.resolve();
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
});
|
@ -194,7 +194,6 @@ export const useRemoteStore = create<SettingsSlice>()(
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
send: (data: ClientEvent) => {
|
send: (data: ClientEvent) => {
|
||||||
console.log(data, get().socket);
|
|
||||||
get().socket?.send(JSON.stringify(data));
|
get().socket?.send(JSON.stringify(data));
|
||||||
},
|
},
|
||||||
toggleIsDark: () => {
|
toggleIsDark: () => {
|
||||||
|
0
src/remote/worker.js
Normal file
0
src/remote/worker.js
Normal file
@ -28,24 +28,27 @@ export const RemoteSettings = () => {
|
|||||||
title: enabled ? 'Error enabling remote' : 'Error disabling remote',
|
title: enabled ? 'Error enabling remote' : 'Error disabling remote',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}, 100);
|
}, 50);
|
||||||
|
|
||||||
const debouncedChangeRemotePort = debounce(async (port: number) => {
|
const debouncedChangeRemotePort = debounce(async (port: number) => {
|
||||||
const errorMsg = await remote!.setRemotePort(port);
|
const errorMsg = await remote!.setRemotePort(port);
|
||||||
if (errorMsg === null) {
|
if (!errorMsg) {
|
||||||
setSettings({
|
setSettings({
|
||||||
remote: {
|
remote: {
|
||||||
...settings,
|
...settings,
|
||||||
port,
|
port,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
toast.warn({
|
||||||
|
message: 'To have your port change take effect, stop and restart the server',
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
toast.error({
|
toast.error({
|
||||||
message: errorMsg,
|
message: errorMsg,
|
||||||
title: 'Error setting port',
|
title: 'Error setting port',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
}, 100);
|
||||||
|
|
||||||
const isHidden = !isElectron();
|
const isHidden = !isElectron();
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es2021",
|
"target": "es2021",
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"lib": ["dom", "es2021"],
|
"lib": ["dom", "es2021", "WebWorker"],
|
||||||
"baseUrl": "./src",
|
"baseUrl": "./src",
|
||||||
"paths": {
|
"paths": {
|
||||||
"/@/*": ["*"]
|
"/@/*": ["*"]
|
||||||
|
Loading…
Reference in New Issue
Block a user