mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 10:06:17 +08:00
93b1d6c729
Related to: [BS-3143](https://linear.app/affine-design/issue/BS-3143/更新-loading-和错误样式) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced a unified resource controller for managing image and attachment resources, providing improved loading, error, and state handling. - Added a visual loading indicator overlay to image blocks for better feedback during image loading. - **Improvements** - Simplified and centralized image and attachment state management, reducing redundant properties and manual state tracking. - Updated fallback UI for image blocks with clearer titles, descriptions, and improved layout. - Enhanced batch image block creation and download handling for improved efficiency. - Refined image block accessibility with improved alt text and streamlined rendering logic. - Centralized target model selection for image insertion in AI actions. - Reordered CSS declarations without affecting styling. - Improved reactive state tracking for blob upload/download operations in mock server. - **Bug Fixes** - Improved cleanup of object URLs to prevent resource leaks. - Adjusted toolbar logic to more accurately reflect available actions based on image state. - **Tests** - Updated end-to-end tests to match new UI text and behaviors for image loading and error states. - **Chores** - Refactored internal logic and updated comments for clarity and maintainability. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
174 lines
4.6 KiB
TypeScript
174 lines
4.6 KiB
TypeScript
import { CaptionedBlockComponent } from '@blocksuite/affine-components/caption';
|
|
import { whenHover } from '@blocksuite/affine-components/hover';
|
|
import { getLoadingIconWith } from '@blocksuite/affine-components/icons';
|
|
import { Peekable } from '@blocksuite/affine-components/peek';
|
|
import { ResourceController } from '@blocksuite/affine-components/resource';
|
|
import type { ImageBlockModel } from '@blocksuite/affine-model';
|
|
import {
|
|
ThemeProvider,
|
|
ToolbarRegistryIdentifier,
|
|
} from '@blocksuite/affine-shared/services';
|
|
import { humanFileSize } from '@blocksuite/affine-shared/utils';
|
|
import { IS_MOBILE } from '@blocksuite/global/env';
|
|
import { BrokenImageIcon, ImageIcon } from '@blocksuite/icons/lit';
|
|
import { BlockSelection } from '@blocksuite/std';
|
|
import { computed } from '@preact/signals-core';
|
|
import { html } from 'lit';
|
|
import { query } from 'lit/decorators.js';
|
|
import { styleMap } from 'lit/directives/style-map.js';
|
|
import { when } from 'lit/directives/when.js';
|
|
|
|
import type { ImageBlockPageComponent } from './components/page-image-block';
|
|
import {
|
|
copyImageBlob,
|
|
downloadImageBlob,
|
|
refreshData,
|
|
turnImageIntoCardView,
|
|
} from './utils';
|
|
|
|
@Peekable({
|
|
enableOn: () => !IS_MOBILE,
|
|
})
|
|
export class ImageBlockComponent extends CaptionedBlockComponent<ImageBlockModel> {
|
|
resourceController = new ResourceController(
|
|
computed(() => this.model.props.sourceId$.value),
|
|
'Image'
|
|
);
|
|
|
|
get blobUrl() {
|
|
return this.resourceController.blobUrl$.value;
|
|
}
|
|
|
|
convertToCardView = () => {
|
|
turnImageIntoCardView(this).catch(console.error);
|
|
};
|
|
|
|
copy = () => {
|
|
copyImageBlob(this).catch(console.error);
|
|
};
|
|
|
|
download = () => {
|
|
downloadImageBlob(this).catch(console.error);
|
|
};
|
|
|
|
refreshData = () => {
|
|
refreshData(this).catch(console.error);
|
|
};
|
|
|
|
get resizableImg() {
|
|
return this.pageImage?.resizeImg;
|
|
}
|
|
|
|
private _handleClick(event: MouseEvent) {
|
|
// the peek view need handle shift + click
|
|
if (event.defaultPrevented) return;
|
|
|
|
event.stopPropagation();
|
|
const selectionManager = this.host.selection;
|
|
const blockSelection = selectionManager.create(BlockSelection, {
|
|
blockId: this.blockId,
|
|
});
|
|
selectionManager.setGroup('note', [blockSelection]);
|
|
}
|
|
|
|
private _initHover() {
|
|
const { setReference, setFloating, dispose } = whenHover(
|
|
hovered => {
|
|
const message$ = this.std.get(ToolbarRegistryIdentifier).message$;
|
|
if (hovered) {
|
|
message$.value = {
|
|
flavour: this.model.flavour,
|
|
element: this,
|
|
setFloating,
|
|
};
|
|
return;
|
|
}
|
|
|
|
// Clears previous bindings
|
|
message$.value = null;
|
|
setFloating();
|
|
},
|
|
{ enterDelay: 500 }
|
|
);
|
|
setReference(this.hoverableContainer);
|
|
this._disposables.add(dispose);
|
|
}
|
|
|
|
override connectedCallback() {
|
|
super.connectedCallback();
|
|
|
|
this.contentEditable = 'false';
|
|
|
|
this.resourceController.setEngine(this.std.store.blobSync);
|
|
|
|
this.disposables.add(this.resourceController.subscribe());
|
|
this.disposables.add(this.resourceController);
|
|
|
|
this.refreshData();
|
|
}
|
|
|
|
override firstUpdated() {
|
|
// lazy bindings
|
|
this.disposables.addFromEvent(this, 'click', this._handleClick);
|
|
this._initHover();
|
|
}
|
|
|
|
override renderBlock() {
|
|
const theme = this.std.get(ThemeProvider).theme$.value;
|
|
const loadingIcon = getLoadingIconWith(theme);
|
|
|
|
const blobUrl = this.blobUrl;
|
|
const { size = 0 } = this.model.props;
|
|
|
|
const containerStyleMap = styleMap({
|
|
position: 'relative',
|
|
width: '100%',
|
|
});
|
|
|
|
const resovledState = this.resourceController.resolveStateWith({
|
|
loadingIcon,
|
|
errorIcon: BrokenImageIcon(),
|
|
icon: ImageIcon(),
|
|
title: 'Image',
|
|
description: humanFileSize(size),
|
|
});
|
|
|
|
return html`
|
|
<div class="affine-image-container" style=${containerStyleMap}>
|
|
${when(
|
|
blobUrl,
|
|
() =>
|
|
html`<affine-page-image
|
|
.block=${this}
|
|
.state=${resovledState}
|
|
></affine-page-image>`,
|
|
() =>
|
|
html`<affine-image-fallback-card
|
|
.state=${resovledState}
|
|
></affine-image-fallback-card>`
|
|
)}
|
|
</div>
|
|
|
|
${Object.values(this.widgets)}
|
|
`;
|
|
}
|
|
|
|
override accessor blockContainerStyles = { margin: '18px 0' };
|
|
|
|
@query('affine-page-image')
|
|
private accessor pageImage: ImageBlockPageComponent | null = null;
|
|
|
|
@query('.affine-image-container')
|
|
accessor hoverableContainer!: HTMLDivElement;
|
|
|
|
override accessor useCaptionEditor = true;
|
|
|
|
override accessor useZeroWidth = true;
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'affine-image': ImageBlockComponent;
|
|
}
|
|
}
|