36 lines
678 B
JavaScript
36 lines
678 B
JavaScript
// @flow
|
|
import * as React from "react";
|
|
import NotificationSetting from "models/NotificationSetting";
|
|
import Checkbox from "components/Checkbox";
|
|
|
|
type Props = {
|
|
setting?: NotificationSetting,
|
|
title: string,
|
|
event: string,
|
|
description: string,
|
|
disabled: boolean,
|
|
onChange: (ev: SyntheticInputEvent<>) => void | Promise<void>,
|
|
};
|
|
|
|
const NotificationListItem = ({
|
|
setting,
|
|
title,
|
|
event,
|
|
onChange,
|
|
disabled,
|
|
description,
|
|
}: Props) => {
|
|
return (
|
|
<Checkbox
|
|
label={title}
|
|
name={event}
|
|
checked={!!setting}
|
|
onChange={onChange}
|
|
note={description}
|
|
disabled={disabled}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default NotificationListItem;
|