WIP
parent
280cc494e8
commit
2b17ad5cfa
@ -1,47 +0,0 @@
|
||||
var __create = Object.create;
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __getProtoOf = Object.getPrototypeOf;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
||||
var __export = (target, all) => {
|
||||
for (var name in all)
|
||||
__defProp(target, name, { get: all[name], enumerable: true });
|
||||
};
|
||||
var __copyProps = (to, from, except, desc) => {
|
||||
if (from && typeof from === "object" || typeof from === "function") {
|
||||
for (let key of __getOwnPropNames(from))
|
||||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||||
}
|
||||
return to;
|
||||
};
|
||||
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
||||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||||
var OS_exports = {};
|
||||
__export(OS_exports, {
|
||||
isLinux: () => isLinux,
|
||||
isMacOS: () => isMacOS,
|
||||
isWindows: () => isWindows
|
||||
});
|
||||
module.exports = __toCommonJS(OS_exports);
|
||||
var import_lodash = __toESM(require("lodash"));
|
||||
var import_os = __toESM(require("os"));
|
||||
var import_semver = __toESM(require("semver"));
|
||||
const isMacOS = /* @__PURE__ */ __name(() => process.platform === "darwin", "isMacOS");
|
||||
const isLinux = /* @__PURE__ */ __name(() => process.platform === "linux", "isLinux");
|
||||
const isWindows = /* @__PURE__ */ __name((minVersion) => {
|
||||
const osRelease = import_os.default.release();
|
||||
if (process.platform !== "win32") {
|
||||
return false;
|
||||
}
|
||||
return import_lodash.default.isUndefined(minVersion) ? true : import_semver.default.gte(osRelease, minVersion);
|
||||
}, "isWindows");
|
||||
// Annotate the CommonJS export names for ESM import in node:
|
||||
0 && (module.exports = {
|
||||
isLinux,
|
||||
isMacOS,
|
||||
isWindows
|
||||
});
|
||||
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsidHMvT1MudHMiXSwKICAic291cmNlc0NvbnRlbnQiOiBbImltcG9ydCBfIGZyb20gJ2xvZGFzaCc7XG5pbXBvcnQgb3MgZnJvbSAnb3MnO1xuaW1wb3J0IHNlbXZlciBmcm9tICdzZW12ZXInO1xuXG5leHBvcnQgY29uc3QgaXNNYWNPUyA9ICgpID0+IHByb2Nlc3MucGxhdGZvcm0gPT09ICdkYXJ3aW4nO1xuZXhwb3J0IGNvbnN0IGlzTGludXggPSAoKSA9PiBwcm9jZXNzLnBsYXRmb3JtID09PSAnbGludXgnO1xuZXhwb3J0IGNvbnN0IGlzV2luZG93cyA9IChtaW5WZXJzaW9uPzogc3RyaW5nKSA9PiB7XG4gIGNvbnN0IG9zUmVsZWFzZSA9IG9zLnJlbGVhc2UoKTtcblxuICBpZiAocHJvY2Vzcy5wbGF0Zm9ybSAhPT0gJ3dpbjMyJykge1xuICAgIHJldHVybiBmYWxzZTtcbiAgfVxuXG4gIHJldHVybiBfLmlzVW5kZWZpbmVkKG1pblZlcnNpb24pID8gdHJ1ZSA6IHNlbXZlci5ndGUob3NSZWxlYXNlLCBtaW5WZXJzaW9uKTtcbn07XG4iXSwKICAibWFwcGluZ3MiOiAiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBLG9CQUFjO0FBQ2QsZ0JBQWU7QUFDZixvQkFBbUI7QUFFWixNQUFNLFVBQVUsNkJBQU0sUUFBUSxhQUFhLFVBQTNCO0FBQ2hCLE1BQU0sVUFBVSw2QkFBTSxRQUFRLGFBQWEsU0FBM0I7QUFDaEIsTUFBTSxZQUFZLHdCQUFDLGVBQXdCO0FBQ2hELFFBQU0sWUFBWSxrQkFBRyxRQUFRO0FBRTdCLE1BQUksUUFBUSxhQUFhLFNBQVM7QUFDaEMsV0FBTztBQUFBLEVBQ1Q7QUFFQSxTQUFPLHNCQUFFLFlBQVksVUFBVSxJQUFJLE9BQU8sc0JBQU8sSUFBSSxXQUFXLFVBQVU7QUFDNUUsR0FSeUI7IiwKICAibmFtZXMiOiBbXQp9Cg==
|
@ -1,3 +0,0 @@
|
||||
owner: <yourGHName>
|
||||
repo: <yourGHRepoName>
|
||||
provider: github
|
@ -1,2 +0,0 @@
|
||||
find release/linux-unpacked -type d -not -perm 755 -o -type f -not -perm 644 | xargs stat
|
||||
find release/win-unpacked -type d -not -perm 755 -o -type f -not -perm 644 | xargs stat
|
@ -1,4 +0,0 @@
|
||||
set -e
|
||||
find release/linux -type d | xargs chmod 755
|
||||
find release/linux -type f | xargs chmod 644
|
||||
chmod +x release/linux/session-desktop*
|
@ -1,25 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"
|
||||
name="viewport"
|
||||
/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<title>Session</title>
|
||||
<meta name="description" content="" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link href="/images/session/session_icon_128.png" rel="shortcut icon" />
|
||||
<link href="/stylesheets/manifest.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body id="signal-container" class="signal index">
|
||||
<div class="app-loading-screen">
|
||||
<div class="content session-full-logo">
|
||||
<img src="images/session/brand.svg" class="session-brand-logo" />
|
||||
<img src="images/session/session-text.svg" class="session-text-logo" />
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript" src="js/index.js"></script>
|
||||
</body>
|
||||
</html>
|
@ -1,253 +0,0 @@
|
||||
import { app, clipboard, ipcRenderer, webFrame } from 'electron';
|
||||
|
||||
import { Storage } from './ts/util/storage';
|
||||
|
||||
import url from 'url';
|
||||
import path from 'path';
|
||||
|
||||
const config = url.parse(window.location.toString(), true).query;
|
||||
const configAny = config as any;
|
||||
|
||||
let title = config.name;
|
||||
if (config.environment !== 'production') {
|
||||
title += ` - ${config.environment}`;
|
||||
}
|
||||
if (config.appInstance) {
|
||||
title += ` - ${config.appInstance}`;
|
||||
}
|
||||
// tslint:disable: no-require-imports no-var-requires
|
||||
|
||||
global.dcodeIO = global.dcodeIO || {};
|
||||
global.dcodeIO.ByteBuffer = require('bytebuffer');
|
||||
|
||||
window.platform = process.platform;
|
||||
window.getTitle = () => title as string;
|
||||
window.getEnvironment = () => configAny.environment;
|
||||
window.getAppInstance = () => configAny.appInstance;
|
||||
window.getVersion = () => configAny.version;
|
||||
window.isDev = () => config.environment === 'development';
|
||||
window.getCommitHash = () => configAny.commitHash;
|
||||
window.getNodeVersion = () => configAny.node_version;
|
||||
|
||||
window.sessionFeatureFlags = {
|
||||
useOnionRequests: true,
|
||||
useCallMessage: true,
|
||||
};
|
||||
|
||||
window.versionInfo = {
|
||||
environment: window.getEnvironment(),
|
||||
version: window.getVersion(),
|
||||
commitHash: window.getCommitHash(),
|
||||
appInstance: window.getAppInstance(),
|
||||
};
|
||||
|
||||
const ipc = ipcRenderer;
|
||||
const localeMessages = ipc.sendSync('locale-data');
|
||||
|
||||
window.updateZoomFactor = () => {
|
||||
const zoomFactor = window.getSettingValue('zoom-factor-setting') || 100;
|
||||
window.setZoomFactor(zoomFactor / 100);
|
||||
};
|
||||
|
||||
window.setZoomFactor = number => {
|
||||
webFrame.setZoomFactor(number);
|
||||
};
|
||||
|
||||
// Set the password for the database
|
||||
window.setPassword = async (passPhrase: string, oldPhrase: string) =>
|
||||
new Promise((resolve, reject) => {
|
||||
ipc.once('set-password-response', (_event, error) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
return;
|
||||
}
|
||||
resolve(undefined);
|
||||
return;
|
||||
});
|
||||
ipc.send('set-password', passPhrase, oldPhrase);
|
||||
});
|
||||
|
||||
window.setStartInTray = async startInTray =>
|
||||
new Promise((resolve, reject) => {
|
||||
ipc.once('start-in-tray-on-start-response', (_event, error) => {
|
||||
if (error) {
|
||||
reject(error);
|
||||
return;
|
||||
}
|
||||
resolve();
|
||||
return;
|
||||
});
|
||||
ipc.send('start-in-tray-on-start', startInTray);
|
||||
});
|
||||
|
||||
window.getStartInTray = async () => {
|
||||
return new Promise(resolve => {
|
||||
ipc.once('get-start-in-tray-response', (_event, value) => {
|
||||
resolve(value);
|
||||
});
|
||||
ipc.send('get-start-in-tray');
|
||||
});
|
||||
};
|
||||
|
||||
window._ = require('lodash');
|
||||
|
||||
// We never do these in our code, so we'll prevent it everywhere
|
||||
window.open = () => null;
|
||||
// eslint-disable-next-line no-eval, no-multi-assign
|
||||
window.eval = global.eval = () => null;
|
||||
|
||||
window.drawAttention = () => {
|
||||
// window.log.debug('draw attention');
|
||||
ipc.send('draw-attention');
|
||||
};
|
||||
window.showWindow = () => {
|
||||
window.log.info('show window');
|
||||
ipc.send('show-window');
|
||||
};
|
||||
|
||||
window.setAutoHideMenuBar = autoHide => {
|
||||
ipc.send('set-auto-hide-menu-bar', autoHide);
|
||||
};
|
||||
window.setMenuBarVisibility = visibility => {
|
||||
ipc.send('set-menu-bar-visibility', visibility);
|
||||
};
|
||||
|
||||
window.restart = () => {
|
||||
window.log.info('restart');
|
||||
ipc.send('restart');
|
||||
};
|
||||
|
||||
window.closeAbout = () => {
|
||||
ipc.send('close-about');
|
||||
};
|
||||
window.readyForUpdates = () => {
|
||||
ipc.send('ready-for-updates');
|
||||
};
|
||||
|
||||
ipc.on('get-theme-setting', () => {
|
||||
const theme = window.Events.getThemeSetting();
|
||||
ipc.send('get-success-theme-setting', theme);
|
||||
});
|
||||
|
||||
window.getSettingValue = (settingID, comparisonValue = null) => {
|
||||
// Comparison value allows you to pull boolean values from any type.
|
||||
// Eg. window.getSettingValue('theme', 'light')
|
||||
// returns 'false' when the value is 'dark'.
|
||||
|
||||
// We need to get specific settings from the main process
|
||||
if (settingID === 'media-permissions') {
|
||||
return window.getMediaPermissions();
|
||||
} else if (settingID === 'call-media-permissions') {
|
||||
return window.getCallMediaPermissions();
|
||||
} else if (settingID === 'auto-update') {
|
||||
return window.getAutoUpdateEnabled();
|
||||
}
|
||||
|
||||
const settingVal = Storage.get(settingID);
|
||||
return comparisonValue ? !!settingVal === comparisonValue : settingVal;
|
||||
};
|
||||
|
||||
window.setSettingValue = async (settingID, value) => {
|
||||
// For auto updating we need to pass the value to the main process
|
||||
if (settingID === 'auto-update') {
|
||||
window.setAutoUpdateEnabled(value);
|
||||
return;
|
||||
}
|
||||
|
||||
await Storage.put(settingID, value);
|
||||
};
|
||||
|
||||
window.getMediaPermissions = () => ipc.sendSync('get-media-permissions');
|
||||
window.setMediaPermissions = value => {
|
||||
ipc.send('set-media-permissions', !!value);
|
||||
};
|
||||
|
||||
window.getCallMediaPermissions = () => ipc.sendSync('get-call-media-permissions');
|
||||
window.setCallMediaPermissions = value => {
|
||||
ipc.send('set-call-media-permissions', !!value);
|
||||
};
|
||||
|
||||
window.askForMediaAccess = () => {
|
||||
ipc.send('media-access');
|
||||
};
|
||||
|
||||
// Auto update setting
|
||||
window.getAutoUpdateEnabled = () => ipc.sendSync('get-auto-update-setting');
|
||||
window.setAutoUpdateEnabled = value => {
|
||||
ipc.send('set-auto-update-setting', !!value);
|
||||
};
|
||||
|
||||
ipc.on('get-ready-for-shutdown', async () => {
|
||||
const { shutdown } = window.Events || {};
|
||||
if (!shutdown) {
|
||||
window.log.error('preload shutdown handler: shutdown method not found');
|
||||
ipc.send('now-ready-for-shutdown');
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
await shutdown();
|
||||
ipc.send('now-ready-for-shutdown');
|
||||
} catch (error) {
|
||||
ipc.send('now-ready-for-shutdown', error && error.stack ? error.stack : error);
|
||||
}
|
||||
});
|
||||
|
||||
// We pull these dependencies in now, from here, because they have Node.js dependencies
|
||||
|
||||
// tslint:disable-next-line: no-import-side-effect
|
||||
import './ts/util/logging'; // ok
|
||||
|
||||
if (config.proxyUrl) {
|
||||
window.log.info('Using provided proxy url');
|
||||
}
|
||||
window.nodeSetImmediate = setImmediate;
|
||||
|
||||
import * as data from './ts/data/dataInit';
|
||||
import { setupi18n } from './ts/util/i18n';
|
||||
console.warn('================ initData', data);
|
||||
window.Signal = initData();
|
||||
|
||||
import { WorkerInterface } from './ts/node/util_worker_interface';
|
||||
// A Worker with a 3 minute timeout
|
||||
|
||||
const utilWorkerPath = path.join(app.getAppPath(), 'js', 'util_worker.js');
|
||||
const utilWorker = new WorkerInterface(utilWorkerPath, 3 * 60 * 1000);
|
||||
|
||||
window.callWorker = (fnName, ...args) => utilWorker.callWorker(fnName, ...args);
|
||||
// Linux seems to periodically let the event loop stop, so this is a global workaround
|
||||
setInterval(() => {
|
||||
// tslint:disable-next-line: no-empty
|
||||
window.nodeSetImmediate(() => {});
|
||||
}, 1000);
|
||||
|
||||
window.React = require('react');
|
||||
window.ReactDOM = require('react-dom');
|
||||
|
||||
window.clipboard = clipboard;
|
||||
|
||||
window.getSeedNodeList = () => [
|
||||
{
|
||||
url: 'https://storage.seed1.loki.network:4433/',
|
||||
},
|
||||
{
|
||||
url: 'https://storage.seed3.loki.network:4433/',
|
||||
},
|
||||
{
|
||||
url: 'https://public.loki.foundation:4433/',
|
||||
},
|
||||
];
|
||||
|
||||
const { locale: localFromEnv } = config;
|
||||
window.i18n = setupi18n(localFromEnv as string, localeMessages);
|
||||
|
||||
window.addEventListener('contextmenu', e => {
|
||||
const editable = (e?.target as any).closest('textarea, input, [contenteditable="true"]');
|
||||
const link = (e?.target as any).closest('a');
|
||||
const selection = Boolean(window?.getSelection()?.toString());
|
||||
if (!editable && !selection && !link) {
|
||||
e.preventDefault();
|
||||
}
|
||||
});
|
||||
|
||||
// Blocking
|
@ -1,167 +1,167 @@
|
||||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
const esbuild = require('esbuild');
|
||||
const path = require('path');
|
||||
const glob = require('glob');
|
||||
|
||||
const ROOT_DIR = path.join(__dirname, '..');
|
||||
const DIST_DIR = path.join(ROOT_DIR, 'dist');
|
||||
|
||||
const watch = process.argv.some(argv => argv === '-w' || argv === '--watch');
|
||||
const isProd = process.argv.some(argv => argv === '-prod' || argv === '--prod');
|
||||
|
||||
const nodeDefaults = {
|
||||
platform: 'node',
|
||||
target: 'node16',
|
||||
sourcemap: isProd ? false : 'inline',
|
||||
// Otherwise React components get renamed
|
||||
// See: https://github.com/evanw/esbuild/issues/1147
|
||||
keepNames: true,
|
||||
logLevel: 'info',
|
||||
watch,
|
||||
};
|
||||
|
||||
const defaultBundle = {
|
||||
...nodeDefaults,
|
||||
// define: {
|
||||
// 'process.env.NODE_ENV': isProd ? '"production"' : '"development"',
|
||||
// },
|
||||
bundle: true,
|
||||
external: [
|
||||
// Native libraries
|
||||
// 'better-sqlite3',
|
||||
'electron',
|
||||
// 'sass',
|
||||
// 'bytebuffer',
|
||||
// 'lodash',
|
||||
// 'react',
|
||||
// 'react-dom',
|
||||
// Things that don't bundle well
|
||||
// 'backbone',
|
||||
'got',
|
||||
// 'jquery',
|
||||
'node-fetch',
|
||||
// 'proxy-agent',
|
||||
|
||||
'ip2country',
|
||||
// 'react-redux',
|
||||
// 'react-qr-svg',
|
||||
// 'reselect',
|
||||
// 'redux',
|
||||
// '@reduxjs/toolkit',
|
||||
'styled-components',
|
||||
// 'react-contexify',
|
||||
'filesize',
|
||||
'redux-persist',
|
||||
'redux-promise-middleware',
|
||||
'emoji-mart',
|
||||
'mic-recorder-to-mp3',
|
||||
// 'react-intersection-observer',
|
||||
// 'react-h5-audio-player',
|
||||
'semver',
|
||||
'os',
|
||||
// 'react-toastify',
|
||||
'libsodium-wrappers-sumo',
|
||||
'fs-extra',
|
||||
'blueimp-load-image',
|
||||
'blob-util',
|
||||
// 'redux-logger',
|
||||
'rimraf',
|
||||
'better-sqlite3',
|
||||
'glob',
|
||||
'rc-slider',
|
||||
// 'react-virtualized',
|
||||
'rc-slider',
|
||||
// 'react-draggable',
|
||||
// 'react-mentions',
|
||||
|
||||
// Large libraries
|
||||
// See: https://esbuild.github.io/api/#analyze
|
||||
'moment',
|
||||
],
|
||||
};
|
||||
|
||||
// App, tests, and scripts
|
||||
esbuild.build({
|
||||
...nodeDefaults,
|
||||
format: 'cjs',
|
||||
mainFields: ['browser', 'main'],
|
||||
entryPoints: glob
|
||||
.sync('{app,ts}/**/*.{ts,tsx}', {
|
||||
nodir: true,
|
||||
root: ROOT_DIR,
|
||||
})
|
||||
.filter(file => !file.endsWith('.d.ts')),
|
||||
outdir: path.join(DIST_DIR),
|
||||
});
|
||||
|
||||
// App, tests, and scripts
|
||||
|
||||
// build main renderer
|
||||
esbuild.build({
|
||||
...defaultBundle,
|
||||
format: 'cjs',
|
||||
platform: 'node',
|
||||
mainFields: ['browser', 'main', 'module'],
|
||||
inject: [path.join(ROOT_DIR, 'node_modules', 'jquery', 'dist', 'jquery.min.js')],
|
||||
entryPoints: ['./ts/mains/main_renderer.ts'],
|
||||
outfile: path.join(DIST_DIR, 'electron_renderer.js'),
|
||||
});
|
||||
|
||||
// build main_node
|
||||
esbuild.build({
|
||||
...defaultBundle,
|
||||
format: 'cjs',
|
||||
mainFields: ['main'],
|
||||
entryPoints: ['./ts/mains/main_node.ts'],
|
||||
outfile: path.join(DIST_DIR, 'electron_main.js'),
|
||||
});
|
||||
|
||||
// Preload bundle
|
||||
// eslint-disable-next-line more/no-then
|
||||
esbuild.buildSync({
|
||||
...defaultBundle,
|
||||
format: 'cjs',
|
||||
entryPoints: ['preload.ts'],
|
||||
outdir: path.join(DIST_DIR),
|
||||
});
|
||||
esbuild.buildSync({
|
||||
...defaultBundle,
|
||||
entryPoints: [path.join(ROOT_DIR, 'dist', 'preload.js')],
|
||||
inject: [path.join(ROOT_DIR, 'libtextsecure', 'libsignal-protocol.js')],
|
||||
outfile: path.join(DIST_DIR, 'preload.bundled.js'),
|
||||
});
|
||||
|
||||
// HEIC worker
|
||||
// // eslint-disable-next-line import/no-extraneous-dependencies
|
||||
// const esbuild = require('esbuild');
|
||||
// const path = require('path');
|
||||
// const glob = require('glob');
|
||||
|
||||
// const ROOT_DIR = path.join(__dirname, '..');
|
||||
// const DIST_DIR = path.join(ROOT_DIR, 'dist');
|
||||
|
||||
// const watch = process.argv.some(argv => argv === '-w' || argv === '--watch');
|
||||
// const isProd = process.argv.some(argv => argv === '-prod' || argv === '--prod');
|
||||
|
||||
// const nodeDefaults = {
|
||||
// platform: 'node',
|
||||
// target: 'node16',
|
||||
// sourcemap: isProd ? false : 'inline',
|
||||
// // Otherwise React components get renamed
|
||||
// // See: https://github.com/evanw/esbuild/issues/1147
|
||||
// keepNames: true,
|
||||
// logLevel: 'info',
|
||||
// watch,
|
||||
// };
|
||||
|
||||
// const defaultBundle = {
|
||||
// ...nodeDefaults,
|
||||
// // define: {
|
||||
// // 'process.env.NODE_ENV': isProd ? '"production"' : '"development"',
|
||||
// // },
|
||||
// bundle: true,
|
||||
// external: [
|
||||
// // Native libraries
|
||||
// // 'better-sqlite3',
|
||||
// 'electron',
|
||||
// // 'sass',
|
||||
// // 'bytebuffer',
|
||||
// // 'lodash',
|
||||
// // 'react',
|
||||
// // 'react-dom',
|
||||
// // Things that don't bundle well
|
||||
// // 'backbone',
|
||||
// 'got',
|
||||
// // 'jquery',
|
||||
// 'node-fetch',
|
||||
// // 'proxy-agent',
|
||||
|
||||
// 'ip2country',
|
||||
// // 'react-redux',
|
||||
// // 'react-qr-svg',
|
||||
// // 'reselect',
|
||||
// // 'redux',
|
||||
// // '@reduxjs/toolkit',
|
||||
// 'styled-components',
|
||||
// // 'react-contexify',
|
||||
// 'filesize',
|
||||
// 'redux-persist',
|
||||
// 'redux-promise-middleware',
|
||||
// 'emoji-mart',
|
||||
// 'mic-recorder-to-mp3',
|
||||
// // 'react-intersection-observer',
|
||||
// // 'react-h5-audio-player',
|
||||
// 'semver',
|
||||
// 'os',
|
||||
// // 'react-toastify',
|
||||
// 'libsodium-wrappers-sumo',
|
||||
// 'fs-extra',
|
||||
// 'blueimp-load-image',
|
||||
// 'blob-util',
|
||||
// // 'redux-logger',
|
||||
// 'rimraf',
|
||||
// 'better-sqlite3',
|
||||
// 'glob',
|
||||
// 'rc-slider',
|
||||
// // 'react-virtualized',
|
||||
// 'rc-slider',
|
||||
// // 'react-draggable',
|
||||
// // 'react-mentions',
|
||||
|
||||
// // Large libraries
|
||||
// // See: https://esbuild.github.io/api/#analyze
|
||||
// 'moment',
|
||||
// ],
|
||||
// };
|
||||
|
||||
// // App, tests, and scripts
|
||||
// esbuild.build({
|
||||
// ...bundleDefaults,
|
||||
// entryPoints: [path.join(ROOT_DIR, 'ts', 'workers', 'heicConverterWorker.ts')],
|
||||
// outfile: path.join(DIST_DIR, 'ts', 'workers', 'heicConverter.bundle.js'),
|
||||
// ...nodeDefaults,
|
||||
// format: 'cjs',
|
||||
// mainFields: ['browser', 'main'],
|
||||
// entryPoints: glob
|
||||
// .sync('{app,ts}/**/*.{ts,tsx}', {
|
||||
// nodir: true,
|
||||
// root: ROOT_DIR,
|
||||
// })
|
||||
// .filter(file => !file.endsWith('.d.ts')),
|
||||
// outdir: path.join(DIST_DIR),
|
||||
// });
|
||||
|
||||
// // SQL worker
|
||||
// const libDir = path.join('..', '..', 'node_modules', 'better-sqlite3');
|
||||
// const bindingFile = path.join(libDir, 'build', 'Release', 'better_sqlite3.node');
|
||||
// // App, tests, and scripts
|
||||
|
||||
// // build main renderer
|
||||
// esbuild.build({
|
||||
// ...nodeDefaults,
|
||||
// bundle: true,
|
||||
// ...defaultBundle,
|
||||
// format: 'cjs',
|
||||
// platform: 'node',
|
||||
// mainFields: ['browser', 'main', 'module'],
|
||||
// inject: [path.join(ROOT_DIR, 'node_modules', 'jquery', 'dist', 'jquery.min.js')],
|
||||
// entryPoints: ['./ts/mains/main_renderer.ts'],
|
||||
// outfile: path.join(DIST_DIR, 'electron_renderer.js'),
|
||||
// });
|
||||
|
||||
// plugins: [
|
||||
// {
|
||||
// name: 'bindings',
|
||||
// setup(build) {
|
||||
// build.onResolve({ filter: /^bindings$/ }, () => ({
|
||||
// path: path.join(ROOT_DIR, 'ts', 'sql', 'mainWorkerBindings.ts'),
|
||||
// }));
|
||||
|
||||
// build.onResolve({ filter: /^better_sqlite3\.node$/ }, () => ({
|
||||
// path: bindingFile,
|
||||
// external: true,
|
||||
// }));
|
||||
// },
|
||||
// },
|
||||
// ],
|
||||
// // build main_node
|
||||
// esbuild.build({
|
||||
// ...defaultBundle,
|
||||
// format: 'cjs',
|
||||
// mainFields: ['main'],
|
||||
// entryPoints: ['./ts/mains/main_node.ts'],
|
||||
// outfile: path.join(DIST_DIR, 'electron_main.js'),
|
||||
// });
|
||||
|
||||
// entryPoints: [path.join(ROOT_DIR, 'ts', 'sql', 'mainWorker.ts')],
|
||||
// outfile: path.join(DIST_DIR, 'ts', 'sql', 'mainWorker.bundle.js'),
|
||||
// // Preload bundle
|
||||
// // eslint-disable-next-line more/no-then
|
||||
// esbuild.buildSync({
|
||||
// ...defaultBundle,
|
||||
// format: 'cjs',
|
||||
// entryPoints: ['preload.ts'],
|
||||
// outdir: path.join(DIST_DIR),
|
||||
// });
|
||||
// esbuild.buildSync({
|
||||
// ...defaultBundle,
|
||||
// entryPoints: [path.join(ROOT_DIR, 'dist', 'preload.js')],
|
||||
// inject: [path.join(ROOT_DIR, 'libtextsecure', 'libsignal-protocol.js')],
|
||||
// outfile: path.join(DIST_DIR, 'preload.bundled.js'),
|
||||
// });
|
||||
|
||||
// // HEIC worker
|
||||
// // esbuild.build({
|
||||
// // ...bundleDefaults,
|
||||
// // entryPoints: [path.join(ROOT_DIR, 'ts', 'workers', 'heicConverterWorker.ts')],
|
||||
// // outfile: path.join(DIST_DIR, 'ts', 'workers', 'heicConverter.bundle.js'),
|
||||
// // });
|
||||
|
||||
// // // SQL worker
|
||||
// // const libDir = path.join('..', '..', 'node_modules', 'better-sqlite3');
|
||||
// // const bindingFile = path.join(libDir, 'build', 'Release', 'better_sqlite3.node');
|
||||
|
||||
// // esbuild.build({
|
||||
// // ...nodeDefaults,
|
||||
// // bundle: true,
|
||||
|
||||
// // plugins: [
|
||||
// // {
|
||||
// // name: 'bindings',
|
||||
// // setup(build) {
|
||||
// // build.onResolve({ filter: /^bindings$/ }, () => ({
|
||||
// // path: path.join(ROOT_DIR, 'ts', 'sql', 'mainWorkerBindings.ts'),
|
||||
// // }));
|
||||
|
||||
// // build.onResolve({ filter: /^better_sqlite3\.node$/ }, () => ({
|
||||
// // path: bindingFile,
|
||||
// // external: true,
|
||||
// // }));
|
||||
// // },
|
||||
// // },
|
||||
// // ],
|
||||
|
||||
// // entryPoints: [path.join(ROOT_DIR, 'ts', 'sql', 'mainWorker.ts')],
|
||||
// // outfile: path.join(DIST_DIR, 'ts', 'sql', 'mainWorker.bundle.js'),
|
||||
// // });
|
||||
|
@ -0,0 +1,6 @@
|
||||
// {
|
||||
// "extends": "../tsconfig.json",
|
||||
// "compilerOptions": {
|
||||
// "module": "esnext"
|
||||
// }
|
||||
// }
|
@ -1,152 +0,0 @@
|
||||
/* eslint-disable class-methods-use-this */
|
||||
const path = require('path');
|
||||
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
|
||||
const optimization = {
|
||||
nodeEnv: false,
|
||||
removeAvailableModules: true,
|
||||
removeEmptyChunks: true,
|
||||
providedExports: true,
|
||||
minimize: false,
|
||||
// minimizer: [new TerserPlugin({ parallel: true })],
|
||||
// splitChunks: true,
|
||||
};
|
||||
|
||||
const EXTERNAL_MODULE = new Set([
|
||||
'backbone',
|
||||
'better-sqlite3',
|
||||
'fsevents',
|
||||
'got',
|
||||
'jquery',
|
||||
'node-fetch',
|
||||
]);
|
||||
|
||||
module.exports = [
|
||||
{
|
||||
// bundling mode
|
||||
|
||||
mode: 'development', // mode: 'production',
|
||||
devtool: false,
|
||||
|
||||
optimization,
|
||||
|
||||
// entry files
|
||||
resolve: {
|
||||
extensions: ['.ts', '.tsx', '.js', '.json'],
|
||||
},
|
||||
entry: './ts/mains/main_node.ts',
|
||||
target: 'electron-main',
|
||||
module: {
|
||||
// loaders
|
||||
|
||||
rules: [
|
||||
{
|
||||
test: /\.js$/,
|
||||
loader: `node-bindings-loader`,
|
||||
},
|
||||
{
|
||||
test: /\.node$/,
|
||||
loader: `node-loader`,
|
||||
},
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
include: /ts/,
|
||||
use: [
|
||||
{
|
||||
loader: 'ts-loader',
|
||||
options: {
|
||||
transpileOnly: true,
|
||||
experimentalWatchApi: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
exclude: /node_modules/,
|
||||
},
|
||||
],
|
||||
},
|
||||
// output bundles (location)
|
||||
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'dist'),
|
||||
filename: 'electron_main.js',
|
||||
},
|
||||
},
|
||||
{
|
||||
entry: './preload.ts',
|
||||
mode: 'development',
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'dist'),
|
||||
filename: 'preload.bundled.js',
|
||||
},
|
||||
target: 'electron-main',
|
||||
resolve: {
|
||||
extensions: ['.ts', '.tsx', '.js', '.json'],
|
||||
mainFields: ['browser', 'main'],
|
||||
},
|
||||
externals: [
|
||||
({ request = '' }, callback) => {
|
||||
if (EXTERNAL_MODULE.has(request)) {
|
||||
return callback(undefined, `commonjs2 ${request}`);
|
||||
}
|
||||
|
||||
callback();
|
||||
},
|
||||
],
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
include: [path.resolve(__dirname), path.resolve(__dirname, 'js')],
|
||||
exclude: /node_modules/,
|
||||
|
||||
use: [
|
||||
{
|
||||
loader: 'ts-loader',
|
||||
options: { transpileOnly: true },
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
mode: 'development',
|
||||
entry: './ts/mains/main_renderer.ts',
|
||||
target: 'electron-renderer',
|
||||
devtool: false,
|
||||
resolve: {
|
||||
extensions: ['.ts', '.tsx', '.js', '.json'],
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
include: [path.resolve(__dirname, 'ts'), path.resolve(__dirname, 'js')],
|
||||
exclude: /node_modules/,
|
||||
|
||||
use: [
|
||||
{
|
||||
loader: 'ts-loader',
|
||||
options: {
|
||||
transpileOnly: true,
|
||||
experimentalWatchApi: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
optimization,
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'dist', 'js'),
|
||||
filename: 'electron_renderer.js',
|
||||
},
|
||||
plugins: [
|
||||
new HtmlWebpackPlugin({
|
||||
template: './background.html',
|
||||
}),
|
||||
],
|
||||
},
|
||||
];
|
@ -0,0 +1,153 @@
|
||||
/* eslint-disable class-methods-use-this */
|
||||
|
||||
/*const path = require('path');
|
||||
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
|
||||
const optimization = {
|
||||
nodeEnv: false,
|
||||
removeAvailableModules: true,
|
||||
removeEmptyChunks: true,
|
||||
providedExports: true,
|
||||
minimize: false,
|
||||
// minimizer: [new TerserPlugin({ parallel: true })],
|
||||
// splitChunks: true,
|
||||
};
|
||||
|
||||
const EXTERNAL_MODULE = new Set([
|
||||
'backbone',
|
||||
'better-sqlite3',
|
||||
'fsevents',
|
||||
'got',
|
||||
'jquery',
|
||||
'node-fetch',
|
||||
]);
|
||||
|
||||
module.exports = [
|
||||
{
|
||||
// bundling mode
|
||||
|
||||
mode: 'development', // mode: 'production',
|
||||
devtool: false,
|
||||
|
||||
optimization,
|
||||
|
||||
// entry files
|
||||
resolve: {
|
||||
extensions: ['.ts', '.tsx', '.js', '.json'],
|
||||
},
|
||||
entry: './ts/mains/main_node.ts',
|
||||
target: 'electron-main',
|
||||
module: {
|
||||
// loaders
|
||||
|
||||
rules: [
|
||||
{
|
||||
test: /\.js$/,
|
||||
loader: `node-bindings-loader`,
|
||||
},
|
||||
{
|
||||
test: /\.node$/,
|
||||
loader: `node-loader`,
|
||||
},
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
include: /ts/,
|
||||
use: [
|
||||
{
|
||||
loader: 'ts-loader',
|
||||
options: {
|
||||
transpileOnly: true,
|
||||
experimentalWatchApi: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
exclude: /node_modules/,
|
||||
},
|
||||
],
|
||||
},
|
||||
// output bundles (location)
|
||||
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'dist'),
|
||||
filename: 'electron_main.js',
|
||||
},
|
||||
},
|
||||
// {
|
||||
// entry: './preload.ts',
|
||||
// mode: 'development',
|
||||
// output: {
|
||||
// path: path.resolve(__dirname, 'dist'),
|
||||
// filename: 'preload.bundled.js',
|
||||
// },
|
||||
// target: 'electron-main',
|
||||
// resolve: {
|
||||
// extensions: ['.ts', '.tsx', '.js', '.json'],
|
||||
// mainFields: ['browser', 'main'],
|
||||
// },
|
||||
// externals: [
|
||||
// ({ request = '' }, callback) => {
|
||||
// if (EXTERNAL_MODULE.has(request)) {
|
||||
// return callback(undefined, `commonjs2 ${request}`);
|
||||
// }
|
||||
|
||||
// callback();
|
||||
// },
|
||||
// ],
|
||||
// module: {
|
||||
// rules: [
|
||||
// {
|
||||
// test: /\.tsx?$/,
|
||||
// include: [path.resolve(__dirname), path.resolve(__dirname, 'js')],
|
||||
// exclude: /node_modules/,
|
||||
|
||||
// use: [
|
||||
// {
|
||||
// loader: 'ts-loader',
|
||||
// options: { transpileOnly: true },
|
||||
// },
|
||||
// ],
|
||||
// },
|
||||
// ],
|
||||
// },
|
||||
// },
|
||||
|
||||
// {
|
||||
// mode: 'development',
|
||||
// entry: './ts/mains/main_renderer.ts',
|
||||
// target: 'electron-renderer',
|
||||
// devtool: false,
|
||||
// resolve: {
|
||||
// extensions: ['.ts', '.tsx', '.js', '.json'],
|
||||
// },
|
||||
// module: {
|
||||
// rules: [
|
||||
// {
|
||||
// test: /\.tsx?$/,
|
||||
// include: [path.resolve(__dirname, 'ts'), path.resolve(__dirname, 'js')],
|
||||
// exclude: /node_modules/,
|
||||
|
||||
// use: [
|
||||
// {
|
||||
// loader: 'ts-loader',
|
||||
// options: {
|
||||
// transpileOnly: true,
|
||||
// experimentalWatchApi: true,
|
||||
// },
|
||||
// },
|
||||
// ],
|
||||
// },
|
||||
// ],
|
||||
// },
|
||||
// optimization,
|
||||
// output: {
|
||||
// path: path.resolve(__dirname, 'dist', 'js'),
|
||||
// filename: 'electron_renderer.js',
|
||||
// },
|
||||
// plugins: [
|
||||
// new HtmlWebpackPlugin({
|
||||
// template: './background.html',
|
||||
// }),
|
||||
// ],
|
||||
// },
|
||||
];
|
Loading…
Reference in New Issue