add available tag for model downloaded configs
This commit is contained in:
parent
8a19181a38
commit
eea53a6e9e
@ -1,6 +1,6 @@
|
||||
import { FC } from 'react';
|
||||
import { observer } from 'mobx-react-lite';
|
||||
import { Dropdown, Option } from '@fluentui/react-components';
|
||||
import { Dropdown, Option, PresenceBadge } from '@fluentui/react-components';
|
||||
import commonStore from '../stores/commonStore';
|
||||
|
||||
export const ConfigSelector: FC<{ size?: 'small' | 'medium' | 'large' }> = observer(({ size }) => {
|
||||
@ -12,7 +12,13 @@ export const ConfigSelector: FC<{ size?: 'small' | 'medium' | 'large' }> = obser
|
||||
commonStore.setCurrentConfigIndex(Number(data.optionValue));
|
||||
}}>
|
||||
{commonStore.modelConfigs.map((config, index) =>
|
||||
<Option key={index} value={index.toString()}>{config.name}</Option>
|
||||
<Option key={index} value={index.toString()} text={config.name}>
|
||||
<div className="flex justify-between grow">
|
||||
{config.name}
|
||||
{commonStore.modelSourceList.find(item => item.name === config.modelParameters.modelName)?.isComplete
|
||||
&& <PresenceBadge status="available" />}
|
||||
</div>
|
||||
</Option>
|
||||
)}
|
||||
</Dropdown>;
|
||||
});
|
@ -8,6 +8,7 @@ import {
|
||||
Input,
|
||||
Label,
|
||||
Option,
|
||||
PresenceBadge,
|
||||
Select,
|
||||
Switch,
|
||||
Text
|
||||
@ -106,7 +107,13 @@ const Configs: FC = observer(() => {
|
||||
}
|
||||
}}>
|
||||
{commonStore.modelConfigs.map((config, index) =>
|
||||
<Option key={index} value={index.toString()}>{config.name}</Option>
|
||||
<Option key={index} value={index.toString()} text={config.name}>
|
||||
<div className="flex justify-between grow">
|
||||
{config.name}
|
||||
{commonStore.modelSourceList.find(item => item.name === config.modelParameters.modelName)?.isComplete
|
||||
&& <PresenceBadge status="available" />}
|
||||
</div>
|
||||
</Option>
|
||||
)}
|
||||
</Dropdown>
|
||||
<ToolTipButton desc={t('New Config')} icon={<AddCircle20Regular />} onClick={() => {
|
||||
|
Loading…
Reference in New Issue
Block a user