Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
23 lines
771 B
TypeScript
23 lines
771 B
TypeScript
import { Component } from 'react';
|
|
import { WithTranslation } from 'react-i18next';
|
|
|
|
import { IReduxState } from '../../../app/types';
|
|
|
|
/**
|
|
* Implements a React {@link Component} for suspended overlay. Shown when a
|
|
* suspend is detected.
|
|
*/
|
|
export default class AbstractSuspendedOverlay extends Component<WithTranslation> {
|
|
/**
|
|
* Determines whether this overlay needs to be rendered (according to a
|
|
* specific redux state). Called by {@link OverlayContainer}.
|
|
*
|
|
* @param {Object} state - The redux state.
|
|
* @returns {boolean} - If this overlay needs to be rendered, {@code true};
|
|
* {@code false}, otherwise.
|
|
*/
|
|
static needsRender(state: IReduxState) {
|
|
return state['features/power-monitor']?.suspendDetected;
|
|
}
|
|
}
|