()
| 195 | } |
| 196 | |
| 197 | onEncryptInProgress() { |
| 198 | if (!this.encryptTimeout) { |
| 199 | this.encryptTimeout = setTimeout(() => { |
| 200 | this.showSpinner(); |
| 201 | }, 300); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | showSpinner() { |
| 206 | this.setState(prevState => ({waiting: !prevState.showNotification})); |
nothing calls this directly
no outgoing calls
no test coverage detected