Refactor the monolithic RedemptionsTable component (614 lines) into a clean, modular structure following the established tokens component pattern. ### Changes Made: **New Components:** - `RedemptionsColumnDefs.js` - Extract table column definitions and render logic - `RedemptionsActions.jsx` - Extract action buttons (add, batch copy, clear invalid) - `RedemptionsFilters.jsx` - Extract search and filter form components - `RedemptionsDescription.jsx` - Extract description area component - `redemptions/index.jsx` - Main container component managing state and composition **New Hook:** - `useRedemptionsData.js` - Extract all data management, CRUD operations, and business logic **New Constants:** - `redemption.constants.js` - Extract redemption status, actions, and form constants **Architecture Changes:** - Transform RedemptionsTable.jsx into pure table rendering component - Move state management and component composition to index.jsx - Implement consistent prop drilling pattern matching tokens module - Add memoization for performance optimization - Centralize translation function distribution ### Benefits: - **Maintainability**: Each component has single responsibility - **Reusability**: Components and hooks can be used elsewhere - **Testability**: Individual modules can be unit tested - **Team Collaboration**: Multiple developers can work on different modules - **Consistency**: Follows established architectural patterns ### File Structure: ``` redemptions/ ├── index.jsx # Main container (state + composition) ├── RedemptionsTable.jsx # Pure table component ├── RedemptionsActions.jsx # Action buttons ├── RedemptionsFilters.jsx # Search/filter form ├── RedemptionsDescription.jsx # Description area └── RedemptionsColumnDefs.js # Column definitions
27 lines
867 B
JavaScript
27 lines
867 B
JavaScript
import React from 'react';
|
|
import { Button, Typography } from '@douyinfe/semi-ui';
|
|
import { Ticket } from 'lucide-react';
|
|
|
|
const { Text } = Typography;
|
|
|
|
const RedemptionsDescription = ({ compactMode, setCompactMode, t }) => {
|
|
return (
|
|
<div className="flex flex-col md:flex-row justify-between items-start md:items-center gap-2 w-full">
|
|
<div className="flex items-center text-orange-500">
|
|
<Ticket size={16} className="mr-2" />
|
|
<Text>{t('兑换码可以批量生成和分发,适合用于推广活动或批量充值。')}</Text>
|
|
</div>
|
|
|
|
<Button
|
|
type="tertiary"
|
|
className="w-full md:w-auto"
|
|
onClick={() => setCompactMode(!compactMode)}
|
|
size="small"
|
|
>
|
|
{compactMode ? t('自适应列表') : t('紧凑列表')}
|
|
</Button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default RedemptionsDescription;
|