insomnia/packages/insomnia-app/app/ui/components/notice.tsx
Dimitri Mitropoulos 5f4c19da35
[TypeScript] Phase 1 & 2 (#3370)
Co-authored-by: Opender Singh <opender.singh@konghq.com>
2021-05-12 18:35:00 +12:00

71 lines
1.8 KiB
TypeScript

import React, { PureComponent, ReactNode } from 'react';
import { autoBindMethodsForReact } from 'class-autobind-decorator';
import { AUTOBIND_CFG } from '../../common/constants';
import classnames from 'classnames';
const DISMISSED_VALUE = 'dismissed';
interface Props {
dismissKey?: string;
color?: 'surprise' | 'success' | 'warning' | 'info' | 'error' | 'subtle';
children: ReactNode;
className?: string;
}
interface State {
visible: boolean;
localStorageKey: string | null;
}
@autoBindMethodsForReact(AUTOBIND_CFG)
class Notice extends PureComponent<Props, State> {
constructor(props: Props) {
super(props);
const { dismissKey } = props;
const localStorageKey = dismissKey ? 'insomnia::notice::' + dismissKey : null;
// It's visible if it's not dismissible
let visible = false;
if (localStorageKey) {
visible = window.localStorage.getItem(localStorageKey) !== DISMISSED_VALUE;
} else {
visible = true;
}
this.state = {
visible,
localStorageKey,
};
}
_dismissNotification() {
const { localStorageKey } = this.state;
// Hide the currently showing notification
this.setState({ visible: false });
if (localStorageKey !== null) {
window.localStorage.setItem(localStorageKey, DISMISSED_VALUE);
}
}
render() {
const { children, color, className } = this.props;
const { visible, localStorageKey } = this.state;
if (!visible) {
return null;
}
return (
<p className={classnames('notice', color, className)}>
{localStorageKey && (
<button className="icon pull-right" onClick={this._dismissNotification}>
<i className="fa fa-times" />
</button>
)}
{children}
</p>
);
}
}
export default Notice;