koel/resources/assets/js/utils/common.ts

47 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-04-15 14:24:30 +00:00
import select from 'select'
2022-06-10 10:47:46 +00:00
import { eventBus, noop } from '@/utils'
import defaultCover from '@/../img/covers/default.svg'
2022-04-15 14:24:30 +00:00
export { defaultCover }
2022-04-15 14:24:30 +00:00
/**
* Force reloading window regardless of "Confirm before reload" setting.
* This is handy for certain cases, for example Last.fm connect/disconnect.
*/
export const forceReloadWindow = (): void => {
if (process.env.NODE_ENV === 'test') {
2022-04-15 14:24:30 +00:00
return
}
window.onbeforeunload = noop
window.location.reload()
}
export const showOverlay = (
message = 'Just a little patience…',
type: OverlayState['type'] = 'loading',
dismissible = false
) => eventBus.emit('SHOW_OVERLAY', { message, type, dismissible })
2022-04-15 14:24:30 +00:00
export const hideOverlay = () => eventBus.emit('HIDE_OVERLAY')
2022-04-15 14:24:30 +00:00
export const copyText = (text: string): void => {
let copyArea = document.querySelector<HTMLTextAreaElement>('#copyArea')
if (!copyArea) {
copyArea = document.createElement('textarea')
copyArea.id = 'copyArea'
document.body.appendChild(copyArea)
}
copyArea.style.top = `${window.scrollY || document.documentElement.scrollTop}px`
copyArea.value = text
select(copyArea)
document.execCommand('copy')
}
export const isDemo = () => {
// can't use one-liner as it would break production build with an "Unexpected token" error
return import.meta.env.VITE_KOEL_ENV === 'demo'
}