mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 20:13:32 +01:00
47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { getSettings } from './settings';
|
|
|
|
const strings = JSON.parse(document.getElementById('vscode-markdown-preview-data').getAttribute('data-strings'));
|
|
const settings = getSettings();
|
|
|
|
let didShow = false;
|
|
|
|
const showCspWarning = () => {
|
|
if (didShow || settings.disableSecurityWarnings) {
|
|
return;
|
|
}
|
|
didShow = true;
|
|
|
|
const notification = document.createElement('a');
|
|
notification.innerText = strings.cspAlertMessageText;
|
|
notification.setAttribute('id', 'code-csp-warning');
|
|
notification.setAttribute('title', strings.cspAlertMessageTitle);
|
|
|
|
notification.setAttribute('role', 'button');
|
|
notification.setAttribute('aria-label', strings.cspAlertMessageLabel);
|
|
notification.onclick = () => {
|
|
window.parent.postMessage({
|
|
type: 'command',
|
|
source: settings.source,
|
|
body: {
|
|
command: 'markdown.showPreviewSecuritySelector',
|
|
args: [settings.source]
|
|
}
|
|
}, '*');
|
|
};
|
|
document.body.appendChild(notification);
|
|
};
|
|
|
|
document.addEventListener('securitypolicyviolation', () => {
|
|
showCspWarning();
|
|
});
|
|
|
|
window.addEventListener('message', (event) => {
|
|
if (event && event.data && event.data.name === 'vscode-did-block-svg') {
|
|
showCspWarning();
|
|
}
|
|
}); |