2022-02-04 14:59:58 +08:00
|
|
|
import { unref, watch } from 'vue'
|
2022-02-11 11:03:15 +08:00
|
|
|
import { debugWarn } from '@element-plus/utils'
|
2022-02-04 14:59:58 +08:00
|
|
|
|
|
|
|
import type { MaybeRef } from '@vueuse/core'
|
|
|
|
|
|
|
|
type DeprecationParam = {
|
|
|
|
from: string
|
|
|
|
replacement: string
|
|
|
|
scope: string
|
|
|
|
version: string
|
|
|
|
ref: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export const useDeprecated = (
|
|
|
|
{ from, replacement, scope, version, ref }: DeprecationParam,
|
|
|
|
condition: MaybeRef<boolean>
|
|
|
|
) => {
|
|
|
|
watch(
|
|
|
|
() => unref(condition),
|
|
|
|
(val) => {
|
|
|
|
if (val) {
|
|
|
|
debugWarn(
|
|
|
|
scope,
|
|
|
|
`API ${from} is about to be deprecated in version ${version}, please use ${replacement} instead.
|
|
|
|
For more detail, please visit: ${ref}
|
|
|
|
`
|
|
|
|
)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
immediate: true,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|