1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-16 23:40:15 -07:00
deskreen/app/components/AllowConnectionForDeviceAlert.tsx
2020-09-24 19:06:07 +03:00

57 lines
1.4 KiB
TypeScript

import React from 'react';
import { Row, Col } from 'react-flexbox-grid';
import { Text, H3, Intent, Alert } from '@blueprintjs/core';
import isProduction from '../utils/isProduction';
interface AllowConnectionForDeviceAlertProps {
device: Device | null;
isOpen: boolean;
onCancel: () => void;
onConfirm: () => void;
}
export default function AllowConnectionForDeviceAlert(
props: AllowConnectionForDeviceAlertProps
) {
const { device, isOpen, onCancel, onConfirm } = props;
return (
<Alert
className="class-allow-device-to-connect-alert"
cancelButtonText="Deny"
confirmButtonText="Allow"
icon="feed"
intent={Intent.DANGER}
isOpen={isOpen}
onCancel={onCancel}
onConfirm={onConfirm}
transitionDuration={isProduction() ? 700 : 0}
>
<H3>Device is trying to connect</H3>
<Row>
<Col>
<Text>{`Device IP: `}</Text>
<span id="allow-connection-device-alert-device-ip-span">
{device?.deviceIp}
</span>
</Col>
</Row>
<Row>
<Col>
<Text>{`Device Type: ${device?.deviceType}`}</Text>
</Col>
</Row>
<Row>
<Col>
<Text>{`Device OS: ${device?.deviceOs}`}</Text>
</Col>
</Row>
<Row>
<Col>
<Text>{`session ID: ${device?.sessionId}`}</Text>
</Col>
</Row>
</Alert>
);
}