react-router子域路由

时间:2017-07-13 20:21:23

标签: javascript reactjs react-router

我正在使用react和react-router构建一个站点。我的网站分为前两部分和合作伙伴部分。我希望使用子域partner访问合作伙伴部分。我编写了以下代码,因为react-router不支持子域路由。我不确定这是否是“良好做法”。所以我的问题是,这是一个合适的解决方案,如果没有,还有什么替代方案。

P.S。我知道代码会在.co.uk这样的两部分TLD上中断,但会使用.com

<BrowserRouter>
  <Route path="/" render={props => {
    const [subdomain] = window.location.hostname.split('.');
    if (subdomain === 'partner') return <PartnerLayout {...props}/>;
    return <AppLayout {...props}/>;
  }}/>
</BrowserRouter>

1 个答案:

答案 0 :(得分:0)

我不使用react-router,但是如果您仅将react router jsx添加到各个应用程序组件中,则以下方法应该起作用

import React from 'react';

import {MainApplication} from './Main';

function subdomainApplications (map) {
  let main = map.find((item)=> item.main);
  if (!main) {
    throw new Error('Must set main flag to true on at least one subdomain app');
  }

  return function getComponent () {
    const parts = window.location.hostname.split('.');

    let last_index = -2;
    const last = parts[parts.length - 1];
    const is_localhost = last === 'localhost';
    if (is_localhost) {
      last_index = -1;
    }

    const subdomain = parts.slice(0, last_index).join('.');

    if (!subdomain) {
      return main.application;
    }

    const app = map.find(({subdomains})=> subdomains.includes(subdomain));
    if (app) {
      return app.application;
    } else {
      return main.application;
    }
  }
}

const getApp = subdomainApplications([
  {
    subdomains: ['www'],
    application: function () {
      return 'Main!'
    }
    main: true
  },
  {
    subdomains: ['foo'],
    application: function () {
      return 'Foo!';
    }
  },
  {
    subdomains: ['bar', 'baz.bar'],
    application: function () {
      return 'Bar!';
    }
  }
]);

export default function Application () {
  const App = getApp();
  return (
    <App className="Application" />
  );
}