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

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

afc163's avatar
afc163 committed
61 62 63 64
const updateColorWeak = colorWeak => {
  document.body.className = colorWeak ? 'colorWeak' : '';
};

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