mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 19:30:39 -03:30
74 lines
2.0 KiB
JavaScript
74 lines
2.0 KiB
JavaScript
import React from 'react';
|
|
import { I18n } from '@lingui/react';
|
|
import { t } from '@lingui/macro';
|
|
import {
|
|
Link
|
|
} from 'react-router-dom';
|
|
import {
|
|
Badge,
|
|
Switch
|
|
} from '@patternfly/react-core';
|
|
|
|
class NotificationListItem extends React.Component {
|
|
render () {
|
|
const {
|
|
itemId,
|
|
name,
|
|
notificationType,
|
|
detailUrl,
|
|
successTurnedOn,
|
|
errorTurnedOn,
|
|
toggleNotification
|
|
} = this.props;
|
|
|
|
const capText = {
|
|
textTransform: 'capitalize'
|
|
};
|
|
|
|
return (
|
|
<I18n>
|
|
{({ i18n }) => (
|
|
<li key={itemId} className="pf-c-data-list__item pf-u-flex-row pf-u-align-items-center">
|
|
<div className="pf-c-data-list__cell pf-u-flex-row">
|
|
<div className="pf-u-display-inline-flex">
|
|
<Link
|
|
to={{
|
|
pathname: detailUrl
|
|
}}
|
|
>
|
|
<b>{name}</b>
|
|
</Link>
|
|
</div>
|
|
<Badge
|
|
style={capText}
|
|
className="pf-u-display-inline-flex"
|
|
isRead
|
|
>
|
|
{notificationType}
|
|
</Badge>
|
|
</div>
|
|
<div className="pf-c-data-list__cell" />
|
|
<div className="pf-c-data-list__cell pf-u-display-flex pf-u-justify-content-flex-end">
|
|
<Switch
|
|
label={i18n._(t`Successful`)}
|
|
isChecked={successTurnedOn}
|
|
onChange={() => toggleNotification(itemId, successTurnedOn, 'success')}
|
|
aria-label={i18n._(t`Notification success toggle`)}
|
|
/>
|
|
<Switch
|
|
label={i18n._(t`Failure`)}
|
|
isChecked={errorTurnedOn}
|
|
onChange={() => toggleNotification(itemId, errorTurnedOn, 'error')}
|
|
aria-label={i18n._(t`Notification failure toggle`)}
|
|
/>
|
|
</div>
|
|
</li>
|
|
)}
|
|
</I18n>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default NotificationListItem;
|
|
|