UNPKG

@google/model-viewer

Version:

Easily display interactive 3D models on the web and in AR!

544 lines (464 loc) 17.6 kB
/* @license * Copyright 2019 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the 'License'); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an 'AS IS' BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import {property} from 'lit-element'; import {UpdatingElement} from 'lit-element/lib/updating-element'; import {Event as ThreeEvent, Vector3} from 'three'; import {HAS_INTERSECTION_OBSERVER, HAS_RESIZE_OBSERVER} from './constants.js'; import {makeTemplate} from './template.js'; import {$evictionPolicy, CachingGLTFLoader} from './three-components/CachingGLTFLoader.js'; import {ModelScene} from './three-components/ModelScene.js'; import {ContextLostEvent, Renderer} from './three-components/Renderer.js'; import {debounce, timePasses} from './utilities.js'; import {dataUrlToBlob} from './utilities/data-conversion.js'; import {ProgressTracker} from './utilities/progress-tracker.js'; const CLEAR_MODEL_TIMEOUT_MS = 1000; const FALLBACK_SIZE_UPDATE_THRESHOLD_MS = 50; const ANNOUNCE_MODEL_VISIBILITY_DEBOUNCE_THRESHOLD = 0; const UNSIZED_MEDIA_WIDTH = 300; const UNSIZED_MEDIA_HEIGHT = 150; const blobCanvas = document.createElement('canvas'); let blobContext: CanvasRenderingContext2D|null = null; const $template = Symbol('template'); const $fallbackResizeHandler = Symbol('fallbackResizeHandler'); const $defaultAriaLabel = Symbol('defaultAriaLabel'); const $resizeObserver = Symbol('resizeObserver'); const $intersectionObserver = Symbol('intersectionObserver'); const $clearModelTimeout = Symbol('clearModelTimeout'); const $onContextLost = Symbol('onContextLost'); export const $loaded = Symbol('loaded'); export const $updateSize = Symbol('updateSize'); export const $isElementInViewport = Symbol('isElementInViewport'); export const $announceModelVisibility = Symbol('announceModelVisibility'); export const $ariaLabel = Symbol('ariaLabel'); export const $loadedTime = Symbol('loadedTime'); export const $updateSource = Symbol('updateSource'); export const $markLoaded = Symbol('markLoaded'); export const $container = Symbol('container'); export const $userInputElement = Symbol('input'); export const $canvas = Symbol('canvas'); export const $scene = Symbol('scene'); export const $needsRender = Symbol('needsRender'); export const $tick = Symbol('tick'); export const $onModelLoad = Symbol('onModelLoad'); export const $onResize = Symbol('onResize'); export const $renderer = Symbol('renderer'); export const $progressTracker = Symbol('progressTracker'); export const $getLoaded = Symbol('getLoaded'); export const $getModelIsVisible = Symbol('getModelIsVisible'); export const $shouldAttemptPreload = Symbol('shouldAttemptPreload'); export const $sceneIsReady = Symbol('sceneIsReady'); export const $hasTransitioned = Symbol('hasTransitioned'); export interface Vector3D { x: number y: number z: number toString(): string } export const toVector3D = (v: Vector3) => { return { x: v.x, y: v.y, z: v.z, toString() { return `${this.x}m ${this.y}m ${this.z}m`; } }; }; interface ToBlobOptions { mimeType?: string, qualityArgument?: number, idealAspect?: boolean } /** * Definition for a basic <model-viewer> element. */ export default class ModelViewerElementBase extends UpdatingElement { protected static[$template]: HTMLTemplateElement|void; static get is() { return 'model-viewer'; } /** @nocollapse */ static get template() { if (!this.hasOwnProperty($template)) { this[$template] = makeTemplate(this.is); } return this[$template]; } /** @export */ static set modelCacheSize(value: number) { CachingGLTFLoader[$evictionPolicy].evictionThreshold = value; } /** @export */ static get modelCacheSize(): number { return CachingGLTFLoader[$evictionPolicy].evictionThreshold } /** @export */ static set minimumRenderScale(value: number) { if (value > 1) { console.warn( '<model-viewer> minimumRenderScale has been clamped to a maximum value of 1.'); } if (value <= 0) { console.warn( '<model-viewer> minimumRenderScale has been clamped to a minimum value of 0.25.'); } Renderer.singleton.minScale = value; } /** @export */ static get minimumRenderScale(): number { return Renderer.singleton.minScale; } @property({type: String}) alt: string|null = null; @property({type: String}) src: string|null = null; protected[$isElementInViewport] = false; protected[$loaded] = false; protected[$loadedTime] = 0; protected[$scene]: ModelScene; protected[$container]: HTMLDivElement; protected[$userInputElement]: HTMLDivElement; protected[$canvas]: HTMLCanvasElement; protected[$defaultAriaLabel]: string; protected[$clearModelTimeout]: number|null = null; protected[$fallbackResizeHandler] = debounce(() => { const boundingRect = this.getBoundingClientRect(); this[$updateSize](boundingRect); }, FALLBACK_SIZE_UPDATE_THRESHOLD_MS); protected[$announceModelVisibility] = debounce((oldVisibility: boolean) => { const newVisibility = this.modelIsVisible; if (newVisibility !== oldVisibility) { this.dispatchEvent(new CustomEvent( 'model-visibility', {detail: {visible: newVisibility}})); } }, ANNOUNCE_MODEL_VISIBILITY_DEBOUNCE_THRESHOLD); protected[$resizeObserver]: ResizeObserver|null = null; protected[$intersectionObserver]: IntersectionObserver|null = null; protected[$progressTracker]: ProgressTracker = new ProgressTracker(); /** @export */ get loaded() { return this[$getLoaded](); } get[$renderer]() { return Renderer.singleton; } /** @export */ get modelIsVisible() { return this[$getModelIsVisible](); } /** * Creates a new ModelViewerElement. */ constructor() { super(); // NOTE(cdata): It is *very important* to access this template first so that // the ShadyCSS template preparation steps happen before element styling in // IE11: const template = (this.constructor as any).template as HTMLTemplateElement; if ((window as any).ShadyCSS) { (window as any).ShadyCSS.styleElement(this, {}); } // NOTE(cdata): The canonical ShadyCSS examples suggest that the Shadow Root // should be created after the invocation of ShadyCSS.styleElement this.attachShadow({mode: 'open'}); const shadowRoot = this.shadowRoot!; shadowRoot.appendChild(template.content.cloneNode(true)); this[$container] = shadowRoot.querySelector('.container') as HTMLDivElement; this[$userInputElement] = shadowRoot.querySelector('.userInput') as HTMLDivElement; this[$canvas] = shadowRoot.querySelector('canvas') as HTMLCanvasElement; this[$defaultAriaLabel] = this[$userInputElement].getAttribute('aria-label')!; // Because of potential race conditions related to invoking the constructor // we only use the bounding rect to set the initial size if the element is // already connected to the document: let width, height; if (this.isConnected) { const rect = this.getBoundingClientRect(); width = rect.width; height = rect.height; } else { width = UNSIZED_MEDIA_WIDTH; height = UNSIZED_MEDIA_HEIGHT; } // Create the underlying ModelScene. this[$scene] = new ModelScene({canvas: this[$canvas], element: this, width, height}); this[$scene].addEventListener('model-load', async (event) => { this[$markLoaded](); this[$onModelLoad](); // Give loading async tasks a chance to complete. await timePasses(); this.dispatchEvent( new CustomEvent('load', {detail: {url: (event as any).url}})); }); // Update initial size on microtask timing so that subclasses have a // chance to initialize Promise.resolve().then(() => { this[$updateSize](this.getBoundingClientRect()); }); if (HAS_RESIZE_OBSERVER) { // Set up a resize observer so we can scale our canvas // if our <model-viewer> changes this[$resizeObserver] = new ResizeObserver((entries) => { // Don't resize anything if in AR mode; otherwise the canvas // scaling to fullscreen on entering AR will clobber the flat/2d // dimensions of the element. if (this[$renderer].isPresenting) { return; } for (let entry of entries) { if (entry.target === this) { this[$updateSize](entry.contentRect); } } }); } if (HAS_INTERSECTION_OBSERVER) { this[$intersectionObserver] = new IntersectionObserver(entries => { for (let entry of entries) { if (entry.target === this) { const oldVisibility = this.modelIsVisible; this[$isElementInViewport] = entry.isIntersecting; this[$announceModelVisibility](oldVisibility); if (this[$isElementInViewport] && !this[$sceneIsReady]()) { this[$updateSource](); } } } }, { root: null, // We used to have margin here, but it was causing animated models below // the fold to steal the frame budget. Weirder still, it would also // cause input events to be swallowed, sometimes for seconds on the // model above the fold, but only when the animated model was completely // below. Setting this margin to zero fixed it. rootMargin: '0px', threshold: 0, }); } else { // If there is no intersection obsever, then all models should be visible // at all times: this[$isElementInViewport] = true; } } connectedCallback() { super.connectedCallback && super.connectedCallback(); if (HAS_RESIZE_OBSERVER) { this[$resizeObserver]!.observe(this); } else { self.addEventListener('resize', this[$fallbackResizeHandler]); } if (HAS_INTERSECTION_OBSERVER) { this[$intersectionObserver]!.observe(this); } const renderer = this[$renderer]; renderer.addEventListener( 'contextlost', this[$onContextLost] as (event: ThreeEvent) => void); renderer.registerScene(this[$scene]); if (this[$clearModelTimeout] != null) { self.clearTimeout(this[$clearModelTimeout]!); this[$clearModelTimeout] = null; // Force an update in case the model has been evicted from our GLTF cache // @see https://lit-element.polymer-project.org/guide/lifecycle#requestupdate this.requestUpdate('src', null); } } disconnectedCallback() { super.disconnectedCallback && super.disconnectedCallback(); if (HAS_RESIZE_OBSERVER) { this[$resizeObserver]!.unobserve(this); } else { self.removeEventListener('resize', this[$fallbackResizeHandler]); } if (HAS_INTERSECTION_OBSERVER) { this[$intersectionObserver]!.unobserve(this); } const renderer = this[$renderer]; renderer.removeEventListener( 'contextlost', this[$onContextLost] as (event: ThreeEvent) => void); renderer.unregisterScene(this[$scene]); this[$clearModelTimeout] = self.setTimeout(() => { this[$scene].reset(); }, CLEAR_MODEL_TIMEOUT_MS); } updated(changedProperties: Map<string|number|symbol, any>) { super.updated(changedProperties); // NOTE(cdata): If a property changes from values A -> B -> A in the space // of a microtask, LitElement/UpdatingElement will notify of a change even // though the value has effectively not changed, so we need to check to make // sure that the value has actually changed before changing the loaded flag. if (changedProperties.has('src')) { if (this.src == null) { this[$loaded] = false; this[$loadedTime] = 0; this[$scene].reset(); } else if (this.src !== this[$scene].url) { this[$loaded] = false; this[$loadedTime] = 0; this[$updateSource](); } } if (changedProperties.has('alt')) { const ariaLabel = this.alt == null ? this[$defaultAriaLabel] : this.alt; this[$userInputElement].setAttribute('aria-label', ariaLabel); } } /** @export */ toDataURL(type?: string, encoderOptions?: number): string { return this[$renderer] .displayCanvas(this[$scene]) .toDataURL(type, encoderOptions); } /** @export */ async toBlob(options?: ToBlobOptions): Promise<Blob> { const mimeType = options ? options.mimeType : undefined; const qualityArgument = options ? options.qualityArgument : undefined; const idealAspect = options ? options.idealAspect : undefined; const {width, height, fieldOfViewAspect, aspect} = this[$scene]; const {dpr, scaleFactor} = this[$renderer]; let outputWidth = width * scaleFactor * dpr; let outputHeight = height * scaleFactor * dpr; let offsetX = 0; let offsetY = 0; if (idealAspect === true) { if (fieldOfViewAspect > aspect) { const oldHeight = outputHeight; outputHeight = Math.round(outputWidth / fieldOfViewAspect); offsetY = (oldHeight - outputHeight) / 2; } else { const oldWidth = outputWidth; outputWidth = Math.round(outputHeight * fieldOfViewAspect); offsetX = (oldWidth - outputWidth) / 2; } } blobCanvas.width = outputWidth; blobCanvas.height = outputHeight; try { return new Promise<Blob>(async (resolve, reject) => { if (blobContext == null) { blobContext = blobCanvas.getContext('2d'); } blobContext!.drawImage( this[$renderer].displayCanvas(this[$scene]), offsetX, offsetY, outputWidth, outputHeight, 0, 0, outputWidth, outputHeight); if ((blobCanvas as any).msToBlob) { // NOTE: msToBlob only returns image/png // so ensure mimeType is not specified (defaults to image/png) // or is image/png, otherwise fallback to using toDataURL on IE. if (!mimeType || mimeType === 'image/png') { return resolve((blobCanvas as any).msToBlob()); } } if (!blobCanvas.toBlob) { return resolve(await dataUrlToBlob( blobCanvas.toDataURL(mimeType, qualityArgument))); } blobCanvas.toBlob((blob) => { if (!blob) { return reject(new Error('Unable to retrieve canvas blob')); } resolve(blob); }, mimeType, qualityArgument); }) } finally { this[$updateSize]({width, height}); }; } get[$ariaLabel]() { return (this.alt == null || this.alt === 'null') ? this[$defaultAriaLabel] : this.alt; } // NOTE(cdata): Although this may seem extremely redundant, it is required in // order to support overloading when TypeScript is compiled to ES5 // @see https://github.com/Polymer/lit-element/pull/745 // @see https://github.com/microsoft/TypeScript/issues/338 [$getLoaded](): boolean { return this[$loaded]; } // @see [$getLoaded] [$getModelIsVisible](): boolean { return this.loaded && this[$isElementInViewport]; } [$hasTransitioned](): boolean { return this.modelIsVisible; } [$shouldAttemptPreload](): boolean { return !!this.src && this[$isElementInViewport]; } [$sceneIsReady](): boolean { return this[$loaded]; } /** * Called on initialization and when the resize observer fires. */ [$updateSize]({width, height}: {width: any, height: any}) { this[$container].style.width = `${width}px`; this[$container].style.height = `${height}px`; this[$onResize]({width: parseFloat(width), height: parseFloat(height)}); } [$tick](_time: number, _delta: number) { } [$markLoaded]() { if (this[$loaded]) { return; } this[$loaded] = true; this[$loadedTime] = performance.now(); } [$needsRender]() { this[$scene].isDirty = true; } [$onModelLoad]() { } [$onResize](e: {width: number, height: number}) { this[$scene].setSize(e.width, e.height); } [$onContextLost] = (event: ContextLostEvent) => { this.dispatchEvent(new CustomEvent( 'error', {detail: {type: 'webglcontextlost', sourceError: event.sourceEvent}})); }; /** * Parses the element for an appropriate source URL and * sets the views to use the new model based off of the `preload` * attribute. */ async[$updateSource]() { if (this.loaded || !this[$shouldAttemptPreload]()) { return; } const updateSourceProgress = this[$progressTracker].beginActivity(); const source = this.src; try { await this[$scene].setSource( source, (progress: number) => updateSourceProgress(progress * 0.8)); const detail = {url: source}; this.dispatchEvent(new CustomEvent('preload', {detail})); } catch (error) { this.dispatchEvent(new CustomEvent('error', {detail: error})); } finally { updateSourceProgress(0.9); requestAnimationFrame(() => { requestAnimationFrame(() => { updateSourceProgress(1.0); }); }); } } }