forked from Ivasoft/mattermost-mobile
33 lines
1.4 KiB
JavaScript
33 lines
1.4 KiB
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import {getDirectChannelName} from 'mattermost-redux/utils/channel_utils';
|
|
import {createDirectChannel} from 'mattermost-redux/actions/channels';
|
|
import {getProfilesByIds, getStatusesByIds} from 'mattermost-redux/actions/users';
|
|
import {handleSelectChannel, toggleDMChannel} from 'app/actions/views/channel';
|
|
|
|
export function makeDirectChannel(otherUserId) {
|
|
return async (dispatch, getState) => {
|
|
const state = getState();
|
|
const {currentUserId} = state.entities.users;
|
|
const channelName = getDirectChannelName(currentUserId, otherUserId);
|
|
const {channels, myMembers} = state.entities.channels;
|
|
const channel = Object.values(channels).find((c) => c.name === channelName);
|
|
|
|
getProfilesByIds([otherUserId])(dispatch, getState);
|
|
getStatusesByIds([otherUserId])(dispatch, getState);
|
|
|
|
if (channel && myMembers[channel.id]) {
|
|
toggleDMChannel(otherUserId, 'true')(dispatch, getState);
|
|
handleSelectChannel(channel.id)(dispatch, getState);
|
|
return true;
|
|
}
|
|
const created = await createDirectChannel(currentUserId, otherUserId)(dispatch, getState);
|
|
if (created.data) {
|
|
handleSelectChannel(created.data.id)(dispatch, getState);
|
|
}
|
|
|
|
return created;
|
|
};
|
|
}
|