@google/model-viewer
Version:
Easily display interactive 3D models on the web and in AR!
80 lines (65 loc) • 2.1 kB
text/typescript
/*
* Copyright 2018 Google Inc. 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 './analysis-view.js';
import './rendering-scenario.js';
import {html, LitElement, property} from 'lit-element';
import {ImageComparisonConfig} from '../common.js';
export class ImageComparisonApp extends LitElement {
({type: String}) src: string = '';
({type: Object}) config: ImageComparisonConfig|null = null;
updated(changedProperties: Map<any, any>) {
super.updated(changedProperties);
if (changedProperties.has('src')) {
this.loadConfig();
}
}
private async loadConfig() {
if (this.src) {
this.config = await (await fetch(this.src)).json();
} else {
this.config = null;
}
}
render() {
const {config} = this;
if (config == null) {
return this.src ? html`Loading...` : html`No config specified`;
}
const goldens = config.renderers.map(
renderer => ({...renderer, file: `${renderer.name}-golden.png`}));
const scenarios = config!.scenarios.map((scenario) => html`
<rendering-scenario
.name="${scenario.name}"
.goldens="${goldens}"
.dimensions="${scenario.dimensions}"
.exclude="${scenario.exclude || []}">
</rendering-scenario>`);
return html`
<style>
#scenarios {
display: flex;
max-width: 100%;
flex-direction: column;
align-items: center;
padding-bottom: 5em;
}
</style>
<div id="scenarios">
${scenarios}
</div>
<analysis-view></analysis-view>`;
}
};
customElements.define('image-comparison-app', ImageComparisonApp);