Service to receive data from blobs like images, audio data, etc.

interface BlobDisplayService {
    observe_asInlinePreview(uriPath, property): Observable<InlinePreview>;
}

Implemented by

    Methods

    • Provides information to render a preview of the given blob.

      For unreadable or not existing content or not existing data, it is expected, that the response contains some kind of visualization for editors about the state (e.g., unreadable — some image, which visualizes that the content is unreadable).

      Parameters

      • uriPath: string

        URI path of the content, such as content/120

      • property: string

        the property, which contains the blob data

      Returns Observable<InlinePreview>

      Observable which resolves to the InlinePreview.