mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 18:16:15 +08:00
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
import { stopPropagation } from '@blocksuite/affine-shared/utils';
|
|
import type { BlockComponent } from '@blocksuite/block-std';
|
|
import { css, html, LitElement } from 'lit';
|
|
import { property } from 'lit/decorators.js';
|
|
|
|
import { focusTextModel } from '../rich-text';
|
|
|
|
export class BlockZeroWidth extends LitElement {
|
|
static override styles = css`
|
|
.block-zero-width {
|
|
position: absolute;
|
|
bottom: -15px;
|
|
height: 10px;
|
|
width: 100%;
|
|
cursor: text;
|
|
z-index: 1;
|
|
}
|
|
`;
|
|
|
|
_handleClick = (e: MouseEvent) => {
|
|
stopPropagation(e);
|
|
if (this.block.doc.readonly) return;
|
|
const nextBlock = this.block.doc.getNext(this.block.model);
|
|
if (nextBlock?.flavour !== 'affine:paragraph') {
|
|
const [paragraphId] = this.block.doc.addSiblingBlocks(this.block.model, [
|
|
{ flavour: 'affine:paragraph' },
|
|
]);
|
|
focusTextModel(this.block.host.std, paragraphId);
|
|
}
|
|
};
|
|
|
|
override connectedCallback(): void {
|
|
super.connectedCallback();
|
|
this.addEventListener('click', this._handleClick);
|
|
}
|
|
|
|
override disconnectedCallback(): void {
|
|
this.removeEventListener('click', this._handleClick);
|
|
super.disconnectedCallback();
|
|
}
|
|
|
|
override render() {
|
|
return html`<div class="block-zero-width"></div>`;
|
|
}
|
|
|
|
@property({ attribute: false })
|
|
accessor block!: BlockComponent;
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'block-zero-width': BlockZeroWidth;
|
|
}
|
|
}
|