setting.js 3.8 KB
Newer Older
1
import { message } from 'antd';
A
afc163 已提交
2
import defaultSettings from '../defaultSettings';
3
import themeColorClient from '../components/SettingDrawer/themeColorClient';
陈帅 已提交
4

5
const updateTheme = newPrimaryColor => {
6 7 8
  const hideMessage = message.loading('正在切换主题!', 0);
  themeColorClient.changeColor(newPrimaryColor).finally(() => hideMessage());
};
9
/*
A
afc163 已提交
10
let lessNodesAppended;
A
afc163 已提交
11
const updateTheme = primaryColor => {
K
kennylbj 已提交
12
  // Don't compile less in production!
13 14
  // preview.pro.ant.design only do not use in your production ; preview.pro.ant.design 专用环境变量,请不要在你的项目中使用它。
  if (ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION !== 'site') {
A
afc163 已提交
15 16
    return;
  }
17
  // Determine if the component is remounted
A
afc163 已提交
18
  if (!primaryColor) {
A
afc163 已提交
19
    return;
20
  }
A
afc163 已提交
21
  const hideMessage = message.loading('正在编译主题!', 0);
愚道 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
  function buildIt() {
    if (!window.less) {
      return;
    }
    setTimeout(() => {
      window.less
        .modifyVars({
          '@primary-color': primaryColor,
        })
        .then(() => {
          hideMessage();
        })
        .catch(() => {
          message.error('Failed to update theme');
          hideMessage();
        });
    }, 200);
  }
A
afc163 已提交
40
  if (!lessNodesAppended) {
41
    // insert less.js and color.less
A
afc163 已提交
42 43 44 45 46 47 48 49
    const lessStyleNode = document.createElement('link');
    const lessConfigNode = document.createElement('script');
    const lessScriptNode = document.createElement('script');
    lessStyleNode.setAttribute('rel', 'stylesheet/less');
    lessStyleNode.setAttribute('href', '/color.less');
    lessConfigNode.innerHTML = `
      window.less = {
        async: true,
A
afc163 已提交
50 51
        env: 'production',
        javascriptEnabled: true
A
afc163 已提交
52 53
      };
    `;
A
afc163 已提交
54
    lessScriptNode.src = 'https://gw.alipayobjects.com/os/lib/less.js/3.8.1/less.min.js';
A
afc163 已提交
55 56 57 58 59
    lessScriptNode.async = true;
    lessScriptNode.onload = () => {
      buildIt();
      lessScriptNode.onload = null;
    };
A
afc163 已提交
60 61 62
    document.body.appendChild(lessStyleNode);
    document.body.appendChild(lessConfigNode);
    document.body.appendChild(lessScriptNode);
A
afc163 已提交
63
    lessNodesAppended = true;
64
  } else {
A
afc163 已提交
65 66
    buildIt();
  }
67
};
68
*/
69

A
afc163 已提交
70 71 72 73
const updateColorWeak = colorWeak => {
  document.body.className = colorWeak ? 'colorWeak' : '';
};

J
jim 已提交
74 75
export default {
  namespace: 'setting',
A
afc163 已提交
76
  state: defaultSettings,
J
jim 已提交
77
  reducers: {
J
jim 已提交
78
    getSetting(state) {
J
jim 已提交
79
      const setting = {};
J
jim 已提交
80 81 82 83
      const urlParams = new URL(window.location.href);
      Object.keys(state).forEach(key => {
        if (urlParams.searchParams.has(key)) {
          const value = urlParams.searchParams.get(key);
J
jim 已提交
84
          setting[key] = value === '1' ? true : value;
J
jim 已提交
85 86
        }
      });
A
afc163 已提交
87 88 89
      const { primaryColor, colorWeak } = setting;
      if (state.primaryColor !== primaryColor) {
        updateTheme(primaryColor);
A
afc163 已提交
90 91
      }
      updateColorWeak(colorWeak);
J
jim 已提交
92 93 94 95
      return {
        ...state,
        ...setting,
      };
J
jim 已提交
96
    },
J
jim 已提交
97 98
    changeSetting(state, { payload }) {
      const urlParams = new URL(window.location.href);
A
afc163 已提交
99
      Object.keys(defaultSettings).forEach(key => {
J
jim 已提交
100 101 102 103
        if (urlParams.searchParams.has(key)) {
          urlParams.searchParams.delete(key);
        }
      });
J
jim 已提交
104 105 106
      Object.keys(payload).forEach(key => {
        if (key === 'collapse') {
          return;
J
jim 已提交
107
        }
J
jim 已提交
108 109 110 111
        let value = payload[key];
        if (value === true) {
          value = 1;
        }
A
afc163 已提交
112
        if (defaultSettings[key] !== value) {
J
jim 已提交
113 114
          urlParams.searchParams.set(key, value);
        }
J
jim 已提交
115
      });
116
      const { primaryColor, colorWeak, contentWidth } = payload;
A
afc163 已提交
117 118
      if (state.primaryColor !== primaryColor) {
        updateTheme(primaryColor);
A
afc163 已提交
119
      }
120 121
      if (state.contentWidth !== contentWidth && window.dispatchEvent) {
        window.dispatchEvent(new Event('resize'));
122
      }
A
afc163 已提交
123
      updateColorWeak(colorWeak);
J
jim 已提交
124 125 126 127 128 129 130 131
      window.history.replaceState(null, 'setting', urlParams.href);
      return {
        ...state,
        ...payload,
      };
    },
  },
};