2023-05-14 23:09:54 +00:00
|
|
|
import { InfoOutlineIcon } from '@chakra-ui/icons';
|
2023-05-14 23:22:23 +00:00
|
|
|
import { Tooltip, VStack, Text, Box, Flex } from '@chakra-ui/react';
|
2023-05-14 23:09:54 +00:00
|
|
|
import { workerClientBus } from './decrypt-worker/client';
|
|
|
|
import { DECRYPTION_WORKER_ACTION_NAME } from './decrypt-worker/constants';
|
|
|
|
|
|
|
|
import usePromise from 'react-promise-suspense';
|
|
|
|
|
|
|
|
const getSDKVersion = async () => {
|
2023-05-14 23:22:23 +00:00
|
|
|
return workerClientBus.request(DECRYPTION_WORKER_ACTION_NAME.VERSION, null);
|
2023-05-14 23:09:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export function SDKVersion() {
|
|
|
|
const sdkVersion = usePromise(getSDKVersion, []);
|
|
|
|
return (
|
2023-05-14 23:22:23 +00:00
|
|
|
<Flex pl="1" alignItems="center">
|
|
|
|
<Tooltip
|
|
|
|
hasArrow
|
|
|
|
placement="top"
|
|
|
|
label={
|
|
|
|
<VStack>
|
|
|
|
<Text>App: __APP_VERSION__</Text>
|
|
|
|
<Text>SDK: {sdkVersion}</Text>
|
|
|
|
</VStack>
|
|
|
|
}
|
|
|
|
bg="gray.300"
|
|
|
|
color="black"
|
|
|
|
>
|
|
|
|
<InfoOutlineIcon />
|
|
|
|
</Tooltip>
|
|
|
|
</Flex>
|
2023-05-14 23:09:54 +00:00
|
|
|
);
|
|
|
|
}
|