Skip to content

Commit bce5a67

Browse files
committed
VC-3511 Add a notification to settings page on document.write
1 parent 9d7830e commit bce5a67

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

public/components/wpVcSettings/dashboard.js

+16
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ window.ResizeSensor = ResizeSensorModule
88
const dataManager = getService('dataManager')
99
const localizations = dataManager.get('localizations')
1010
const unsavedChangesText = localizations && localizations.unsavedChangesText ? localizations.unsavedChangesText : 'Changes may not be saved.'
11+
const documentWriteWarning = localizations && localizations.documentWriteWarningSettings ? localizations.documentWriteWarningSettings : 'Avoiding using document.write as per MDN documentation. This may result in editor not working properly.'
1112

1213
export const dashboard = () => {
1314
const dashboardContainer = document.querySelector('.vcv-settings')
@@ -108,6 +109,12 @@ export const dashboard = () => {
108109
}
109110
const submitButtonContainer = e.target.querySelector('.vcv-submit-button-container')
110111
const submitButton = e.target.querySelector('.vcv-dashboard-button--save')
112+
if (submitButton.id === 'submit_btn-vcv-global-css-js') {
113+
const isValid = isValidEditorsValue()
114+
if (!isValid) {
115+
alert(documentWriteWarning)
116+
}
117+
}
111118
// this will get all form fields and encode it as a string
112119
const data = Array.from(
113120
new window.FormData(e.target),
@@ -156,6 +163,15 @@ export const dashboard = () => {
156163
window.jQuery(dataCollectionTableWrapper).slideToggle()
157164
}
158165

166+
const isValidEditorsValue = () => {
167+
const regex = /document\.write\s*\(/
168+
const headerEditorValue = window.vcvGlobalJsHeadEditor.getValue().trim()
169+
const footerEditorValue = window.vcvGlobalJsFooterEditor.getValue().trim()
170+
const isValidHeadeEditor = headerEditorValue ? !regex.test(headerEditorValue) : true
171+
const isValidFooterEditor = footerEditorValue ? !regex.test(footerEditorValue) : true
172+
return isValidFooterEditor && isValidHeadeEditor
173+
}
174+
159175
if (dataCollectionTableWrapper) {
160176
if (urlHash.indexOf(dataCollectionTableWrapper.id) !== -1) {
161177
dataCollectionTableWrapper.style.display = 'block'

public/components/wpVcSettings/editors.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,16 @@ export const initEditors = () => {
5050
*/
5151
const globalJsHead = document.querySelector('#vcv-settingsGlobalJsHead')
5252
if (globalJsHead !== null) {
53-
const globalJsHeadEditor = codeEditor.getEditor(globalJsHead, 'text/html', globalJsHead.value)
54-
globalJsHeadEditor.on('change', async () => {
53+
window.vcvGlobalJsHeadEditor = codeEditor.getEditor(globalJsHead, 'text/html', globalJsHead.value)
54+
window.vcvGlobalJsHeadEditor.on('change', async () => {
5555
setStatus('ready')
5656
})
5757
}
5858

5959
const globalJsFooter = document.querySelector('#vcv-settingsGlobalJsFooter')
6060
if (globalJsFooter !== null) {
61-
const globalJsFooterEditor = codeEditor.getEditor(globalJsFooter, 'text/html', globalJsFooter.value)
62-
globalJsFooterEditor.on('change', async () => {
61+
window.vcvGlobalJsFooterEditor = codeEditor.getEditor(globalJsFooter, 'text/html', globalJsFooter.value)
62+
window.vcvGlobalJsFooterEditor.on('change', async () => {
6363
setStatus('ready')
6464
})
6565
}

visualcomposer/Helpers/Localizations.php

+4
Original file line numberDiff line numberDiff line change
@@ -2295,6 +2295,10 @@ public function getLocalizations()
22952295
'Warning: Custom JavaScript won\'t be saved. Avoid using document.write() as it can break the editor. Please refer to the <a href="https://developer.mozilla.org/en-US/docs/Web/API/Document/write" target="_blank" rel="noopener noreferrer">MDN documentation</a> for more info.',
22962296
'visualcomposer'
22972297
),
2298+
'documentWriteWarningSettings' => __(
2299+
'Avoiding using document.write as per MDN documentation. This may result in editor not working properly.',
2300+
'visualcomposer'
2301+
),
22982302
];
22992303

23002304
return vcfilter('vcv:helpers:localizations:i18n', $locale);

0 commit comments

Comments
 (0)