forked from vueComponent/ant-design-vue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuseNotification.tsx
150 lines (132 loc) · 4.96 KB
/
useNotification.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import type { VNode } from 'vue';
import { shallowRef, computed, defineComponent } from 'vue';
import { useNotification as useVcNotification } from '../vc-notification';
import type { NotificationAPI } from '../vc-notification';
import type {
NotificationInstance,
ArgsProps,
NotificationPlacement,
NotificationConfig,
} from './interface';
import useStyle from './style';
import { getCloseIcon, PureContent } from './PurePanel';
import { getMotion, getPlacementStyle } from './util';
import useConfigInject from '../config-provider/hooks/useConfigInject';
import classNames from '../_util/classNames';
import type { Key } from '../_util/type';
const DEFAULT_OFFSET = 24;
const DEFAULT_DURATION = 4.5;
// ==============================================================================
// == Holder ==
// ==============================================================================
type HolderProps = NotificationConfig & {
onAllRemoved?: VoidFunction;
getPopupContainer?: () => HTMLElement;
};
interface HolderRef extends NotificationAPI {
prefixCls: string;
hashId: string;
}
const Holder = defineComponent({
name: 'Holder',
inheritAttrs: false,
props: ['prefixCls', 'class', 'type', 'icon', 'content', 'onAllRemoved'],
setup(props: HolderProps, { expose }) {
const { getPrefixCls, getPopupContainer } = useConfigInject('notification', props);
const prefixCls = computed(() => props.prefixCls || getPrefixCls('notification'));
// =============================== Style ===============================
const getStyles = (placement: NotificationPlacement) =>
getPlacementStyle(placement, props.top ?? DEFAULT_OFFSET, props.bottom ?? DEFAULT_OFFSET);
// Style
const [, hashId] = useStyle(prefixCls);
const getClassName = () => classNames(hashId.value, { [`${prefixCls.value}-rtl`]: props.rtl });
// ============================== Motion ===============================
const getNotificationMotion = () => getMotion(prefixCls.value);
// ============================== Origin ===============================
const [api, holder] = useVcNotification({
prefixCls: prefixCls.value,
getStyles,
getClassName,
motion: getNotificationMotion,
closable: true,
closeIcon: getCloseIcon(prefixCls.value),
duration: DEFAULT_DURATION,
getContainer: () =>
props.getPopupContainer?.() || getPopupContainer.value?.() || document.body,
maxCount: props.maxCount,
hashId: hashId.value,
onAllRemoved: props.onAllRemoved,
});
// ================================ Ref ================================
expose({
...api,
prefixCls: prefixCls.value,
hashId,
});
return holder;
},
});
// ==============================================================================
// == Hook ==
// ==============================================================================
export function useInternalNotification(
notificationConfig?: HolderProps,
): readonly [NotificationInstance, () => VNode] {
const holderRef = shallowRef<HolderRef>(null);
const holderKey = Symbol('notificationHolderKey');
// ================================ API ================================
// Wrap with notification content
// >>> Open
const open = (config: ArgsProps) => {
if (!holderRef.value) {
return;
}
const { open: originOpen, prefixCls, hashId } = holderRef.value;
const noticePrefixCls = `${prefixCls}-notice`;
const { message, description, icon, type, btn, class: className, ...restConfig } = config;
return originOpen({
placement: 'topRight',
...restConfig,
content: () => (
<PureContent
prefixCls={noticePrefixCls}
icon={typeof icon === 'function' ? icon() : icon}
type={type}
message={typeof message === 'function' ? message() : message}
description={typeof description === 'function' ? description() : description}
btn={typeof btn === 'function' ? btn() : btn}
/>
),
// @ts-ignore
class: classNames(type && `${noticePrefixCls}-${type}`, hashId, className),
});
};
// >>> destroy
const destroy = (key?: Key) => {
if (key !== undefined) {
holderRef.value?.close(key);
} else {
holderRef.value?.destroy();
}
};
const wrapAPI = {
open,
destroy,
} as NotificationInstance;
const keys = ['success', 'info', 'warning', 'error'] as const;
keys.forEach(type => {
wrapAPI[type] = config =>
open({
...config,
type,
});
});
// ============================== Return ===============================
return [
wrapAPI,
() => <Holder key={holderKey} {...notificationConfig} ref={holderRef} />,
] as const;
}
export default function useNotification(notificationConfig?: NotificationConfig) {
return useInternalNotification(notificationConfig);
}