mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-10-23 16:13:37 +00:00
This adds a feature of showing the pdf attachments in a new window so that a user can quickly view the same. Fixes: #547.
79 lines
2.5 KiB
JavaScript
79 lines
2.5 KiB
JavaScript
const { ipcRenderer } = require('electron');
|
|
const { shell, app } = require('electron').remote;
|
|
const LinkUtil = require('../utils/link-util');
|
|
const DomainUtil = require('../utils/domain-util');
|
|
const ConfigUtil = require('../utils/config-util');
|
|
|
|
const dingSound = new Audio('../resources/sounds/ding.ogg');
|
|
|
|
function handleExternalLink(event) {
|
|
const { url } = event;
|
|
const domainPrefix = DomainUtil.getDomain(this.props.index).url;
|
|
const downloadPath = ConfigUtil.getConfigItem('downloadsPath', `${app.getPath('downloads')}`);
|
|
const shouldShowInFolder = ConfigUtil.getConfigItem('showDownloadFolder', false);
|
|
|
|
// Whitelist URLs which are allowed to be opened in the app
|
|
const {
|
|
isInternalUrl: isWhiteListURL,
|
|
isUploadsUrl: isUploadsURL
|
|
} = LinkUtil.isInternal(domainPrefix, url);
|
|
|
|
if (isWhiteListURL) {
|
|
event.preventDefault();
|
|
|
|
// Show pdf attachments in a new window
|
|
|
|
if (LinkUtil.isPDF(url) && isUploadsURL) {
|
|
ipcRenderer.send('pdf-view', url);
|
|
return;
|
|
}
|
|
|
|
// download txt, mp3, mp4 etc.. by using downloadURL in the
|
|
// main process which allows the user to save the files to their desktop
|
|
// and not trigger webview reload while image in webview will
|
|
// do nothing and will not save it
|
|
|
|
if (!LinkUtil.isImage(url) && !LinkUtil.isPDF(url) && isUploadsURL) {
|
|
ipcRenderer.send('downloadFile', url, downloadPath);
|
|
ipcRenderer.once('downloadFileCompleted', (event, filePath, fileName) => {
|
|
const downloadNotification = new Notification('Download Complete', {
|
|
body: shouldShowInFolder ? `Click to show ${fileName} in folder` : `Click to open ${fileName}`,
|
|
silent: true // We'll play our own sound - ding.ogg
|
|
});
|
|
|
|
// Play sound to indicate download complete
|
|
if (!ConfigUtil.getConfigItem('silent')) {
|
|
dingSound.play();
|
|
}
|
|
|
|
downloadNotification.onclick = () => {
|
|
if (shouldShowInFolder) {
|
|
// Reveal file in download folder
|
|
shell.showItemInFolder(filePath);
|
|
} else {
|
|
// Open file in the default native app
|
|
shell.openItem(filePath);
|
|
}
|
|
};
|
|
ipcRenderer.removeAllListeners('downloadFileFailed');
|
|
});
|
|
|
|
ipcRenderer.once('downloadFileFailed', () => {
|
|
// Automatic download failed, so show save dialog prompt and download
|
|
// through webview
|
|
this.$el.downloadURL(url);
|
|
ipcRenderer.removeAllListeners('downloadFileCompleted');
|
|
});
|
|
return;
|
|
}
|
|
|
|
// open internal urls inside the current webview.
|
|
this.$el.loadURL(url);
|
|
} else {
|
|
event.preventDefault();
|
|
shell.openExternal(url);
|
|
}
|
|
}
|
|
|
|
module.exports = handleExternalLink;
|