setting.js 3.08 KB
Newer Older
1
import { message } from 'antd';
afc163's avatar
afc163 committed
2
import defaultSetting from '../defaultSetting';
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
3

afc163's avatar
afc163 committed
4
let lessNodesAppended;
afc163's avatar
afc163 committed
5
const updateTheme = themeColor => {
6
  // Determine if the component is remounted
afc163's avatar
afc163 committed
7
  if (!themeColor) {
afc163's avatar
afc163 committed
8
    return;
9
  }
afc163's avatar
afc163 committed
10 11 12 13 14 15 16 17 18 19
  const hideMessage = message.loading('ζ­£εœ¨ηΌ–θ―‘δΈ»ι’˜οΌ', 0);
  if (!lessNodesAppended) {
    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,
afc163's avatar
afc163 committed
20
        env: 'production'
afc163's avatar
afc163 committed
21 22
      };
    `;
afc163's avatar
afc163 committed
23
    lessScriptNode.src = 'https://gw.alipayobjects.com/os/lib/less.js/2.7.3/less.min.js';
afc163's avatar
afc163 committed
24 25 26 27 28
    lessScriptNode.async = true;
    lessScriptNode.onload = () => {
      buildIt();
      lessScriptNode.onload = null;
    };
afc163's avatar
afc163 committed
29 30 31
    document.body.appendChild(lessStyleNode);
    document.body.appendChild(lessConfigNode);
    document.body.appendChild(lessScriptNode);
afc163's avatar
afc163 committed
32
    lessNodesAppended = true;
33
  } else {
afc163's avatar
afc163 committed
34 35 36 37 38 39
    buildIt();
  }
  function buildIt() {
    if (!window.less) {
      return;
    }
afc163's avatar
afc163 committed
40 41 42 43 44 45 46 47 48 49 50 51 52
    setTimeout(() => {
      window.less
        .modifyVars({
          '@primary-color': themeColor,
        })
        .then(() => {
          hideMessage();
        })
        .catch(() => {
          message.error('Failed to update theme');
          hideMessage();
        });
    }, 200);
53 54 55
  }
};

afc163's avatar
afc163 committed
56 57 58 59
const updateColorWeak = colorWeak => {
  document.body.className = colorWeak ? 'colorWeak' : '';
};

jim's avatar
jim committed
60 61
export default {
  namespace: 'setting',
jim's avatar
jim committed
62
  state: defaultSetting,
jim's avatar
jim committed
63
  reducers: {
jim's avatar
jim committed
64
    getSetting(state) {
jim's avatar
jim committed
65
      const setting = {};
jim's avatar
jim committed
66 67 68 69
      const urlParams = new URL(window.location.href);
      Object.keys(state).forEach(key => {
        if (urlParams.searchParams.has(key)) {
          const value = urlParams.searchParams.get(key);
jim's avatar
jim committed
70
          setting[key] = value === '1' ? true : value;
jim's avatar
jim committed
71 72
        }
      });
73
      const { themeColor, colorWeak } = setting;
afc163's avatar
afc163 committed
74 75 76 77
      if (state.themeColor !== themeColor) {
        updateTheme(themeColor);
      }
      updateColorWeak(colorWeak);
jim's avatar
jim committed
78 79 80 81
      return {
        ...state,
        ...setting,
      };
jim's avatar
jim committed
82
    },
jim's avatar
jim committed
83 84
    changeSetting(state, { payload }) {
      const urlParams = new URL(window.location.href);
jim's avatar
jim committed
85 86 87 88 89
      Object.keys(defaultSetting).forEach(key => {
        if (urlParams.searchParams.has(key)) {
          urlParams.searchParams.delete(key);
        }
      });
jim's avatar
jim committed
90 91 92
      Object.keys(payload).forEach(key => {
        if (key === 'collapse') {
          return;
jim's avatar
jim committed
93
        }
jim's avatar
jim committed
94 95 96 97
        let value = payload[key];
        if (value === true) {
          value = 1;
        }
jim's avatar
jim committed
98 99 100
        if (defaultSetting[key] !== value) {
          urlParams.searchParams.set(key, value);
        }
jim's avatar
jim committed
101
      });
102
      const { themeColor, colorWeak } = payload;
afc163's avatar
afc163 committed
103 104 105 106
      if (state.themeColor !== themeColor) {
        updateTheme(themeColor);
      }
      updateColorWeak(colorWeak);
jim's avatar
jim committed
107 108 109 110 111 112 113 114
      window.history.replaceState(null, 'setting', urlParams.href);
      return {
        ...state,
        ...payload,
      };
    },
  },
};