x Fixed browser settings dialog (placeholder) so that it actually works and looks correct

This commit is contained in:
Greyhoof 2023-09-05 16:29:37 +02:00
parent 683b0701b5
commit d173e5863e
6 changed files with 133 additions and 79 deletions

View File

@ -189,6 +189,11 @@ Current log location: {1}`,
'settings.beta': 'Opt-in to test unstable prerelease updates', 'settings.beta': 'Opt-in to test unstable prerelease updates',
'settings.hwAcceleration': 'Enable hardware acceleration (requires restart)', 'settings.hwAcceleration': 'Enable hardware acceleration (requires restart)',
'settings.bbCodeBar': 'Show BBCode formatting bar', 'settings.bbCodeBar': 'Show BBCode formatting bar',
'settings.browserOption': 'Set command for opening clicked links',
'settings.browserOptionTitle': 'Browser Path',
'settings.browserOptionPath': 'Path to browser executable',
'settings.browserOptionArguments': 'Arguments to pass to executable',
'settings.browserOptionArgumentsHelp': 'Arguments are separated by spaces. Use %s to insert the URL.',
'fixLogs.action': 'Fix corrupted logs', 'fixLogs.action': 'Fix corrupted logs',
'fixLogs.text': `There are a few reason log files can become corrupted - log files from old versions with bugs that have since been fixed or incomplete file operations caused by computer crashes are the most common. 'fixLogs.text': `There are a few reason log files can become corrupted - log files from old versions with bugs that have since been fixed or incomplete file operations caused by computer crashes are the most common.
If one of your log files is corrupted, you may get an "Unknown Type" error when you log in or when you open a specific tab. You may also experience other issues. If one of your log files is corrupted, you may get an "Unknown Type" error when you log in or when you open a specific tab. You may also experience other issues.

View File

@ -1,8 +1,8 @@
<template> <template>
<div style="display: flex;flex-direction:column;height:100%" :class="getThemeClass()" @auxclick.prevent> <div style="display: flex;flex-direction:column;height:100%" :class="getThemeClass()" @auxclick.prevent>
<div v-html="styling"></div> <div v-html="styling"></div>
<div style="display:flex;align-items:stretch;border-bottom-width:1px" class="border-bottom" id="window-tabs"> <div style="display:flex;align-items:stretch;border-bottom-width:1px" class="border-bottom" id="window-browser-settings">
<h4 style="padding:2px 0">F-Chat</h4> <h4 style="padding:2px 0">{{l('settings.browserOptionTitle')}}</h4>
<div style="flex:1;display:flex;justify-content:flex-end;-webkit-app-region:drag" class="btn-group" <div style="flex:1;display:flex;justify-content:flex-end;-webkit-app-region:drag" class="btn-group"
id="windowButtons"> id="windowButtons">
<i class="far fa-window-minimize btn btn-light" @click.stop="minimize()"></i> <i class="far fa-window-minimize btn btn-light" @click.stop="minimize()"></i>
@ -12,77 +12,106 @@
</span> </span>
</div> </div>
</div> </div>
<div style="display:flex; flex-direction: column; height:100%; justify-content: center">
<div class="card bg-light" style="width:100%;margin:0 auto">
<div class="card-body">
<h4 class="card-title">Hello</h4>
</div>
</div>
</div>
</div> </div>
</template> </template>
<script lang="ts"> <script lang="ts">
import {Component} from '@f-list/vue-ts'; import {Component, Hook} from '@f-list/vue-ts';
import * as remote from '@electron/remote'; import * as remote from '@electron/remote';
import Vue from 'vue'; import Vue from 'vue';
import l from '../chat/localize'; import l from '../chat/localize';
import {GeneralSettings} from './common'; import {GeneralSettings} from './common';
import fs from "fs"; import fs from "fs";
import path from "path"; import path from "path";
import Modal from "../components/Modal.vue";
import tabs from "../components/tabs";
import modal from "../components/Modal.vue";
import core from "../chat/core";
import BBCodeParser from "../chat/bbcode";
import logs from "../chat/Logs.vue";
import chat from "../chat/ChatView.vue";
const browserWindow = remote.getCurrentWindow(); const browserWindow = remote.getCurrentWindow();
@Component @Component({
export default class BrowserOption extends Vue { components: {chat, logs, modal, tabs, Modal}
settings!: GeneralSettings; })
isMaximized = false; export default class BrowserOption extends Vue {
l = l; settings!: GeneralSettings;
platform = process.platform; isMaximized = false;
hasCompletedUpgrades = false; l = l;
platform = process.platform;
hasCompletedUpgrades = false;
browserPath = '';
browserArgs = '';
get styling(): string { get styling(): string {
try { console.log("HELLO");
return `<style>${fs.readFileSync(path.join(__dirname, `themes/${this.settings.theme}.css`), 'utf8').toString()}</style>`; try {
} catch(e) { return `<style>${fs.readFileSync(path.join(__dirname, `themes/${this.settings.theme}.css`), 'utf8').toString()}</style>`;
if((<Error & {code: string}>e).code === 'ENOENT' && this.settings.theme !== 'default') { } catch (e) {
this.settings.theme = 'default'; if ((<Error & { code: string }>e).code === 'ENOENT' && this.settings.theme !== 'default') {
return this.styling; this.settings.theme = 'default';
} return this.styling;
throw e;
}
} }
throw e;
minimize(): void {
browserWindow.minimize();
}
maximize(): void {
if(browserWindow.isMaximized()) browserWindow.unmaximize();
else browserWindow.maximize();
}
close(): void {
browserWindow.close();
}
getThemeClass() {
// console.log('getThemeClassWindow', this.settings?.risingDisableWindowsHighContrast);
try {
// Hack!
if (process.platform === 'win32') {
if (this.settings?.risingDisableWindowsHighContrast) {
document.querySelector('html')?.classList.add('disableWindowsHighContrast');
} else {
document.querySelector('html')?.classList.remove('disableWindowsHighContrast');
}
}
return {
['platform-' + this.platform]: true,
disableWindowsHighContrast: this.settings?.risingDisableWindowsHighContrast || false
};
} catch (err) {
return {
['platform-' + this.platform]: true
};
}
}
} }
}
minimize(): void {
browserWindow.minimize();
}
maximize(): void {
if (browserWindow.isMaximized()) browserWindow.unmaximize();
else browserWindow.maximize();
}
close(): void {
browserWindow.close();
}
getThemeClass() {
// console.log('getThemeClassWindow', this.settings?.risingDisableWindowsHighContrast);
try {
// Hack!
if (process.platform === 'win32') {
if (this.settings?.risingDisableWindowsHighContrast) {
document.querySelector('html')?.classList.add('disableWindowsHighContrast');
} else {
document.querySelector('html')?.classList.remove('disableWindowsHighContrast');
}
}
return {
['platform-' + this.platform]: true,
disableWindowsHighContrast: this.settings?.risingDisableWindowsHighContrast || false
};
} catch (err) {
return {
['platform-' + this.platform]: true
};
}
}
async load(): Promise<void> {
this.browserPath = this.settings.browserPath;
this.browserArgs = this.settings.browserArgs;
}
async submit(): Promise<void> {
this.settings.browserPath = this.browserPath;
this.settings.browserArgs = this.browserArgs;
}
}
</script> </script>
<style lang="scss"> <style lang="scss">
@ -91,23 +120,37 @@ const browserWindow = remote.getCurrentWindow();
font-size: 14px; font-size: 14px;
} }
.platform-darwin { #window-browser-settings {
#windowButtons .btn, #settings { user-select: none;
display: none; .btn {
border: 0;
border-radius: 0;
padding: 0 18px;
display: flex;
align-items: center;
line-height: 1;
-webkit-app-region: no-drag;
flex-grow: 0;
} }
#window-tabs { .btn-default {
h4 { background: transparent;
margin: 0 15px 0 77px; }
}
.btn, li a { h4 {
padding-top: 6px; margin: 0 10px;
padding-bottom: 6px; user-select: none;
} cursor: default;
align-self: center;
-webkit-app-region: drag;
}
.fa {
line-height: inherit;
} }
} }
.disableWindowsHighContrast, .disableWindowsHighContrast * { .disableWindowsHighContrast, .disableWindowsHighContrast * {
forced-color-adjust: none; forced-color-adjust: none;
} }

View File

@ -7,7 +7,7 @@
<link href="fa.css" rel="stylesheet"> <link href="fa.css" rel="stylesheet">
</head> </head>
<body> <body>
<div id="browser-option"></div> <div id="browserOption"></div>
<script type="text/javascript" src="common.js"></script> <script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="browser_option.js"></script> <script type="text/javascript" src="browser_option.js"></script>
</body> </body>

View File

@ -17,9 +17,8 @@ log.transports.file.maxSize = 5 * 1024 * 1024;
log.info('init.browser_option.vue'); log.info('init.browser_option.vue');
//tslint:disable-next-line:no-unused-expression new BrowserOption({
export default new BrowserOption({ el: '#browserOption',
el: '#browser-option',
data: {settings} data: {settings}
}); });

View File

@ -31,7 +31,8 @@ export class GeneralSettings {
risingCacheExpiryDays = 30; risingCacheExpiryDays = 30;
risingSystemLogLevel: log.LevelOption = 'info'; risingSystemLogLevel: log.LevelOption = 'info';
risingDisableWindowsHighContrast = false; risingDisableWindowsHighContrast = false;
browserCommand = ''; browserPath = '';
browserArgs = '';
} }
// //tslint:disable // //tslint:disable

View File

@ -284,11 +284,12 @@ function showPatchNotes(): void {
electron.shell.openExternal('https://github.com/hearmeneigh/fchat-rising/blob/master/CHANGELOG.md'); electron.shell.openExternal('https://github.com/hearmeneigh/fchat-rising/blob/master/CHANGELOG.md');
} }
function openBrowserSettings(): void { function openBrowserSettings(): electron.BrowserWindow | undefined {
const windowProperties: electron.BrowserWindowConstructorOptions = { const windowProperties: electron.BrowserWindowConstructorOptions = {
center: true, center: true,
show: false, show: false,
icon: process.platform === 'win32' ? winIcon : pngIcon, icon: process.platform === 'win32' ? winIcon : pngIcon,
frame: false,
webPreferences: { webPreferences: {
webviewTag: true, nodeIntegration: true, nodeIntegrationInWorker: true, spellcheck: true, webviewTag: true, nodeIntegration: true, nodeIntegrationInWorker: true, spellcheck: true,
enableRemoteModule: true, contextIsolation: false, partition: 'persist:fchat' enableRemoteModule: true, contextIsolation: false, partition: 'persist:fchat'
@ -296,11 +297,16 @@ function openBrowserSettings(): void {
}; };
const browserWindow = new electron.BrowserWindow(windowProperties); const browserWindow = new electron.BrowserWindow(windowProperties);
browserWindow.removeMenu(); remoteMain.enable(browserWindow.webContents);
browserWindow.loadFile(path.join(__dirname, 'browser_option.html')).then(r => { browserWindow.loadFile(path.join(__dirname, 'browser_option.html'), {
console.log(r); query: { settings: JSON.stringify(settings), import: shouldImportSettings ? 'true' : '' }
});
browserWindow.once('ready-to-show', () => {
browserWindow.show(); browserWindow.show();
}); });
return browserWindow;
} }
@ -550,7 +556,7 @@ function onReady(): void {
} }
}, },
{ {
label: 'Set command for opening clicked links', label: l('settings.browserOption'),
click: () => { click: () => {
openBrowserSettings(); openBrowserSettings();
} }