feat: add electron wrapper

release/desktop
moonrailgun 3 years ago
parent dcf6d39cde
commit a40e22cfe1

89
desktop/.gitignore vendored

@ -0,0 +1,89 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
.DS_Store
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# TypeScript v1 declaration files
typings/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
.env.test
# parcel-bundler cache (https://parceljs.org/)
.cache
# next.js build output
.next
# nuxt.js build output
.nuxt
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# Webpack
.webpack/
# Electron-Forge
out/

@ -0,0 +1,2 @@
# https://npmmirror.com/
registry = https://registry.npmmirror.com

Binary file not shown.

@ -0,0 +1,45 @@
const {
utils: { fromBuildIdentifier },
} = require('@electron-forge/core');
const path = require('path');
// Reference: https://www.electronforge.io/configuration
module.exports = {
// packagerConfig: { ... },
// electronRebuildConfig: { ... },
// makers: [ ... ],
// publishers: [ ... ],
// plugins: [ ... ],
// hooks: { ... },
buildIdentifier: 'com.tailchat.desktop',
buildIdentifier: process.env.IS_BETA ? 'beta' : 'prod',
// https://electron.github.io/electron-packager/main/interfaces/electronpackager.options.html
packagerConfig: {
appBundleId: fromBuildIdentifier({
beta: 'com.tailchat.desktop',
prod: 'com.tailchat.beta.desktop',
}),
icon: path.resolve(__dirname, './build/logo@512'),
},
makers: [
{
name: '@electron-forge/maker-squirrel',
config: {
name: 'desktop',
},
},
{
name: '@electron-forge/maker-zip',
platforms: ['darwin'],
},
{
name: '@electron-forge/maker-deb',
config: {},
},
{
name: '@electron-forge/maker-rpm',
config: {},
},
],
};

@ -0,0 +1,32 @@
{
"name": "tailchat-desktop",
"productName": "tailchat-desktop",
"version": "1.0.0",
"description": "Tailchat application desktop",
"main": "dist/index.js",
"scripts": {
"start": "tsc && electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts ."
},
"keywords": [],
"author": {
"name": "moonrailgun",
"email": "moonrailgun@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.63",
"@electron-forge/maker-deb": "^6.0.0-beta.63",
"@electron-forge/maker-rpm": "^6.0.0-beta.63",
"@electron-forge/maker-squirrel": "^6.0.0-beta.63",
"@electron-forge/maker-zip": "^6.0.0-beta.63",
"electron": "17.0.1",
"typescript": "~4.5.4"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0"
}
}

@ -0,0 +1,61 @@
import { app, BrowserWindow } from 'electron';
import path from 'path';
const isDev = !app.isPackaged;
const webUrl = isDev
? 'http://localhost:11011'
: 'https://nightly.paw.msgbyte.com';
// Handle creating/removing shortcuts on Windows when installing/uninstalling.
if (require('electron-squirrel-startup')) {
// eslint-disable-line global-require
app.quit();
}
const createWindow = (): void => {
// Create the browser window.
const mainWindow = new BrowserWindow({
height: 640,
width: 960,
minHeight: 640,
minWidth: 960,
center: true,
icon: path.resolve(__dirname, '../assets/logo@192.png'),
webPreferences: {
nodeIntegration: false,
sandbox: true,
},
});
mainWindow.loadURL(webUrl);
if (isDev) {
// Open the DevTools.
mainWindow.webContents.openDevTools();
}
};
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow);
// Quit when all windows are closed, except on macOS. There, it's common
// for applications and their menu bar to stay active until the user quits
// explicitly with Cmd + Q.
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and import them here.

@ -0,0 +1,17 @@
{
"compilerOptions": {
"allowJs": true,
"module": "commonjs",
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".",
"outDir": "dist",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"paths": {
"*": ["node_modules/*"]
}
},
"include": ["src/**/*"]
}

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save