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.
|
|
|
|
*/
|
|
|
|
|
2020-10-14 00:38:59 +08:00
|
|
|
import {MatrixEvent} from "matrix-js-sdk/src/models/event";
|
|
|
|
|
2017-10-29 15:43:52 +08:00
|
|
|
import SettingsStore from "./settings/SettingsStore";
|
2021-06-05 13:25:01 +08:00
|
|
|
import {IState} 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 = {
|
2017-08-10 22:22:53 +08:00
|
|
|
isMemberEvent: ev.getType() === 'm.room.member',
|
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;
|
|
|
|
diff.isJoin = isMembershipChanged && content.membership === 'join';
|
|
|
|
diff.isPart = isMembershipChanged && content.membership === 'leave' && ev.getStateKey() === ev.getSender();
|
2018-02-23 00:14:56 +08:00
|
|
|
|
2018-02-28 08:49: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
|
|
|
|
*/
|
|
|
|
export default function shouldHideEvent(ev: MatrixEvent, ctx?: IState): boolean {
|
|
|
|
// Accessing the settings store directly can be expensive if done frequently,
|
|
|
|
// so we should prefer using cached values if a RoomContext is available
|
|
|
|
const isEnabled = ctx ?
|
|
|
|
name => ctx[name] :
|
|
|
|
name => SettingsStore.getValue(name, ev.getRoomId());
|
2017-10-29 15:43:52 +08:00
|
|
|
|
2017-07-22 02:38:01 +08:00
|
|
|
// Hide redacted events
|
2019-01-25 11:57:40 +08:00
|
|
|
if (ev.isRedacted() && !isEnabled('showRedactions')) 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)
|
2019-07-17 23:56:15 +08:00
|
|
|
if (ev.isRelation("m.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) {
|
2019-01-25 11:57:40 +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;
|
|
|
|
}
|