mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3c2f5d12ed
* chore: add next theme and initial setup * chore: add dark mode colors to layouts * chore: user general setting page theming * chore: dashboard theming * chore: project page theming * chore: workspace setting page theming * chore: my issue page theming * chore: cmdk theming * chore: change hardcode bg and text color to theme * chore: change color name according to the design * style: fix card in the dashboard * style: fix merge conflict design issues * style: add light high contrast and dark high contrast * style: fix cmd k menu color and selection * feat: change theme from cmdk menu * chore: add multiple theme field to custom theme * chore: removed custom theming * fix: build error --------- Co-authored-by: Saheb Giri <iamsahebgiri@gmail.com>
69 lines
1.8 KiB
TypeScript
69 lines
1.8 KiB
TypeScript
// buttons
|
|
import {
|
|
ToggleBoldButton,
|
|
ToggleItalicButton,
|
|
ToggleUnderlineButton,
|
|
ToggleStrikeButton,
|
|
ToggleOrderedListButton,
|
|
ToggleBulletListButton,
|
|
ToggleCodeButton,
|
|
ToggleHeadingButton,
|
|
useActive,
|
|
} from "@remirror/react";
|
|
import { EditorState } from "remirror";
|
|
|
|
type Props = {
|
|
gptOption?: boolean;
|
|
editorState: Readonly<EditorState>;
|
|
};
|
|
|
|
export const CustomFloatingToolbar: React.FC<Props> = ({ gptOption, editorState }) => {
|
|
const active = useActive();
|
|
|
|
return (
|
|
<div className="z-[99999] flex items-center gap-y-2 divide-x divide-brand-base rounded border border-brand-base bg-brand-surface-2 p-1 px-0.5 shadow-md">
|
|
<div className="flex items-center gap-x-1 px-2">
|
|
<ToggleHeadingButton
|
|
attrs={{
|
|
level: 1,
|
|
}}
|
|
/>
|
|
<ToggleHeadingButton
|
|
attrs={{
|
|
level: 2,
|
|
}}
|
|
/>
|
|
<ToggleHeadingButton
|
|
attrs={{
|
|
level: 3,
|
|
}}
|
|
/>
|
|
</div>
|
|
<div className="flex items-center gap-x-1 px-2">
|
|
<ToggleBoldButton />
|
|
<ToggleItalicButton />
|
|
<ToggleUnderlineButton />
|
|
<ToggleStrikeButton />
|
|
</div>
|
|
<div className="flex items-center gap-x-1 px-2">
|
|
<ToggleOrderedListButton />
|
|
<ToggleBulletListButton />
|
|
</div>
|
|
{gptOption && (
|
|
<div className="flex items-center gap-x-1 px-2">
|
|
<button
|
|
type="button"
|
|
className="rounded py-1 px-1.5 text-xs hover:bg-brand-surface-1"
|
|
onClick={() => console.log(editorState.selection.$anchor.nodeBefore)}
|
|
>
|
|
AI
|
|
</button>
|
|
</div>
|
|
)}
|
|
<div className="flex items-center gap-x-1 px-2">
|
|
<ToggleCodeButton />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|