summaryrefslogtreecommitdiffhomepage
path: root/app/components/CustomScrollbars.js
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2018-02-21 10:45:11 +0100
committerAndrej Mihajlov <and@mullvad.net>2018-02-21 10:45:11 +0100
commitde737c54c413f96c35b4e9bc6280fc7d26e4fa83 (patch)
tree0cf470c59b4c7c8a6327e64610f68f5facd78d6d /app/components/CustomScrollbars.js
parentae9c255b3ecdec341090c932db6cb261147a7382 (diff)
parent1214138633bcca19a1b96622400f3fbcf4044bd9 (diff)
downloadmullvadvpn-de737c54c413f96c35b4e9bc6280fc7d26e4fa83.tar.xz
mullvadvpn-de737c54c413f96c35b4e9bc6280fc7d26e4fa83.zip
Merge branch 'update-flow'
Diffstat (limited to 'app/components/CustomScrollbars.js')
-rw-r--r--app/components/CustomScrollbars.js22
1 files changed, 14 insertions, 8 deletions
diff --git a/app/components/CustomScrollbars.js b/app/components/CustomScrollbars.js
index 69381f60cd..97c78f4ab9 100644
--- a/app/components/CustomScrollbars.js
+++ b/app/components/CustomScrollbars.js
@@ -1,5 +1,6 @@
// @flow
-import React, { Component } from 'react';
+
+import * as React from 'react';
type ScrollbarUpdateContext = {
size: boolean,
@@ -8,13 +9,18 @@ type ScrollbarUpdateContext = {
const AUTOHIDE_TIMEOUT = 1000;
-export default class CustomScrollbars extends Component {
- props: {
- autoHide: boolean,
- thumbInset: { x: number, y: number },
- children: ?React.Element<*>,
- };
+type Props = {
+ autoHide: boolean,
+ thumbInset: { x: number, y: number },
+ children?: React.Node,
+};
+
+type State = {
+ canScroll: boolean,
+ showScrollIndicators: boolean,
+};
+export default class CustomScrollbars extends React.Component<Props, State> {
static defaultProps = {
autoHide: true,
thumbInset: { x: 2, y: 2 },
@@ -27,7 +33,7 @@ export default class CustomScrollbars extends Component {
_scrollableElement: ?HTMLElement;
_thumbElement: ?HTMLElement;
- _autoHideTimer: ?number;
+ _autoHideTimer: ?TimeoutID;
componentDidMount() {
this._updateScrollbarsHelper({