3ac9c36d95
This reverts commit c3e3322a79
.
45 lines
899 B
TypeScript
45 lines
899 B
TypeScript
import _ from "lodash";
|
|
import Prefix from "./prefix";
|
|
|
|
class User {
|
|
modes!: string[];
|
|
// Users in the channel have only one mode assigned
|
|
mode!: string;
|
|
away!: string;
|
|
nick!: string;
|
|
lastMessage!: number;
|
|
|
|
constructor(attr: Partial<User>, prefix?: Prefix) {
|
|
_.defaults(this, attr, {
|
|
modes: [],
|
|
away: "",
|
|
nick: "",
|
|
lastMessage: 0,
|
|
});
|
|
|
|
Object.defineProperty(this, "mode", {
|
|
get() {
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
|
|
return this.modes[0] || "";
|
|
},
|
|
});
|
|
|
|
this.setModes(this.modes, prefix || new Prefix([]));
|
|
}
|
|
|
|
setModes(modes: string[], prefix: Prefix) {
|
|
// irc-framework sets character mode, but The Lounge works with symbols
|
|
this.modes = modes.map((mode) => prefix.modeToSymbol[mode]);
|
|
}
|
|
|
|
toJSON() {
|
|
return {
|
|
nick: this.nick,
|
|
modes: this.modes,
|
|
lastMessage: this.lastMessage,
|
|
};
|
|
}
|
|
}
|
|
|
|
export default User;
|