classic-ui-dev/plugins/detectIPFS.js

19 lines
569 B
JavaScript
Raw Normal View History

2022-04-21 23:05:56 -04:00
/* eslint-disable no-console */
export default ({ store, isHMR, app }, inject) => {
inject('isLoadedFromIPFS', main)
}
function main() {
2022-06-07 06:55:37 -04:00
const whiteListedDomains = ['localhost:3000', 'tornadocash.eth.link', 'tornadocash.eth.limo']
2022-04-21 23:05:56 -04:00
2022-07-05 06:15:45 -04:00
const NETLIFY_REGEXP = /deploy-preview-(\d+)--tornadocash\.netlify\.app/
2022-06-06 10:26:00 -04:00
if (NETLIFY_REGEXP.test(window.location.host)) {
2022-04-21 23:05:56 -04:00
return false
2022-06-06 10:26:00 -04:00
} else if (!whiteListedDomains.includes(window.location.host)) {
2022-04-21 23:05:56 -04:00
console.warn('The page has been loaded from ipfs.io. LocalStorage is disabled')
return true
}
return false
}