-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: add types to more cockpit-components
type cockpit-components-empty-state component type cockpit-components-truncate
- Loading branch information
1 parent
f474f0d
commit 27b0b94
Showing
3 changed files
with
99 additions
and
58 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* | ||
* This file is part of Cockpit. | ||
* | ||
* Copyright (C) 2019 Red Hat, Inc. | ||
* | ||
* Cockpit is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation; either version 2.1 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Cockpit is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with Cockpit; If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import React from "react"; | ||
import PropTypes from 'prop-types'; | ||
import { Button, ButtonProps } from "@patternfly/react-core/dist/esm/components/Button/index.js"; | ||
import { | ||
EmptyStateActions, EmptyState, EmptyStateBody, EmptyStateFooter, EmptyStateHeader, EmptyStateIcon, | ||
EmptyStateVariant, EmptyStateIconProps, EmptyStateHeaderProps | ||
} from "@patternfly/react-core/dist/esm/components/EmptyState/index.js"; | ||
import { Spinner } from "@patternfly/react-core/dist/esm/components/Spinner/index.js"; | ||
import "./cockpit-components-empty-state.css"; | ||
|
||
export const EmptyStatePanel = ({ | ||
title, | ||
paragraph, | ||
loading = false, | ||
icon, | ||
action, | ||
isActionInProgress = false, | ||
onAction, | ||
actionVariant = "primary", | ||
secondary, | ||
headingLevel = "h1" | ||
}: { | ||
title?: EmptyStateHeaderProps["titleText"], | ||
paragraph?: React.ReactNode, | ||
loading?: boolean, | ||
icon?: EmptyStateIconProps["icon"], | ||
action?: React.ReactNode, | ||
isActionInProgress?: boolean, | ||
onAction?: ButtonProps["onClick"], | ||
actionVariant?: ButtonProps["variant"], | ||
secondary?: React.ReactNode, | ||
headingLevel?: EmptyStateHeaderProps['headingLevel'], | ||
}) => { | ||
const slimType = title || paragraph ? "" : "slim"; | ||
const iconFinal: EmptyStateIconProps["icon"] = icon ?? Spinner; | ||
|
||
const emptyStateHeader = (loading || icon) | ||
? <EmptyStateHeader titleText={title} | ||
headingLevel={headingLevel} | ||
icon={<EmptyStateIcon icon={iconFinal} />} | ||
/> | ||
: <EmptyStateHeader titleText={title} | ||
headingLevel={headingLevel} | ||
/>; | ||
|
||
return ( | ||
<EmptyState variant={EmptyStateVariant.full}> | ||
{emptyStateHeader} | ||
<EmptyStateBody> | ||
{paragraph} | ||
</EmptyStateBody> | ||
{(action || secondary) && | ||
<EmptyStateFooter> | ||
{ action && (typeof action == "string" | ||
? <Button variant={actionVariant} className={slimType} | ||
isLoading={isActionInProgress} | ||
isDisabled={isActionInProgress} | ||
onClick={onAction}> | ||
{action} | ||
</Button> | ||
: action)} | ||
{ secondary && <EmptyStateActions>{secondary}</EmptyStateActions> } | ||
</EmptyStateFooter>} | ||
</EmptyState> | ||
); | ||
}; | ||
|
||
EmptyStatePanel.propTypes = { | ||
loading: PropTypes.bool, | ||
icon: PropTypes.oneOfType([PropTypes.string, PropTypes.object, PropTypes.func]), | ||
title: PropTypes.string, | ||
paragraph: PropTypes.node, | ||
action: PropTypes.node, | ||
actionVariant: PropTypes.string, | ||
isActionInProgress: PropTypes.bool, | ||
onAction: PropTypes.func, | ||
secondary: PropTypes.node, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters