mirror of
https://github.com/router-for-me/Cli-Proxy-API-Management-Center.git
synced 2026-02-03 03:10:50 +08:00
feat(api-keys): enhance API key display with new layout and styling
This commit is contained in:
@@ -26,27 +26,34 @@ export const apiKeysModule = {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
container.innerHTML = keys.map((key, index) => {
|
const rows = keys.map((key, index) => {
|
||||||
const normalizedKey = typeof key === 'string' ? key : String(key ?? '');
|
const normalizedKey = typeof key === 'string' ? key : String(key ?? '');
|
||||||
const maskedDisplay = this.escapeHtml(this.maskApiKey(normalizedKey));
|
const maskedDisplay = this.escapeHtml(this.maskApiKey(normalizedKey));
|
||||||
const keyArgument = encodeURIComponent(normalizedKey);
|
const keyArgument = encodeURIComponent(normalizedKey);
|
||||||
return `
|
return `
|
||||||
<div class="key-item">
|
<div class="key-table-row">
|
||||||
<div class="item-content">
|
<div class="key-badge">#${index + 1}</div>
|
||||||
<div class="item-title">${i18n.t('api_keys.item_title')} #${index + 1}</div>
|
<div class="key-table-value">
|
||||||
<div class="item-value">${maskedDisplay}</div>
|
<div class="item-title">${i18n.t('api_keys.item_title')}</div>
|
||||||
</div>
|
<div class="key-value">${maskedDisplay}</div>
|
||||||
<div class="item-actions">
|
</div>
|
||||||
<button class="btn btn-secondary" data-action="edit-api-key" data-index="${index}" data-key="${keyArgument}">
|
<div class="item-actions compact">
|
||||||
<i class="fas fa-edit"></i>
|
<button class="btn btn-secondary" data-action="edit-api-key" data-index="${index}" data-key="${keyArgument}">
|
||||||
</button>
|
<i class="fas fa-edit"></i>
|
||||||
<button class="btn btn-danger" data-action="delete-api-key" data-index="${index}">
|
</button>
|
||||||
<i class="fas fa-trash"></i>
|
<button class="btn btn-danger" data-action="delete-api-key" data-index="${index}">
|
||||||
</button>
|
<i class="fas fa-trash"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
`;
|
||||||
|
}).join('');
|
||||||
|
|
||||||
|
container.innerHTML = `
|
||||||
|
<div class="key-table">
|
||||||
|
${rows}
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
}).join('');
|
|
||||||
|
|
||||||
this.bindApiKeyListEvents(container);
|
this.bindApiKeyListEvents(container);
|
||||||
},
|
},
|
||||||
|
|||||||
112
styles.css
112
styles.css
@@ -1552,6 +1552,118 @@ input:checked+.slider:before {
|
|||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* API 密钥列表压缩布局 */
|
||||||
|
.key-table {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.key-table-row {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 72px 1fr auto;
|
||||||
|
align-items: center;
|
||||||
|
background: var(--bg-quaternary);
|
||||||
|
border: 1px solid var(--border-primary);
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 10px 12px;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.key-table-row:hover {
|
||||||
|
background: var(--bg-tertiary);
|
||||||
|
border-color: var(--border-secondary);
|
||||||
|
transform: translateY(-1px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.key-badge {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 32px;
|
||||||
|
min-width: 52px;
|
||||||
|
padding: 0 10px;
|
||||||
|
border-radius: 10px;
|
||||||
|
background: var(--bg-secondary);
|
||||||
|
color: var(--primary-color);
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
border: 1px solid var(--border-primary);
|
||||||
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
|
||||||
|
}
|
||||||
|
|
||||||
|
.key-table-value {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 4px;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.key-table .item-title {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 13px;
|
||||||
|
color: var(--text-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.key-value {
|
||||||
|
background: var(--bg-secondary);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 7px 10px;
|
||||||
|
font-family: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
|
||||||
|
font-size: 13px;
|
||||||
|
color: var(--text-primary);
|
||||||
|
font-weight: 600;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-actions.compact {
|
||||||
|
position: static;
|
||||||
|
transform: none;
|
||||||
|
gap: 6px;
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-actions.compact .btn {
|
||||||
|
min-width: 34px;
|
||||||
|
height: 34px;
|
||||||
|
padding: 0;
|
||||||
|
border-radius: 6px;
|
||||||
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-actions.compact .btn:hover {
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-actions.compact .btn i {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.key-table-row {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
row-gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-actions.compact {
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.key-badge {
|
||||||
|
width: fit-content;
|
||||||
|
}
|
||||||
|
|
||||||
|
.key-value {
|
||||||
|
white-space: normal;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.file-list {
|
.file-list {
|
||||||
/* 认证文件列表填满页面,保留版本信息空间 */
|
/* 认证文件列表填满页面,保留版本信息空间 */
|
||||||
max-height: calc(100vh - 300px); /* 减去导航栏、padding和版本信息的高度 */
|
max-height: calc(100vh - 300px); /* 减去导航栏、padding和版本信息的高度 */
|
||||||
|
|||||||
Reference in New Issue
Block a user