57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
import React from "react";
|
|
import styled from "styled-components";
|
|
import AppTimeoutImage from "assets/images/timeout-image.png";
|
|
|
|
const Wrapper = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
height: calc(100vh - ${(props) => props.theme.headerHeight});
|
|
.bold-text {
|
|
font-weight: ${(props) => props.theme.fontWeights[3]};
|
|
font-size: 24px;
|
|
}
|
|
.page-unavailable-img {
|
|
width: 35%;
|
|
}
|
|
.button-position {
|
|
margin: auto;
|
|
}
|
|
`;
|
|
|
|
const RetryButton = styled.button`
|
|
background-color: #f3672a;
|
|
color: white;
|
|
height: 40px;
|
|
width: 300px;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
font-size: 17px;
|
|
`;
|
|
|
|
const ServerTimeout = () => {
|
|
return (
|
|
<Wrapper>
|
|
<img
|
|
src={AppTimeoutImage}
|
|
alt="Page Unavailable"
|
|
className="page-unavailable-img"
|
|
/>
|
|
<div>
|
|
<p className="bold-text">
|
|
Appsmith server is taking too long to respond
|
|
</p>
|
|
<p>Please retry after some time</p>
|
|
<RetryButton onClick={() => window.location.reload()}>
|
|
{"Retry"}
|
|
</RetryButton>
|
|
</div>
|
|
</Wrapper>
|
|
);
|
|
};
|
|
|
|
export default ServerTimeout;
|