Minor
This commit is contained in:
parent
9ff0d2210f
commit
f2b6d8b8b1
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
## Canary
|
## Canary
|
||||||
* Show number of unread notes and messages in the bottom right corner
|
* Show number of unread notes and messages in the bottom right corner
|
||||||
* Fixed max ad length for automated ads to 50,000 characters
|
* Fixed max ad length for automated ads
|
||||||
* Fixed 'unsure' sexual orientation to display correctly in character preview
|
* Fixed 'unsure' sexual orientation to display correctly in character preview
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -140,6 +140,8 @@ import {InlineDisplayMode} from '../interfaces';
|
||||||
|
|
||||||
AdManager.onConnectionClosed();
|
AdManager.onConnectionClosed();
|
||||||
core.adCoordinator.clear();
|
core.adCoordinator.clear();
|
||||||
|
|
||||||
|
// tslint:disable-next-line:no-floating-promises
|
||||||
core.siteSession.onConnectionClosed();
|
core.siteSession.onConnectionClosed();
|
||||||
|
|
||||||
document.title = l('title');
|
document.title = l('title');
|
||||||
|
@ -174,6 +176,8 @@ import {InlineDisplayMode} from '../interfaces';
|
||||||
this.connected = true;
|
this.connected = true;
|
||||||
core.notifications.playSound('login');
|
core.notifications.playSound('login');
|
||||||
document.title = l('title.connected', core.connection.character);
|
document.title = l('title.connected', core.connection.character);
|
||||||
|
|
||||||
|
// tslint:disable-next-line:no-floating-promises
|
||||||
core.siteSession.onConnectionEstablished();
|
core.siteSession.onConnectionEstablished();
|
||||||
});
|
});
|
||||||
core.watch(() => core.conversations.hasNew, (hasNew) => {
|
core.watch(() => core.conversations.hasNew, (hasNew) => {
|
||||||
|
|
|
@ -98,7 +98,7 @@
|
||||||
<recent-conversations ref="recentDialog"></recent-conversations>
|
<recent-conversations ref="recentDialog"></recent-conversations>
|
||||||
<image-preview ref="imagePreview"></image-preview>
|
<image-preview ref="imagePreview"></image-preview>
|
||||||
<add-pm-partner ref="addPmPartnerDialog"></add-pm-partner>
|
<add-pm-partner ref="addPmPartnerDialog"></add-pm-partner>
|
||||||
<note-status></note-status>
|
<note-status v-if="coreState.settings.risingShowUnreadOfflineCount"></note-status>
|
||||||
</div>
|
</div>
|
||||||
</template>/me
|
</template>/me
|
||||||
|
|
||||||
|
@ -152,6 +152,7 @@
|
||||||
characterImage = characterImage;
|
characterImage = characterImage;
|
||||||
conversations = core.conversations;
|
conversations = core.conversations;
|
||||||
getStatusIcon = getStatusIcon;
|
getStatusIcon = getStatusIcon;
|
||||||
|
coreState = core.state;
|
||||||
keydownListener!: (e: KeyboardEvent) => void;
|
keydownListener!: (e: KeyboardEvent) => void;
|
||||||
focusListener!: () => void;
|
focusListener!: () => void;
|
||||||
blurListener!: () => void;
|
blurListener!: () => void;
|
||||||
|
|
|
@ -183,6 +183,15 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<h5>Misc</h5>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="control-label" for="risingShowUnreadOfflineCount">
|
||||||
|
<input type="checkbox" id="risingShowUnreadOfflineCount" v-model="risingShowUnreadOfflineCount"/>
|
||||||
|
Show unread note and offline message counts at the bottom right corner
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div v-show="selectedTab === '3'">
|
<div v-show="selectedTab === '3'">
|
||||||
<template v-if="hidden.length">
|
<template v-if="hidden.length">
|
||||||
|
@ -250,6 +259,8 @@
|
||||||
risingComparisonInUserMenu!: boolean;
|
risingComparisonInUserMenu!: boolean;
|
||||||
risingComparisonInSearch!: boolean;
|
risingComparisonInSearch!: boolean;
|
||||||
|
|
||||||
|
risingShowUnreadOfflineCount!: boolean;
|
||||||
|
|
||||||
|
|
||||||
async load(): Promise<void> {
|
async load(): Promise<void> {
|
||||||
const settings = core.state.settings;
|
const settings = core.state.settings;
|
||||||
|
@ -283,6 +294,7 @@
|
||||||
this.risingCharacterPreview = settings.risingCharacterPreview;
|
this.risingCharacterPreview = settings.risingCharacterPreview;
|
||||||
this.risingComparisonInUserMenu = settings.risingComparisonInUserMenu;
|
this.risingComparisonInUserMenu = settings.risingComparisonInUserMenu;
|
||||||
this.risingComparisonInSearch = settings.risingComparisonInSearch;
|
this.risingComparisonInSearch = settings.risingComparisonInSearch;
|
||||||
|
this.risingShowUnreadOfflineCount = settings.risingShowUnreadOfflineCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
async doImport(): Promise<void> {
|
async doImport(): Promise<void> {
|
||||||
|
@ -334,7 +346,8 @@
|
||||||
risingAutoExpandCustomKinks: this.risingAutoExpandCustomKinks,
|
risingAutoExpandCustomKinks: this.risingAutoExpandCustomKinks,
|
||||||
risingCharacterPreview: this.risingCharacterPreview,
|
risingCharacterPreview: this.risingCharacterPreview,
|
||||||
risingComparisonInUserMenu: this.risingComparisonInUserMenu,
|
risingComparisonInUserMenu: this.risingComparisonInUserMenu,
|
||||||
risingComparisonInSearch: this.risingComparisonInSearch
|
risingComparisonInSearch: this.risingComparisonInSearch,
|
||||||
|
risingShowUnreadOfflineCount: this.risingShowUnreadOfflineCount
|
||||||
};
|
};
|
||||||
if(this.notifications) await core.notifications.requestPermission();
|
if(this.notifications) await core.notifications.requestPermission();
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<a @click="removeAd(index)" title="Remove Ad"><i class="fas fa-times-circle"></i></a>
|
<a @click="removeAd(index)" title="Remove Ad"><i class="fas fa-times-circle"></i></a>
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
<editor :id="'ad' + conversation.key + '-' + index" v-model="ads[index]" :hasToolbar="true" class="form-control" :maxlength="50000">
|
<editor :id="'ad' + conversation.key + '-' + index" v-model="ads[index]" :hasToolbar="true" class="form-control" :maxlength="core.connection.vars.lfrp_max">
|
||||||
</editor>
|
</editor>
|
||||||
</div>
|
</div>
|
||||||
<button class="btn btn-outline-secondary" @click="addAd()">Add Another</button>
|
<button class="btn btn-outline-secondary" @click="addAd()">Add Another</button>
|
||||||
|
@ -28,6 +28,7 @@
|
||||||
import {Conversation} from '../interfaces';
|
import {Conversation} from '../interfaces';
|
||||||
import l from '../localize';
|
import l from '../localize';
|
||||||
import {Editor} from '../bbcode';
|
import {Editor} from '../bbcode';
|
||||||
|
import core from '../core';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
components: {modal: Modal, editor: Editor}
|
components: {modal: Modal, editor: Editor}
|
||||||
|
@ -38,6 +39,7 @@
|
||||||
l = l;
|
l = l;
|
||||||
setting = Conversation.Setting;
|
setting = Conversation.Setting;
|
||||||
ads!: string[];
|
ads!: string[];
|
||||||
|
core = core;
|
||||||
|
|
||||||
load(): void {
|
load(): void {
|
||||||
const settings = this.conversation.settings;
|
const settings = this.conversation.settings;
|
||||||
|
|
|
@ -51,6 +51,8 @@ export class Settings implements ISettings {
|
||||||
risingCharacterPreview = true;
|
risingCharacterPreview = true;
|
||||||
risingComparisonInUserMenu = true;
|
risingComparisonInUserMenu = true;
|
||||||
risingComparisonInSearch = true;
|
risingComparisonInSearch = true;
|
||||||
|
|
||||||
|
risingShowUnreadOfflineCount = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -823,9 +823,13 @@ export default function(this: any): Interfaces.State {
|
||||||
text = l(key, `[user]${data.name}[/user]`, l(`events.rtbComment_${data.target_type}`), `[url=${url}]${data.target}[/url]`);
|
text = l(key, `[user]${data.name}[/user]`, l(`events.rtbComment_${data.target_type}`), `[url=${url}]${data.target}[/url]`);
|
||||||
character = data.name;
|
character = data.name;
|
||||||
} else if(data.type === 'note') {
|
} else if(data.type === 'note') {
|
||||||
|
// tslint:disable-next-line:no-unsafe-any
|
||||||
|
core.siteSession.interfaces.notes.incrementNotes();
|
||||||
text = l('events.rtb_note', `[user]${data.sender}[/user]`, `[url=${url}view_note.php?note_id=${data.id}]${data.subject}[/url]`);
|
text = l('events.rtb_note', `[user]${data.sender}[/user]`, `[url=${url}view_note.php?note_id=${data.id}]${data.subject}[/url]`);
|
||||||
character = data.sender;
|
character = data.sender;
|
||||||
} else if(data.type === 'friendrequest') {
|
} else if(data.type === 'friendrequest') {
|
||||||
|
// tslint:disable-next-line:no-unsafe-any
|
||||||
|
core.siteSession.interfaces.notes.incrementMessages();
|
||||||
text = l(`events.rtb_friendrequest`, `[user]${data.name}[/user]`);
|
text = l(`events.rtb_friendrequest`, `[user]${data.name}[/user]`);
|
||||||
character = data.name;
|
character = data.name;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -216,6 +216,8 @@ export namespace Settings {
|
||||||
readonly risingCharacterPreview: boolean;
|
readonly risingCharacterPreview: boolean;
|
||||||
readonly risingComparisonInUserMenu: boolean;
|
readonly risingComparisonInUserMenu: boolean;
|
||||||
readonly risingComparisonInSearch: boolean;
|
readonly risingComparisonInSearch: boolean;
|
||||||
|
|
||||||
|
readonly risingShowUnreadOfflineCount: boolean;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
<div id="note-status" :class="{active: hasReports()}">
|
<div id="note-status" :class="{active: hasReports()}">
|
||||||
|
|
||||||
<div v-for="(report, index) in reports" :key="`report-${index}`" :class="`status-report ${report.type} ${(report.count > 0) && (report.count !== report.dismissedCount) ? 'active': ''}`">
|
<div v-for="(report, index) in reports" :key="`report-${index}`" :class="`status-report ${report.type} ${(report.count > 0) && (report.count !== report.dismissedCount) ? 'active': ''}`">
|
||||||
<a :href="report.url">
|
<a :href="report.url" @click="dismissReport(report)">
|
||||||
<span class="count">{{report.count}}</span>
|
<span class="count">{{report.count}}</span>
|
||||||
{{ report.title }}
|
{{ `${report.count !== 1 ? report.title : report.title.substr(0, report.title.length - 1)}` }}
|
||||||
|
|
||||||
</a>
|
</a>
|
||||||
<a @click="dismissReport(report)" class="dismiss"><i class="fas fa-times-circle"></i></a>
|
<a @click="dismissReport(report)" class="dismiss"><i class="fas fa-times-circle"></i></a>
|
||||||
|
@ -44,17 +44,16 @@ export default class NoteStatus extends Vue {
|
||||||
dismissedCount: 0,
|
dismissedCount: 0,
|
||||||
url: 'https://www.f-list.net/read_notes.php'
|
url: 'https://www.f-list.net/read_notes.php'
|
||||||
}
|
}
|
||||||
]
|
];
|
||||||
|
|
||||||
interval?: any;
|
callback?: () => void;
|
||||||
callback?: any;
|
|
||||||
|
|
||||||
|
|
||||||
@Hook('mounted')
|
@Hook('mounted')
|
||||||
mounted(): void {
|
mounted(): void {
|
||||||
this.processCounts();
|
this.updateCounts();
|
||||||
|
|
||||||
this.callback = () => this.processCounts();
|
this.callback = () => this.updateCounts();
|
||||||
|
|
||||||
EventBus.$on('note-counts-update', this.callback);
|
EventBus.$on('note-counts-update', this.callback);
|
||||||
}
|
}
|
||||||
|
@ -76,13 +75,13 @@ export default class NoteStatus extends Vue {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
processCounts() {
|
updateCounts(): void {
|
||||||
const v = core.siteSession.interfaces.notes.getCounts();
|
const v = core.siteSession.interfaces.notes.getCounts();
|
||||||
|
|
||||||
const mapper = {
|
const mapper = {
|
||||||
message: 'unreadMessages',
|
message: 'unreadMessages',
|
||||||
note: 'unreadNotes'
|
note: 'unreadNotes'
|
||||||
}
|
};
|
||||||
|
|
||||||
_.each(
|
_.each(
|
||||||
mapper,
|
mapper,
|
||||||
|
@ -104,7 +103,6 @@ export default class NoteStatus extends Vue {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
import { SiteSession, SiteSessionInterface } from './site-session';
|
import { SiteSession, SiteSessionInterface } from './site-session';
|
||||||
import log from 'electron-log';
|
import log from 'electron-log'; //tslint:disable-line:match-default-export-name
|
||||||
import { EventBus } from '../chat/preview/event-bus';
|
import { EventBus } from '../chat/preview/event-bus';
|
||||||
|
|
||||||
|
/* tslint:disable:no-unsafe-any */
|
||||||
|
|
||||||
export interface NoteCheckerCount {
|
export interface NoteCheckerCount {
|
||||||
unreadNotes: number;
|
unreadNotes: number;
|
||||||
unreadMessages: number;
|
unreadMessages: number;
|
||||||
|
@ -10,7 +12,7 @@ export interface NoteCheckerCount {
|
||||||
|
|
||||||
|
|
||||||
export class NoteChecker implements SiteSessionInterface {
|
export class NoteChecker implements SiteSessionInterface {
|
||||||
private static readonly CHECK_FREQUENCY = 10 * 60 * 1000;
|
private static readonly CHECK_FREQUENCY = 15 * 60 * 1000;
|
||||||
|
|
||||||
private latestCount: NoteCheckerCount = { unreadNotes: 0, unreadMessages: 0, onlineUsers: 0 };
|
private latestCount: NoteCheckerCount = { unreadNotes: 0, unreadMessages: 0, onlineUsers: 0 };
|
||||||
private timer?: any;
|
private timer?: any;
|
||||||
|
@ -78,6 +80,18 @@ export class NoteChecker implements SiteSessionInterface {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
incrementMessages(): void {
|
||||||
|
this.latestCount.unreadMessages++;
|
||||||
|
EventBus.$emit('note-counts-update', this.latestCount);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
incrementNotes(): void {
|
||||||
|
this.latestCount.unreadNotes++;
|
||||||
|
EventBus.$emit('note-counts-update', this.latestCount);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
getCounts(): NoteCheckerCount {
|
getCounts(): NoteCheckerCount {
|
||||||
return this.latestCount;
|
return this.latestCount;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
// import qs from 'qs';
|
|
||||||
import _ from 'lodash';
|
import _ from 'lodash';
|
||||||
import log from 'electron-log';
|
import log from 'electron-log'; //tslint:disable-line:match-default-export-name
|
||||||
import throat from 'throat'; //tslint:disable-line:match-default-export-name
|
import throat from 'throat';
|
||||||
import { NoteChecker } from './note-checker';
|
import { NoteChecker } from './note-checker';
|
||||||
|
|
||||||
import request from 'request-promise';
|
import request from 'request-promise'; //tslint:disable-line:match-default-export-name
|
||||||
|
|
||||||
|
/* tslint:disable:no-unsafe-any */
|
||||||
|
|
||||||
export interface SiteSessionInterface {
|
export interface SiteSessionInterface {
|
||||||
start(): Promise<void>;
|
start(): Promise<void>;
|
||||||
|
@ -160,15 +160,13 @@ export class SiteSession {
|
||||||
|
|
||||||
|
|
||||||
async get(uri: string, mustBeLoggedIn: boolean = false, config: Partial<request.Options> = {}): Promise<request.RequestPromise> {
|
async get(uri: string, mustBeLoggedIn: boolean = false, config: Partial<request.Options> = {}): Promise<request.RequestPromise> {
|
||||||
const res = await this.sessionThroat(
|
return this.sessionThroat(
|
||||||
async() => {
|
async() => {
|
||||||
const finalConfig = await this.prepareRequest('get', uri, mustBeLoggedIn, config);
|
const finalConfig = await this.prepareRequest('get', uri, mustBeLoggedIn, config);
|
||||||
|
|
||||||
return this.request(finalConfig);
|
return this.request(finalConfig);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
return res;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -178,15 +176,13 @@ export class SiteSession {
|
||||||
mustBeLoggedIn: boolean = false,
|
mustBeLoggedIn: boolean = false,
|
||||||
config: Partial<request.Options> = {}
|
config: Partial<request.Options> = {}
|
||||||
): Promise<request.RequestPromise> {
|
): Promise<request.RequestPromise> {
|
||||||
const res = await this.sessionThroat(
|
return this.sessionThroat(
|
||||||
async() => {
|
async() => {
|
||||||
const finalConfig = await this.prepareRequest('post', uri, mustBeLoggedIn, _.merge({ form: data }, config));
|
const finalConfig = await this.prepareRequest('post', uri, mustBeLoggedIn, _.merge({ form: data }, config));
|
||||||
|
|
||||||
return this.request(finalConfig);
|
return this.request(finalConfig);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
return res;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue