123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /**
- * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- * @author David Sehnal <david.sehnal@gmail.com>
- */
- 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<HTMLButtonElement>) => {
- 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<any>, name: string, value: any }) => {
- PluginCommands.Canvas3D.SetSettings.dispatch(this.plugin, { settings: { [p.name]: p.value } });
- }
- setLayout = (p: { param: PD.Base<any>, 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<HTMLButtonElement>) => void, title: string, isOn = true) {
- return <IconButton icon={name} toggleState={isOn} onClick={onClick} title={title} />;
- }
- render() {
- return <div className={'msp-viewport-controls'}>
- <div className='msp-viewport-controls-buttons'>
- {this.icon('reset-scene', this.resetCamera, 'Reset Camera')}<br/>
- {this.icon('tools', this.toggleControls, 'Toggle Controls', this.plugin.layout.state.showControls)}<br/>
- {this.icon('expand-layout', this.toggleExpanded, 'Toggle Expanded', this.plugin.layout.state.isExpanded)}<br />
- {this.icon('settings', this.toggleSettingsExpanded, 'Settings', this.state.isSettingsExpanded)}<br/>
- </div>
- {this.state.isSettingsExpanded && <div className='msp-viewport-controls-scene-options'>
- <ControlGroup header='Layout' initialExpanded={true}>
- <ParameterControls params={PluginLayoutStateParams} values={this.plugin.layout.state} onChange={this.setLayout} />
- </ControlGroup>
- <ControlGroup header='Viewport' initialExpanded={true}>
- <ParameterControls params={Canvas3DParams} values={this.plugin.canvas3d.props} onChange={this.setSettings} />
- </ControlGroup>
- </div>}
- </div>
- }
- }
- export class Viewport extends PluginUIComponent<{ }, ViewportState> {
- private container = React.createRef<HTMLDivElement>();
- private canvas = React.createRef<HTMLCanvasElement>();
- 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 <div>
- <div>
- <p><b>WebGL does not seem to be available.</b></p>
- <p>This can be caused by an outdated browser, graphics card driver issue, or bad weather. Sometimes, just restarting the browser helps.</p>
- <p>For a list of supported browsers, refer to <a href='http://caniuse.com/#feat=webgl' target='_blank'>http://caniuse.com/#feat=webgl</a>.</p>
- </div>
- </div>
- }
- render() {
- if (this.state.noWebGl) return this.renderMissing();
- return <div className='msp-viewport'>
- <div className='msp-viewport-host3d' ref={this.container}>
- <canvas ref={this.canvas} />
- </div>
- </div>;
- }
- }
|