feat: playground
This commit is contained in:
+3
-1
@@ -1,7 +1,9 @@
|
|||||||
{
|
{
|
||||||
"printWidth": 80,
|
"printWidth": 80,
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"trailingComma": "all",
|
"tabWidth": 2,
|
||||||
|
"trailingComma": "none",
|
||||||
|
"htmlWhitespaceSensitivity": "strict",
|
||||||
"proseWrap": "never",
|
"proseWrap": "never",
|
||||||
"overrides": [{ "files": ".prettierrc", "options": { "parser": "json" } }],
|
"overrides": [{ "files": ".prettierrc", "options": { "parser": "json" } }],
|
||||||
"plugins": ["prettier-plugin-organize-imports", "prettier-plugin-packagejson","unused-imports"],
|
"plugins": ["prettier-plugin-organize-imports", "prettier-plugin-packagejson","unused-imports"],
|
||||||
|
|||||||
+4
-1
@@ -6,17 +6,20 @@ export default defineConfig({
|
|||||||
antd: {
|
antd: {
|
||||||
style: 'less',
|
style: 'less',
|
||||||
configProvider: {
|
configProvider: {
|
||||||
|
componentSize: 'large',
|
||||||
theme:{
|
theme:{
|
||||||
'root-entry-name': 'variable',
|
'root-entry-name': 'variable',
|
||||||
cssVar: true,
|
cssVar: true,
|
||||||
hashed: false,
|
hashed: false,
|
||||||
token: {
|
token: {
|
||||||
colorPrimary: '#2fbf85',
|
colorPrimary: '#2fbf85',
|
||||||
|
borderRadius:'20px',
|
||||||
motion: true,
|
motion: true,
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
hash: true,
|
||||||
access: {},
|
access: {},
|
||||||
model: {},
|
model: {},
|
||||||
initialState: {},
|
initialState: {},
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ export default [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Playground',
|
name: 'Playground',
|
||||||
|
title: 'Playground',
|
||||||
path: '/playground',
|
path: '/playground',
|
||||||
key: 'playground',
|
key: 'playground',
|
||||||
icon: 'Comment',
|
icon: 'Comment',
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 49 KiB |
@@ -0,0 +1,14 @@
|
|||||||
|
interface WrapperProps {
|
||||||
|
children: React.ReactNode;
|
||||||
|
label: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Wrapper: React.FC<WrapperProps>= ({ children }) => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Wrapper;
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
import { Input } from 'antd';
|
||||||
|
import type { InputProps } from 'antd';
|
||||||
|
import Wrapper from './components/wrapper';
|
||||||
|
import { SealFormItemProps } from './types';
|
||||||
|
|
||||||
|
const TextArea: React.FC<InputProps & SealFormItemProps> = (props) => {
|
||||||
|
return (
|
||||||
|
<Wrapper label="input">
|
||||||
|
<Input.TextArea placeholder='send your message' autoSize={{minRows: 1,maxRows: 6}} size="large" variant='borderless'></Input.TextArea>
|
||||||
|
</Wrapper>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const SealInput: React.FC<InputProps & SealFormItemProps> = (props) => {
|
||||||
|
const {label, ...rest} = props;
|
||||||
|
return (
|
||||||
|
<Wrapper label="input">
|
||||||
|
<Input {...rest} placeholder='send your message'></Input>
|
||||||
|
</Wrapper>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
export default {TextArea,Input: SealInput};
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
export interface SealFormItemProps {
|
||||||
|
label?: string;
|
||||||
|
}
|
||||||
+30
-4
@@ -1,14 +1,30 @@
|
|||||||
html{
|
html{
|
||||||
--color-fill-1: #f3f6fa;
|
--color-fill-1: rgba(0, 0, 0, 0.04);
|
||||||
--color-fill-2: #fff;
|
--color-fill-2: #fff;
|
||||||
|
--color-fill-3: #f3f6fa;
|
||||||
--menu-border-radius-base: 32px;
|
--menu-border-radius-base: 32px;
|
||||||
|
--border-radius-base: 16px;
|
||||||
--color-white-1: #fff;
|
--color-white-1: #fff;
|
||||||
--font-weight-normal: 500;
|
--font-weight-normal: 500;
|
||||||
--font-weight-bold: 700;
|
--font-weight-bold: 700;
|
||||||
--color-text-1: #1d2129;
|
--color-text-1: #1d2129;
|
||||||
|
--color-bg-light-1: #f0fff6;
|
||||||
|
--font-size-base: 12px;
|
||||||
|
--ant-input-active-shadow: 0 0 0 2px rgba(5, 255, 105, 0.06);
|
||||||
|
--ant-input-active-border-color: #2fbf85;
|
||||||
|
--ant-color-fill-secondary: rgba(0, 0, 0, 0.06);
|
||||||
|
// --color-text-1: #000;
|
||||||
|
|
||||||
|
|
||||||
.css-var-rf {
|
.css-var-rf {
|
||||||
--ant-font-size: 12px;
|
--ant-font-size: var(--font-size-base);
|
||||||
|
}
|
||||||
|
.css-var-r0 {
|
||||||
|
// --ant-control-height: 36px;
|
||||||
|
--ant-font-size-sm: var(--font-size-base);
|
||||||
|
--ant-font-size-lg: var(--font-size-base);
|
||||||
|
--ant-font-size-xl: 20px;
|
||||||
|
--ant-padding-sm: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-var-rf.ant-menu-css-var {
|
.css-var-rf.ant-menu-css-var {
|
||||||
@@ -20,8 +36,17 @@ html{
|
|||||||
--ant-menu-item-color: var(--color-text-1);
|
--ant-menu-item-color: var(--color-text-1);
|
||||||
--ant-menu-item-active-bg: var(--color-white-1);
|
--ant-menu-item-active-bg: var(--color-white-1);
|
||||||
}
|
}
|
||||||
|
.css-var-r0.ant-input-css-var {
|
||||||
|
--ant-input-input-font-size: var(--font-size-base);
|
||||||
|
--ant-input-input-font-size-lg: var(--font-size-base);
|
||||||
|
--ant-input-input-font-size-sm:var(--font-size-base);
|
||||||
|
}
|
||||||
|
.css-var-r0.ant-select-css-var {
|
||||||
|
--ant-select-option-active-bg: var(--color-fill-1);
|
||||||
|
--ant-select-option-font-size: var(--font-size-base);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
body {
|
body * {
|
||||||
font-weight: var(--font-weight-normal);
|
font-weight: var(--font-weight-normal);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -29,6 +54,7 @@ body {
|
|||||||
.ant-pro-layout {
|
.ant-pro-layout {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
.ant-pro-sider-logo {
|
.ant-pro-sider-logo {
|
||||||
|
padding-left: 22px;
|
||||||
border-block-end: none;
|
border-block-end: none;
|
||||||
}
|
}
|
||||||
.ant-layout {
|
.ant-layout {
|
||||||
@@ -58,4 +84,4 @@ body {
|
|||||||
}
|
}
|
||||||
// ======== menu style end ============
|
// ======== menu style end ============
|
||||||
|
|
||||||
@import url('src/assets/menu.less');
|
@import url('src/assets/styles/menu.less');
|
||||||
@@ -7,9 +7,7 @@ const Dashboard: React.FC = () => {
|
|||||||
return (
|
return (
|
||||||
<PageContainer
|
<PageContainer
|
||||||
ghost
|
ghost
|
||||||
header={{
|
|
||||||
title: 'Dashboard',
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<Access accessible={access.canSeeAdmin}>
|
<Access accessible={access.canSeeAdmin}>
|
||||||
<Button type="primary">只有 Admin 可以看到这个按钮</Button>
|
<Button type="primary">只有 Admin 可以看到这个按钮</Button>
|
||||||
|
|||||||
@@ -0,0 +1,68 @@
|
|||||||
|
.chatEmpty {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-top: 200px;
|
||||||
|
flex-direction: column;
|
||||||
|
.logo {
|
||||||
|
height: 60px;
|
||||||
|
width: 60px;
|
||||||
|
margin-block: 20px;
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.tips {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.chatContent {
|
||||||
|
width: max(50%, 500px);
|
||||||
|
}
|
||||||
|
.chatMessageItem {
|
||||||
|
margin-bottom: 12px;
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
justify-content: flex-start;
|
||||||
|
padding-inline: 44px 16px;
|
||||||
|
.name {
|
||||||
|
padding-block: 8px 16px;
|
||||||
|
}
|
||||||
|
.content {
|
||||||
|
padding: 8px 12px;
|
||||||
|
border-radius: var(--border-radius-base);
|
||||||
|
background-color: var(--color-fill-3);
|
||||||
|
font-size: var(--font-size-base);
|
||||||
|
}
|
||||||
|
.contentWrap {
|
||||||
|
position: relative;
|
||||||
|
padding-right: 45px;
|
||||||
|
&:hover .edit {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.edit {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
top: -10px;
|
||||||
|
right: 0;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.img {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
border-radius: 50%;
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
import { Button,Space,Tooltip} from "antd";
|
||||||
|
import { EditOutlined, CopyOutlined,DislikeOutlined,SyncOutlined} from '@ant-design/icons';
|
||||||
|
import ChatEmpty from "./chatEmpty";
|
||||||
|
import chatStyle from './chat-style.less'
|
||||||
|
import avatar from '@/assets/images/avatar.png'
|
||||||
|
import logo from '@/assets/images/logo.png'
|
||||||
|
|
||||||
|
export type ChatContentProps = {
|
||||||
|
messageList: any[];
|
||||||
|
}
|
||||||
|
|
||||||
|
const QuestionMessage:React.FC<{content: string;}> = ({content}) => {
|
||||||
|
return (
|
||||||
|
<div className={chatStyle.chatMessageItem}>
|
||||||
|
<span className={chatStyle.img}>
|
||||||
|
<img src={avatar} alt="" />
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span className={chatStyle.name}>YOU</span>
|
||||||
|
<div className={chatStyle.contentWrap}>
|
||||||
|
<span className={chatStyle.edit}><Button type="text" size="middle" icon={<EditOutlined />}></Button></span>
|
||||||
|
<p className={chatStyle.content}>{content}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const AnswerMessage:React.FC<{content: string;}> = ({content}) => {
|
||||||
|
return (
|
||||||
|
<div className={chatStyle.chatMessageItem}>
|
||||||
|
<span className={chatStyle.img}>
|
||||||
|
<img src={logo} alt="" />
|
||||||
|
</span>
|
||||||
|
<span className={chatStyle.name}>AI</span>
|
||||||
|
<p className={chatStyle.content}>{content}</p>
|
||||||
|
<Space>
|
||||||
|
<Tooltip title="复制">
|
||||||
|
<Button type="text" size="middle" icon={<CopyOutlined />}></Button>
|
||||||
|
</Tooltip>
|
||||||
|
<Tooltip title="复制">
|
||||||
|
<Button type="text" size="middle" icon={<SyncOutlined />}></Button>
|
||||||
|
</Tooltip>
|
||||||
|
<Tooltip title="回答错误">
|
||||||
|
<Button type="text" size="middle" icon={<DislikeOutlined />}></Button>
|
||||||
|
</Tooltip>
|
||||||
|
</Space>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const ChatContent:React.FC<ChatContentProps> = ({ messageList }) => {
|
||||||
|
if (messageList.length === 0) {
|
||||||
|
return <ChatEmpty/>
|
||||||
|
}
|
||||||
|
return (<div className={chatStyle.chatContent}>
|
||||||
|
<QuestionMessage content="hello"></QuestionMessage>
|
||||||
|
<AnswerMessage content="hello, nice to meet you!"></AnswerMessage>
|
||||||
|
</div>)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ChatContent;
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
import Logo from '@/assets/images/logo.png';
|
||||||
|
import chatStyle from './chat-style.less'
|
||||||
|
|
||||||
|
const ChatEmpty:React.FC = () => {
|
||||||
|
return (
|
||||||
|
<div className={chatStyle.chatEmpty}>
|
||||||
|
<div className={chatStyle.logo}>
|
||||||
|
<img src={Logo} alt="chat empty" />
|
||||||
|
</div>
|
||||||
|
<h3 className={chatStyle.tips}>How can I help you today?</h3>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ChatEmpty;
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
.ant-pro-footer-bar {
|
||||||
|
padding-block: 20px;
|
||||||
|
padding-bottom: 30px;
|
||||||
|
border:none;
|
||||||
|
.ant-pro-footer-bar-right {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.messageInput{
|
||||||
|
position:relative;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: max(50%, 500px);
|
||||||
|
background-color: var(--color-fill-1);
|
||||||
|
border-radius: 30px;
|
||||||
|
padding-right: 50px;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
&:focus-within {
|
||||||
|
border-color: var(--ant-input-active-border-color);
|
||||||
|
box-shadow: var(--ant-input-active-shadow);
|
||||||
|
background-color: var(--color-white-1);
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--color-white-1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: var(--ant-color-fill-secondary);
|
||||||
|
transition: background 0.2s ease;
|
||||||
|
}
|
||||||
|
textarea {
|
||||||
|
padding: 16px;
|
||||||
|
border-radius: 30px;
|
||||||
|
background-color:transparent;
|
||||||
|
}
|
||||||
|
textarea::-webkit-scrollbar {
|
||||||
|
width: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea::-webkit-scrollbar-track {
|
||||||
|
background-color: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #d9d9d9;
|
||||||
|
border-radius: 6px;
|
||||||
|
}
|
||||||
|
.send-btn {
|
||||||
|
position: absolute;
|
||||||
|
right: 10px;
|
||||||
|
bottom: 11px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
transform: rotate(-30deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
import { Input,Button} from 'antd';
|
||||||
|
import { useState } from 'react';
|
||||||
|
import { SendOutlined } from '@ant-design/icons';
|
||||||
|
import './message-input.less'
|
||||||
|
|
||||||
|
const MessageInput: React.FC = () => {
|
||||||
|
const { TextArea } = Input;
|
||||||
|
const [message, setMessage] = useState('')
|
||||||
|
const handleInputChange = (value:string) => {
|
||||||
|
setMessage(value)
|
||||||
|
}
|
||||||
|
const handleSendMessage = () => {
|
||||||
|
console.log('send message:', message)
|
||||||
|
}
|
||||||
|
const SendButton: React.FC = () => {
|
||||||
|
return <Button type="primary" shape="circle" size="middle" icon={<SendOutlined />} onClick={() => handleSendMessage()}></Button>
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<div className="messageInput">
|
||||||
|
<TextArea placeholder='send your message' autoSize={{minRows: 1,maxRows: 6}} onChange={e => handleInputChange(e.target.value)} value={message} size="large" variant='borderless'></TextArea>
|
||||||
|
<span className="send-btn"><SendButton/></span>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default MessageInput;
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
import { Form } from "antd";
|
||||||
|
import { useState } from "react";
|
||||||
|
|
||||||
|
const ParamsSettings:React.FC = () => {
|
||||||
|
const [params, setParams] = useState({
|
||||||
|
name: 'jack',
|
||||||
|
age: 18
|
||||||
|
});
|
||||||
|
|
||||||
|
return (<Form></Form>)
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ParamsSettings;
|
||||||
@@ -1,16 +1,59 @@
|
|||||||
|
import { useState,useEffect} from 'react';
|
||||||
|
import { Button, Select,Space,Input,Popover } from 'antd';
|
||||||
|
import { ControlOutlined } from '@ant-design/icons';
|
||||||
import { PageContainer } from '@ant-design/pro-components';
|
import { PageContainer } from '@ant-design/pro-components';
|
||||||
|
import SealInput from '@/components/seal-form/seal-input';
|
||||||
|
import MessageInput from './components/messageInput';
|
||||||
|
import ChatContent from './components/chatContent';
|
||||||
|
|
||||||
|
const dataList = [
|
||||||
|
{value: 'llama3:latest', label: 'llama3:latest'},
|
||||||
|
{value: 'wangfuyun/AnimateLCM', label: 'wangfuyun/AnimateLCM'},
|
||||||
|
{value: 'Revanthraja/Text_to_Vision', label: 'Revanthraja/Text_to_Vision'},
|
||||||
|
]
|
||||||
|
const Playground: React.FC = () => {
|
||||||
|
const [ModelList, setModelList] = useState(dataList)
|
||||||
|
const [messageList, setMessageList] = useState<any[]>([])
|
||||||
|
const [selectedModel, setSelectedModel] = useState('llama3:latest')
|
||||||
|
|
||||||
|
const handleSelectChange = (value: string) => {
|
||||||
|
setSelectedModel(value)
|
||||||
|
}
|
||||||
|
|
||||||
|
const getMessageList = () => {
|
||||||
|
// fetch message list from server
|
||||||
|
setMessageList(['1'])
|
||||||
|
}
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
getMessageList()
|
||||||
|
}, [selectedModel])
|
||||||
|
|
||||||
const Dashboard: React.FC = () => {
|
|
||||||
return (
|
return (
|
||||||
<PageContainer
|
<PageContainer
|
||||||
ghost
|
|
||||||
header={{
|
title={false}
|
||||||
title: 'Dashboard',
|
extra={[
|
||||||
}}
|
<Space size={20}>
|
||||||
|
<Select showSearch options={ModelList} style={{width: 300}} value={selectedModel} onChange={handleSelectChange} variant='filled'></Select>
|
||||||
|
<Popover content="ssd" title="Title" trigger="click">
|
||||||
|
<Button type="primary" shape="circle" icon={<ControlOutlined />}>
|
||||||
|
</Button>
|
||||||
|
</Popover>
|
||||||
|
|
||||||
|
</Space>
|
||||||
|
]}
|
||||||
|
footer={[
|
||||||
|
<MessageInput/>
|
||||||
|
]}
|
||||||
>
|
>
|
||||||
<div>Playground</div>
|
|
||||||
|
<div style={{display: 'flex', justifyContent: 'center'}}>
|
||||||
|
<ChatContent messageList={messageList}></ChatContent>
|
||||||
|
</div>
|
||||||
|
<SealInput.Input label="test label"></SealInput.Input>
|
||||||
</PageContainer>
|
</PageContainer>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Dashboard;
|
export default Playground;
|
||||||
Reference in New Issue
Block a user