Files
SCM-Manager/scm-ui/src/admin/plugins/components/PluginEntry.js

108 lines
2.3 KiB
JavaScript
Raw Normal View History

2019-07-03 09:35:15 +02:00
//@flow
import React from "react";
import injectSheet from "react-jss";
import type { Plugin } from "@scm-manager/ui-types";
import { CardColumn } from "@scm-manager/ui-components";
2019-07-04 17:31:15 +02:00
import PluginAvatar from "./PluginAvatar";
import PluginModal from "./PluginModal";
import classNames from "classnames";
2019-07-03 09:35:15 +02:00
type Props = {
plugin: Plugin,
// context props
classes: any
};
type State = {
showModal: boolean
};
const styles = {
link: {
2019-08-20 17:19:57 +02:00
cursor: "pointer",
pointerEvents: "all"
}
2019-07-03 09:35:15 +02:00
};
class PluginEntry extends React.Component<Props, State> {
constructor(props: Props) {
super(props);
this.state = {
showModal: false
};
}
createAvatar = (plugin: Plugin) => {
return <PluginAvatar plugin={plugin} />;
};
toggleModal = () => {
this.setState(prevState => ({
showModal: !prevState.showModal
}));
};
createFooterRight = (plugin: Plugin) => {
return <small className="level-item">{plugin.author}</small>;
};
createFooterLeft = (plugin: Plugin) => {
const { classes } = this.props;
if (plugin.pending) {
return (
<span className="level-item">
<i className="fas fa-spinner fa-spin has-text-info" />
</span>
);
} else if (
plugin._links &&
plugin._links.install &&
plugin._links.install.href
) {
return (
<span
className={classNames(classes.link, "level-item")}
onClick={this.toggleModal}
>
<i className="fas fa-download has-text-info" />
</span>
);
}
};
2019-07-03 09:35:15 +02:00
render() {
const { plugin } = this.props;
const { showModal } = this.state;
const avatar = this.createAvatar(plugin);
const footerLeft = this.createFooterLeft(plugin);
const footerRight = this.createFooterRight(plugin);
const modal = showModal ? (
<PluginModal
plugin={plugin}
onSubmit={this.toggleModal}
onClose={this.toggleModal}
/>
) : null;
2019-07-04 17:31:15 +02:00
// TODO: Add link to plugin page below
2019-07-03 09:35:15 +02:00
return (
<>
<CardColumn
link="#"
avatar={avatar}
title={plugin.displayName ? plugin.displayName : plugin.name}
description={plugin.description}
footerLeft={footerLeft}
footerRight={footerRight}
/>
{modal}
</>
2019-07-03 09:35:15 +02:00
);
}
}
export default injectSheet(styles)(PluginEntry);