mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-02 18:09:58 +08:00
feat(editor): unify block props api (#10888)
Closes: [BS-2707](https://linear.app/affine-design/issue/BS-2707/统一使用props获取和更新block-prop)
This commit is contained in:
@@ -121,12 +121,12 @@ export class BlockCaptionEditor<
|
||||
override connectedCallback(): void {
|
||||
super.connectedCallback();
|
||||
|
||||
this.caption = this.model.caption;
|
||||
this.caption = this.model.props.caption;
|
||||
|
||||
this.disposables.add(
|
||||
this.model.propsUpdated.subscribe(({ key }) => {
|
||||
if (key === 'caption') {
|
||||
this.caption = this.model.caption;
|
||||
this.caption = this.model.props.caption;
|
||||
if (!this._focus) {
|
||||
this.display = !!this.caption?.length;
|
||||
}
|
||||
|
||||
@@ -64,7 +64,7 @@ export class EmbedCardEditCaptionEditModal extends WithDisposable(
|
||||
<textarea
|
||||
class="embed-card-modal-input caption"
|
||||
placeholder="Write a caption..."
|
||||
.value=${this._model.caption ?? ''}
|
||||
.value=${this._model.props.caption ?? ''}
|
||||
></textarea>
|
||||
</div>
|
||||
<div class="embed-card-modal-row">
|
||||
|
||||
@@ -246,9 +246,9 @@ export class EmbedCardEditModal extends SignalWatcher(
|
||||
}
|
||||
|
||||
private _updateInfo() {
|
||||
const title = this.model.title || this.originalDocInfo?.title || '';
|
||||
const title = this.model.props.title || this.originalDocInfo?.title || '';
|
||||
const description =
|
||||
this.model.description || this.originalDocInfo?.description || '';
|
||||
this.model.props.description || this.originalDocInfo?.description || '';
|
||||
|
||||
this.title$.value = title;
|
||||
this.description$.value = description;
|
||||
@@ -395,8 +395,8 @@ export class EmbedCardEditModal extends SignalWatcher(
|
||||
accessor resetButtonDisabled$ = computed<boolean>(
|
||||
() =>
|
||||
!(
|
||||
Boolean(this.model.title$.value?.length) ||
|
||||
Boolean(this.model.description$.value?.length)
|
||||
Boolean(this.model.props.title?.length) ||
|
||||
Boolean(this.model.props.description?.length)
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user