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

afc163's avatar
afc163 committed
64 65 66 67
const updateColorWeak = colorWeak => {
  document.body.className = colorWeak ? 'colorWeak' : '';
};

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