/* * Copyright 2019 Red Hat, Inc. and/or its affiliates. * * 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 AppFormer from "appformer-js"; export class AfjsFirstScreen extends AppFormer.Screen { private counter: CounterCard; constructor() { super("AfjsFirstScreen"); this.af_isReact = true; this.af_componentTitle = "AppFormer.js First Screen"; } public af_onClose(): void { alert("AppFormer.js First Screen was closed."); } private resetCounter() { this.counter.reset(); } public af_componentRoot() { return ( <>
AppFormer.js First Screen
(this.counter = self)} />
); } } interface Props { exposing: (self: CounterCard) => void; } interface State { count: number; } class CounterCard extends React.Component { constructor(props: Props) { super(props); this.state = { count: 0 }; this.props.exposing(this); } public reset() { this.setState({ count: 0 }); } private up() { this.setState(state => ({ count: state.count! + 1 })); } private down() { this.setState(state => ({ count: Math.max(state.count! - 1, 0) })); } public render() { return (

this.up()} /> this.down()} />

Click to change count!
{this.state.count}
); } } function CounterButton(props: { onClick: () => void; label: string }) { return ( ); } AppFormer.register(new AfjsFirstScreen());