xmpp.chapril.org-conversejs/src/shared/directives/image.js

53 lines
2.1 KiB
JavaScript

import { AsyncDirective } from 'lit/async-directive.js';
import { converse } from '@converse/headless/core';
import { directive } from 'lit/directive.js';
import { getHyperlinkTemplate } from 'utils/html.js';
import { html } from 'lit';
import { isURLWithImageExtension } from '@converse/headless/utils/url.js';
const { URI } = converse.env;
class ImageDirective extends AsyncDirective {
render (src, href, onLoad, onClick) {
return href ?
html`<a href="${href}" class="chat-image__link" target="_blank" rel="noopener">${ this.renderImage(src, href, onLoad, onClick) }</a>` :
this.renderImage(src, href, onLoad, onClick);
}
renderImage (src, href, onLoad, onClick) {
return html`<img class="chat-image img-thumbnail"
loading="lazy"
src="${src}"
@click=${onClick}
@error=${() => this.onError(src, href, onLoad, onClick)}
@load=${onLoad}/></a>`;
}
onError (src, href, onLoad, onClick) {
if (isURLWithImageExtension(src)) {
href && this.setValue(getHyperlinkTemplate(href));
} else {
// Before giving up and falling back to just rendering a hyperlink,
// we attach `.png` and try one more time.
// This works with some Imgur URLs
const uri = new URI(src);
const filename = uri.filename();
uri.filename(`${filename}.png`);
this.setValue(renderImage(uri.toString(), href, onLoad, onClick));
}
}
}
/**
* lit directive which attempts to render an <img> element from a URL.
* It will fall back to rendering an <a> element if it can't.
*
* @param { String } src - The value that will be assigned to the `src` attribute of the `<img>` element.
* @param { String } href - The value that will be assigned to the `href` attribute of the `<img>` element.
* @param { Function } onLoad - A callback function to be called once the image has loaded.
* @param { Function } onClick - A callback function to be called once the image has been clicked.
*/
export const renderImage = directive(ImageDirective);