-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from wp-graphql/feat/faust-toolbar
Attempt to setup Faust Toolbar. Add Context Menu to get "Edit Post" link
- Loading branch information
Showing
12 changed files
with
251 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"$schema": "https://ui.shadcn.com/schema.json", | ||
"style": "default", | ||
"rsc": false, | ||
"tsx": false, | ||
"tailwind": { | ||
"config": "tailwind.config.js", | ||
"css": "styles/tailwind.css", | ||
"baseColor": "neutral", | ||
"cssVariables": true, | ||
"prefix": "" | ||
}, | ||
"aliases": { | ||
"components": "@/components", | ||
"utils": "@/lib/utils" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { getAdminUrl } from "@faustwp/core" | ||
import Link from 'next/link' | ||
|
||
import { | ||
ContextMenu, | ||
ContextMenuContent, | ||
ContextMenuItem, | ||
ContextMenuTrigger, | ||
} from "@/components/ui/context-menu" | ||
|
||
const EditPost = ({ post, children }) => { | ||
console.log({post}) | ||
return( | ||
<ContextMenu> | ||
<ContextMenuTrigger>{children}</ContextMenuTrigger> | ||
<ContextMenuContent> | ||
<ContextMenuItem><Link href={`${getAdminUrl()}/post.php?post=${post?.databaseId}&action=edit`} target="_blank">{`Edit Post (id: ${post?.databaseId})`}</Link></ContextMenuItem> | ||
</ContextMenuContent> | ||
</ContextMenu> | ||
) | ||
} | ||
|
||
export default EditPost; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
import * as ContextMenuPrimitive from "@radix-ui/react-context-menu" | ||
import { Check, ChevronRight, Circle } from "lucide-react" | ||
import * as React from "react" | ||
|
||
import { cn } from "@/lib/utils" | ||
|
||
const ContextMenu = ContextMenuPrimitive.Root | ||
|
||
const ContextMenuTrigger = ContextMenuPrimitive.Trigger | ||
|
||
const ContextMenuGroup = ContextMenuPrimitive.Group | ||
|
||
const ContextMenuPortal = ContextMenuPrimitive.Portal | ||
|
||
const ContextMenuSub = ContextMenuPrimitive.Sub | ||
|
||
const ContextMenuRadioGroup = ContextMenuPrimitive.RadioGroup | ||
|
||
const ContextMenuSubTrigger = React.forwardRef(({ className, inset, children, ...props }, ref) => ( | ||
<ContextMenuPrimitive.SubTrigger | ||
ref={ref} | ||
className={cn( | ||
"flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground", | ||
inset && "pl-8", | ||
className | ||
)} | ||
{...props}> | ||
{children} | ||
<ChevronRight className="ml-auto h-4 w-4" /> | ||
</ContextMenuPrimitive.SubTrigger> | ||
)) | ||
ContextMenuSubTrigger.displayName = ContextMenuPrimitive.SubTrigger.displayName | ||
|
||
const ContextMenuSubContent = React.forwardRef(({ className, ...props }, ref) => ( | ||
<ContextMenuPrimitive.SubContent | ||
ref={ref} | ||
className={cn( | ||
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2", | ||
className | ||
)} | ||
{...props} /> | ||
)) | ||
ContextMenuSubContent.displayName = ContextMenuPrimitive.SubContent.displayName | ||
|
||
const ContextMenuContent = React.forwardRef(({ className, ...props }, ref) => ( | ||
<ContextMenuPrimitive.Portal> | ||
<ContextMenuPrimitive.Content | ||
ref={ref} | ||
className={cn( | ||
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md animate-in fade-in-80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2", | ||
className | ||
)} | ||
{...props} /> | ||
</ContextMenuPrimitive.Portal> | ||
)) | ||
ContextMenuContent.displayName = ContextMenuPrimitive.Content.displayName | ||
|
||
const ContextMenuItem = React.forwardRef(({ className, inset, ...props }, ref) => ( | ||
<ContextMenuPrimitive.Item | ||
ref={ref} | ||
className={cn( | ||
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50", | ||
inset && "pl-8", | ||
className | ||
)} | ||
{...props} /> | ||
)) | ||
ContextMenuItem.displayName = ContextMenuPrimitive.Item.displayName | ||
|
||
const ContextMenuCheckboxItem = React.forwardRef(({ className, children, checked, ...props }, ref) => ( | ||
<ContextMenuPrimitive.CheckboxItem | ||
ref={ref} | ||
className={cn( | ||
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50", | ||
className | ||
)} | ||
checked={checked} | ||
{...props}> | ||
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center"> | ||
<ContextMenuPrimitive.ItemIndicator> | ||
<Check className="h-4 w-4" /> | ||
</ContextMenuPrimitive.ItemIndicator> | ||
</span> | ||
{children} | ||
</ContextMenuPrimitive.CheckboxItem> | ||
)) | ||
ContextMenuCheckboxItem.displayName = | ||
ContextMenuPrimitive.CheckboxItem.displayName | ||
|
||
const ContextMenuRadioItem = React.forwardRef(({ className, children, ...props }, ref) => ( | ||
<ContextMenuPrimitive.RadioItem | ||
ref={ref} | ||
className={cn( | ||
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50", | ||
className | ||
)} | ||
{...props}> | ||
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center"> | ||
<ContextMenuPrimitive.ItemIndicator> | ||
<Circle className="h-2 w-2 fill-current" /> | ||
</ContextMenuPrimitive.ItemIndicator> | ||
</span> | ||
{children} | ||
</ContextMenuPrimitive.RadioItem> | ||
)) | ||
ContextMenuRadioItem.displayName = ContextMenuPrimitive.RadioItem.displayName | ||
|
||
const ContextMenuLabel = React.forwardRef(({ className, inset, ...props }, ref) => ( | ||
<ContextMenuPrimitive.Label | ||
ref={ref} | ||
className={cn( | ||
"px-2 py-1.5 text-sm font-semibold text-foreground", | ||
inset && "pl-8", | ||
className | ||
)} | ||
{...props} /> | ||
)) | ||
ContextMenuLabel.displayName = ContextMenuPrimitive.Label.displayName | ||
|
||
const ContextMenuSeparator = React.forwardRef(({ className, ...props }, ref) => ( | ||
<ContextMenuPrimitive.Separator | ||
ref={ref} | ||
className={cn("-mx-1 my-1 h-px bg-border", className)} | ||
{...props} /> | ||
)) | ||
ContextMenuSeparator.displayName = ContextMenuPrimitive.Separator.displayName | ||
|
||
const ContextMenuShortcut = ({ | ||
className, | ||
...props | ||
}) => { | ||
return ( | ||
(<span | ||
className={cn("ml-auto text-xs tracking-widest text-muted-foreground", className)} | ||
{...props} />) | ||
); | ||
} | ||
ContextMenuShortcut.displayName = "ContextMenuShortcut" | ||
|
||
export { | ||
ContextMenu, | ||
ContextMenuTrigger, | ||
ContextMenuContent, | ||
ContextMenuItem, | ||
ContextMenuCheckboxItem, | ||
ContextMenuRadioItem, | ||
ContextMenuLabel, | ||
ContextMenuSeparator, | ||
ContextMenuShortcut, | ||
ContextMenuGroup, | ||
ContextMenuPortal, | ||
ContextMenuSub, | ||
ContextMenuSubContent, | ||
ContextMenuSubTrigger, | ||
ContextMenuRadioGroup, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,4 +44,4 @@ pre[class*='language-'] { | |
.token.operator, | ||
.token.combinator { | ||
color: theme('colors.slate.400'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,5 +96,4 @@ | |
[inert] ::-webkit-scrollbar { | ||
display: none; | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cba826c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check out the recent updates to your Atlas environment:
Learn more about building on Atlas in our documentation.