mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-10 05:29:08 +08:00
5590cdd8f1
Closes: [BS-3564](https://linear.app/affine-design/issue/BS-3564/ui-embed-view-报错-ui-加-title) Closes: [BS-3454](https://linear.app/affine-design/issue/BS-3454/点击-reload-后应该隐藏-attachment-embed-view-左下角-status(待新状态)) <img width="807" alt="Screenshot 2025-05-28 at 17 23 26" src="https://github.com/user-attachments/assets/9ecc29f8-73c6-4441-bc38-dfe9bd876542" /> <img width="820" alt="Screenshot 2025-05-28 at 17 45 37" src="https://github.com/user-attachments/assets/68e6db17-a814-4df4-a9fa-067ca03dec30" /> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added support for retrying failed uploads of attachments and images, allowing users to re-upload files directly from the error status interface. - The error status dialog now dynamically displays "Retry" for upload failures and "Reload" for download failures, with appropriate actions for each. - **Enhancements** - Improved clarity and consistency in file type display and icon usage for attachments and citations. - Button labels in the attachment interface now have capitalized text for better readability. - **Bug Fixes** - Streamlined error handling and status updates for attachment and image uploads/downloads, reducing redundant UI elements. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
157 lines
3.3 KiB
TypeScript
157 lines
3.3 KiB
TypeScript
import { unsafeCSSVarV2 } from '@blocksuite/affine-shared/theme';
|
|
import { css } from 'lit';
|
|
|
|
export const styles = css`
|
|
.affine-attachment-container {
|
|
border-radius: 8px;
|
|
box-sizing: border-box;
|
|
user-select: none;
|
|
overflow: hidden;
|
|
border: 1px solid ${unsafeCSSVarV2('layer/background/tertiary')};
|
|
background: ${unsafeCSSVarV2('layer/background/primary')};
|
|
|
|
&.focused {
|
|
border-color: ${unsafeCSSVarV2('layer/insideBorder/primaryBorder')};
|
|
}
|
|
}
|
|
|
|
.affine-attachment-card {
|
|
display: flex;
|
|
gap: 12px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.affine-attachment-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
flex: 1 0 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
.truncate {
|
|
align-self: stretch;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.affine-attachment-content-title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 8px;
|
|
align-items: center;
|
|
align-self: stretch;
|
|
}
|
|
|
|
.affine-attachment-content-title-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--affine-text-primary-color);
|
|
font-size: 16px;
|
|
}
|
|
|
|
.affine-attachment-content-title-text {
|
|
color: var(--affine-text-primary-color);
|
|
font-family: var(--affine-font-family);
|
|
font-size: var(--affine-font-sm);
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.affine-attachment-content-description {
|
|
display: flex;
|
|
align-items: center;
|
|
align-self: stretch;
|
|
gap: 8px;
|
|
}
|
|
|
|
.affine-attachment-content-info {
|
|
color: var(--affine-text-secondary-color);
|
|
font-family: var(--affine-font-family);
|
|
font-size: var(--affine-font-xs);
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.affine-attachment-content-button {
|
|
display: flex;
|
|
height: 20px;
|
|
align-items: center;
|
|
align-self: stretch;
|
|
gap: 4px;
|
|
white-space: nowrap;
|
|
padding: 0 4px;
|
|
color: ${unsafeCSSVarV2('button/primary')};
|
|
font-family: var(--affine-font-family);
|
|
font-size: var(--affine-font-xs);
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
text-transform: capitalize;
|
|
line-height: 20px;
|
|
|
|
svg {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.affine-attachment-banner {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.affine-attachment-card.loading {
|
|
.affine-attachment-content-title-text {
|
|
color: ${unsafeCSSVarV2('text/placeholder')};
|
|
}
|
|
}
|
|
|
|
.affine-attachment-card.error {
|
|
.affine-attachment-content-title-icon {
|
|
color: ${unsafeCSSVarV2('status/error')};
|
|
}
|
|
}
|
|
|
|
.affine-attachment-card.loading,
|
|
.affine-attachment-card.error {
|
|
background: ${unsafeCSSVarV2('layer/background/secondary')};
|
|
}
|
|
|
|
.affine-attachment-card.cubeThick {
|
|
flex-direction: column-reverse;
|
|
|
|
.affine-attachment-content {
|
|
width: 100%;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.affine-attachment-banner {
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
.affine-attachment-embed-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.affine-attachment-embed-status {
|
|
position: absolute;
|
|
left: 14px;
|
|
bottom: 64px;
|
|
}
|
|
|
|
.affine-attachment-embed-event-mask {
|
|
position: absolute;
|
|
inset: 0;
|
|
}
|
|
`;
|