mirror of
https://github.com/lingble/twenty.git
synced 2025-11-01 05:07:56 +00:00
This PR was created by [GitStart](https://gitstart.com/) to address the requirements from this ticket: [TWNTY-7529](https://clients.gitstart.com/twenty/5449/tickets/TWNTY-7529). --- ### Description - Migrated all button components to `twenty-ui` \ \ `Button`\ `ButtonGroup`\ `ColorPickerButton`\ `FloatingButton`\ `FloatingButtonGroup`\ `FloatingIconButton`\ `FloatingIconButtonGroup`\ `IconButton`\ `IconButtonGroup`\ `LightButton`\ `LightIconButton`\ `LightIconButtonGroup`\ `MainButton`\ \ Fixes twentyhq/private-issues#89 Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com> Co-authored-by: Charles Bochet <charles@twenty.com>
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import { getSettingsPagePath } from '@/settings/utils/getSettingsPagePath';
|
|
import { SettingsPath } from '@/types/SettingsPath';
|
|
import styled from '@emotion/styled';
|
|
import {
|
|
AnimatedPlaceholder,
|
|
AnimatedPlaceholderEmptyContainer,
|
|
AnimatedPlaceholderEmptySubTitle,
|
|
AnimatedPlaceholderEmptyTextContainer,
|
|
AnimatedPlaceholderEmptyTitle,
|
|
Button,
|
|
EMPTY_PLACEHOLDER_TRANSITION_PROPS,
|
|
IconPlus,
|
|
} from 'twenty-ui';
|
|
|
|
const StyledEmptyFunctionsContainer = styled.div`
|
|
height: 60vh;
|
|
`;
|
|
|
|
export const SettingsServerlessFunctionsTableEmpty = () => {
|
|
return (
|
|
<StyledEmptyFunctionsContainer>
|
|
<AnimatedPlaceholderEmptyContainer
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
{...EMPTY_PLACEHOLDER_TRANSITION_PROPS}
|
|
>
|
|
<AnimatedPlaceholder type="emptyFunctions" />
|
|
<AnimatedPlaceholderEmptyTextContainer>
|
|
<AnimatedPlaceholderEmptyTitle>
|
|
Add your first Function
|
|
</AnimatedPlaceholderEmptyTitle>
|
|
<AnimatedPlaceholderEmptySubTitle>
|
|
Add your first Function to get started
|
|
</AnimatedPlaceholderEmptySubTitle>
|
|
</AnimatedPlaceholderEmptyTextContainer>
|
|
<Button
|
|
Icon={IconPlus}
|
|
title="New function"
|
|
to={getSettingsPagePath(SettingsPath.NewServerlessFunction)}
|
|
/>
|
|
</AnimatedPlaceholderEmptyContainer>
|
|
</StyledEmptyFunctionsContainer>
|
|
);
|
|
};
|