mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
20fe27e086
* fix: event tracking method updated to store, chore: updated and added events for workspace, projects and create issue * fix: posthog auth event tracking --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
import { observer } from "mobx-react-lite";
|
|
import { PlusIcon } from "lucide-react";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { EmptyState } from "components/common";
|
|
// assets
|
|
import emptyIssue from "public/empty-state/issue.svg";
|
|
|
|
export const ProjectViewEmptyState: React.FC = observer(() => {
|
|
const { commandPalette: commandPaletteStore, trackEvent: { setTrackElement } } = useMobxStore();
|
|
|
|
return (
|
|
<div className="h-full w-full grid place-items-center">
|
|
<EmptyState
|
|
title="View issues will appear here"
|
|
description="Issues help you track individual pieces of work. With Issues, keep track of what's going on, who is working on it, and what's done."
|
|
image={emptyIssue}
|
|
primaryButton={{
|
|
text: "New issue",
|
|
icon: <PlusIcon className="h-3 w-3" strokeWidth={2} />,
|
|
onClick: () => {
|
|
setTrackElement("VIEW_EMPTY_STATE");
|
|
commandPaletteStore.toggleCreateIssueModal(true)
|
|
}
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
});
|