重构Color展示组件为更加简单的形式。

This commit is contained in:
徐涛 2024-12-30 14:33:11 +08:00
parent 927950680c
commit 22755fa60a
2 changed files with 42 additions and 53 deletions

View File

@ -38,14 +38,11 @@
.color_value {
display: flex;
flex-direction: row;
justify-content: space-between;
justify-content: flex-end;
gap: var(--spacing-xxs);
font-size: var(--font-size-xs);
line-height: var(--font-size-xs);
padding-inline: var(--spacing-xxs);
h6 {
font-size: var(--font-size-xs);
}
.na_value {
display: flex;
flex-direction: row;

View File

@ -1,18 +1,18 @@
import { Icon } from '@iconify/react/dist/iconify.js';
import { isNil } from 'lodash-es';
import { useCallback, useEffect, useMemo } from 'react';
import { useCallback, useEffect, useMemo, useState } from 'react';
import { useCopyToClipboard } from 'react-use';
import NoColor from '../assets/NoColor.svg';
import { useColorFunction } from '../ColorFunctionContext';
import styles from './ColorStand.module.css';
import { NotificationType, useNotification } from './Notifications';
import { SegmentedControl } from './SegmentedControl';
type ColorValueProps = {
title: string;
value: string | null;
};
function ColorValue({ title, value }: ColorValueProps) {
function ColorValue({ value }: ColorValueProps) {
const [cpState, copyToClipboard] = useCopyToClipboard();
const { showToast } = useNotification();
const handleCopy = useCallback(() => {
@ -36,7 +36,6 @@ function ColorValue({ title, value }: ColorValueProps) {
return (
<div className={styles.color_value}>
<h6>{title}</h6>
{isNil(value) ? (
<div className={styles.na_value}>
<Icon icon="tabler:alert-hexagon" />
@ -58,48 +57,34 @@ type ColorStandProps = {
export function ColorStand({ title, color }: ColorStandProps) {
const { colorFn } = useColorFunction();
const rgb = useMemo(() => {
try {
const rgbValues = colorFn?.represent_rgb(color);
return `rgb(${rgbValues[0]}, ${rgbValues[1]}, ${rgbValues[2]})`;
} catch (e) {
console.error('[Convert RGB]', e);
const [viewColor, setViewColor] = useState<'hex' | 'rgb' | 'hsl' | 'lab' | 'oklch'>('hex');
const displayColorValue = useMemo(() => {
if (isNil(color)) {
return null;
}
return null;
}, [color]);
const hsl = useMemo(() => {
try {
const hslValues = colorFn?.represent_hsl(color);
return `hsl(${hslValues[0].toFixed(2)}, ${(hslValues[1] * 100).toFixed(2)}%, ${(
hslValues[2] * 100
).toFixed(2)}%)`;
} catch (e) {
console.error('[Convert HSL]', e);
switch (viewColor) {
case 'hex':
return color;
case 'rgb': {
const rgb = colorFn?.represent_rgb(color);
return `rgb(${rgb[0]}, ${rgb[1]}, ${rgb[2]})`;
}
case 'hsl': {
const hsl = colorFn?.represent_hsl(color);
return `hsl(${hsl[0]}, ${hsl[1]}%, ${hsl[2]}%)`;
}
case 'lab': {
const lab = colorFn?.represent_lab(color);
return `lab(${lab[0]}, ${lab[1]}, ${lab[2]})`;
}
case 'oklch': {
const oklch = colorFn?.represent_oklch(color);
return `oklch(${oklch[0]}%, ${oklch[1]}, ${oklch[2]})`;
}
default:
return null;
}
return null;
}, [color]);
const lab = useMemo(() => {
try {
const labValues = colorFn?.represent_lab(color);
return `lab(${labValues[0].toFixed(2)}, ${labValues[1].toFixed(2)}, ${labValues[2].toFixed(
2,
)})`;
} catch (e) {
console.error('[Convert LAB]', e);
}
return null;
}, [color]);
const oklch = useMemo(() => {
try {
const oklchValues = colorFn?.represent_oklch(color);
return `oklch(${oklchValues[0].toFixed(2)}, ${oklchValues[1].toFixed(
2,
)}, ${oklchValues[2].toFixed(2)})`;
} catch (e) {
console.error('[Convert OKLCH]', e);
}
return null;
}, [color]);
}, [viewColor, color]);
return (
<div className={styles.color_stand}>
@ -112,11 +97,18 @@ export function ColorStand({ title, color }: ColorStandProps) {
</div>
</div>
<div className={styles.color_describe}>
<ColorValue title="HEX" value={color} />
<ColorValue title="RGB" value={rgb} />
<ColorValue title="HSL" value={hsl} />
<ColorValue title="LAB" value={lab} />
<ColorValue title="OKLCH" value={oklch} />
<SegmentedControl
options={[
{ label: 'HEX', value: 'hex' },
{ label: 'RGB', value: 'rgb' },
{ label: 'HSL', value: 'hsl' },
{ label: 'LAB', value: 'lab' },
{ label: 'OKLCH', value: 'oklch' },
]}
value={viewColor}
onChange={(value) => setViewColor(value as typeof viewColor)}
/>
<ColorValue value={displayColorValue} />
</div>
</div>
);