Include non-matching DMs in Spotlight recent conversations when the DM's userId is part of the search API results (#11374)
* This addresses two issues:
1. Include non-matching DMs in Spotlight suggestions if the userId of the DM is included in the user directory search results
2. The user directory search results order is kept when there is no relevant activity between users, instead of sorting by MXID
* Applying feedback from PR:
1. Updated comments
2. Renamed users to userDirectorySearchResults
3. Makes sure linter is happy
This commit is contained in:
@@ -315,7 +315,7 @@ const SpotlightDialog: React.FC<IProps> = ({ initialText = "", initialFilter = n
|
||||
} = usePublicRoomDirectory();
|
||||
const [showRooms, setShowRooms] = useState(true);
|
||||
const [showSpaces, setShowSpaces] = useState(false);
|
||||
const { loading: peopleLoading, users, search: searchPeople } = useUserDirectory();
|
||||
const { loading: peopleLoading, users: userDirectorySearchResults, search: searchPeople } = useUserDirectory();
|
||||
const { loading: profileLoading, profile, search: searchProfileInfo } = useProfileInfo();
|
||||
const searchParams: [IDirectoryOpts] = useMemo(
|
||||
() => [
|
||||
@@ -363,7 +363,7 @@ const SpotlightDialog: React.FC<IProps> = ({ initialText = "", initialFilter = n
|
||||
}
|
||||
}
|
||||
addUserResults(findVisibleRoomMembers(visibleRooms, cli), false);
|
||||
addUserResults(users, true);
|
||||
addUserResults(userDirectorySearchResults, true);
|
||||
if (profile) {
|
||||
addUserResults([new DirectoryMember(profile)], true);
|
||||
}
|
||||
@@ -389,7 +389,7 @@ const SpotlightDialog: React.FC<IProps> = ({ initialText = "", initialFilter = n
|
||||
...userResults,
|
||||
...publicRooms.map(toPublicRoomResult),
|
||||
].filter((result) => filter === null || result.filter.includes(filter));
|
||||
}, [cli, users, profile, publicRooms, filter, msc3946ProcessDynamicPredecessor]);
|
||||
}, [cli, userDirectorySearchResults, profile, publicRooms, filter, msc3946ProcessDynamicPredecessor]);
|
||||
|
||||
const results = useMemo<Record<Section, Result[]>>(() => {
|
||||
const results: Record<Section, Result[]> = {
|
||||
@@ -407,12 +407,18 @@ const SpotlightDialog: React.FC<IProps> = ({ initialText = "", initialFilter = n
|
||||
|
||||
possibleResults.forEach((entry) => {
|
||||
if (isRoomResult(entry)) {
|
||||
if (
|
||||
!entry.room.normalizedName?.includes(normalizedQuery) &&
|
||||
!entry.room.getCanonicalAlias()?.toLowerCase().includes(lcQuery) &&
|
||||
!entry.query?.some((q) => q.includes(lcQuery))
|
||||
)
|
||||
return; // bail, does not match query
|
||||
// If the room is a DM with a user that is part of the user directory search results,
|
||||
// we can assume the user is a relevant result, so include the DM with them too.
|
||||
const userId = DMRoomMap.shared().getUserIdForRoomId(entry.room.roomId);
|
||||
if (!userDirectorySearchResults.some((user) => user.userId === userId)) {
|
||||
if (
|
||||
!entry.room.normalizedName?.includes(normalizedQuery) &&
|
||||
!entry.room.getCanonicalAlias()?.toLowerCase().includes(lcQuery) &&
|
||||
!entry.query?.some((q) => q.includes(lcQuery))
|
||||
) {
|
||||
return; // bail, does not match query
|
||||
}
|
||||
}
|
||||
} else if (isMemberResult(entry)) {
|
||||
if (!entry.alreadyFiltered && !entry.query?.some((q) => q.includes(lcQuery))) return; // bail, does not match query
|
||||
} else if (isPublicRoomResult(entry)) {
|
||||
@@ -463,7 +469,7 @@ const SpotlightDialog: React.FC<IProps> = ({ initialText = "", initialFilter = n
|
||||
}
|
||||
|
||||
return results;
|
||||
}, [trimmedQuery, filter, cli, possibleResults, memberComparator]);
|
||||
}, [trimmedQuery, filter, cli, possibleResults, userDirectorySearchResults, memberComparator]);
|
||||
|
||||
const numResults = sum(Object.values(results).map((it) => it.length));
|
||||
useWebSearchMetrics(numResults, query.length, true);
|
||||
|
||||
@@ -16,7 +16,6 @@ limitations under the License.
|
||||
|
||||
import { groupBy, mapValues, maxBy, minBy, sumBy, takeRight } from "lodash";
|
||||
import { MatrixClient, Room, RoomMember } from "matrix-js-sdk/src/matrix";
|
||||
import { compare } from "matrix-js-sdk/src/utils";
|
||||
|
||||
import { Member } from "./direct-messages";
|
||||
import DMRoomMap from "./DMRoomMap";
|
||||
@@ -39,7 +38,9 @@ export const compareMembers =
|
||||
|
||||
if (aScore === bScore) {
|
||||
if (aNumRooms === bNumRooms) {
|
||||
return compare(a.userId, b.userId);
|
||||
// If there is no activity between members,
|
||||
// keep the order received from the user directory search results
|
||||
return 0;
|
||||
}
|
||||
|
||||
return bNumRooms - aNumRooms;
|
||||
|
||||
Reference in New Issue
Block a user