mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00

* feat: support i18n * feat: wip support i18n * feat: complete space translation * feat: complete page translation * feat: update space translation * feat: update workspace translation * feat: update group translation * feat: update workspace translation * feat: update page translation * feat: update user translation * chore: update pnpm-lock * feat: add query translation * refactor: merge to single file * chore: remove necessary code * feat: save language to BE * fix: only load current language * feat: save language to locale column * fix: cleanups * add language menu to preferences page * new translations * translate editor * Translate editor placeholders * translate space selection component --------- Co-authored-by: Philip Okugbe <phil@docmost.com> Co-authored-by: Philip Okugbe <16838612+Philipinho@users.noreply.github.com>
65 lines
1.5 KiB
TypeScript
65 lines
1.5 KiB
TypeScript
import {
|
|
Tooltip,
|
|
ActionIcon,
|
|
Card,
|
|
Divider,
|
|
Anchor,
|
|
Flex,
|
|
} from "@mantine/core";
|
|
import { IconLinkOff, IconPencil } from "@tabler/icons-react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export type LinkPreviewPanelProps = {
|
|
url: string;
|
|
onEdit: () => void;
|
|
onClear: () => void;
|
|
};
|
|
|
|
export const LinkPreviewPanel = ({
|
|
onClear,
|
|
onEdit,
|
|
url,
|
|
}: LinkPreviewPanelProps) => {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<Card withBorder radius="md" padding="xs" bg="var(--mantine-color-body)">
|
|
<Flex align="center">
|
|
<Tooltip label={url}>
|
|
<Anchor
|
|
href={url}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
inherit
|
|
style={{
|
|
overflow: "hidden",
|
|
textOverflow: "ellipsis",
|
|
whiteSpace: "nowrap",
|
|
}}
|
|
>
|
|
{url}
|
|
</Anchor>
|
|
</Tooltip>
|
|
|
|
<Flex align="center">
|
|
<Divider mx={4} orientation="vertical" />
|
|
|
|
<Tooltip label={t("Edit link")}>
|
|
<ActionIcon onClick={onEdit} variant="subtle" color="gray">
|
|
<IconPencil size={16} />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
|
|
<Tooltip label={t("Remove link")}>
|
|
<ActionIcon onClick={onClear} variant="subtle" color="red">
|
|
<IconLinkOff size={16} />
|
|
</ActionIcon>
|
|
</Tooltip>
|
|
</Flex>
|
|
</Flex>
|
|
</Card>
|
|
</>
|
|
);
|
|
};
|