UNPKG

@ckeditor/ckeditor5-ui

Version:

The UI framework and standard UI library of CKEditor 5.

42 lines (41 loc) 1.29 kB
/** * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module ui/toolbar/block/blockbuttonview */ import { ButtonView } from '../../button/buttonview.js'; import { toUnit } from '@ckeditor/ckeditor5-utils'; import '../../../theme/components/toolbar/blocktoolbar.css'; const toPx = /* #__PURE__ */ toUnit('px'); /** * The block button view class. * * This view represents a button attached next to block element where the selection is anchored. * * See {@link module:ui/toolbar/block/blocktoolbar~BlockToolbar}. */ export class BlockButtonView extends ButtonView { /** * @inheritDoc */ constructor(locale) { super(locale); const bind = this.bindTemplate; // Hide button on init. this.isVisible = false; this.isToggleable = true; this.set('top', 0); this.set('left', 0); this.extendTemplate({ attributes: { class: 'ck-block-toolbar-button', style: { top: bind.to('top', val => toPx(val)), left: bind.to('left', val => toPx(val)) } } }); } }