UNPKG

ckeditor5-image-upload-base64

Version:

The development environment of CKEditor 5 – the best browser-based rich text editor.

51 lines (48 loc) 1.45 kB
/** * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module ui/bindings/submithandler */ /** * A handler useful for {@link module:ui/view~View views} working as HTML forms. It intercepts a native DOM * `submit` event, prevents the default web browser behavior (navigation and page reload) and * fires the `submit` event on a view instead. Such a custom event can be then used by any * {@link module:utils/dom/emittermixin~Emitter emitter}, e.g. to serialize the form data. * * import submitHandler from '@ckeditor/ckeditor5-ui/src/bindings/submithandler'; * * // ... * * class AnyFormView extends View { * constructor() { * super(); * * // ... * * submitHandler( { * view: this * } ); * } * } * * // ... * * const view = new AnyFormView(); * * // A sample listener attached by an emitter working with the view. * this.listenTo( view, 'submit', () => { * saveTheFormData(); * hideTheForm(); * } ); * * @param {Object} [options] Configuration options. * @param {module:ui/view~View} options.view The view which DOM `submit` events should be handled. */ export default function submitHandler( { view } ) { view.listenTo( view.element, 'submit', ( evt, domEvt ) => { domEvt.preventDefault(); view.fire( 'submit' ); }, { useCapture: true } ); }