feat: remove Color setting from Calendars Settings (#4310)

Closes #4291
This commit is contained in:
Thaïs 2024-03-05 08:37:11 -03:00 committed by GitHub
parent a8575fbe2f
commit 1f00af286b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 48 deletions

View File

@ -1,37 +0,0 @@
import styled from '@emotion/styled';
import { ColorPickerButton } from '@/ui/input/button/components/ColorPickerButton';
import { Card } from '@/ui/layout/card/components/Card';
import { CardContent } from '@/ui/layout/card/components/CardContent';
import {
MAIN_COLOR_NAMES,
ThemeColor,
} from '@/ui/theme/constants/MainColorNames';
type SettingsAccountsColorSettingCardProps = {
onChange: (nextValue: ThemeColor) => void;
value: ThemeColor;
};
const StyledCardContent = styled(CardContent)`
display: flex;
padding: ${({ theme }) => theme.spacing(2, 4)};
justify-content: space-between;
`;
export const SettingsAccountsColorSettingCard = ({
onChange,
value,
}: SettingsAccountsColorSettingCardProps) => (
<Card>
<StyledCardContent>
{MAIN_COLOR_NAMES.map((colorName) => (
<ColorPickerButton
colorName={colorName}
isSelected={value === colorName}
onClick={() => onChange(colorName)}
/>
))}
</StyledCardContent>
</Card>
);

View File

@ -7,7 +7,6 @@ import {
SettingsAccountsEventVisibilitySettingsCard,
} from '@/settings/accounts/components/SettingsAccountsCalendarVisibilitySettingsCard';
import { SettingsAccountsCardMedia } from '@/settings/accounts/components/SettingsAccountsCardMedia';
import { SettingsAccountsColorSettingCard } from '@/settings/accounts/components/SettingsAccountsColorSettingCard';
import { SettingsAccountsToggleSettingCard } from '@/settings/accounts/components/SettingsAccountsToggleSettingCard';
import { SettingsPageContainer } from '@/settings/components/SettingsPageContainer';
import { getSettingsPagePath } from '@/settings/utils/getSettingsPagePath';
@ -46,16 +45,6 @@ export const SettingsAccountsCalendarsSettings = () => {
{ children: connectedAccount?.handle || '' },
]}
/>
<Section>
<H2Title
title="Color"
description="Define the color associated with this calendar"
/>
<SettingsAccountsColorSettingCard
value="blue"
onChange={(_colorName) => {}}
/>
</Section>
<Section>
<H2Title
title="Event visibility"