/** * Copyright (c) 2018-2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose * @author David Sehnal */ import * as React from 'react'; import { resizeCanvas } from '../mol-canvas3d/util'; import { PluginCommands } from '../mol-plugin/command'; import { ParamDefinition as PD } from '../mol-util/param-definition'; import { PluginUIComponent } from './base'; import { ControlGroup, IconButton } from './controls/common'; import { SimpleSettingsControl } from './viewport/simple-settings'; interface ViewportControlsState { isSettingsExpanded: boolean, isHelpExpanded: boolean } interface ViewportControlsProps { } export class ViewportControls extends PluginUIComponent { state = { isSettingsExpanded: false, isHelpExpanded: false }; resetCamera = () => { PluginCommands.Camera.Reset.dispatch(this.plugin, {}); } toggleSettingsExpanded = (e?: React.MouseEvent) => { this.setState({ isSettingsExpanded: !this.state.isSettingsExpanded, isHelpExpanded: false }); e?.currentTarget.blur(); } toggleHelpExpanded = (e?: React.MouseEvent) => { this.setState({ isSettingsExpanded: false, isHelpExpanded: !this.state.isHelpExpanded }); 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 } }); } setInteractivityProps = (p: { param: PD.Base, name: string, value: any }) => { PluginCommands.Interactivity.SetProps.dispatch(this.plugin, { props: { [p.name]: p.value } }); } screenshot = () => { this.plugin.helpers.viewportScreenshot?.download(); } componentDidMount() { this.subscribe(this.plugin.events.canvas3d.settingsUpdated, () => this.forceUpdate()); this.subscribe(this.plugin.layout.events.updated, () => this.forceUpdate()); this.subscribe(this.plugin.events.interactivity.propsUpdated, () => this.forceUpdate()); } icon(name: string, onClick: (e: React.MouseEvent) => void, title: string, isOn = true) { return ; } onMouseMove = (e: React.MouseEvent) => { // ignore mouse moves when no button is held if (e.buttons === 0) e.stopPropagation() } render() { return
{this.icon('reset-scene', this.resetCamera, 'Reset Camera')}
{this.icon('screenshot', this.screenshot, 'Download Screenshot')}
{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.icon('help-circle', this.toggleHelpExpanded, 'Help', this.state.isHelpExpanded)}
*/}
{/* {this.state.isHelpExpanded &&
} */} {this.state.isSettingsExpanded &&
{/* {this.plugin.canvas3d && } */}
}
} } export const Logo = () =>
interface ViewportState { noWebGl: boolean showLogo: boolean } export class Viewport extends PluginUIComponent<{ }, ViewportState> { private container = React.createRef(); private canvas = React.createRef(); state: ViewportState = { noWebGl: false, showLogo: true }; private handleLogo = () => { this.setState({ showLogo: !this.plugin.canvas3d?.reprCount.value }) } 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 }); return; } this.handleLogo(); this.handleResize(); const canvas3d = this.plugin.canvas3d!; this.subscribe(canvas3d.reprCount, this.handleLogo); this.subscribe(canvas3d.input.resize, this.handleResize); this.subscribe(canvas3d.interaction.click, e => this.plugin.behaviors.interaction.click.next(e)); this.subscribe(canvas3d.interaction.hover, e => this.plugin.behaviors.interaction.hover.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
{this.state.showLogo && }
; } }