fuliqi
2024-01-24 29c1e7eb5ac16e90d8991a86c1c071bc312ec8d9
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
/*
 * @Author: 张嘉彬
 * @Date: 2022-03-08 10:36:52
 * @Description:
 */
// /src/qiankun/action.js
function emptyAction () {
  // 提示当前使用的是空 Action
  console.warn('Current execute action is empty!')
}
 
class Actions {
  // 默认值为空 Action
  actions = {
    onGlobalStateChange: emptyAction,
    setGlobalState: emptyAction
  };
 
  /**
   * 设置 actions
   */
  setActions (actions) {
    this.actions = actions
  }
 
  /**
   * 映射
   */
  onGlobalStateChange () {
    console.log(222222, arguments)
    return this.actions.onGlobalStateChange(...arguments)
  }
 
  /**
   * 映射
   */
  setGlobalState () {
    return this.actions.setGlobalState(...arguments)
  }
}
 
const actions = new Actions()
export default actions