revite/src/components/common/ServerHeader.tsx

171 lines
6.4 KiB
TypeScript
Raw Normal View History

import { Check } from "@styled-icons/boxicons-regular";
2021-06-27 06:17:59 -04:00
import { Cog } from "@styled-icons/boxicons-solid";
2021-07-29 14:01:40 -04:00
import { observer } from "mobx-react-lite";
2021-07-05 06:23:23 -04:00
import { Link } from "react-router-dom";
import { ServerPermission } from "revolt.js/dist/api/permissions";
2021-07-30 17:40:49 -04:00
import { Server } from "revolt.js/dist/maps/Servers";
2021-07-05 06:23:23 -04:00
import styled from "styled-components";
import { Text } from "preact-i18n";
2021-07-05 06:23:23 -04:00
import Header from "../ui/Header";
import IconButton from "../ui/IconButton";
import Tooltip from "./Tooltip";
interface Props {
2021-07-05 06:25:20 -04:00
server: Server;
}
2021-12-27 09:10:02 -05:00
const ServerBanner = styled.div`
background-color: var(--primary-background);
//height: 120px; //USE IF SERVER BANNER IS APPLIED
flex-shrink: 0;
display: flex;
flex-direction: column;
justify-content: end;
.title {
height: 48px;
display: flex;
align-items: center;
padding: 10px;
font-weight: 600;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
gap: 8px;
.test {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
`;
2021-07-29 14:01:40 -04:00
export default observer(({ server }: Props) => {
2021-07-30 17:40:49 -04:00
const bannerURL = server.generateBannerURL({ width: 480 });
2021-07-05 06:25:20 -04:00
return (
<div>
2021-12-27 09:10:02 -05:00
<ServerBanner>
<div className="title">
<div>
{server.flags && server.flags & 1 ? (
<Tooltip
content={
<Text id="app.special.server-badges.official" />
}
placement={"bottom-start"}>
<svg width="20" height="20">
<image
xlinkHref="/assets/badges/verified.svg"
height="20"
width="20"
/>
<image
xlinkHref="/assets/badges/revolt_r.svg"
height="15"
width="15"
x="2"
y="3"
style={
"justify-content: center; align-items: center; filter: brightness(0);"
}
/>
</svg>
</Tooltip>
) : undefined}
{server.flags && server.flags & 2 ? (
<Tooltip
content={
<Text id="app.special.server-badges.verified" />
}
placement={"bottom-start"}>
<svg width="20" height="20">
<image
xlinkHref="/assets/badges/verified.svg"
height="20"
width="20"
/>
<foreignObject
x="2"
y="2"
width="15"
height="15">
<Check
size={15}
color="black"
strokeWidth={8}
/>
</foreignObject>
</svg>
</Tooltip>
) : undefined}
</div>
<div className="test">{server.name}</div>
</div>
</ServerBanner>
</div>
/*<Header
2021-07-05 06:25:20 -04:00
borders
placement="secondary"
background={typeof bannerURL !== "undefined"}
style={{
background: bannerURL ? `url('${bannerURL}')` : undefined,
}}>
{server.flags && server.flags & 1 ? (
<Tooltip
content={<Text id="app.special.server-badges.official" />}
placement={"bottom-start"}>
<svg width="20" height="20">
<image
2021-08-17 19:58:49 -04:00
xlinkHref="/assets/badges/verified.svg"
height="20"
width="20"
/>
<image
2021-08-17 19:58:49 -04:00
xlinkHref="/assets/badges/revolt_r.svg"
height="15"
width="15"
2021-08-17 19:06:57 -04:00
x="2"
y="3"
style={
2021-08-17 19:06:57 -04:00
"justify-content: center; align-items: center; filter: brightness(0);"
}
/>
</svg>
</Tooltip>
) : undefined}
{server.flags && server.flags & 2 ? (
<Tooltip
content={<Text id="app.special.server-badges.verified" />}
placement={"bottom-start"}>
<svg width="20" height="20">
<image
xlinkHref="/assets/badges/verified.svg"
height="20"
width="20"
/>
<foreignObject x="2" y="2" width="15" height="15">
<Check size={15} color="black" strokeWidth={8} />
</foreignObject>
</svg>
</Tooltip>
) : undefined}
2021-07-05 06:25:20 -04:00
<ServerName>{server.name}</ServerName>
2021-07-30 17:40:49 -04:00
{(server.permission & ServerPermission.ManageServer) > 0 && (
2021-07-05 06:25:20 -04:00
<div className="actions">
<Link to={`/server/${server._id}/settings`}>
<IconButton>
<Cog size={24} />
</IconButton>
</Link>
</div>
)}
</Header>*/
2021-07-05 06:25:20 -04:00
);
2021-07-29 14:01:40 -04:00
});