add mobile warning
This commit is contained in:
parent
7324669322
commit
62bb309df7
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Added
|
||||
|
||||
- Clarify that the admin page only works for Mastodon and Pleroma instances.
|
||||
- Added a warning on mobile devices suggesting to view the site on a larger computer.
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { Button, Classes, H2, NonIdealState, Spinner } from "@blueprintjs/core";
|
||||
import { Button, Callout, Classes, H2, Intent, NonIdealState, Spinner } from "@blueprintjs/core";
|
||||
import { IconNames } from "@blueprintjs/icons";
|
||||
import { push } from "connected-react-router";
|
||||
import React from "react";
|
||||
|
@ -7,6 +7,7 @@ import { Dispatch } from "redux";
|
|||
import styled from "styled-components";
|
||||
import { setResultHover, updateSearch } from "../../redux/actions";
|
||||
import { IAppState, ISearchResultInstance } from "../../redux/types";
|
||||
import { isSmallScreen } from "../../util";
|
||||
import { SearchResult } from "../molecules";
|
||||
|
||||
const SearchContainer = styled.div`
|
||||
|
@ -25,6 +26,11 @@ const SearchResults = styled.div`
|
|||
const StyledSpinner = styled(Spinner)`
|
||||
margin-top: 10px;
|
||||
`;
|
||||
const CalloutContainer = styled.div`
|
||||
width: 90%;
|
||||
margin: 0 auto 20px auto;
|
||||
text-align: left;
|
||||
`;
|
||||
|
||||
interface ISearchScreenProps {
|
||||
error: boolean;
|
||||
|
@ -69,6 +75,7 @@ class SearchScreen extends React.PureComponent<ISearchScreenProps, ISearchScreen
|
|||
|
||||
return (
|
||||
<SearchContainer>
|
||||
{isSmallScreen && results.length === 0 && this.renderMobileWarning()}
|
||||
<H2>Find an instance</H2>
|
||||
{this.renderSearchBar()}
|
||||
<SearchResults>
|
||||
|
@ -133,6 +140,15 @@ class SearchScreen extends React.PureComponent<ISearchScreenProps, ISearchScreen
|
|||
/>
|
||||
</SearchBarContainer>
|
||||
);
|
||||
|
||||
private renderMobileWarning = () => (
|
||||
<CalloutContainer>
|
||||
<Callout intent={Intent.WARNING} title="Desktop site">
|
||||
This is a desktop-optimized site with large visualizations. You can view a simplified version on smaller
|
||||
devices, but for the full experience, open it on a computer.
|
||||
</Callout>
|
||||
</CalloutContainer>
|
||||
);
|
||||
}
|
||||
|
||||
const mapStateToProps = (state: IAppState) => ({
|
||||
|
|
Loading…
Reference in a new issue