mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import { autoBindMethodsForReact } from 'class-autobind-decorator';
|
|
import classnames from 'classnames';
|
|
import React, { PureComponent, ReactNode } from 'react';
|
|
|
|
import { AUTOBIND_CFG } from '../../common/constants';
|
|
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)
|
|
export 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>
|
|
);
|
|
}
|
|
}
|