mirror of
https://github.com/wassname/talk.git
synced 2026-08-01 13:00:55 +08:00
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import pym from 'coral-framework/services/pym';
|
|
import * as actions from '../constants/stream';
|
|
|
|
export const setActiveReplyBox = (id) => ({type: actions.SET_ACTIVE_REPLY_BOX, id});
|
|
|
|
function removeParam(key, sourceURL) {
|
|
let rtn = sourceURL.split('?')[0];
|
|
let param;
|
|
let params_arr = [];
|
|
let queryString = (sourceURL.indexOf('?') !== -1) ? sourceURL.split('?')[1] : '';
|
|
if (queryString !== '') {
|
|
params_arr = queryString.split('&');
|
|
for (let i = params_arr.length - 1; i >= 0; i -= 1) {
|
|
param = params_arr[i].split('=')[0];
|
|
if (param === key) {
|
|
params_arr.splice(i, 1);
|
|
}
|
|
}
|
|
rtn = `${rtn}?${params_arr.join('&')}`;
|
|
}
|
|
return rtn;
|
|
}
|
|
|
|
export const viewAllComments = () => {
|
|
|
|
// remove the comment_id url param
|
|
const modifiedUrl = removeParam('comment_id', location.href);
|
|
|
|
try {
|
|
|
|
// "window" here refers to the embedded iframe
|
|
window.history.replaceState({}, document.title, modifiedUrl);
|
|
|
|
// also change the parent url
|
|
pym.sendMessage('coral-view-all-comments');
|
|
} catch (e) { /* not sure if we're worried about old browsers */ }
|
|
|
|
return {type: actions.VIEW_ALL_COMMENTS};
|
|
};
|
|
|
|
export const addCommentClassName = (className) => ({
|
|
type: actions.ADD_COMMENT_CLASSNAME,
|
|
className
|
|
});
|
|
|
|
export const removeCommentClassName = (idx) => ({
|
|
type: actions.REMOVE_COMMENT_CLASSNAME,
|
|
idx
|
|
});
|
|
|
|
export const setActiveTab = (tab) => (dispatch) => {
|
|
dispatch({type: actions.SET_ACTIVE_TAB, tab});
|
|
};
|