-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(plugin-search): Render error on custom UI component
- Loading branch information
Showing
2 changed files
with
68 additions
and
53 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,65 @@ | ||
'use client' | ||
|
||
import type { FormState } from 'payload/types' | ||
|
||
import { useWatchForm } from '@payloadcms/ui/forms/Form' | ||
import { useConfig } from '@payloadcms/ui/providers/Config' | ||
import React from 'react' | ||
// TODO: fix this import to work in dev mode within the monorepo in a way that is backwards compatible with 1.x | ||
// import CopyToClipboard from 'payload/dist/admin/components/elements/CopyToClipboard' | ||
|
||
type FieldsWithDoc = FormState & { | ||
doc: { | ||
value: { | ||
relationTo: string | ||
value: string | ||
} | ||
} | ||
} | ||
|
||
export const LinkToDocClient: React.FC = () => { | ||
const form = useWatchForm() | ||
const fields = form.fields as FieldsWithDoc | ||
|
||
const { | ||
doc: { | ||
value: { relationTo, value: docId }, | ||
}, | ||
} = fields | ||
|
||
const config = useConfig() | ||
|
||
const { | ||
routes: { | ||
admin: adminRoute, // already includes leading slash | ||
}, | ||
serverURL, | ||
} = config | ||
|
||
const href = `${serverURL}${adminRoute}/collections/${relationTo}/${docId}` | ||
|
||
return ( | ||
<div> | ||
<div> | ||
<span | ||
className="label" | ||
style={{ | ||
color: '#9A9A9A', | ||
}} | ||
> | ||
Doc URL | ||
</span> | ||
{/* <CopyToClipboard value={href} /> */} | ||
</div> | ||
<div | ||
style={{ | ||
fontWeight: '600', | ||
overflow: 'hidden', | ||
textOverflow: 'ellipsis', | ||
}} | ||
> | ||
<a href={href}>{href}</a> | ||
</div> | ||
</div> | ||
) | ||
} |
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 |
---|---|---|
@@ -1,63 +1,13 @@ | ||
import type { FormState, UIField } from 'payload/types' | ||
import type { UIField } from 'payload/types' | ||
|
||
import { useWatchForm } from '@payloadcms/ui/forms/Form' | ||
import { useConfig } from '@payloadcms/ui/providers/Config' | ||
import React from 'react' | ||
// TODO: fix this import to work in dev mode within the monorepo in a way that is backwards compatible with 1.x | ||
// import CopyToClipboard from 'payload/dist/admin/components/elements/CopyToClipboard' | ||
|
||
type FieldsWithDoc = FormState & { | ||
doc: { | ||
value: { | ||
relationTo: string | ||
value: string | ||
} | ||
} | ||
} | ||
import { LinkToDocClient } from './index.client.js' | ||
|
||
export const LinkToDoc: React.FC<UIField> = () => { | ||
const form = useWatchForm() | ||
const fields = form.fields as FieldsWithDoc | ||
|
||
const { | ||
doc: { | ||
value: { relationTo, value: docId }, | ||
}, | ||
} = fields | ||
|
||
const config = useConfig() | ||
|
||
const { | ||
routes: { | ||
admin: adminRoute, // already includes leading slash | ||
}, | ||
serverURL, | ||
} = config | ||
|
||
const href = `${serverURL}${adminRoute}/collections/${relationTo}/${docId}` | ||
|
||
return ( | ||
<div> | ||
<div> | ||
<span | ||
className="label" | ||
style={{ | ||
color: '#9A9A9A', | ||
}} | ||
> | ||
Doc URL | ||
</span> | ||
{/* <CopyToClipboard value={href} /> */} | ||
</div> | ||
<div | ||
style={{ | ||
fontWeight: '600', | ||
overflow: 'hidden', | ||
textOverflow: 'ellipsis', | ||
}} | ||
> | ||
<a href={href}>{href}</a> | ||
</div> | ||
<LinkToDocClient /> | ||
</div> | ||
) | ||
} |