navState.js 1004 Bytes
Newer Older
jim's avatar
jim committed
1 2 3 4
import React from 'react';

const UrlMap = {
  sidemenu: {
jim's avatar
jim committed
5 6 7
    active: 'https://gw.alipayobjects.com/zos/rmsportal/WEqgEeCsLvecmwJwbhif.svg',
    default: 'https://gw.alipayobjects.com/zos/rmsportal/bjdhEDZlJzyMlyGbFQQd.svg',
    disable: 'https://gw.alipayobjects.com/zos/rmsportal/VeCtUculrOjKzkzSzrye.svg',
jim's avatar
jim committed
8 9
  },
  topside: {
jim's avatar
jim committed
10 11 12
    active: 'https://gw.alipayobjects.com/zos/rmsportal/RbntcRzDHttDvYfKxsPc.svg',
    default: 'https://gw.alipayobjects.com/zos/rmsportal/gqjBdnSHfVYIFvpGbLZV.svg',
    disable: 'https://gw.alipayobjects.com/zos/rmsportal/VlSlQQkUGdbcOZdbUgMp.svg',
jim's avatar
jim committed
13 14
  },
  topmenu: {
jim's avatar
jim committed
15 16 17
    active: 'https://gw.alipayobjects.com/zos/rmsportal/nWoQtAGvMihfwxKZEzAi.svg',
    default: 'https://gw.alipayobjects.com/zos/rmsportal/tbfuZcaGaYQGyeaiTaDg.svg',
    disable: 'https://gw.alipayobjects.com/zos/rmsportal/VYNKTivFAQOBBbZkkWNb.svg',
jim's avatar
jim committed
18 19 20 21 22 23 24 25 26
  },
};

const navState = ({ alt, type, state }) => {
  const url = UrlMap[type][state];
  return <img src={url} alt={alt} />;
};

export default navState;