From f01528d4a9bc1471faef82d8953c0f3ed3dfb3de Mon Sep 17 00:00:00 2001 From: harrywan Date: Wed, 16 Oct 2024 16:06:00 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8Dxss=E6=BC=8F=E6=B4=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-layout/package.json | 1 + .../fes-plugin-layout/src/runtime/helpers/svg.js | 4 +++- .../fes-plugin-layout/src/runtime/views/MenuIcon.vue | 12 +++++++----- packages/fes-template/src/app.jsx | 2 +- pnpm-lock.yaml | 7 +++++++ 5 files changed, 19 insertions(+), 7 deletions(-) diff --git a/packages/fes-plugin-layout/package.json b/packages/fes-plugin-layout/package.json index 4b312200..fd9e83dc 100644 --- a/packages/fes-plugin-layout/package.json +++ b/packages/fes-plugin-layout/package.json @@ -30,6 +30,7 @@ "peerDependencies": { "@fesjs/fes": "^3.1.13", "@fesjs/fes-design": ">=0.7.0", + "dompurify": "^3.1.7", "vue": "^3.2.47", "vue-router": "^4.0.1" }, diff --git a/packages/fes-plugin-layout/src/runtime/helpers/svg.js b/packages/fes-plugin-layout/src/runtime/helpers/svg.js index 54ea0491..e2109569 100644 --- a/packages/fes-plugin-layout/src/runtime/helpers/svg.js +++ b/packages/fes-plugin-layout/src/runtime/helpers/svg.js @@ -1,3 +1,5 @@ +import DOMPurify from 'dompurify'; + const isStr = function (str) { return typeof str === 'string'; }; @@ -26,7 +28,7 @@ export function isValid(elm) { export function validateContent(svgContent) { const div = document.createElement('div'); - div.innerHTML = svgContent; + div.innerHTML = DOMPurify.sanitize(svgContent); // setup this way to ensure it works on our buddy IE for (let i = div.childNodes.length - 1; i >= 0; i--) { diff --git a/packages/fes-plugin-layout/src/runtime/views/MenuIcon.vue b/packages/fes-plugin-layout/src/runtime/views/MenuIcon.vue index eef3800c..a6320418 100644 --- a/packages/fes-plugin-layout/src/runtime/views/MenuIcon.vue +++ b/packages/fes-plugin-layout/src/runtime/views/MenuIcon.vue @@ -1,11 +1,11 @@ +