Skip to content
Snippets Groups Projects
ServerIcon.tsx 1.44 KiB
Newer Older
insert's avatar
insert committed
import styled from "styled-components";
import { useContext } from "preact/hooks";
import { Server } from "revolt.js/dist/api/objects";
insert's avatar
insert committed
import { IconBaseProps, ImageIconBase } from "./IconBase";
insert's avatar
insert committed
import { AppContext } from "../../context/revoltjs/RevoltClient";

interface Props extends IconBaseProps<Server> {
    server_name?: string;
}

const ServerText = styled.div`
    display: grid;
    padding: .2em;
    overflow: hidden;
    border-radius: 50%;
    place-items: center;
    color: var(--foreground);
    background: var(--primary-background);
`;

const fallback = '/assets/group.png';
insert's avatar
insert committed
export default function ServerIcon(props: Props & Omit<JSX.HTMLAttributes<HTMLImageElement>, keyof Props>) {
insert's avatar
insert committed
    const client = useContext(AppContext);
insert's avatar
insert committed
    const { target, attachment, size, animate, server_name, children, as, ...imgProps } = props;
insert's avatar
insert committed
    const iconURL = client.generateFileURL(target?.icon ?? attachment, { max_side: 256 }, animate);

    if (typeof iconURL === 'undefined') {
        const name = target?.name ?? server_name ?? '';

        return (
            <ServerText style={{ width: size, height: size }}>
                { name.split(' ')
                      .map(x => x[0])
                      .filter(x => typeof x !== 'undefined') }
            </ServerText>
        )
    }

    return (
insert's avatar
insert committed
        <ImageIconBase {...imgProps}
insert's avatar
insert committed
            width={size}
            height={size}
            aria-hidden="true"
            src={iconURL} />
insert's avatar
insert committed
    );
}