mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-03-22 19:07:48 +01:00
125 lines
4.2 KiB
JavaScript
125 lines
4.2 KiB
JavaScript
/* eslint-disable react/prop-types */
|
|
import React, { useState, useEffect } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import './RoomViewFloating.scss';
|
|
|
|
import initMatrix from '../../../client/initMatrix';
|
|
import cons from '../../../client/state/cons';
|
|
import { markAsRead } from '../../../client/action/notifications';
|
|
|
|
import Text from '../../atoms/text/Text';
|
|
import Button from '../../atoms/button/Button';
|
|
|
|
import MessageIC from '../../../../public/res/ic/outlined/message.svg';
|
|
import MessageUnreadIC from '../../../../public/res/ic/outlined/message-unread.svg';
|
|
import TickMarkIC from '../../../../public/res/ic/outlined/tick-mark.svg';
|
|
|
|
import { getUsersActionJsx } from './common';
|
|
|
|
function useJumpToEvent(roomTimeline) {
|
|
const [eventId, setEventId] = useState(null);
|
|
|
|
const jumpToEvent = () => {
|
|
roomTimeline.loadEventTimeline(eventId);
|
|
};
|
|
|
|
const cancelJumpToEvent = () => {
|
|
markAsRead(roomTimeline.roomId);
|
|
setEventId(null);
|
|
};
|
|
|
|
useEffect(() => {
|
|
const readEventId = roomTimeline.getReadUpToEventId();
|
|
// we only show "Jump to unread" btn only if the event is not in timeline.
|
|
// if event is in timeline
|
|
// we will automatically open the timeline from that event position
|
|
if (!readEventId?.startsWith('~') && !roomTimeline.hasEventInTimeline(readEventId)) {
|
|
setEventId(readEventId);
|
|
}
|
|
|
|
const { notifications } = initMatrix;
|
|
const handleMarkAsRead = () => setEventId(null);
|
|
notifications.on(cons.events.notifications.FULL_READ, handleMarkAsRead);
|
|
|
|
return () => {
|
|
notifications.removeListener(cons.events.notifications.FULL_READ, handleMarkAsRead);
|
|
setEventId(null);
|
|
};
|
|
}, [roomTimeline]);
|
|
|
|
return [!!eventId, jumpToEvent, cancelJumpToEvent];
|
|
}
|
|
|
|
function useTypingMembers(roomTimeline) {
|
|
const [typingMembers, setTypingMembers] = useState(new Set());
|
|
|
|
const updateTyping = (members) => {
|
|
const mx = initMatrix.matrixClient;
|
|
members.delete(mx.getUserId());
|
|
setTypingMembers(members);
|
|
};
|
|
|
|
useEffect(() => {
|
|
setTypingMembers(new Set());
|
|
roomTimeline.on(cons.events.roomTimeline.TYPING_MEMBERS_UPDATED, updateTyping);
|
|
return () => {
|
|
roomTimeline?.removeListener(cons.events.roomTimeline.TYPING_MEMBERS_UPDATED, updateTyping);
|
|
};
|
|
}, [roomTimeline]);
|
|
|
|
return [typingMembers];
|
|
}
|
|
|
|
function useScrollToBottom(roomTimeline) {
|
|
const [isAtBottom, setIsAtBottom] = useState(true);
|
|
const handleAtBottom = (atBottom) => setIsAtBottom(atBottom);
|
|
|
|
useEffect(() => {
|
|
setIsAtBottom(true);
|
|
roomTimeline.on(cons.events.roomTimeline.AT_BOTTOM, handleAtBottom);
|
|
return () => roomTimeline.removeListener(cons.events.roomTimeline.AT_BOTTOM, handleAtBottom);
|
|
}, [roomTimeline]);
|
|
|
|
return [isAtBottom, setIsAtBottom];
|
|
}
|
|
|
|
function RoomViewFloating({
|
|
roomId, roomTimeline,
|
|
}) {
|
|
const [isJumpToEvent, jumpToEvent, cancelJumpToEvent] = useJumpToEvent(roomTimeline);
|
|
const [typingMembers] = useTypingMembers(roomTimeline);
|
|
const [isAtBottom, setIsAtBottom] = useScrollToBottom(roomTimeline);
|
|
|
|
const handleScrollToBottom = () => {
|
|
roomTimeline.emit(cons.events.roomTimeline.SCROLL_TO_LIVE);
|
|
setIsAtBottom(true);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className={`room-view__unread ${isJumpToEvent ? 'room-view__unread--open' : ''}`}>
|
|
<Button iconSrc={MessageUnreadIC} onClick={jumpToEvent} variant="primary">
|
|
<Text variant="b3" weight="medium">Jump to unread messages</Text>
|
|
</Button>
|
|
<Button iconSrc={TickMarkIC} onClick={cancelJumpToEvent} variant="primary">
|
|
<Text variant="b3" weight="bold">Mark as read</Text>
|
|
</Button>
|
|
</div>
|
|
<div className={`room-view__typing${typingMembers.size > 0 ? ' room-view__typing--open' : ''}`}>
|
|
<div className="bouncing-loader"><div /></div>
|
|
<Text variant="b2">{getUsersActionJsx(roomId, [...typingMembers], 'typing...')}</Text>
|
|
</div>
|
|
<div className={`room-view__STB${isAtBottom ? '' : ' room-view__STB--open'}`}>
|
|
<Button iconSrc={MessageIC} onClick={handleScrollToBottom}>
|
|
<Text variant="b3" weight="medium">Jump to latest</Text>
|
|
</Button>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
RoomViewFloating.propTypes = {
|
|
roomId: PropTypes.string.isRequired,
|
|
roomTimeline: PropTypes.shape({}).isRequired,
|
|
};
|
|
|
|
export default RoomViewFloating;
|