mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
refactor(console): show default api tag
This commit is contained in:
parent
e8ed876878
commit
6dad8e9e3d
4 changed files with 34 additions and 5 deletions
|
@ -33,7 +33,7 @@
|
|||
object-fit: cover;
|
||||
}
|
||||
|
||||
.meta {
|
||||
.metadata {
|
||||
margin-left: _.unit(6);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
@ -43,6 +43,23 @@
|
|||
font: var(--font-title-1);
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: _.unit(1);
|
||||
}
|
||||
|
||||
.text {
|
||||
font: var(--font-label-2);
|
||||
color: var(--color-text-secondary);
|
||||
}
|
||||
|
||||
.verticalBar {
|
||||
@include _.vertical-bar;
|
||||
height: 12px;
|
||||
margin: 0 _.unit(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@ import DeleteConfirmModal from '@/components/DeleteConfirmModal';
|
|||
import DetailsPage from '@/components/DetailsPage';
|
||||
import PageMeta from '@/components/PageMeta';
|
||||
import TabNav, { TabNavItem } from '@/components/TabNav';
|
||||
import Tag from '@/components/Tag';
|
||||
import { ApiResourceDetailsTabs } from '@/consts/page-tabs';
|
||||
import type { RequestError } from '@/hooks/use-api';
|
||||
import useApi from '@/hooks/use-api';
|
||||
|
@ -81,9 +82,18 @@ function ApiResourceDetails() {
|
|||
<Card className={styles.header}>
|
||||
<div className={styles.info}>
|
||||
<Icon className={styles.icon} />
|
||||
<div className={styles.meta}>
|
||||
<div className={styles.metadata}>
|
||||
<div className={styles.name}>{data.name}</div>
|
||||
<CopyToClipboard size="small" value={data.indicator} />
|
||||
<div className={styles.row}>
|
||||
{data.isDefault && (
|
||||
<>
|
||||
<Tag>{t('api_resources.default_api')}</Tag>
|
||||
<div className={styles.verticalBar} />
|
||||
</>
|
||||
)}
|
||||
<div className={styles.text}>API Identifier</div>
|
||||
<CopyToClipboard size="small" value={data.indicator} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{!isLogtoManagementApiResource && (
|
||||
|
|
|
@ -13,6 +13,7 @@ import CopyToClipboard from '@/components/CopyToClipboard';
|
|||
import EmptyDataPlaceholder from '@/components/EmptyDataPlaceholder';
|
||||
import ItemPreview from '@/components/ItemPreview';
|
||||
import ListPage from '@/components/ListPage';
|
||||
import Tag from '@/components/Tag';
|
||||
import { defaultPageSize } from '@/consts';
|
||||
import { ApiResourceDetailsTabs } from '@/consts/page-tabs';
|
||||
import type { RequestError } from '@/hooks/use-api';
|
||||
|
@ -79,11 +80,12 @@ function ApiResources() {
|
|||
title: t('api_resources.api_name'),
|
||||
dataIndex: 'name',
|
||||
colSpan: 6,
|
||||
render: ({ id, name }) => (
|
||||
render: ({ id, name, isDefault }) => (
|
||||
<ItemPreview
|
||||
title={name}
|
||||
icon={<ResourceIcon className={styles.icon} />}
|
||||
to={buildDetailsPathname(id)}
|
||||
suffix={isDefault && <Tag>{t('api_resources.default_api')}</Tag>}
|
||||
/>
|
||||
),
|
||||
},
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.details {
|
||||
.row {
|
||||
white-space: nowrap;
|
||||
|
||||
> * {
|
||||
|
|
Loading…
Add table
Reference in a new issue