41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import AppConnectionRow from 'components/AppConnectionRow';
|
|
import NoResultFound from 'components/NoResultFound';
|
|
import useFormatMessage from 'hooks/useFormatMessage';
|
|
import * as URLS from 'config/urls';
|
|
import useAppConnections from 'hooks/useAppConnections';
|
|
|
|
function AppConnections(props) {
|
|
const { appKey } = props;
|
|
const formatMessage = useFormatMessage();
|
|
const { data } = useAppConnections(appKey);
|
|
const appConnections = data?.data || [];
|
|
const hasConnections = appConnections?.length;
|
|
|
|
if (!hasConnections) {
|
|
return (
|
|
<NoResultFound
|
|
to={URLS.APP_ADD_CONNECTION(appKey)}
|
|
text={formatMessage('app.noConnections')}
|
|
data-test="connections-no-results"
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{appConnections.map((appConnection) => (
|
|
<AppConnectionRow key={appConnection.id} connection={appConnection} />
|
|
))}
|
|
</>
|
|
);
|
|
}
|
|
|
|
AppConnections.propTypes = {
|
|
appKey: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default AppConnections;
|