mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import * as React from 'react';
|
|
import I18n from 'i18n-js';
|
|
|
|
import IPostStatus from '../../interfaces/IPostStatus';
|
|
|
|
const NO_POST_STATUS_VALUE = 'none';
|
|
|
|
interface Props {
|
|
postStatuses: Array<IPostStatus>;
|
|
selectedPostStatusId: number;
|
|
|
|
handleChange(
|
|
newPostStatusId: number,
|
|
): void;
|
|
}
|
|
|
|
const PostStatusSelect = ({
|
|
postStatuses,
|
|
selectedPostStatusId,
|
|
handleChange,
|
|
}: Props) => (
|
|
<select
|
|
value={selectedPostStatusId || NO_POST_STATUS_VALUE}
|
|
onChange={
|
|
(e: React.FormEvent) => (
|
|
handleChange(parseInt((e.target as HTMLSelectElement).value))
|
|
)}
|
|
id="selectPickerStatus"
|
|
className="selectPicker"
|
|
>
|
|
<optgroup label="Post statuses">
|
|
{postStatuses.map((postStatus, i) => (
|
|
<option value={postStatus.id} key={i}>
|
|
{postStatus.name}
|
|
</option>
|
|
))}
|
|
</optgroup>
|
|
<optgroup label="No post status">
|
|
<option value={NO_POST_STATUS_VALUE}>{I18n.t('post.post_status_select.no_post_status')}</option>
|
|
</optgroup>
|
|
</select>
|
|
);
|
|
|
|
export default PostStatusSelect; |