2020-06-03 01:04:38 +00:00
|
|
|
import React from 'react';
|
2017-05-26 06:20:00 +00:00
|
|
|
import { createSelector } from 'reselect';
|
2018-04-25 03:36:27 +00:00
|
|
|
import has from 'lodash/has';
|
2018-04-05 23:46:22 +00:00
|
|
|
import {
|
|
|
|
findBreakpoints,
|
|
|
|
messageHeight,
|
|
|
|
linkify,
|
|
|
|
timestamp,
|
2018-12-14 13:24:23 +00:00
|
|
|
isChannel,
|
2020-06-03 01:04:38 +00:00
|
|
|
formatDate,
|
|
|
|
unix
|
2018-04-05 23:46:22 +00:00
|
|
|
} from 'utils';
|
2020-06-03 01:04:38 +00:00
|
|
|
import stringToRGB from 'utils/color';
|
2020-05-16 06:25:58 +00:00
|
|
|
import colorify from 'utils/colorify';
|
2018-04-05 19:13:32 +00:00
|
|
|
import createReducer from 'utils/createReducer';
|
2017-06-06 23:03:35 +00:00
|
|
|
import { getApp } from './app';
|
2017-05-26 06:20:00 +00:00
|
|
|
import { getSelectedTab } from './tab';
|
|
|
|
import * as actions from './actions';
|
|
|
|
|
|
|
|
export const getMessages = state => state.messages;
|
|
|
|
|
|
|
|
export const getSelectedMessages = createSelector(
|
|
|
|
getSelectedTab,
|
|
|
|
getMessages,
|
2018-04-25 03:36:27 +00:00
|
|
|
(tab, messages) => {
|
|
|
|
const target = tab.name || tab.server;
|
|
|
|
if (has(messages, [tab.server, target])) {
|
|
|
|
return messages[tab.server][target];
|
|
|
|
}
|
|
|
|
return [];
|
|
|
|
}
|
2017-05-26 06:20:00 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
export const getHasMoreMessages = createSelector(
|
|
|
|
getSelectedMessages,
|
|
|
|
messages => {
|
2018-04-25 03:36:27 +00:00
|
|
|
const first = messages[0];
|
2017-05-26 06:20:00 +00:00
|
|
|
return first && first.next;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2018-04-25 03:36:27 +00:00
|
|
|
function init(state, server, tab) {
|
|
|
|
if (!state[server]) {
|
|
|
|
state[server] = {};
|
|
|
|
}
|
|
|
|
if (!state[server][tab]) {
|
|
|
|
state[server][tab] = [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-03 01:04:38 +00:00
|
|
|
const collapsedEvents = ['join', 'part', 'quit'];
|
|
|
|
|
|
|
|
function shouldCollapse(msg1, msg2) {
|
|
|
|
return (
|
|
|
|
msg1.events &&
|
|
|
|
msg2.events &&
|
|
|
|
collapsedEvents.indexOf(msg1.events[0].type) !== -1 &&
|
|
|
|
collapsedEvents.indexOf(msg2.events[0].type) !== -1
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const eventVerbs = {
|
|
|
|
join: 'joined the channel',
|
|
|
|
part: 'left the channel',
|
|
|
|
quit: 'quit'
|
|
|
|
};
|
|
|
|
|
|
|
|
function renderNick(nick, type = '') {
|
|
|
|
const style = {
|
|
|
|
color: stringToRGB(nick),
|
|
|
|
fontWeight: 400
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<span className="message-sender" style={style} key={`${nick} ${type}`}>
|
|
|
|
{nick}
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderMore(count, type) {
|
|
|
|
return (
|
|
|
|
<span
|
|
|
|
className="message-events-more"
|
|
|
|
key={`more ${type}`}
|
|
|
|
>{`${count} more`}</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderEvent(event, type, nicks) {
|
|
|
|
const ending = eventVerbs[type];
|
|
|
|
|
|
|
|
if (nicks.length === 1) {
|
|
|
|
event.push(renderNick(nicks[0], type));
|
|
|
|
event.push(` ${ending}`);
|
|
|
|
}
|
|
|
|
if (nicks.length === 2) {
|
|
|
|
event.push(renderNick(nicks[0], type));
|
|
|
|
event.push(' and ');
|
|
|
|
event.push(renderNick(nicks[1], type));
|
|
|
|
event.push(` ${ending}`);
|
|
|
|
}
|
|
|
|
if (nicks.length > 2) {
|
|
|
|
event.push(renderNick(nicks[0], type));
|
|
|
|
event.push(', ');
|
|
|
|
event.push(renderNick(nicks[1], type));
|
|
|
|
event.push(' and ');
|
|
|
|
event.push(renderMore(nicks.length - 2, type));
|
|
|
|
event.push(` ${ending}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderEvents(events) {
|
|
|
|
const first = events[0];
|
|
|
|
if (first.type === 'nick') {
|
|
|
|
const [oldNick, newNick] = first.params;
|
|
|
|
|
|
|
|
return [renderNick(oldNick), ' changed nick to ', renderNick(newNick)];
|
|
|
|
}
|
|
|
|
if (first.type === 'topic') {
|
|
|
|
const [nick, newTopic] = first.params;
|
|
|
|
const topic = colorify(linkify(newTopic));
|
|
|
|
|
|
|
|
if (!topic) {
|
|
|
|
return [renderNick(nick), ' cleared the topic'];
|
|
|
|
}
|
|
|
|
|
|
|
|
const result = [renderNick(nick), ' changed the topic to: '];
|
|
|
|
|
|
|
|
if (Array.isArray(topic)) {
|
|
|
|
result.push(...topic);
|
|
|
|
} else {
|
|
|
|
result.push(topic);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
const byType = {};
|
|
|
|
for (let i = events.length - 1; i >= 0; i--) {
|
|
|
|
const event = events[i];
|
|
|
|
const [nick] = event.params;
|
|
|
|
|
|
|
|
if (!byType[event.type]) {
|
|
|
|
byType[event.type] = [nick];
|
|
|
|
} else if (byType[event.type].indexOf(nick) === -1) {
|
|
|
|
byType[event.type].push(nick);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const result = [];
|
|
|
|
|
|
|
|
if (byType.join) {
|
|
|
|
renderEvent(result, 'join', byType.join);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (byType.part) {
|
|
|
|
if (result.length > 1) {
|
|
|
|
result[result.length - 1] += ', ';
|
|
|
|
}
|
|
|
|
renderEvent(result, 'part', byType.part);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (byType.quit) {
|
|
|
|
if (result.length > 1) {
|
|
|
|
result[result.length - 1] += ', ';
|
|
|
|
}
|
|
|
|
renderEvent(result, 'quit', byType.quit);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-12-14 13:24:23 +00:00
|
|
|
let nextID = 0;
|
|
|
|
|
2020-06-03 01:04:38 +00:00
|
|
|
function initMessage(
|
|
|
|
state,
|
|
|
|
message,
|
|
|
|
server,
|
|
|
|
tab,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
windowWidth,
|
|
|
|
prepend
|
|
|
|
) {
|
|
|
|
const messages = state[server][tab];
|
|
|
|
|
|
|
|
if (messages.length > 0 && !prepend) {
|
|
|
|
const lastMessage = messages[messages.length - 1];
|
|
|
|
if (shouldCollapse(lastMessage, message)) {
|
|
|
|
lastMessage.events.push(message.events[0]);
|
|
|
|
lastMessage.content = renderEvents(lastMessage.events);
|
|
|
|
|
|
|
|
[lastMessage.breakpoints, lastMessage.length] = findBreakpoints(
|
|
|
|
lastMessage.content
|
|
|
|
);
|
|
|
|
lastMessage.height = messageHeight(
|
|
|
|
lastMessage,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
6 * charWidth,
|
|
|
|
windowWidth
|
|
|
|
);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.time) {
|
|
|
|
message.date = new Date(message.time * 1000);
|
|
|
|
} else {
|
|
|
|
message.date = new Date();
|
|
|
|
}
|
|
|
|
|
|
|
|
message.time = timestamp(message.date);
|
|
|
|
|
|
|
|
if (!message.id) {
|
|
|
|
message.id = nextID;
|
|
|
|
nextID++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tab.charAt(0) === '#') {
|
|
|
|
message.channel = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message.events) {
|
|
|
|
message.type = 'info';
|
|
|
|
message.content = renderEvents(message.events);
|
|
|
|
} else {
|
|
|
|
message.content = message.content || '';
|
|
|
|
// Collapse multiple adjacent spaces into a single one
|
|
|
|
message.content = message.content.replace(/\s\s+/g, ' ');
|
|
|
|
|
|
|
|
if (message.content.indexOf('\x01ACTION') === 0) {
|
|
|
|
const { from } = message;
|
|
|
|
message.from = null;
|
|
|
|
message.type = 'action';
|
|
|
|
message.content = from + message.content.slice(7, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!message.events) {
|
|
|
|
message.content = colorify(linkify(message.content));
|
|
|
|
}
|
|
|
|
|
|
|
|
[message.breakpoints, message.length] = findBreakpoints(message.content);
|
|
|
|
message.height = messageHeight(
|
|
|
|
message,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
6 * charWidth,
|
|
|
|
windowWidth
|
|
|
|
);
|
|
|
|
message.indent = 6 * charWidth;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-12-14 13:24:23 +00:00
|
|
|
function createDateMessage(date) {
|
|
|
|
const message = {
|
|
|
|
id: nextID,
|
|
|
|
type: 'date',
|
|
|
|
content: formatDate(date),
|
|
|
|
height: 40
|
|
|
|
};
|
|
|
|
|
|
|
|
nextID++;
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
function isSameDay(d1, d2) {
|
|
|
|
return (
|
|
|
|
d1.getDate() === d2.getDate() &&
|
|
|
|
d1.getMonth() === d2.getMonth() &&
|
|
|
|
d1.getFullYear() === d2.getFullYear()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-06-03 01:04:38 +00:00
|
|
|
function reducerPrependMessages(
|
|
|
|
state,
|
|
|
|
messages,
|
|
|
|
server,
|
|
|
|
tab,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
windowWidth
|
|
|
|
) {
|
2018-12-15 10:02:35 +00:00
|
|
|
const msgs = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < messages.length; i++) {
|
2020-06-03 01:04:38 +00:00
|
|
|
const message = messages[i];
|
|
|
|
initMessage(
|
|
|
|
state,
|
|
|
|
message,
|
|
|
|
server,
|
|
|
|
tab,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
windowWidth,
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
if (i > 0 && !isSameDay(messages[i - 1].date, message.date)) {
|
|
|
|
msgs.push(createDateMessage(message.date));
|
2018-12-15 10:02:35 +00:00
|
|
|
}
|
2020-06-03 01:04:38 +00:00
|
|
|
msgs.push(message);
|
2018-12-15 10:02:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const m = state[server][tab];
|
|
|
|
|
|
|
|
if (m.length > 0) {
|
|
|
|
const lastNewMessage = msgs[msgs.length - 1];
|
|
|
|
const firstMessage = m[0];
|
|
|
|
if (
|
|
|
|
firstMessage.date &&
|
|
|
|
!isSameDay(firstMessage.date, lastNewMessage.date)
|
|
|
|
) {
|
|
|
|
msgs.push(createDateMessage(firstMessage.date));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m.unshift(...msgs);
|
|
|
|
}
|
|
|
|
|
|
|
|
function reducerAddMessage(message, server, tab, state) {
|
2018-12-14 13:24:23 +00:00
|
|
|
const messages = state[server][tab];
|
|
|
|
|
|
|
|
if (messages.length > 0) {
|
2018-12-15 10:02:35 +00:00
|
|
|
const lastMessage = messages[messages.length - 1];
|
|
|
|
if (lastMessage.date && !isSameDay(lastMessage.date, message.date)) {
|
|
|
|
messages.push(createDateMessage(message.date));
|
2018-12-14 13:24:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-15 10:02:35 +00:00
|
|
|
messages.push(message);
|
2018-12-14 13:24:23 +00:00
|
|
|
}
|
|
|
|
|
2018-04-25 03:36:27 +00:00
|
|
|
export default createReducer(
|
|
|
|
{},
|
|
|
|
{
|
2020-06-03 01:04:38 +00:00
|
|
|
[actions.ADD_MESSAGE](
|
|
|
|
state,
|
|
|
|
{ server, tab, message, wrapWidth, charWidth, windowWidth }
|
|
|
|
) {
|
2018-04-25 03:36:27 +00:00
|
|
|
init(state, server, tab);
|
2020-06-03 01:04:38 +00:00
|
|
|
|
|
|
|
const shouldAdd = initMessage(
|
|
|
|
state,
|
|
|
|
message,
|
|
|
|
server,
|
|
|
|
tab,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
windowWidth
|
|
|
|
);
|
|
|
|
if (shouldAdd) {
|
|
|
|
reducerAddMessage(message, server, tab, state);
|
|
|
|
}
|
2018-04-25 03:36:27 +00:00
|
|
|
},
|
2017-05-26 06:20:00 +00:00
|
|
|
|
2020-06-03 01:04:38 +00:00
|
|
|
[actions.ADD_MESSAGES](
|
|
|
|
state,
|
|
|
|
{ server, tab, messages, prepend, wrapWidth, charWidth, windowWidth }
|
|
|
|
) {
|
2017-05-26 06:20:00 +00:00
|
|
|
if (prepend) {
|
2018-04-25 03:36:27 +00:00
|
|
|
init(state, server, tab);
|
2020-06-03 01:04:38 +00:00
|
|
|
reducerPrependMessages(
|
|
|
|
state,
|
|
|
|
messages,
|
|
|
|
server,
|
|
|
|
tab,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
windowWidth
|
|
|
|
);
|
2017-05-26 06:20:00 +00:00
|
|
|
} else {
|
2018-12-15 10:02:35 +00:00
|
|
|
if (!messages[0].tab) {
|
|
|
|
init(state, server, tab);
|
|
|
|
}
|
|
|
|
|
2018-04-25 03:36:27 +00:00
|
|
|
messages.forEach(message => {
|
2018-12-15 10:02:35 +00:00
|
|
|
if (message.tab) {
|
|
|
|
init(state, server, message.tab);
|
|
|
|
}
|
2020-06-03 01:04:38 +00:00
|
|
|
|
|
|
|
const shouldAdd = initMessage(
|
|
|
|
state,
|
|
|
|
message,
|
|
|
|
server,
|
|
|
|
message.tab || tab,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
windowWidth
|
|
|
|
);
|
|
|
|
if (shouldAdd) {
|
|
|
|
reducerAddMessage(message, server, message.tab || tab, state);
|
|
|
|
}
|
2018-04-25 03:36:27 +00:00
|
|
|
});
|
2017-05-26 06:20:00 +00:00
|
|
|
}
|
2018-04-25 03:36:27 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
[actions.DISCONNECT](state, { server }) {
|
|
|
|
delete state[server];
|
|
|
|
},
|
|
|
|
|
|
|
|
[actions.PART](state, { server, channels }) {
|
|
|
|
channels.forEach(channel => delete state[server][channel]);
|
|
|
|
},
|
|
|
|
|
2020-05-08 00:56:54 +00:00
|
|
|
[actions.CLOSE_PRIVATE_CHAT](state, { server, nick }) {
|
|
|
|
delete state[server][nick];
|
|
|
|
},
|
|
|
|
|
2019-01-25 10:02:31 +00:00
|
|
|
[actions.socket.CHANNEL_FORWARD](state, { server, old }) {
|
|
|
|
if (state[server]) {
|
|
|
|
delete state[server][old];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-04-25 03:36:27 +00:00
|
|
|
[actions.UPDATE_MESSAGE_HEIGHT](
|
|
|
|
state,
|
|
|
|
{ wrapWidth, charWidth, windowWidth }
|
|
|
|
) {
|
|
|
|
Object.keys(state).forEach(server =>
|
|
|
|
Object.keys(state[server]).forEach(target =>
|
|
|
|
state[server][target].forEach(message => {
|
2018-12-14 13:24:23 +00:00
|
|
|
if (message.type === 'date') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-25 03:36:27 +00:00
|
|
|
message.height = messageHeight(
|
|
|
|
message,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
6 * charWidth,
|
|
|
|
windowWidth
|
|
|
|
);
|
|
|
|
})
|
2017-05-26 06:20:00 +00:00
|
|
|
)
|
2018-04-25 03:36:27 +00:00
|
|
|
);
|
2018-05-25 21:54:36 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
[actions.socket.SERVERS](state, { data }) {
|
|
|
|
if (data) {
|
|
|
|
data.forEach(({ host }) => {
|
|
|
|
state[host] = {};
|
|
|
|
});
|
|
|
|
}
|
2018-04-25 03:36:27 +00:00
|
|
|
}
|
2017-05-26 06:20:00 +00:00
|
|
|
}
|
2018-04-25 03:36:27 +00:00
|
|
|
);
|
2015-01-17 01:37:21 +00:00
|
|
|
|
2018-04-05 19:13:32 +00:00
|
|
|
export function getMessageTab(server, to) {
|
2017-06-23 00:27:56 +00:00
|
|
|
if (!to || to === '*' || (!isChannel(to) && to.indexOf('.') !== -1)) {
|
2017-04-19 23:51:55 +00:00
|
|
|
return server;
|
|
|
|
}
|
|
|
|
return to;
|
|
|
|
}
|
|
|
|
|
2017-05-02 21:21:25 +00:00
|
|
|
export function fetchMessages() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const state = getState();
|
2018-04-25 03:36:27 +00:00
|
|
|
const first = getSelectedMessages(state)[0];
|
2017-05-02 21:21:25 +00:00
|
|
|
|
|
|
|
if (!first) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const tab = state.tab.selected;
|
2020-05-19 22:30:44 +00:00
|
|
|
if (tab.name) {
|
2017-05-02 21:21:25 +00:00
|
|
|
dispatch({
|
|
|
|
type: actions.FETCH_MESSAGES,
|
|
|
|
socket: {
|
|
|
|
type: 'fetch_messages',
|
|
|
|
data: {
|
|
|
|
server: tab.server,
|
|
|
|
channel: tab.name,
|
|
|
|
next: first.id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-06-06 22:04:37 +00:00
|
|
|
export function addFetchedMessages(server, tab) {
|
|
|
|
return {
|
|
|
|
type: actions.ADD_FETCHED_MESSAGES,
|
|
|
|
server,
|
|
|
|
tab
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-05-26 06:20:00 +00:00
|
|
|
export function updateMessageHeight(wrapWidth, charWidth, windowWidth) {
|
2017-05-12 08:51:37 +00:00
|
|
|
return {
|
2016-02-16 21:43:25 +00:00
|
|
|
type: actions.UPDATE_MESSAGE_HEIGHT,
|
2017-05-12 08:51:37 +00:00
|
|
|
wrapWidth,
|
2017-05-26 06:20:00 +00:00
|
|
|
charWidth,
|
|
|
|
windowWidth
|
2017-05-12 08:51:37 +00:00
|
|
|
};
|
2015-12-28 23:34:32 +00:00
|
|
|
}
|
2015-01-21 02:06:34 +00:00
|
|
|
|
2017-04-17 20:36:37 +00:00
|
|
|
export function sendMessage(content, to, server) {
|
2016-02-16 21:43:25 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const state = getState();
|
2020-06-03 01:04:38 +00:00
|
|
|
const { wrapWidth, charWidth, windowWidth } = getApp(state);
|
2016-02-16 21:43:25 +00:00
|
|
|
|
2017-04-17 02:11:45 +00:00
|
|
|
dispatch({
|
2017-05-15 03:57:12 +00:00
|
|
|
type: actions.ADD_MESSAGE,
|
2017-04-19 23:51:55 +00:00
|
|
|
server,
|
|
|
|
tab: to,
|
2020-06-03 01:04:38 +00:00
|
|
|
message: {
|
|
|
|
from: state.servers[server].nick,
|
|
|
|
content
|
|
|
|
},
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
windowWidth,
|
2016-02-16 21:43:25 +00:00
|
|
|
socket: {
|
2017-04-17 20:36:37 +00:00
|
|
|
type: 'message',
|
|
|
|
data: { content, to, server }
|
2016-02-16 21:43:25 +00:00
|
|
|
}
|
2017-04-17 02:11:45 +00:00
|
|
|
});
|
2016-02-16 21:43:25 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-04-19 23:51:55 +00:00
|
|
|
export function addMessage(message, server, to) {
|
|
|
|
const tab = getMessageTab(server, to);
|
2015-01-17 01:37:21 +00:00
|
|
|
|
2020-06-03 01:04:38 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const { wrapWidth, charWidth, windowWidth } = getApp(getState());
|
|
|
|
|
2018-04-05 23:46:22 +00:00
|
|
|
dispatch({
|
|
|
|
type: actions.ADD_MESSAGE,
|
|
|
|
server,
|
|
|
|
tab,
|
2020-06-03 01:04:38 +00:00
|
|
|
message,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
windowWidth
|
2018-04-05 23:46:22 +00:00
|
|
|
});
|
2020-06-03 01:04:38 +00:00
|
|
|
};
|
2015-12-28 23:34:32 +00:00
|
|
|
}
|
2015-01-17 01:37:21 +00:00
|
|
|
|
2017-05-02 21:21:25 +00:00
|
|
|
export function addMessages(messages, server, to, prepend, next) {
|
2017-04-19 23:51:55 +00:00
|
|
|
const tab = getMessageTab(server, to);
|
2015-12-28 23:34:32 +00:00
|
|
|
|
2016-02-16 21:43:25 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const state = getState();
|
|
|
|
|
2017-05-02 21:21:25 +00:00
|
|
|
if (next) {
|
|
|
|
messages[0].id = next;
|
2017-05-07 20:19:15 +00:00
|
|
|
messages[0].next = true;
|
2017-05-02 21:21:25 +00:00
|
|
|
}
|
|
|
|
|
2020-06-03 01:04:38 +00:00
|
|
|
const { wrapWidth, charWidth, windowWidth } = getApp(state);
|
2016-02-16 21:43:25 +00:00
|
|
|
|
|
|
|
dispatch({
|
|
|
|
type: actions.ADD_MESSAGES,
|
2017-04-19 23:51:55 +00:00
|
|
|
server,
|
|
|
|
tab,
|
2017-05-02 21:21:25 +00:00
|
|
|
messages,
|
2020-06-03 01:04:38 +00:00
|
|
|
prepend,
|
|
|
|
wrapWidth,
|
|
|
|
charWidth,
|
|
|
|
windowWidth
|
2016-02-16 21:43:25 +00:00
|
|
|
});
|
2015-12-28 23:34:32 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-06-03 01:04:38 +00:00
|
|
|
export function addEvent(server, tab, type, ...params) {
|
|
|
|
return addMessage(
|
|
|
|
{
|
|
|
|
type: 'info',
|
|
|
|
events: [
|
|
|
|
{
|
|
|
|
type,
|
|
|
|
params,
|
|
|
|
time: unix()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
server,
|
|
|
|
tab
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function broadcastEvent(server, channels, type, ...params) {
|
|
|
|
const now = unix();
|
|
|
|
|
|
|
|
return addMessages(
|
|
|
|
channels.map(channel => ({
|
|
|
|
type: 'info',
|
|
|
|
tab: channel,
|
|
|
|
events: [
|
|
|
|
{
|
|
|
|
type,
|
|
|
|
params,
|
|
|
|
time: now
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})),
|
|
|
|
server
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-12-28 23:34:32 +00:00
|
|
|
export function broadcast(message, server, channels) {
|
2018-04-05 23:46:22 +00:00
|
|
|
return addMessages(
|
|
|
|
channels.map(channel => ({
|
|
|
|
tab: channel,
|
|
|
|
content: message,
|
|
|
|
type: 'info'
|
|
|
|
})),
|
|
|
|
server
|
|
|
|
);
|
2015-12-28 23:34:32 +00:00
|
|
|
}
|
|
|
|
|
2017-05-28 05:20:43 +00:00
|
|
|
export function print(message, server, channel, type) {
|
2015-12-28 23:34:32 +00:00
|
|
|
if (Array.isArray(message)) {
|
2018-04-05 23:46:22 +00:00
|
|
|
return addMessages(
|
|
|
|
message.map(line => ({
|
|
|
|
content: line,
|
|
|
|
type
|
|
|
|
})),
|
|
|
|
server,
|
|
|
|
channel
|
|
|
|
);
|
2015-12-28 23:34:32 +00:00
|
|
|
}
|
|
|
|
|
2018-04-05 23:46:22 +00:00
|
|
|
return addMessage(
|
|
|
|
{
|
|
|
|
content: message,
|
|
|
|
type
|
|
|
|
},
|
|
|
|
server,
|
|
|
|
channel
|
|
|
|
);
|
2015-12-28 23:34:32 +00:00
|
|
|
}
|
|
|
|
|
2017-05-28 05:20:43 +00:00
|
|
|
export function inform(message, server, channel) {
|
|
|
|
return print(message, server, channel, 'info');
|
|
|
|
}
|
|
|
|
|
2015-12-28 23:34:32 +00:00
|
|
|
export function runCommand(command, channel, server) {
|
|
|
|
return {
|
|
|
|
type: actions.COMMAND,
|
|
|
|
command,
|
|
|
|
channel,
|
|
|
|
server
|
|
|
|
};
|
|
|
|
}
|
2016-01-27 19:48:47 +00:00
|
|
|
|
|
|
|
export function raw(message, server) {
|
|
|
|
return {
|
|
|
|
type: actions.RAW,
|
|
|
|
message,
|
|
|
|
server,
|
|
|
|
socket: {
|
|
|
|
type: 'raw',
|
|
|
|
data: { message, server }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|