Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upkeep: add TS support for PostMeta component #310

Merged
merged 6 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 44 additions & 23 deletions components/post-meta/index.js → components/post-meta/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
import { RichText } from '@wordpress/block-editor';
import { __experimentalNumberControl as NumberControl, ToggleControl } from '@wordpress/components';
import PropTypes from 'prop-types';
import type { ToggleControlProps } from '@wordpress/components/src/toggle-control/types';
import { usePostMetaValue, useIsSupportedMetaField } from '../../hooks';
import { toSentence } from './utilities';

export const PostMeta = (props) => {
interface PostMetaProps {
/**
* The meta key to use.
*/
metaKey: string;

/**
* The children render prop.
*/
children?: ((metaValue: any, setMetaValue: (value: any) => void) => React.ReactNode);
}

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);
Expand All @@ -31,48 +47,53 @@ export const PostMeta = (props) => {
return <MetaString {...props} />;
};

PostMeta.propTypes = {
metaKey: PropTypes.string.isRequired,
};
interface MetaStringProps {
/**
* The meta key to use.
*/
metaKey: string;

/**
* A valid HTML tag.
*/
tagName?: keyof JSX.IntrinsicElements;
}

const MetaString = (props) => {
const MetaString: React.FC<MetaStringProps> = (props) => {
const { metaKey, tagName = 'p' } = props;
const [metaValue, setMetaValue] = usePostMetaValue(metaKey);

return <RichText value={metaValue} onChange={setMetaValue} tagName={tagName} {...props} />;
};

MetaString.propTypes = {
metaKey: PropTypes.string.isRequired,
tagName: PropTypes.string,
};

MetaString.defaultProps = {
tagName: 'p',
};
interface MetaNumberProps {
/**
* The meta key to use.
*/
metaKey: string;
}

const MetaNumber = (props) => {
const MetaNumber: React.FC<MetaNumberProps> = (props) => {
const { metaKey } = props;
const [metaValue, setMetaValue] = usePostMetaValue(metaKey);

return <NumberControl value={metaValue} onChange={setMetaValue} {...props} />;
};

MetaNumber.propTypes = {
metaKey: PropTypes.string.isRequired,
};
interface MetaBooleanProps extends Pick<ToggleControlProps, 'label'> {
/**
* The meta key to use.
*/
metaKey: string;
}

const MetaBoolean = (props) => {
const MetaBoolean: React.FC<MetaBooleanProps> = (props) => {
const { metaKey } = props;
const [metaValue, setMetaValue] = usePostMetaValue(metaKey);

return <ToggleControl checked={metaValue} onChange={setMetaValue} {...props} />;
};

MetaBoolean.propTypes = {
metaKey: PropTypes.string.isRequired,
};

PostMeta.String = MetaString;
PostMeta.Number = MetaNumber;
PostMeta.Boolean = MetaBoolean;
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// Checks whether character is Uppercase.
// Crude version. Checks only A-Z.
function isCaps(char) {
function isCaps(char: string) {
if (char.match(/[A-Z]/)) return true;
return false;
}

// Checks whether character is digit.
function isDigit(char) {
function isDigit(char: string) {
if (char.match(/[0-9]/)) return true;
return false;
}

export function toKebab(string) {
export function toKebab(string: string) {
return string
.split('')
.map((letter, index) => {
Expand Down Expand Up @@ -39,7 +39,7 @@ export function toKebab(string) {
.replace(/[-_\s]+/g, '-');
}

export function toSentence(string) {
export function toSentence(string: string) {
const interim = toKebab(string).replace(/-/g, ' ');
return interim.slice(0, 1).toUpperCase() + interim.slice(1);
}
Loading