2019-05-01 15:58:32 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { EventStatus } from 'matrix-js-sdk';
|
2019-05-15 17:53:49 +03:00
|
|
|
import MatrixClientPeg from '../MatrixClientPeg';
|
2019-05-24 15:41:24 +03:00
|
|
|
import { findLastIndex, findIndex } from "lodash";
|
|
|
|
import shouldHideEvent from "../shouldHideEvent";
|
2019-05-01 15:58:32 +03:00
|
|
|
/**
|
|
|
|
* Returns whether an event should allow actions like reply, reactions, edit, etc.
|
|
|
|
* which effectively checks whether it's a regular message that has been sent and that we
|
|
|
|
* can display.
|
|
|
|
*
|
|
|
|
* @param {MatrixEvent} mxEvent The event to check
|
|
|
|
* @returns {boolean} true if actionable
|
|
|
|
*/
|
|
|
|
export function isContentActionable(mxEvent) {
|
|
|
|
const { status: eventStatus } = mxEvent;
|
|
|
|
|
|
|
|
// status is SENT before remote-echo, null after
|
|
|
|
const isSent = !eventStatus || eventStatus === EventStatus.SENT;
|
|
|
|
|
|
|
|
if (isSent && mxEvent.getType() === 'm.room.message') {
|
|
|
|
const content = mxEvent.getContent();
|
|
|
|
if (
|
|
|
|
content.msgtype &&
|
|
|
|
content.msgtype !== 'm.bad.encrypted' &&
|
|
|
|
content.hasOwnProperty('body')
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2019-05-15 17:53:49 +03:00
|
|
|
|
|
|
|
export function canEditContent(mxEvent) {
|
|
|
|
return isContentActionable(mxEvent) &&
|
2019-05-17 15:26:06 +03:00
|
|
|
mxEvent.getOriginalContent().msgtype === "m.text" &&
|
2019-05-15 17:53:49 +03:00
|
|
|
mxEvent.getSender() === MatrixClientPeg.get().getUserId();
|
|
|
|
}
|
2019-05-24 15:41:24 +03:00
|
|
|
|
2019-05-27 17:22:55 +03:00
|
|
|
export function findEditableEvent(room, isForward, fromEventId = undefined) {
|
2019-05-24 15:41:24 +03:00
|
|
|
const liveTimeline = room.getLiveTimeline();
|
|
|
|
const events = liveTimeline.getEvents();
|
2019-05-27 17:22:55 +03:00
|
|
|
const maxIdx = events.length - 1;
|
|
|
|
const inc = isForward ? 1 : -1;
|
|
|
|
const beginIdx = isForward ? 0 : maxIdx;
|
|
|
|
let endIdx = isForward ? maxIdx : 0;
|
|
|
|
if (!fromEventId) {
|
|
|
|
endIdx = Math.min(Math.max(0, beginIdx + (inc * 100)), maxIdx);
|
2019-05-24 15:41:24 +03:00
|
|
|
}
|
2019-05-27 17:22:55 +03:00
|
|
|
let foundFromEventId = !fromEventId;
|
|
|
|
for (let i = beginIdx; i !== (endIdx + inc); i += inc) {
|
|
|
|
const e = events[i];
|
|
|
|
// find start event first
|
|
|
|
if (!foundFromEventId && e.getId() === fromEventId) {
|
|
|
|
foundFromEventId = true;
|
|
|
|
// don't look further than 100 events from `fromEventId`
|
|
|
|
// to not iterate potentially 1000nds of events on key up/down
|
|
|
|
endIdx = Math.min(Math.max(0, i + (inc * 100)), maxIdx);
|
|
|
|
} else if (foundFromEventId && !shouldHideEvent(e) && canEditContent(e)) {
|
|
|
|
// otherwise look for editable event
|
|
|
|
return e;
|
2019-05-24 15:41:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-27 17:22:55 +03:00
|
|
|
|