aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/services/content/ServiceWebview.js
blob: 043ff42ea2413428a7ff01117f803ab002b5022f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { autorun } from 'mobx';
import { observer } from 'mobx-react';
import Webview from 'react-electron-web-view';
import classnames from 'classnames';

import ServiceModel from '../../../models/Service';

@observer
export default class ServiceWebview extends Component {
  static propTypes = {
    service: PropTypes.instanceOf(ServiceModel).isRequired,
    setWebviewReference: PropTypes.func.isRequired,
  };

  static defaultProps = {
    isActive: false,
  };

  state = {
    forceRepaint: false,
  };

  componentDidMount() {
    autorun(() => {
      if (this.props.service.isActive) {
        this.setState({ forceRepaint: true });
        setTimeout(() => {
          this.setState({ forceRepaint: false });
        }, 100);
      }
    });
  }

  webview = null;

  render() {
    const {
      service,
      setWebviewReference,
    } = this.props;

    const webviewClasses = classnames({
      services__webview: true,
      'is-active': service.isActive,
      'services__webview--force-repaint': this.state.forceRepaint,
    });

    return (
      <div className={webviewClasses}>
        <Webview
          ref={(element) => { this.webview = element; }}

          autosize
          src={service.url}
          preload="./webview/plugin.js"
          partition={`persist:service-${service.id}`}

          onDidAttach={() => setWebviewReference({
            serviceId: service.id,
            webview: this.webview.view,
          })}

          useragent={service.userAgent}

          disablewebsecurity
          allowpopups
        />
      </div>
    );
  }
}