Skip to content

Commit

Permalink
Merge pull request #52 from rtCamp/feature/add-sandbox-property
Browse files Browse the repository at this point in the history
Add sandbox property to iframe
  • Loading branch information
fellyph committed Feb 20, 2024
2 parents 69003c1 + 26b6310 commit 215134c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
6 changes: 5 additions & 1 deletion src/demos/storage-access-api/index.ejs
@@ -1,5 +1,9 @@
<%- include(commonPath + '/header.ejs') %>
<%- include(commonPath + '/internal-page/header.ejs') %>
<iframe src="<%= protocol %>://<%= domainC %><% if (isPortPresent) { %>:<%= port %><% } %>/storage-access-api/theme-selection" class="border-8 rounded w-full h-96 overflow-hidden"></iframe>
<iframe sandbox="allow-storage-access-by-user-activation
allow-scripts
allow-same-origin"
src="<%= protocol %>://<%= domainC %><% if (isPortPresent) { %>:<%= port %><% } %>/storage-access-api/theme-selection"
class="border-8 rounded w-full h-96 overflow-hidden"></iframe>
<%- include(commonPath + '/internal-page/footer.ejs') %>
<%- include(commonPath + '/footer.ejs') %>
11 changes: 2 additions & 9 deletions src/demos/storage-access-api/personalization.ejs
Expand Up @@ -17,7 +17,6 @@ document.addEventListener('DOMContentLoaded', () => {
})

async function updateUserPreference() {
console.log('hasStorageAccess', hasStorageAccess);
if ( hasStorageAccess ) {
fetchAndApplyTheme();
} else {
Expand All @@ -27,8 +26,7 @@ document.addEventListener('DOMContentLoaded', () => {
loadButton.classList.add('hidden');
fetchAndApplyTheme();
} catch (error) {
console.error('There has been a problem with your fetch operation:', error);
errorMessages.textContent = `Error: ${error}`;
errorMessages.textContent = error?.message;
}
}
}
Expand All @@ -48,14 +46,12 @@ document.addEventListener('DOMContentLoaded', () => {
.then(data => {
const theme = data.theme;
pageContainer.className = `${containerClass} ${data.theme}`
console.log('theme', theme);
if (theme === 'dark') {
themeSwitcher.checked = true;
}
})
.catch(error => {
console.error('There has been a problem with your fetch operation:', error);
errorMessages.textContent = `Error: ${error.message}`;
errorMessages.textContent = error?.message;
});
}

Expand Down Expand Up @@ -83,19 +79,16 @@ document.addEventListener('DOMContentLoaded', () => {
if ( await document.hasStorageAccess() ) {
fetchSetPersonalization();
} else {
console.error('User denied storage access');
errorMessages.textContent = 'User denied storage access';
}
} catch (error) {
console.error('Error:', error);
errorMessages.textContent = `The request to storage access API was denied because the user never interacted with the top-level site context or the permission wasn't grant by the user`;
}
}
}

window.toggleTheme = toggleTheme;
if (isIframe && !hasStorageAccess) {
console.log('In iframe');
toggleContainer.classList.add('hidden');
loadButton.classList.remove('hidden');
loadButton.addEventListener('click', updateUserPreference);
Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/ecommerce/routes.js
Expand Up @@ -6,7 +6,7 @@ const router = express.Router();
// Middleware to setup common rendering variables
router.use((req, res, next) => {
// Set common variables for rendering views
res.locals.title = 'E-Commerce - Privacy Sandbox' // Set the page title
res.locals.title = 'Shopping Cart' // Set the page title
next(); // Continue to the next middleware or route handler
});

Expand Down
2 changes: 0 additions & 2 deletions src/scenarios/personalization/personalization.ejs
Expand Up @@ -23,7 +23,6 @@ document.addEventListener('DOMContentLoaded', () => {
}
})
.catch(error => {
console.error('There has been a problem with your fetch operation:', error);
statusMessage.textContent = `There was an error fetching your personalization settings: ${error.message}`;
});
}
Expand All @@ -44,7 +43,6 @@ document.addEventListener('DOMContentLoaded', () => {
.then(data => {
pageContainer.className = data.theme;
}).catch(error => {
console.error('There has been a problem with your fetch operation:', error);
statusMessage.textContent = `There was an error updating your personalization settings: ${error.message}`;
});
}
Expand Down

0 comments on commit 215134c

Please sign in to comment.