Minor
This commit is contained in:
parent
56ad463f82
commit
99be1aaedd
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="bbcode-editor" style="display:flex;flex-wrap:wrap;justify-content:flex-end">
|
<div class="bbcode-editor" style="display:flex;flex-wrap:wrap;justify-content:flex-end">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
<a v-show="hasToolbar" tabindex="0" class="btn btn-light bbcode-btn btn-sm" role="button" @click="showToolbar = true" @blur="showToolbar = false" style="border-bottom-left-radius:0;border-bottom-right-radius:0">
|
<a v-show="hasToolbar" tabindex="0" class="btn btn-light bbcode-btn btn-sm" role="button" @click="showToolbar = true" @blur="showToolbar = false" style="border-bottom-left-radius: 0; border-bottom-right-radius: 0">
|
||||||
<i class="fa fa-code"></i>
|
<i class="fa fa-code"></i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -20,20 +20,28 @@
|
||||||
export default class Editor extends Vue {
|
export default class Editor extends Vue {
|
||||||
@Prop
|
@Prop
|
||||||
readonly extras?: EditorButton[];
|
readonly extras?: EditorButton[];
|
||||||
|
|
||||||
@Prop({default: 1000})
|
@Prop({default: 1000})
|
||||||
readonly maxlength!: number;
|
readonly maxlength!: number;
|
||||||
|
|
||||||
@Prop
|
@Prop
|
||||||
readonly classes?: string;
|
readonly classes?: string;
|
||||||
|
|
||||||
@Prop
|
@Prop
|
||||||
readonly value?: string | undefined;
|
readonly value?: string | undefined;
|
||||||
|
|
||||||
@Prop
|
@Prop
|
||||||
readonly disabled?: boolean;
|
readonly disabled?: boolean;
|
||||||
|
|
||||||
@Prop
|
@Prop
|
||||||
readonly placeholder?: string;
|
readonly placeholder?: string;
|
||||||
|
|
||||||
@Prop({default: true})
|
@Prop({default: true})
|
||||||
readonly hasToolbar!: boolean;
|
readonly hasToolbar!: boolean;
|
||||||
|
|
||||||
@Prop({default: false, type: Boolean})
|
@Prop({default: false, type: Boolean})
|
||||||
readonly invalid!: boolean;
|
readonly invalid!: boolean;
|
||||||
|
|
||||||
preview = false;
|
preview = false;
|
||||||
previewWarnings: ReadonlyArray<string> = [];
|
previewWarnings: ReadonlyArray<string> = [];
|
||||||
previewResult = '';
|
previewResult = '';
|
||||||
|
@ -44,8 +52,10 @@
|
||||||
maxHeight!: number;
|
maxHeight!: number;
|
||||||
minHeight!: number;
|
minHeight!: number;
|
||||||
showToolbar = false;
|
showToolbar = false;
|
||||||
|
|
||||||
protected parser!: BBCodeParser;
|
protected parser!: BBCodeParser;
|
||||||
protected defaultButtons = defaultButtons;
|
protected defaultButtons = defaultButtons;
|
||||||
|
|
||||||
private isShiftPressed = false;
|
private isShiftPressed = false;
|
||||||
private undoStack: string[] = [];
|
private undoStack: string[] = [];
|
||||||
private undoIndex = 0;
|
private undoIndex = 0;
|
||||||
|
@ -55,6 +65,7 @@
|
||||||
|
|
||||||
@Hook('created')
|
@Hook('created')
|
||||||
created(): void {
|
created(): void {
|
||||||
|
console.log('EDITOR', 'created');
|
||||||
this.parser = new CoreBBCodeParser();
|
this.parser = new CoreBBCodeParser();
|
||||||
this.resizeListener = () => {
|
this.resizeListener = () => {
|
||||||
const styles = getComputedStyle(this.element);
|
const styles = getComputedStyle(this.element);
|
||||||
|
@ -65,6 +76,7 @@
|
||||||
|
|
||||||
@Hook('mounted')
|
@Hook('mounted')
|
||||||
mounted(): void {
|
mounted(): void {
|
||||||
|
console.log('EDITOR', 'mounted');
|
||||||
this.element = <HTMLTextAreaElement>this.$refs['input'];
|
this.element = <HTMLTextAreaElement>this.$refs['input'];
|
||||||
const styles = getComputedStyle(this.element);
|
const styles = getComputedStyle(this.element);
|
||||||
this.maxHeight = parseInt(styles.maxHeight, 10) || 250;
|
this.maxHeight = parseInt(styles.maxHeight, 10) || 250;
|
||||||
|
@ -91,6 +103,7 @@
|
||||||
|
|
||||||
@Hook('destroyed')
|
@Hook('destroyed')
|
||||||
destroyed(): void {
|
destroyed(): void {
|
||||||
|
console.log('EDITOR', 'destroyed');
|
||||||
window.removeEventListener('resize', this.resizeListener);
|
window.removeEventListener('resize', this.resizeListener);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@
|
||||||
@Hook('mounted')
|
@Hook('mounted')
|
||||||
async mounted(): Promise<void> {
|
async mounted(): Promise<void> {
|
||||||
// top bar devtools
|
// top bar devtools
|
||||||
// browserWindow.webContents.openDevTools();
|
browserWindow.webContents.openDevTools();
|
||||||
|
|
||||||
await this.addTab();
|
await this.addTab();
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ import * as path from 'path';
|
||||||
import * as url from 'url';
|
import * as url from 'url';
|
||||||
import l from '../chat/localize';
|
import l from '../chat/localize';
|
||||||
import {defaultHost, GeneralSettings} from './common';
|
import {defaultHost, GeneralSettings} from './common';
|
||||||
import {ensureDictionary, getAvailableDictionaries} from './dictionaries';
|
import {ensureDictionary, getAvailableDictionaries} from './dgit ictionaries';
|
||||||
import * as windowState from './window_state';
|
import * as windowState from './window_state';
|
||||||
import BrowserWindow = Electron.BrowserWindow;
|
import BrowserWindow = Electron.BrowserWindow;
|
||||||
import MenuItem = Electron.MenuItem;
|
import MenuItem = Electron.MenuItem;
|
||||||
|
@ -126,17 +126,30 @@ function createWindow(): Electron.BrowserWindow | undefined {
|
||||||
...lastState, center: lastState.x === undefined, show: false,
|
...lastState, center: lastState.x === undefined, show: false,
|
||||||
webPreferences: { webviewTag: true, nodeIntegration: true }
|
webPreferences: { webviewTag: true, nodeIntegration: true }
|
||||||
};
|
};
|
||||||
if(process.platform === 'darwin') windowProperties.titleBarStyle = 'hiddenInset';
|
|
||||||
else windowProperties.frame = false;
|
if(process.platform === 'darwin') {
|
||||||
|
// windowProperties.titleBarStyle = 'hiddenInset';
|
||||||
|
windowProperties.frame = true;
|
||||||
|
} else {
|
||||||
|
windowProperties.frame = false;
|
||||||
|
}
|
||||||
|
|
||||||
const window = new electron.BrowserWindow(windowProperties);
|
const window = new electron.BrowserWindow(windowProperties);
|
||||||
windows.push(window);
|
windows.push(window);
|
||||||
|
|
||||||
window.loadURL(url.format({ //tslint:disable-line:no-floating-promises
|
window.loadFile(
|
||||||
pathname: path.join(__dirname, 'window.html'),
|
path.join(__dirname, 'window.html'),
|
||||||
protocol: 'file:',
|
{
|
||||||
slashes: true,
|
query: {settings: JSON.stringify(settings), import: shouldImportSettings ? 'true' : []}
|
||||||
query: {settings: JSON.stringify(settings), import: shouldImportSettings ? 'true' : []}
|
}
|
||||||
}));
|
);
|
||||||
|
|
||||||
|
// window.loadURL(url.format({ //tslint:disable-line:no-floating-promises
|
||||||
|
// pathname: path.join(__dirname, 'window.html'),
|
||||||
|
// protocol: 'file:',
|
||||||
|
// slashes: true,
|
||||||
|
// query: {settings: JSON.stringify(settings), import: shouldImportSettings ? 'true' : []}
|
||||||
|
// }));
|
||||||
|
|
||||||
setUpWebContents(window.webContents);
|
setUpWebContents(window.webContents);
|
||||||
|
|
||||||
|
|
|
@ -38,13 +38,13 @@
|
||||||
const id = parseInt(this.infotag.id as any, 10);
|
const id = parseInt(this.infotag.id as any, 10);
|
||||||
|
|
||||||
if ((core.state.settings.risingAdScore) && (this.characterMatch)) {
|
if ((core.state.settings.risingAdScore) && (this.characterMatch)) {
|
||||||
console.log('MATCH');
|
// console.log('MATCH');
|
||||||
|
|
||||||
const scores = this.theirInterestIsRelevant(id)
|
const scores = this.theirInterestIsRelevant(id)
|
||||||
? this.characterMatch.them.scores
|
? this.characterMatch.them.scores
|
||||||
: (this.yourInterestIsRelevant(id) ? this.characterMatch.you.scores : null);
|
: (this.yourInterestIsRelevant(id) ? this.characterMatch.you.scores : null);
|
||||||
|
|
||||||
console.log('SCORES', scores);
|
// console.log('SCORES', scores);
|
||||||
|
|
||||||
if (scores) {
|
if (scores) {
|
||||||
const score = scores[id];
|
const score = scores[id];
|
||||||
|
|
Loading…
Reference in New Issue