/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author David Sehnal */ import * as React from 'react'; import { PluginUIComponent } from './base'; import { PluginCommands } from '../../mol-plugin/command'; import { ParamDefinition as PD } from '../../mol-util/param-definition'; import { ParameterControls } from './controls/parameters'; import { Canvas3DParams } from '../../mol-canvas3d/canvas3d'; import { PluginLayoutStateParams } from '../../mol-plugin/layout'; import { ControlGroup, IconButton } from './controls/common'; import { resizeCanvas } from '../../mol-canvas3d/util'; interface ViewportState { noWebGl: boolean } export class ViewportControls extends PluginUIComponent<{}, { isSettingsExpanded: boolean }> { state = { isSettingsExpanded: false } resetCamera = () => { PluginCommands.Camera.Reset.dispatch(this.plugin, {}); } toggleSettingsExpanded = (e: React.MouseEvent) => { this.setState({ isSettingsExpanded: !this.state.isSettingsExpanded }); e.currentTarget.blur(); } toggleControls = () => { PluginCommands.Layout.Update.dispatch(this.plugin, { state: { showControls: !this.plugin.layout.state.showControls } }); } toggleExpanded = () => { PluginCommands.Layout.Update.dispatch(this.plugin, { state: { isExpanded: !this.plugin.layout.state.isExpanded } }); } setSettings = (p: { param: PD.Base, name: string, value: any }) => { PluginCommands.Canvas3D.SetSettings.dispatch(this.plugin, { settings: { [p.name]: p.value } }); } setLayout = (p: { param: PD.Base, name: string, value: any }) => { PluginCommands.Layout.Update.dispatch(this.plugin, { state: { [p.name]: p.value } }); } componentDidMount() { this.subscribe(this.plugin.events.canvas3d.settingsUpdated, e => { this.forceUpdate(); }); this.subscribe(this.plugin.layout.events.updated, () => { this.forceUpdate(); }); } icon(name: string, onClick: (e: React.MouseEvent) => void, title: string, isOn = true) { return ; } render() { return
{this.icon('reset-scene', this.resetCamera, 'Reset Camera')}
{this.icon('tools', this.toggleControls, 'Toggle Controls', this.plugin.layout.state.showControls)}
{this.icon('expand-layout', this.toggleExpanded, 'Toggle Expanded', this.plugin.layout.state.isExpanded)}
{this.icon('settings', this.toggleSettingsExpanded, 'Settings', this.state.isSettingsExpanded)}
{this.state.isSettingsExpanded &&
}
} } export class Viewport extends PluginUIComponent<{ }, ViewportState> { private container = React.createRef(); private canvas = React.createRef(); state: ViewportState = { noWebGl: false }; private handleResize = () => { const container = this.container.current; const canvas = this.canvas.current; if (container && canvas) { resizeCanvas(canvas, container); this.plugin.canvas3d.handleResize(); } } componentDidMount() { if (!this.canvas.current || !this.container.current || !this.plugin.initViewer(this.canvas.current!, this.container.current!)) { this.setState({ noWebGl: true }); } this.handleResize(); const canvas3d = this.plugin.canvas3d; this.subscribe(canvas3d.input.resize, this.handleResize); this.subscribe(canvas3d.interaction.click, e => this.plugin.behaviors.interaction.click.next(e)); this.subscribe(canvas3d.interaction.highlight, e => this.plugin.behaviors.interaction.highlight.next(e)); this.subscribe(this.plugin.layout.events.updated, () => { setTimeout(this.handleResize, 50); }); } componentWillUnmount() { if (super.componentWillUnmount) super.componentWillUnmount(); // TODO viewer cleanup } renderMissing() { return

WebGL does not seem to be available.

This can be caused by an outdated browser, graphics card driver issue, or bad weather. Sometimes, just restarting the browser helps.

For a list of supported browsers, refer to http://caniuse.com/#feat=webgl.

} render() { if (this.state.noWebGl) return this.renderMissing(); return
; } }