2022-06-06 17:06:25 +02:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2022 Taler Systems S.A.
|
|
|
|
|
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
2022-03-11 03:13:10 +01:00
|
|
|
import { css } from "@linaria/core";
|
2022-03-11 06:17:40 +01:00
|
|
|
import { h, JSX, VNode, ComponentChildren } from "preact";
|
2022-03-29 04:41:07 +02:00
|
|
|
// eslint-disable-next-line import/extensions
|
2022-03-11 03:13:10 +01:00
|
|
|
import { theme } from "./style";
|
2022-03-09 18:00:02 +01:00
|
|
|
|
2022-03-11 03:13:10 +01:00
|
|
|
const root = css`
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
font-family: ${theme.typography.fontFamily};
|
|
|
|
font-size: ${theme.typography.pxToRem(20)};
|
|
|
|
line-height: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
user-select: none;
|
|
|
|
`;
|
|
|
|
|
2022-03-29 14:58:06 +02:00
|
|
|
// const colorStyle = css`
|
|
|
|
// color: ${theme.palette.background.default};
|
|
|
|
// background-color: ${theme.palette.mode === "light"
|
|
|
|
// ? theme.palette.grey[400]
|
|
|
|
// : theme.palette.grey[600]};
|
|
|
|
// `;
|
2022-03-11 03:13:10 +01:00
|
|
|
|
2022-03-29 14:58:06 +02:00
|
|
|
// const avatarImageStyle = css`
|
|
|
|
// width: 100%;
|
|
|
|
// height: 100%;
|
|
|
|
// text-align: center;
|
|
|
|
// object-fit: cover;
|
|
|
|
// color: transparent;
|
|
|
|
// text-indent: 10000;
|
|
|
|
// `;
|
2022-03-11 03:13:10 +01:00
|
|
|
|
2022-03-11 06:17:40 +01:00
|
|
|
interface Props extends JSX.HTMLAttributes<HTMLDivElement> {
|
2022-03-11 03:13:10 +01:00
|
|
|
variant?: "circular" | "rounded" | "square";
|
|
|
|
children?: ComponentChildren;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function Avatar({ variant, children, ...rest }: Props): VNode {
|
|
|
|
const borderStyle =
|
|
|
|
variant === "square"
|
|
|
|
? theme.shape.squareBorder
|
|
|
|
: variant === "rounded"
|
|
|
|
? theme.shape.roundBorder
|
|
|
|
: theme.shape.circularBorder;
|
|
|
|
return (
|
|
|
|
<div class={[root, borderStyle].join(" ")} {...rest}>
|
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
);
|
2022-03-09 18:00:02 +01:00
|
|
|
}
|