-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add input to remove the deprecated concept management controls Boolean
Custom input component used to prevent users from seeing a "scheme error" message.
- Loading branch information
1 parent
ddb0104
commit fc508ca
Showing
3 changed files
with
48 additions
and
2 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,37 @@ | ||
import {useCallback} from 'react' | ||
import {unset} from 'sanity' | ||
import {Button, Inline, Stack, useToast} from '@sanity/ui' | ||
|
||
/** | ||
* #### Input Component for Deprecated Management Controls Field | ||
* The Management Controls field was used for a previous version | ||
* of the plugin and was set by default when creating a new scheme. | ||
* It has been set to "Deprecated." This control will allow users | ||
* to delete the value from the input to hide the field, without | ||
* otherwise seeing an error int their schema. | ||
* - Input is only visible if no identifier has been assigned | ||
* - Input disappears once an ID is generated | ||
*/ | ||
export const ManagementControls = (props: any) => { | ||
const {onChange} = props | ||
const toast = useToast() | ||
|
||
const handleChange = useCallback(() => { | ||
onChange(unset()) | ||
toast.push({ | ||
status: 'success', | ||
title: 'Value removed.', | ||
duration: 2500, | ||
closable: true, | ||
}) | ||
}, [onChange, toast]) | ||
|
||
return ( | ||
<Stack space={2}> | ||
<Inline space={[3, 3, 4]}> | ||
{props.renderDefault(props)} | ||
<Button tone="primary" fontSize={2} onClick={handleChange} text="Remove Value" /> | ||
</Inline> | ||
</Stack> | ||
) | ||
} |
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