mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
36 lines
747 B
TypeScript
36 lines
747 B
TypeScript
import { unref, watch } from 'vue'
|
|
import { debugWarn } from '@element-plus/utils'
|
|
|
|
import type { MaybeRef } from '@vueuse/core'
|
|
|
|
type DeprecationParam = {
|
|
from: string
|
|
replacement: string
|
|
scope: string
|
|
version: string
|
|
ref: string
|
|
type?: 'API' | 'Slot' | 'Event'
|
|
}
|
|
|
|
export const useDeprecated = (
|
|
{ from, replacement, scope, version, ref, type = 'API' }: DeprecationParam,
|
|
condition: MaybeRef<boolean>
|
|
) => {
|
|
watch(
|
|
() => unref(condition),
|
|
(val) => {
|
|
if (val) {
|
|
debugWarn(
|
|
scope,
|
|
`${type} ${from} is about to be deprecated in version ${version}, please use ${replacement} instead.
|
|
For more detail, please visit: ${ref}
|
|
`
|
|
)
|
|
}
|
|
},
|
|
{
|
|
immediate: true,
|
|
}
|
|
)
|
|
}
|