2017-07-22 02:38:01 +08:00
|
|
|
/*
|
|
|
|
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-06-29 20:11:58 +08:00
|
|
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
2022-04-08 19:10:10 +08:00
|
|
|
import { EventType, RelationType } from "matrix-js-sdk/src/@types/event";
|
2020-10-14 00:38:59 +08:00
|
|
|
|
2017-10-29 15:43:52 +08:00
|
|
|
import SettingsStore from "./settings/SettingsStore";
|
2021-10-01 21:35:54 +08:00
|
|
|
import { IRoomState } from "./components/structures/RoomView";
|
2017-10-29 15:43:52 +08:00
|
|
|
|
2020-10-14 00:38:59 +08:00
|
|
|
interface IDiff {
|
|
|
|
isMemberEvent: boolean;
|
|
|
|
isJoin?: boolean;
|
|
|
|
isPart?: boolean;
|
|
|
|
isDisplaynameChange?: boolean;
|
|
|
|
isAvatarChange?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
function memberEventDiff(ev: MatrixEvent): IDiff {
|
|
|
|
const diff: IDiff = {
|
2022-04-08 19:10:10 +08:00
|
|
|
isMemberEvent: ev.getType() === EventType.RoomMember,
|
2017-08-05 00:22:01 +08:00
|
|
|
};
|
2017-07-22 02:38:01 +08:00
|
|
|
|
2017-08-10 22:22:53 +08:00
|
|
|
// If is not a Member Event then the other checks do not apply, so bail early.
|
2017-08-10 20:58:19 +08:00
|
|
|
if (!diff.isMemberEvent) return diff;
|
2017-07-22 02:38:01 +08:00
|
|
|
|
2017-08-05 00:22:01 +08:00
|
|
|
const content = ev.getContent();
|
|
|
|
const prevContent = ev.getPrevContent();
|
2017-07-26 18:51:41 +08:00
|
|
|
|
2018-02-28 08:49:14 +08:00
|
|
|
const isMembershipChanged = content.membership !== prevContent.membership;
|
2022-12-12 19:24:14 +08:00
|
|
|
diff.isJoin = isMembershipChanged && content.membership === "join";
|
|
|
|
diff.isPart = isMembershipChanged && content.membership === "leave" && ev.getStateKey() === ev.getSender();
|
2018-02-23 00:14:56 +08:00
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
const isJoinToJoin = !isMembershipChanged && content.membership === "join";
|
2017-08-05 00:22:01 +08:00
|
|
|
diff.isDisplaynameChange = isJoinToJoin && content.displayname !== prevContent.displayname;
|
|
|
|
diff.isAvatarChange = isJoinToJoin && content.avatar_url !== prevContent.avatar_url;
|
|
|
|
return diff;
|
2017-07-22 02:38:01 +08:00
|
|
|
}
|
|
|
|
|
2021-06-05 13:25:01 +08:00
|
|
|
/**
|
|
|
|
* Determines whether the given event should be hidden from timelines.
|
|
|
|
* @param ev The event
|
|
|
|
* @param ctx An optional RoomContext to pull cached settings values from to avoid
|
|
|
|
* hitting the settings store
|
|
|
|
*/
|
2021-10-01 21:35:54 +08:00
|
|
|
export default function shouldHideEvent(ev: MatrixEvent, ctx?: IRoomState): boolean {
|
2021-06-05 13:25:01 +08:00
|
|
|
// Accessing the settings store directly can be expensive if done frequently,
|
|
|
|
// so we should prefer using cached values if a RoomContext is available
|
2023-02-13 19:39:16 +08:00
|
|
|
const isEnabled = ctx
|
|
|
|
? (name: keyof IRoomState) => ctx[name]
|
|
|
|
: (name: string) => SettingsStore.getValue(name, ev.getRoomId());
|
2017-10-29 15:43:52 +08:00
|
|
|
|
2017-07-22 02:38:01 +08:00
|
|
|
// Hide redacted events
|
2022-01-14 22:41:40 +08:00
|
|
|
// Deleted events with a thread are always shown regardless of user preference
|
|
|
|
// to make sure that a thread can be accessible even if the root message is deleted
|
2022-12-12 19:24:14 +08:00
|
|
|
if (ev.isRedacted() && !isEnabled("showRedactions") && !ev.getThread()) return true;
|
2019-06-04 00:51:40 +08:00
|
|
|
|
2019-06-24 22:53:42 +08:00
|
|
|
// Hide replacement events since they update the original tile (if enabled)
|
2022-04-08 19:10:10 +08:00
|
|
|
if (ev.isRelation(RelationType.Replace)) return true;
|
2017-08-05 00:22:01 +08:00
|
|
|
|
|
|
|
const eventDiff = memberEventDiff(ev);
|
|
|
|
|
2017-08-10 20:58:19 +08:00
|
|
|
if (eventDiff.isMemberEvent) {
|
2022-12-12 19:24:14 +08:00
|
|
|
if ((eventDiff.isJoin || eventDiff.isPart) && !isEnabled("showJoinLeaves")) return true;
|
|
|
|
if (eventDiff.isAvatarChange && !isEnabled("showAvatarChanges")) return true;
|
|
|
|
if (eventDiff.isDisplaynameChange && !isEnabled("showDisplaynameChanges")) return true;
|
2017-08-05 00:22:01 +08:00
|
|
|
}
|
|
|
|
|
2017-07-22 02:38:01 +08:00
|
|
|
return false;
|
|
|
|
}
|