Update ImageUtilities.plugin.js
This commit is contained in:
parent
57dccc6e3f
commit
5efd352e01
|
@ -2,7 +2,7 @@
|
||||||
* @name ImageUtilities
|
* @name ImageUtilities
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 4.3.6
|
* @version 4.3.7
|
||||||
* @description Adds several Utilities for Images/Videos (Gallery, Download, Reverse Search, Zoom, Copy, etc.)
|
* @description Adds several Utilities for Images/Videos (Gallery, Download, Reverse Search, Zoom, Copy, etc.)
|
||||||
* @invite Jx3TjNS
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -17,10 +17,13 @@ module.exports = (_ => {
|
||||||
"info": {
|
"info": {
|
||||||
"name": "ImageUtilities",
|
"name": "ImageUtilities",
|
||||||
"author": "DevilBro",
|
"author": "DevilBro",
|
||||||
"version": "4.3.6",
|
"version": "4.3.7",
|
||||||
"description": "Adds several Utilities for Images/Videos (Gallery, Download, Reverse Search, Zoom, Copy, etc.)"
|
"description": "Adds several Utilities for Images/Videos (Gallery, Download, Reverse Search, Zoom, Copy, etc.)"
|
||||||
},
|
},
|
||||||
"changeLog": {
|
"changeLog": {
|
||||||
|
"fixed": {
|
||||||
|
"Embed Thumbnails": "Fixed issue that caused Embed Thumbnails to go out of bounds of embeds"
|
||||||
|
},
|
||||||
"improved": {
|
"improved": {
|
||||||
"Tenor and other GIFs": "Fixed issue where link for some GIFs copied by 'Copy Link' wasn't the same as Discord's Original"
|
"Tenor and other GIFs": "Fixed issue where link for some GIFs copied by 'Copy Link' wasn't the same as Discord's Original"
|
||||||
}
|
}
|
||||||
|
@ -288,7 +291,22 @@ module.exports = (_ => {
|
||||||
});
|
});
|
||||||
|
|
||||||
BDFDB.PatchUtils.patch(this, (BDFDB.ModuleUtils.findByName("renderImageComponent", false).exports || {}), "renderImageComponent", {after: e => {
|
BDFDB.PatchUtils.patch(this, (BDFDB.ModuleUtils.findByName("renderImageComponent", false).exports || {}), "renderImageComponent", {after: e => {
|
||||||
if (e.returnValue && e.returnValue.type && (e.returnValue.type.displayName == "LazyImageZoomable" || e.returnValue.type.displayName == "LazyImage") && e.methodArguments[0].original && e.methodArguments[0].src.indexOf("https://media.discordapp.net/attachments") == 0 && (e.methodArguments[0].className || "").indexOf(BDFDB.disCN.embedthumbnail) == -1) return this.injectImageDetails(e.methodArguments[0], e.returnValue);
|
if (this.settings.general.showAsHeader && e.returnValue && e.returnValue.type && (e.returnValue.type.displayName == "LazyImageZoomable" || e.returnValue.type.displayName == "LazyImage") && e.methodArguments[0].original && e.methodArguments[0].src.indexOf("https://media.discordapp.net/attachments") == 0 && (e.methodArguments[0].className || "").indexOf(BDFDB.disCN.embedmedia) == -1 && (e.methodArguments[0].className || "").indexOf(BDFDB.disCN.embedthumbnail) == -1) {
|
||||||
|
return BDFDB.ReactUtils.createElement("div", {
|
||||||
|
className: BDFDB.disCN.embedwrapper,
|
||||||
|
children: [
|
||||||
|
BDFDB.ReactUtils.createElement(ImageDetails, {
|
||||||
|
original: e.methodArguments[0].original,
|
||||||
|
attachment: {
|
||||||
|
height: 0,
|
||||||
|
width: 0,
|
||||||
|
filename: "unknown.png"
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
e.returnValue
|
||||||
|
]
|
||||||
|
});
|
||||||
|
}
|
||||||
}});
|
}});
|
||||||
|
|
||||||
this.forceUpdateAll();
|
this.forceUpdateAll();
|
||||||
|
@ -983,27 +1001,6 @@ module.exports = (_ => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
injectImageDetails (props, child) {
|
|
||||||
if (this.settings.general.showAsHeader) {
|
|
||||||
props.detailsAdded = true;
|
|
||||||
return BDFDB.ReactUtils.createElement("div", {
|
|
||||||
className: BDFDB.disCN.embedwrapper,
|
|
||||||
children: [
|
|
||||||
BDFDB.ReactUtils.createElement(ImageDetails, {
|
|
||||||
original: props.original,
|
|
||||||
attachment: {
|
|
||||||
height: 0,
|
|
||||||
width: 0,
|
|
||||||
filename: "unknown.png"
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
child
|
|
||||||
]
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return child;
|
|
||||||
}
|
|
||||||
|
|
||||||
isValid (url, type) {
|
isValid (url, type) {
|
||||||
if (!url) return false;
|
if (!url) return false;
|
||||||
const file = url && (BDFDB.LibraryModules.URLParser.parse(url).pathname || "").split("%3A")[0].toLowerCase();
|
const file = url && (BDFDB.LibraryModules.URLParser.parse(url).pathname || "").split("%3A")[0].toLowerCase();
|
||||||
|
|
Loading…
Reference in New Issue