mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-29 06:06:33 +00:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
/*
|
|
* Copyright 2016 balena.io
|
|
*
|
|
* 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 * as React from 'react';
|
|
|
|
import * as settings from '../../models/settings';
|
|
import * as analytics from '../../modules/analytics';
|
|
import { SafeWebview } from '../safe-webview/safe-webview';
|
|
|
|
interface FeaturedProjectProps {
|
|
onWebviewShow: (isWebviewShowing: boolean) => void;
|
|
}
|
|
|
|
interface FeaturedProjectState {
|
|
endpoint: string | null;
|
|
}
|
|
|
|
export class FeaturedProject extends React.Component<
|
|
FeaturedProjectProps,
|
|
FeaturedProjectState
|
|
> {
|
|
constructor(props: FeaturedProjectProps) {
|
|
super(props);
|
|
this.state = { endpoint: null };
|
|
}
|
|
|
|
public async componentDidMount() {
|
|
try {
|
|
const endpoint =
|
|
(await settings.get('featuredProjectEndpoint')) ||
|
|
'https://assets.balena.io/etcher-featured/index.html';
|
|
this.setState({ endpoint });
|
|
} catch (error) {
|
|
analytics.logException(error);
|
|
}
|
|
}
|
|
|
|
public render() {
|
|
return this.state.endpoint ? (
|
|
<SafeWebview src={this.state.endpoint} {...this.props}></SafeWebview>
|
|
) : null;
|
|
}
|
|
}
|