-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathindex.tsx
135 lines (115 loc) · 3.16 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import { RichText } from '@wordpress/block-editor';
import { __experimentalNumberControl as NumberControl, ToggleControl } from '@wordpress/components';
import type { ToggleControlProps } from '@wordpress/components/src/toggle-control/types';
import { usePostMetaValue, useIsSupportedMetaField, usePost } from '../../hooks';
import { toSentence } from './utilities';
interface MetaStringProps
extends Omit<
React.ComponentPropsWithoutRef<typeof RichText>,
'value' | 'onChange' | 'multiline'
> {
/**
* The meta key to use.
*/
metaKey: string;
}
const MetaString: React.FC<MetaStringProps> = (props) => {
const { metaKey, tagName = 'p', ...rest } = props;
const [metaValue, setMetaValue] = usePostMetaValue<string>(metaKey);
const { isEditable } = usePost();
if (!isEditable) {
return <RichText.Content value={metaValue ?? ''} tagName={tagName} {...props} />;
}
return (
<RichText
value={metaValue ?? ''}
onChange={(value: string) => setMetaValue(value)}
tagName={tagName}
{...rest}
/>
);
};
interface MetaNumberProps {
/**
* The meta key to use.
*/
metaKey: string;
}
const MetaNumber: React.FC<MetaNumberProps> = (props) => {
const { metaKey, ...rest } = props;
const [metaValue, setMetaValue] = usePostMetaValue<number>(metaKey);
const { isEditable } = usePost();
return (
<NumberControl
value={metaValue}
onChange={(value) => setMetaValue(parseInt(value ?? '', 10))}
disabled={!isEditable}
{...rest}
/>
);
};
interface MetaBooleanProps extends Pick<ToggleControlProps, 'label'> {
/**
* The meta key to use.
*/
metaKey: string;
}
const MetaBoolean: React.FC<MetaBooleanProps> = (props) => {
const { metaKey, ...rest } = props;
const [metaValue, setMetaValue] = usePostMetaValue<boolean>(metaKey);
const { isEditable } = usePost();
return (
<ToggleControl
checked={metaValue}
onChange={setMetaValue}
disabled={!isEditable}
{...rest}
/>
);
};
interface PostMetaProps {
/**
* The meta key to use.
*/
metaKey: string;
/**
* The children render prop.
*/
children?: (
metaValue: any,
setMetaValue: (value: any) => void,
) => React.ReactNode | React.ReactNode;
/**
* Additional props to pass to the component.
*/
[key: string]: unknown;
}
export const PostMeta: React.FC<PostMetaProps> & {
String: React.FC<MetaStringProps>;
Number: React.FC<MetaNumberProps>;
Boolean: React.FC<MetaBooleanProps>;
} = (props) => {
const { metaKey, children } = props;
const [isSupported] = useIsSupportedMetaField(metaKey);
const [metaValue, setMetaValue] = usePostMetaValue(metaKey);
const metaValueType = typeof metaValue;
if (!isSupported) {
return (
<p className="tenup-block-components-post-meta-placeholder">{`${metaKey} - Meta Value`}</p>
);
}
if (typeof children === 'function') {
return children(metaValue, setMetaValue);
}
if (metaValueType === 'number') {
return <MetaNumber {...props} />;
}
if (metaValueType === 'boolean') {
return <MetaBoolean {...props} label={toSentence(metaKey)} />;
}
// @ts-ignore-next-line - The types here are not accurate.
return <MetaString {...props} />;
};
PostMeta.String = MetaString;
PostMeta.Number = MetaNumber;
PostMeta.Boolean = MetaBoolean;