import { Timed } from 'Player'; import React, { useEffect, useMemo, useState } from 'react'; import { observer } from 'mobx-react-lite'; import { Tabs, Input, NoContent, Icon } from 'UI'; import { List, CellMeasurer, AutoSizer } from 'react-virtualized'; import { PlayerContext, MobilePlayerContext } from 'App/components/Session/playerContext'; import BottomBlock from '../BottomBlock'; import { useModal } from 'App/components/Modal'; import { useStore } from 'App/mstore'; import { typeList } from 'Types/session/stackEvent'; import StackEventRow from 'Shared/DevTools/StackEventRow'; import StackEventModal from '../StackEventModal'; import useAutoscroll, { getLastItemTime } from '../useAutoscroll'; import { useRegExListFilterMemo, useTabListFilterMemo } from '../useListFilter'; import useCellMeasurerCache from 'App/hooks/useCellMeasurerCache'; const mapNames = (type: string) => { if (type === 'openreplay') return 'OpenReplay'; return type } const INDEX_KEY = 'stackEvent'; const ALL = 'ALL'; const TAB_KEYS = [ALL, ...typeList] as const; const TABS = TAB_KEYS.map((tab) => ({ text: tab, key: tab })); type EventsList = Array export const WebStackEventPanel = observer(() => { const { player, store } = React.useContext(PlayerContext); const jump = (t: number) => player.jump(t); const { currentTab, tabStates } = store.get(); const { stackList: list = [], stackListNow: listNow = [] } = tabStates[currentTab]; return ; }); export const MobileStackEventPanel = observer(() => { const { player, store } = React.useContext(MobilePlayerContext); const jump = (t: number) => player.jump(t); const { eventList: list = [], eventListNow: listNow = [] } = store.get(); return ; }); function EventsPanel({ list, listNow, jump, }: { list: EventsList; listNow: EventsList; jump: (t: number) => void; }) { const { sessionStore: { devTools }, } = useStore(); const { showModal } = useModal(); const [isDetailsModalActive, setIsDetailsModalActive] = useState(false); // TODO:embed that into useModal const filter = devTools[INDEX_KEY].filter; const activeTab = devTools[INDEX_KEY].activeTab; const activeIndex = devTools[INDEX_KEY].index; let filteredList = useRegExListFilterMemo(list, (it) => it.name, filter); filteredList = useTabListFilterMemo(filteredList, (it) => it.source, ALL, activeTab); const onTabClick = (activeTab: (typeof TAB_KEYS)[number]) => devTools.update(INDEX_KEY, { activeTab }); const onFilterChange = ({ target: { value } }: React.ChangeEvent) => devTools.update(INDEX_KEY, { filter: value }); const tabs = useMemo( () => TABS.filter(({ key }) => key === ALL || list.some(({ source }) => key === source)), [list.length] ); const [timeoutStartAutoscroll, stopAutoscroll] = useAutoscroll( filteredList, getLastItemTime(listNow), activeIndex, (index) => devTools.update(INDEX_KEY, { index }) ); const onMouseEnter = stopAutoscroll; const onMouseLeave = () => { if (isDetailsModalActive) { return; } timeoutStartAutoscroll(); }; const cache = useCellMeasurerCache(); const showDetails = (item: any) => { setIsDetailsModalActive(true); showModal(, { right: true, width: 500, onClose: () => { setIsDetailsModalActive(false); timeoutStartAutoscroll(); }, }); devTools.update(INDEX_KEY, { index: filteredList.indexOf(item) }); stopAutoscroll(); }; const _list = React.useRef(); useEffect(() => { if (_list.current) { // @ts-ignore _list.current.scrollToRow(activeIndex); } }, [activeIndex]); const _rowRenderer = ({ index, key, parent, style }: any) => { const item = filteredList[index]; return ( // @ts-ignore {() => ( { stopAutoscroll(); devTools.update(INDEX_KEY, { index: filteredList.indexOf(item) }); jump(item.time); }} onClick={() => showDetails(item)} /> )} ); }; return (
Stack Events
No Data } size="small" show={filteredList.length === 0} > {({ height, width }: any) => ( )}
); }