Remove user lists feature flag, making it the default
Fixes https://github.com/vector-im/riot-web/issues/11201pull/21833/head
parent
1fdd155dd2
commit
139b5663fe
|
@ -20,13 +20,8 @@ import React from 'react';
|
||||||
import {MatrixClientPeg} from './MatrixClientPeg';
|
import {MatrixClientPeg} from './MatrixClientPeg';
|
||||||
import MultiInviter from './utils/MultiInviter';
|
import MultiInviter from './utils/MultiInviter';
|
||||||
import Modal from './Modal';
|
import Modal from './Modal';
|
||||||
import { getAddressType } from './UserAddress';
|
|
||||||
import createRoom from './createRoom';
|
|
||||||
import * as sdk from './';
|
import * as sdk from './';
|
||||||
import dis from './dispatcher';
|
|
||||||
import DMRoomMap from './utils/DMRoomMap';
|
|
||||||
import { _t } from './languageHandler';
|
import { _t } from './languageHandler';
|
||||||
import SettingsStore from "./settings/SettingsStore";
|
|
||||||
import {KIND_DM, KIND_INVITE} from "./components/views/dialogs/InviteDialog";
|
import {KIND_DM, KIND_INVITE} from "./components/views/dialogs/InviteDialog";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -44,64 +39,21 @@ export function inviteMultipleToRoom(roomId, addrs) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function showStartChatInviteDialog() {
|
export function showStartChatInviteDialog() {
|
||||||
if (SettingsStore.isFeatureEnabled("feature_ftue_dms")) {
|
// This dialog handles the room creation internally - we don't need to worry about it.
|
||||||
// This new dialog handles the room creation internally - we don't need to worry about it.
|
|
||||||
const InviteDialog = sdk.getComponent("dialogs.InviteDialog");
|
const InviteDialog = sdk.getComponent("dialogs.InviteDialog");
|
||||||
Modal.createTrackedDialog(
|
Modal.createTrackedDialog(
|
||||||
'Start DM', '', InviteDialog, {kind: KIND_DM},
|
'Start DM', '', InviteDialog, {kind: KIND_DM},
|
||||||
/*className=*/null, /*isPriority=*/false, /*isStatic=*/true,
|
/*className=*/null, /*isPriority=*/false, /*isStatic=*/true,
|
||||||
);
|
);
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const AddressPickerDialog = sdk.getComponent("dialogs.AddressPickerDialog");
|
|
||||||
|
|
||||||
Modal.createTrackedDialog('Start a chat', '', AddressPickerDialog, {
|
|
||||||
title: _t('Start a chat'),
|
|
||||||
description: _t("Who would you like to communicate with?"),
|
|
||||||
placeholder: (validAddressTypes) => {
|
|
||||||
// The set of valid address type can be mutated inside the dialog
|
|
||||||
// when you first have no IS but agree to use one in the dialog.
|
|
||||||
if (validAddressTypes.includes('email')) {
|
|
||||||
return _t("Email, name or Matrix ID");
|
|
||||||
}
|
|
||||||
return _t("Name or Matrix ID");
|
|
||||||
},
|
|
||||||
validAddressTypes: ['mx-user-id', 'email'],
|
|
||||||
button: _t("Start Chat"),
|
|
||||||
onFinished: _onStartDmFinished,
|
|
||||||
}, /*className=*/null, /*isPriority=*/false, /*isStatic=*/true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function showRoomInviteDialog(roomId) {
|
export function showRoomInviteDialog(roomId) {
|
||||||
if (SettingsStore.isFeatureEnabled("feature_ftue_dms")) {
|
// This dialog handles the room creation internally - we don't need to worry about it.
|
||||||
// This new dialog handles the room creation internally - we don't need to worry about it.
|
|
||||||
const InviteDialog = sdk.getComponent("dialogs.InviteDialog");
|
const InviteDialog = sdk.getComponent("dialogs.InviteDialog");
|
||||||
Modal.createTrackedDialog(
|
Modal.createTrackedDialog(
|
||||||
'Invite Users', '', InviteDialog, {kind: KIND_INVITE, roomId},
|
'Invite Users', '', InviteDialog, {kind: KIND_INVITE, roomId},
|
||||||
/*className=*/null, /*isPriority=*/false, /*isStatic=*/true,
|
/*className=*/null, /*isPriority=*/false, /*isStatic=*/true,
|
||||||
);
|
);
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const AddressPickerDialog = sdk.getComponent("dialogs.AddressPickerDialog");
|
|
||||||
|
|
||||||
Modal.createTrackedDialog('Chat Invite', '', AddressPickerDialog, {
|
|
||||||
title: _t('Invite new room members'),
|
|
||||||
button: _t('Send Invites'),
|
|
||||||
placeholder: (validAddressTypes) => {
|
|
||||||
// The set of valid address type can be mutated inside the dialog
|
|
||||||
// when you first have no IS but agree to use one in the dialog.
|
|
||||||
if (validAddressTypes.includes('email')) {
|
|
||||||
return _t("Email, name or Matrix ID");
|
|
||||||
}
|
|
||||||
return _t("Name or Matrix ID");
|
|
||||||
},
|
|
||||||
validAddressTypes: ['mx-user-id', 'email'],
|
|
||||||
onFinished: (shouldInvite, addrs) => {
|
|
||||||
_onRoomInviteFinished(roomId, shouldInvite, addrs);
|
|
||||||
},
|
|
||||||
}, /*className=*/null, /*isPriority=*/false, /*isStatic=*/true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -122,60 +74,6 @@ export function isValid3pidInvite(event) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Canonical DMs replaces this
|
|
||||||
function _onStartDmFinished(shouldInvite, addrs) {
|
|
||||||
if (!shouldInvite) return;
|
|
||||||
|
|
||||||
const addrTexts = addrs.map((addr) => addr.address);
|
|
||||||
|
|
||||||
if (_isDmChat(addrTexts)) {
|
|
||||||
const rooms = _getDirectMessageRooms(addrTexts[0]);
|
|
||||||
if (rooms.length > 0) {
|
|
||||||
// A Direct Message room already exists for this user, so reuse it
|
|
||||||
dis.dispatch({
|
|
||||||
action: 'view_room',
|
|
||||||
room_id: rooms[0],
|
|
||||||
should_peek: false,
|
|
||||||
joining: false,
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
// Start a new DM chat
|
|
||||||
createRoom({dmUserId: addrTexts[0]}).catch((err) => {
|
|
||||||
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
|
||||||
Modal.createTrackedDialog('Failed to start chat', '', ErrorDialog, {
|
|
||||||
title: _t("Failed to start chat"),
|
|
||||||
description: ((err && err.message) ? err.message : _t("Operation failed")),
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} else if (addrTexts.length === 1) {
|
|
||||||
// Start a new DM chat
|
|
||||||
createRoom({dmUserId: addrTexts[0]}).catch((err) => {
|
|
||||||
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
|
||||||
Modal.createTrackedDialog('Failed to start chat', '', ErrorDialog, {
|
|
||||||
title: _t("Failed to start chat"),
|
|
||||||
description: ((err && err.message) ? err.message : _t("Operation failed")),
|
|
||||||
});
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
// Start multi user chat
|
|
||||||
let room;
|
|
||||||
createRoom().then((roomId) => {
|
|
||||||
room = MatrixClientPeg.get().getRoom(roomId);
|
|
||||||
return inviteMultipleToRoom(roomId, addrTexts);
|
|
||||||
}).then((result) => {
|
|
||||||
return _showAnyInviteErrors(result.states, room, result.inviter);
|
|
||||||
}).catch((err) => {
|
|
||||||
console.error(err.stack);
|
|
||||||
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
|
||||||
Modal.createTrackedDialog('Failed to invite', '', ErrorDialog, {
|
|
||||||
title: _t("Failed to invite"),
|
|
||||||
description: ((err && err.message) ? err.message : _t("Operation failed")),
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function inviteUsersToRoom(roomId, userIds) {
|
export function inviteUsersToRoom(roomId, userIds) {
|
||||||
return inviteMultipleToRoom(roomId, userIds).then((result) => {
|
return inviteMultipleToRoom(roomId, userIds).then((result) => {
|
||||||
const room = MatrixClientPeg.get().getRoom(roomId);
|
const room = MatrixClientPeg.get().getRoom(roomId);
|
||||||
|
@ -190,24 +88,6 @@ export function inviteUsersToRoom(roomId, userIds) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function _onRoomInviteFinished(roomId, shouldInvite, addrs) {
|
|
||||||
if (!shouldInvite) return;
|
|
||||||
|
|
||||||
const addrTexts = addrs.map((addr) => addr.address);
|
|
||||||
|
|
||||||
// Invite new users to a room
|
|
||||||
inviteUsersToRoom(roomId, addrTexts);
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: Immutable DMs replaces this
|
|
||||||
function _isDmChat(addrTexts) {
|
|
||||||
if (addrTexts.length === 1 && getAddressType(addrTexts[0]) === 'mx-user-id') {
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function _showAnyInviteErrors(addrs, room, inviter) {
|
function _showAnyInviteErrors(addrs, room, inviter) {
|
||||||
// Show user any errors
|
// Show user any errors
|
||||||
const failedUsers = Object.keys(addrs).filter(a => addrs[a] === 'error');
|
const failedUsers = Object.keys(addrs).filter(a => addrs[a] === 'error');
|
||||||
|
@ -243,15 +123,3 @@ function _showAnyInviteErrors(addrs, room, inviter) {
|
||||||
|
|
||||||
return addrs;
|
return addrs;
|
||||||
}
|
}
|
||||||
|
|
||||||
function _getDirectMessageRooms(addr) {
|
|
||||||
const dmRoomMap = new DMRoomMap(MatrixClientPeg.get());
|
|
||||||
const dmRooms = dmRoomMap.getDMRoomsForUserId(addr);
|
|
||||||
const rooms = dmRooms.filter((dmRoom) => {
|
|
||||||
const room = MatrixClientPeg.get().getRoom(dmRoom);
|
|
||||||
if (room) {
|
|
||||||
return room.getMyMembership() === 'join';
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return rooms;
|
|
||||||
}
|
|
||||||
|
|
|
@ -128,12 +128,6 @@ export const SETTINGS = {
|
||||||
supportedLevels: LEVELS_FEATURE,
|
supportedLevels: LEVELS_FEATURE,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
"feature_ftue_dms": {
|
|
||||||
isFeature: true,
|
|
||||||
displayName: _td("New invite dialog"),
|
|
||||||
supportedLevels: LEVELS_FEATURE,
|
|
||||||
default: false,
|
|
||||||
},
|
|
||||||
"feature_presence_in_room_list": {
|
"feature_presence_in_room_list": {
|
||||||
isFeature: true,
|
isFeature: true,
|
||||||
displayName: _td("Show a presence dot next to DMs in the room list"),
|
displayName: _td("Show a presence dot next to DMs in the room list"),
|
||||||
|
|
Loading…
Reference in New Issue