mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-27 04:06:39 +00:00
70 lines
2.5 KiB
TypeScript
70 lines
2.5 KiB
TypeScript
import { useEffect } from 'react';
|
|
import { isEmpty, values } from 'ramda';
|
|
import { Link, RouteChildrenProps } from 'react-router-dom';
|
|
import { Card, Row } from 'reactstrap';
|
|
import { ExternalLink } from 'react-external-link';
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
import { faExternalLinkAlt, faPlus } from '@fortawesome/free-solid-svg-icons';
|
|
import ServersListGroup from '../servers/ServersListGroup';
|
|
import { ServersMap } from '../servers/data';
|
|
import { ShlinkLogo } from './img/ShlinkLogo';
|
|
import './Home.scss';
|
|
|
|
export interface HomeProps extends RouteChildrenProps {
|
|
servers: ServersMap;
|
|
}
|
|
|
|
const Home = ({ servers, history }: HomeProps) => {
|
|
const serversList = values(servers);
|
|
const hasServers = !isEmpty(serversList);
|
|
|
|
useEffect(() => {
|
|
// Try to redirect to the first server marked as auto-connect
|
|
const autoConnectServer = serversList.find(({ autoConnect }) => autoConnect);
|
|
|
|
autoConnectServer && history.push(`/server/${autoConnectServer.id}`);
|
|
}, []);
|
|
|
|
return (
|
|
<div className="home">
|
|
<Card className="home__main-card">
|
|
<Row noGutters>
|
|
<div className="col-md-5 d-none d-md-block">
|
|
<div className="home__logo-wrapper">
|
|
<div className="home__logo">
|
|
<ShlinkLogo />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="col-md-7 home__servers-container">
|
|
<div className="home__title-wrapper">
|
|
<h1 className="home__title">Welcome!</h1>
|
|
</div>
|
|
<ServersListGroup embedded servers={serversList}>
|
|
{!hasServers && (
|
|
<div className="p-4 text-center">
|
|
<p className="mb-5">This application will help you manage your Shlink servers.</p>
|
|
<p>
|
|
<Link to="/server/create" className="btn btn-outline-primary btn-lg mr-2">
|
|
<FontAwesomeIcon icon={faPlus} /> <span className="ml-1">Add a server</span>
|
|
</Link>
|
|
</p>
|
|
<p className="mb-0 mt-5">
|
|
<ExternalLink href="https://shlink.io/documentation">
|
|
<small>
|
|
<span className="mr-1">Learn more about Shlink</span> <FontAwesomeIcon icon={faExternalLinkAlt} />
|
|
</small>
|
|
</ExternalLink>
|
|
</p>
|
|
</div>
|
|
)}
|
|
</ServersListGroup>
|
|
</div>
|
|
</Row>
|
|
</Card>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|