2017-05-26 06:20:00 +00:00
|
|
|
import { List, Map, Record } from 'immutable';
|
|
|
|
import { createSelector } from 'reselect';
|
2018-04-05 19:13:32 +00:00
|
|
|
import { findBreakpoints, messageHeight, linkify, timestamp, isChannel } from 'utils';
|
|
|
|
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';
|
|
|
|
|
|
|
|
const Message = Record({
|
|
|
|
id: null,
|
|
|
|
from: null,
|
|
|
|
content: '',
|
|
|
|
time: null,
|
|
|
|
type: null,
|
|
|
|
channel: false,
|
|
|
|
next: false,
|
|
|
|
height: 0,
|
|
|
|
length: 0,
|
|
|
|
breakpoints: null
|
|
|
|
});
|
|
|
|
|
|
|
|
export const getMessages = state => state.messages;
|
|
|
|
|
|
|
|
export const getSelectedMessages = createSelector(
|
|
|
|
getSelectedTab,
|
|
|
|
getMessages,
|
|
|
|
(tab, messages) => messages.getIn([tab.server, tab.name || tab.server], List())
|
|
|
|
);
|
|
|
|
|
|
|
|
export const getHasMoreMessages = createSelector(
|
|
|
|
getSelectedMessages,
|
|
|
|
messages => {
|
|
|
|
const first = messages.get(0);
|
|
|
|
return first && first.next;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
export default createReducer(Map(), {
|
|
|
|
[actions.ADD_MESSAGE](state, { server, tab, message }) {
|
|
|
|
return state.updateIn([server, tab], List(), list => list.push(new Message(message)));
|
|
|
|
},
|
|
|
|
|
|
|
|
[actions.ADD_MESSAGES](state, { server, tab, messages, prepend }) {
|
|
|
|
return state.withMutations(s => {
|
|
|
|
if (prepend) {
|
|
|
|
for (let i = messages.length - 1; i >= 0; i--) {
|
|
|
|
s.updateIn([server, tab], List(), list => list.unshift(new Message(messages[i])));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
messages.forEach(message =>
|
|
|
|
s.updateIn([server, message.tab || tab], List(), list => list.push(new Message(message)))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
[actions.DISCONNECT](state, { server }) {
|
|
|
|
return state.delete(server);
|
|
|
|
},
|
|
|
|
|
|
|
|
[actions.PART](state, { server, channels }) {
|
|
|
|
return state.withMutations(s =>
|
|
|
|
channels.forEach(channel =>
|
|
|
|
s.deleteIn([server, channel])
|
|
|
|
)
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
[actions.UPDATE_MESSAGE_HEIGHT](state, { wrapWidth, charWidth, windowWidth }) {
|
|
|
|
return state.withMutations(s =>
|
|
|
|
s.forEach((server, serverKey) =>
|
|
|
|
server.forEach((target, targetKey) =>
|
|
|
|
target.forEach((message, index) => s.setIn([serverKey, targetKey, index, 'height'],
|
|
|
|
messageHeight(message, wrapWidth, charWidth, 6 * charWidth, windowWidth))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
2015-01-17 01:37:21 +00:00
|
|
|
|
2017-04-20 03:32:22 +00:00
|
|
|
let nextID = 0;
|
|
|
|
|
2017-05-26 06:20:00 +00:00
|
|
|
function initMessage(message, tab, state) {
|
2017-04-19 23:51:55 +00:00
|
|
|
if (message.time) {
|
|
|
|
message.time = timestamp(new Date(message.time * 1000));
|
|
|
|
} else {
|
|
|
|
message.time = timestamp();
|
2016-02-16 21:43:25 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 03:32:22 +00:00
|
|
|
if (!message.id) {
|
|
|
|
message.id = nextID;
|
|
|
|
nextID++;
|
|
|
|
}
|
|
|
|
|
2017-04-19 23:51:55 +00:00
|
|
|
if (tab.charAt(0) === '#') {
|
2016-02-16 21:43:25 +00:00
|
|
|
message.channel = true;
|
|
|
|
}
|
|
|
|
|
2017-04-17 02:11:45 +00:00
|
|
|
// Collapse multiple adjacent spaces into a single one
|
2017-04-17 20:36:37 +00:00
|
|
|
message.content = message.content.replace(/\s\s+/g, ' ');
|
2016-02-16 21:43:25 +00:00
|
|
|
|
2017-04-17 20:36:37 +00:00
|
|
|
if (message.content.indexOf('\x01ACTION') === 0) {
|
2018-03-25 00:34:41 +00:00
|
|
|
const { from } = message;
|
2017-04-17 02:11:45 +00:00
|
|
|
message.from = null;
|
|
|
|
message.type = 'action';
|
2017-04-17 20:36:37 +00:00
|
|
|
message.content = from + message.content.slice(7, -1);
|
2017-04-17 02:11:45 +00:00
|
|
|
}
|
|
|
|
|
2017-06-06 23:03:35 +00:00
|
|
|
const { wrapWidth, charWidth, windowWidth } = getApp(state);
|
2016-02-16 21:43:25 +00:00
|
|
|
|
2017-04-17 20:36:37 +00:00
|
|
|
message.length = message.content.length;
|
|
|
|
message.breakpoints = findBreakpoints(message.content);
|
2017-05-26 06:20:00 +00:00
|
|
|
message.height = messageHeight(message, wrapWidth, charWidth, 6 * charWidth, windowWidth);
|
2017-04-17 20:36:37 +00:00
|
|
|
message.content = linkify(message.content);
|
2016-02-16 21:43:25 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
const first = getSelectedMessages(state).get(0);
|
|
|
|
|
|
|
|
if (!first) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const tab = state.tab.selected;
|
|
|
|
if (tab.isChannel()) {
|
|
|
|
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();
|
|
|
|
|
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,
|
2017-04-17 02:11:45 +00:00
|
|
|
message: initMessage({
|
|
|
|
from: state.servers.getIn([server, 'nick']),
|
2017-04-19 23:51:55 +00:00
|
|
|
content
|
2017-05-26 06:20:00 +00:00
|
|
|
}, to, state),
|
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
|
|
|
|
2016-02-16 21:43:25 +00:00
|
|
|
return (dispatch, getState) => dispatch({
|
2015-12-28 23:34:32 +00:00
|
|
|
type: actions.ADD_MESSAGE,
|
2017-04-19 23:51:55 +00:00
|
|
|
server,
|
|
|
|
tab,
|
2017-05-26 06:20:00 +00:00
|
|
|
message: initMessage(message, tab, getState())
|
2016-02-16 21:43:25 +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
|
|
|
}
|
|
|
|
|
2017-05-26 06:20:00 +00:00
|
|
|
messages.forEach(message => initMessage(message, message.tab || tab, 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,
|
|
|
|
prepend
|
2016-02-16 21:43:25 +00:00
|
|
|
});
|
2015-12-28 23:34:32 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function broadcast(message, server, channels) {
|
2016-02-04 02:35:50 +00:00
|
|
|
return addMessages(channels.map(channel => ({
|
2017-04-19 23:51:55 +00:00
|
|
|
tab: channel,
|
2017-04-17 20:36:37 +00:00
|
|
|
content: message,
|
2016-02-04 02:35:50 +00:00
|
|
|
type: 'info'
|
2017-04-19 23:51:55 +00:00
|
|
|
})), 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)) {
|
2017-04-17 20:36:37 +00:00
|
|
|
return addMessages(message.map(line => ({
|
|
|
|
content: line,
|
2017-05-28 05:20:43 +00:00
|
|
|
type
|
2017-04-19 23:51:55 +00:00
|
|
|
})), server, channel);
|
2015-12-28 23:34:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return addMessage({
|
2017-04-17 20:36:37 +00:00
|
|
|
content: message,
|
2017-05-28 05:20:43 +00:00
|
|
|
type
|
2017-04-19 23:51:55 +00:00
|
|
|
}, 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 }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|