Migrated Timeline to TypeScript

Summary: Migrated Timeline.js to Timeline.tsx

Reviewed By: danielbuechele

Differential Revision: D17132222

fbshipit-source-id: ffe5b74459d1f3ec48873a94a95c40e855aa45da
This commit is contained in:
Benjamin Elo
2019-09-02 03:54:48 -07:00
committed by Facebook Github Bot
parent d3023946da
commit 10e90f3f57
2 changed files with 12 additions and 13 deletions

View File

@@ -0,0 +1,84 @@
/**
* Copyright 2018-present Facebook.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* @format
*/
import {colors, FlexCenter, styled, LoadingIndicator} from 'flipper';
import NavigationInfoBox from './NavigationInfoBox';
import {Bookmark, NavigationEvent, URI} from '../types';
import React from 'react';
type Props = {
bookmarks: Map<string, Bookmark>;
events: Array<NavigationEvent>;
onNavigate: (uri: URI) => void;
onFavorite: (uri: URI) => void;
};
const TimelineContainer = styled('div')({
overflowY: 'scroll',
flexGrow: 1,
});
const NavigationEventContainer = styled('div')({
display: 'flex',
margin: 20,
});
const NoData = styled(FlexCenter)({
height: '100%',
fontSize: 18,
backgroundColor: colors.macOSTitleBarBackgroundBlur,
color: colors.macOSTitleBarIcon,
});
const ScreenshotContainer = styled('div')({
width: 200,
minWidth: 200,
margin: 10,
border: `1px solid ${colors.highlight}`,
borderRadius: '10px',
overflow: 'hidden',
img: {
width: '100%',
},
});
export default (props: Props) => {
const {bookmarks, events, onNavigate, onFavorite} = props;
return events.length === 0 ? (
<NoData>No Navigation Events to Show</NoData>
) : (
<TimelineContainer>
{events.map((event: NavigationEvent, idx: number) => {
return (
<NavigationEventContainer>
{event.uri != null || event.className != null ? (
<ScreenshotContainer>
{event.screenshot != null ? (
<img src={event.screenshot} />
) : (
<FlexCenter grow>
<LoadingIndicator size={32} />
</FlexCenter>
)}
</ScreenshotContainer>
) : null}
<NavigationInfoBox
key={idx}
isBookmarked={
event.uri != null ? bookmarks.has(event.uri) : false
}
className={event.className}
uri={event.uri}
onNavigate={onNavigate}
onFavorite={onFavorite}
/>
</NavigationEventContainer>
);
})}
</TimelineContainer>
);
};