(Server) Add MockResponseDialog

Summary:
per title

Note:
- This is a part of this PR: https://github.com/facebook/flipper/pull/488

Reviewed By: mweststrate

Differential Revision: D20440146

fbshipit-source-id: 0a3ade1e78e62d3bc0d98ef9fb6c3f258b34af23
This commit is contained in:
Chaiwat Ekkaewnumchai
2020-03-17 10:05:27 -07:00
committed by Facebook GitHub Bot
parent adb1d6e976
commit 84f36cd0ce

View File

@@ -0,0 +1,50 @@
/**
* 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 {FlexColumn, Button, styled} from 'flipper';
import {ManageMockResponsePanel} from './ManageMockResponsePanel';
import {Route} from './types';
import React from 'react';
type Props = {
routes: {[id: string]: Route};
onHide: () => void;
};
const Title = styled('div')({
fontWeight: 500,
marginBottom: 10,
marginTop: 8,
});
const Container = styled(FlexColumn)({
padding: 10,
width: 800,
height: 550,
});
const Row = styled(FlexColumn)({
alignItems: 'flex-end',
marginTop: 16,
});
export function MockResponseDialog(props: Props) {
return (
<Container>
<Title>Mock Network Responses</Title>
<ManageMockResponsePanel routes={props.routes} />
<Row>
<Button compact padded onClick={props.onHide}>
Close
</Button>
</Row>
</Container>
);
}