//tslint:disable:no-shadowed-variable declare global { interface Function { //tslint:disable-next-line:ban-types no-any bind(this: T, thisArg: any): T; //tslint:disable-next-line:ban-types no-any bind(this: (t: T) => TReturn, thisArg: any, arg: T): () => TReturn; } } import {Channel, Character} from '../fchat/interfaces'; export {Connection, Channel, Character} from '../fchat/interfaces'; export const userStatuses = ['online', 'looking', 'away', 'busy', 'dnd']; export const channelModes = ['chat', 'ads', 'both']; export namespace Conversation { export interface EventMessage { readonly type: Message.Type.Event, readonly text: string, readonly time: Date readonly sender?: undefined } export interface ChatMessage { readonly type: Message.Type, readonly sender: Character, readonly text: string, readonly time: Date readonly isHighlight: boolean } export type Message = EventMessage | ChatMessage; export namespace Message { export enum Type { Message, Action, Ad, Roll, Warn, Event } } export type RecentChannelConversation = {readonly channel: string, readonly name: string}; export type RecentPrivateConversation = {readonly character: string}; export type RecentConversation = RecentChannelConversation | RecentPrivateConversation; export type TypingStatus = 'typing' | 'paused' | 'clear'; interface TabConversation extends Conversation { isPinned: boolean readonly maxMessageLength: number close(): Promise | void sort(newIndex: number): Promise } export interface PrivateConversation extends TabConversation { readonly character: Character readonly typingStatus: TypingStatus } export interface ChannelConversation extends TabConversation { readonly channel: Channel mode: Channel.Mode readonly adCountdown: number isSendingAds: boolean } export function isPrivate(conversation: Conversation): conversation is PrivateConversation { return (>conversation).character !== undefined; } export function isChannel(conversation: Conversation): conversation is ChannelConversation { return (>conversation).channel !== undefined; } export interface State { readonly privateConversations: ReadonlyArray readonly channelConversations: ReadonlyArray readonly consoleTab: Conversation readonly recent: ReadonlyArray readonly selectedConversation: Conversation readonly hasNew: boolean; byKey(key: string): Conversation | undefined getPrivate(character: Character): PrivateConversation reloadSettings(): void } export enum Setting { True, False, Default } export interface Settings { readonly notify: Setting; readonly highlight: Setting; readonly highlightWords: ReadonlyArray; readonly joinMessages: Setting; readonly defaultHighlights: boolean; } export const enum UnreadState { None, Unread, Mention } export interface Conversation { enteredText: string; infoText: string; readonly name: string; readonly messages: ReadonlyArray; readonly reportMessages: ReadonlyArray; readonly lastRead: Message | undefined errorText: string readonly key: string readonly unread: UnreadState settings: Settings send(): Promise loadLastSent(): void show(): void loadMore(): void } } export type Conversation = Conversation.Conversation; export namespace Logs { export interface Basic { logMessage(conversation: Conversation, message: Conversation.Message): Promise | void getBacklog(conversation: Conversation): Promise> } export interface Persistent extends Basic { readonly conversations: ReadonlyArray<{readonly id: string, readonly name: string}> getLogs(key: string, date: Date): Promise> getLogDates(key: string): ReadonlyArray } export function isPersistent(logs: Basic): logs is Persistent { return (>logs).getLogs !== undefined; } } export namespace Settings { export type Keys = { settings: Settings, pinned: {channels: string[], private: string[]}, conversationSettings: {[key: string]: Conversation.Settings | undefined} modes: {[key: string]: Channel.Mode | undefined} recent: Conversation.RecentConversation[] hiddenUsers: string[] }; export interface Store { get(key: K, character?: string): Promise getAvailableCharacters(): Promise> | undefined set(key: K, value: Keys[K]): Promise } export interface Settings { readonly playSound: boolean; readonly clickOpensMessage: boolean; readonly disallowedTags: ReadonlyArray; readonly notifications: boolean; readonly highlight: boolean; readonly highlightWords: ReadonlyArray; readonly showAvatars: boolean; readonly animatedEicons: boolean; readonly idleTimer: number; readonly messageSeparators: boolean; readonly eventMessages: boolean; readonly joinMessages: boolean; readonly alwaysNotify: boolean; readonly logMessages: boolean; readonly logAds: boolean; readonly fontSize: number; readonly showNeedsReply: boolean; } } export type Settings = Settings.Settings; export interface Notifications { isInBackground: boolean notify(conversation: Conversation, title: string, body: string, icon: string, sound: string): void playSound(sound: string): void requestPermission(): Promise } export interface State { settings: Settings hiddenUsers: string[] }