blob: 1fe52695a34d09e35deb33fdb3088259590c659f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 React from 'react';
import {
CardHeader, Card, CardTitle, CardBody, CardFooter,Badge
} from '@patternfly/react-core';
import '../designer/karavan.css';
import {camelIcon, CamelUi} from "../designer/utils/CamelUi";
import {Component} from "karavan-core/lib/model/ComponentModels";
interface Props {
component: Component,
onClickCard: any
}
interface State {
component: Component,
}
export class ComponentCard extends React.Component<Props, State> {
public state: State = {
component: this.props.component
};
click = (event: React.MouseEvent) => {
event.stopPropagation()
this.props.onClickCard.call(this, this.state.component);
}
render() {
const component = this.state.component;
return (
<Card isHoverable isCompact key={component.component.name} className="kamelet-card"
onClick={event => this.click(event)}
>
<CardHeader>
{CamelUi.getIconFromSource(camelIcon)}
</CardHeader>
<CardTitle>{CamelUi.titleFromName(component.component.name)}</CardTitle>
<CardBody>{component.component.description}</CardBody>
<CardFooter>
<Badge isRead className="labels">{component.component.label}</Badge>
<Badge isRead className="version">{component.component.version}</Badge>
</CardFooter>
</Card>
);
}
};