-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0572aa7
commit ff820db
Showing
7 changed files
with
20 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +0,0 @@ | ||
export function init() { | ||
// @ts-ignore | ||
window.__canyon__analytics__dsn__ = `https://collect.canyonjs.org/coverage/client` | ||
setTimeout(()=>{ | ||
// @ts-ignore | ||
if (window.__coverage__ && window.__canyon__analytics__dsn__) { | ||
// @ts-ignore | ||
function collectCoverageData(timing) { | ||
// @ts-ignore | ||
const first = Object.values(window.__coverage__) | ||
// @ts-ignore | ||
const {projectID,sha,instrumentCwd} = first[0] | ||
|
||
const data = new FormData(); | ||
// @ts-ignore | ||
data.append('coverage',JSON.stringify(Object.entries(window.__coverage__).map(([path, {b,f,s}]) => ({ | ||
path, | ||
b, | ||
f, | ||
s, | ||
})).reduce((acc, {path, b, f, s}) => { | ||
// @ts-ignore | ||
acc[path] = {b, f, s}; | ||
return acc; | ||
}, {}))) | ||
// @ts-ignore | ||
data.append('projectID',projectID) | ||
// @ts-ignore | ||
data.append('sha',sha) | ||
data.append('instrumentCwd',instrumentCwd) | ||
|
||
navigator.sendBeacon( | ||
// @ts-ignore | ||
window.__canyon__analytics__dsn__, | ||
data, | ||
); | ||
} | ||
|
||
// beforeunload 事件:当用户即将离开页面时触发 | ||
window.addEventListener("beforeunload", () => { | ||
collectCoverageData("beforeunload"); | ||
}); | ||
|
||
// unload 事件:在页面完全卸载前触发 | ||
window.addEventListener("unload", () => { | ||
collectCoverageData("unload"); | ||
}); | ||
|
||
// visibilitychange 事件:当页面变为不可见(如切换到其他标签页)时触发 | ||
document.addEventListener("visibilitychange", () => { | ||
if (document.visibilityState === "hidden") { | ||
collectCoverageData("visibilitychange"); | ||
} | ||
}); | ||
} | ||
},500) | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ module.exports = { | |
}, | ||
plugins: [], | ||
corePlugins: { | ||
preflight: false, | ||
// preflight: false, | ||
}, | ||
}; |