4.3 KiB
How to Develop a New Feature
LobeChat is built on the Next.js framework and uses TypeScript as the primary development language. When developing a new feature, we need to follow a certain development process to ensure the quality and stability of the code. The general process can be divided into the following five steps:
- Routing: Define routes (
src/app
). - Data Structure: Define data structures (
src/types
). - Business Logic Implementation: Zustand store (
src/store
). - Page Display: Write static components/pages (
src/app/<new-page>/features/<new-feature>.tsx
). - Function Binding: Bind the store with page triggers (
const [state, function] = useNewStore(s => [s.state, s.function])
).
Taking the "Chat Messages" feature as an example, here are the brief steps to implement this feature:
TOC
- 1. Define Routes
- 2. Define Data Structure
- 3. Create Zustand Store
- 4. Create Page and Components
- 5. Function Binding
1. Define Routes
In the src/app
directory, we need to define a new route to host the "Chat Messages" page. Generally, we would create a new folder under src/app
, for example, chat
, and create a page.tsx
file within this folder to export a React component as the main body of the page.
// src/app/chat/page.tsx
import ChatPage from './features/chat';
export default ChatPage;
2. Define Data Structure
In the src/types
directory, we need to define the data structure for "Chat Messages". For example, we create a chat.ts
file and define the ChatMessage
type within it:
// src/types/chat.ts
export type ChatMessage = {
id: string;
content: string;
timestamp: number;
sender: 'user' | 'bot';
};
3. Create Zustand Store
In the src/store
directory, we need to create a new Zustand Store to manage the state of "Chat Messages". For example, we create a chatStore.ts
file and define a Zustand Store within it:
// src/store/chatStore.ts
import create from 'zustand';
type ChatState = {
messages: ChatMessage[];
addMessage: (message: ChatMessage) => void;
};
export const useChatStore = create<ChatState>((set) => ({
messages: [],
addMessage: (message) => set((state) => ({ messages: [...state.messages, message] })),
}));
4. Create Page and Components
In src/app/<new-page>/features/<new-feature>.tsx
, we need to create a new page or component to display "Chat Messages". In this file, we can use the Zustand Store created earlier and Ant Design components to build the UI:
// src/features/chat/index.tsx
import { List, Typography } from 'antd';
import { useChatStore } from 'src/store/chatStore';
const ChatPage = () => {
const messages = useChatStore((state) => state.messages);
return (
<List
dataSource={messages}
renderItem={(message) => (
<List.Item>
<Typography.Text>{message.content}</Typography.Text>
</List.Item>
)}
/>
);
};
export default ChatPage;
5. Function Binding
In a page or component, we need to bind the Zustand Store's state and methods to the UI. In the example above, we have already bound the messages
state to the dataSource
property of the list. Now, we also need a method to add new messages. We can define this method in the Zustand Store and then use it in the page or component:
import { Button } from 'antd';
const ChatPage = () => {
const messages = useChatStore((state) => state.messages);
const addMessage = useChatStore((state) => state.addMessage);
const handleSend = () => {
addMessage({ id: '1', content: 'Hello, world!', timestamp: Date.now(), sender: 'user' });
};
return (
<>
<List
dataSource={messages}
renderItem={(message) => (
<List.Item>
<Typography.Text>{message.content}</Typography.Text>
</List.Item>
)}
/>
<Button onClick={handleSend}>Send</Button>
</>
);
};
export default ChatPage;
The above is the step to implement the "chat message" feature in LobeChat. Of course, in the actual development of LobeChat, the business requirements and scenarios faced in real situations are far more complex than the above demo. Please develop according to the actual situation.