Summary: Plugins moved from "sonar/desktop/src/plugins" to "sonar/desktop/plugins". Fixed all the paths after moving. New "desktop" folder structure: - `src` - Flipper desktop app JS code executing in Electron Renderer (Chrome) process. - `static` - Flipper desktop app JS code executing in Electron Main (Node.js) process. - `plugins` - Flipper desktop JS plugins. - `pkg` - Flipper packaging lib and CLI tool. - `doctor` - Flipper diagnostics lib and CLI tool. - `scripts` - Build scripts for Flipper desktop app. - `headless` - Headless version of Flipper desktop app. - `headless-tests` - Integration tests running agains Flipper headless version. Reviewed By: mweststrate Differential Revision: D20344186 fbshipit-source-id: d020da970b2ea1e001f9061a8782bfeb54e31ba0
127 lines
3.0 KiB
TypeScript
127 lines
3.0 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import {
|
|
DetailSidebar,
|
|
FlexCenter,
|
|
styled,
|
|
colors,
|
|
FlexRow,
|
|
FlexColumn,
|
|
Text,
|
|
Panel,
|
|
} from 'flipper';
|
|
import {Bookmark, URI} from '../types';
|
|
import {IconButton} from './';
|
|
import React from 'react';
|
|
|
|
type Props = {
|
|
bookmarks: Map<string, Bookmark>;
|
|
onNavigate: (uri: URI) => void;
|
|
onRemove: (uri: URI) => void;
|
|
};
|
|
|
|
const NoData = styled(FlexCenter)({
|
|
fontSize: 18,
|
|
color: colors.macOSTitleBarIcon,
|
|
});
|
|
|
|
const BookmarksList = styled.div({
|
|
overflowY: 'scroll',
|
|
overflowX: 'hidden',
|
|
height: '100%',
|
|
backgroundColor: colors.white,
|
|
});
|
|
|
|
const BookmarkContainer = styled(FlexRow)({
|
|
width: '100%',
|
|
padding: 10,
|
|
height: 55,
|
|
alignItems: 'center',
|
|
cursor: 'pointer',
|
|
borderBottom: `1px ${colors.greyTint} solid`,
|
|
':last-child': {
|
|
borderBottom: '0',
|
|
},
|
|
':active': {
|
|
backgroundColor: colors.highlight,
|
|
color: colors.white,
|
|
},
|
|
':active *': {
|
|
color: colors.white,
|
|
},
|
|
});
|
|
|
|
const BookmarkTitle = styled(Text)({
|
|
fontSize: '1.1em',
|
|
overflowX: 'hidden',
|
|
whiteSpace: 'nowrap',
|
|
textOverflow: 'ellipsis',
|
|
fontWeight: 500,
|
|
});
|
|
|
|
const BookmarkSubtitle = styled(Text)({
|
|
overflowX: 'hidden',
|
|
whiteSpace: 'nowrap',
|
|
textOverflow: 'ellipsis',
|
|
color: colors.greyTint3,
|
|
marginTop: 4,
|
|
});
|
|
|
|
const TextContainer = styled(FlexColumn)({
|
|
justifyContent: 'center',
|
|
});
|
|
|
|
const alphabetizeBookmarkCompare = (b1: Bookmark, b2: Bookmark) => {
|
|
return b1.uri < b2.uri ? -1 : b1.uri > b2.uri ? 1 : 0;
|
|
};
|
|
|
|
export default (props: Props) => {
|
|
const {bookmarks, onNavigate, onRemove} = props;
|
|
return (
|
|
<DetailSidebar>
|
|
<Panel heading="Bookmarks" floating={false} padded={false}>
|
|
{bookmarks.size === 0 ? (
|
|
<NoData grow>No Bookmarks</NoData>
|
|
) : (
|
|
<BookmarksList>
|
|
{[...bookmarks.values()]
|
|
.sort(alphabetizeBookmarkCompare)
|
|
.map((bookmark, idx) => (
|
|
<BookmarkContainer
|
|
key={idx}
|
|
role="button"
|
|
tabIndex={0}
|
|
onClick={() => {
|
|
onNavigate(bookmark.uri);
|
|
}}>
|
|
<TextContainer grow>
|
|
<BookmarkTitle>
|
|
{bookmark.commonName || bookmark.uri}
|
|
</BookmarkTitle>
|
|
{!bookmark.commonName && (
|
|
<BookmarkSubtitle>{bookmark.uri}</BookmarkSubtitle>
|
|
)}
|
|
</TextContainer>
|
|
<IconButton
|
|
color={colors.macOSTitleBarButtonBackgroundActive}
|
|
outline={false}
|
|
icon="cross-circle"
|
|
size={16}
|
|
onClick={() => onRemove(bookmark.uri)}
|
|
/>
|
|
</BookmarkContainer>
|
|
))}
|
|
</BookmarksList>
|
|
)}
|
|
</Panel>
|
|
</DetailSidebar>
|
|
);
|
|
};
|