mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
20 lines
453 B
Plaintext
20 lines
453 B
Plaintext
|
let _cache = {};
|
||
|
|
||
|
export function applyInlineOneboxes(inline, ajax) {
|
||
|
return ajax("/inline-onebox", {
|
||
|
data: { urls: Object.keys(inline) },
|
||
|
}).then(result => {
|
||
|
result['inline-oneboxes'].forEach(onebox => {
|
||
|
_cache[onebox.url] = onebox;
|
||
|
let links = inline[onebox.url] || [];
|
||
|
links.forEach(link => {
|
||
|
link.text(onebox.title);
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
|
||
|
export function cachedInlineOnebox(url) {
|
||
|
return _cache[url];
|
||
|
}
|