2

我有一个故事资源,我想以不同方式为同一用户显示,具体取决于故事状态

状态 = NEW 的故事应该与 List1 一起显示

status = APPROVED 等的故事需要显示为 List2(我需要显示故事的不同属性)

如何使用 Admin-On-Rest 实现这一目标?

在添加相同的资源两次(如下所示)并为两者分配不同的列表视图只会导致第一个被显示而第二个被忽略

<Resource name="tales" list={EditorAssignedList} edit={EditTale} options={{ label: 'Assigned Tales' }}/>
<Resource name="tales" list={EditorTaleTrack} options={{ label: 'Your Tales' }}/>

记录以下错误。

flattenChildren(...): Encountered two children with the same key, `1:$tales`. Child keys must be unique;

关于如何将唯一键注入资源的任何策略。

4

3 回答 3

2

如果您还想通过不同的列表菜单将 CRUD 功能添加到同一路线,上述答案并不是那么有用。如果您有 2 个带有 CRUD 组件的列表视图 List1 和 List2。从 List2 输入编辑(例如)并点击保存,您将被重定向到 List1

更广泛的解决方案是为您的 REST 客户端创建自定义包装器。灵感来自下方。 https://marmelab.com/admin-on-rest/RestClients.html#decorating-your-rest-client-example-of-file-upload

就我而言,它看起来像这样。

我在 App.js 中创建了一个虚拟资源“trackTale”。restWrapper.js 中的

const RESTWrapper = requestHandler => (type, resource, params) => {

      if (type === 'GET_LIST' && resource === 'trackTale') {
        const page =  params.pagination.page
        const perPage = params.pagination.perPage
        const {field, order} = params.sort
        const query = {}
        query['where'] = {...params.filter}
        if (field) {query['order'] = [field + ' ' + order]}
        if (perPage > 0) {
            query['limit'] = perPage;
            if (page >= 0) {
                query['skip'] = (page - 1) * perPage
            }
        }
        //Key part here hardcoding the tales route to trackTale

const url = config.host + '/' + 'tales?' +  queryParameters({filter: JSON.stringify(query)})
        const options = {};
        options.user = {authenticated: true}
        options.user.token = localStorage.getItem('token');
        options.method = 'GET';
        return fetchUtils.fetchJson(url, options)
          .then((response) => {
            const {headers, json} = response;
            //admin on rest needs the {data} key
            return {data: json,
                    total: parseInt(headers.get('x-total-count').split('/').pop(), 10)}
        })
    }
}


//below function is very very specific to how loopback.js expects to recieve REST queries. Please customize it for your API needs
const queryParameters = data => Object.keys(data)
    .map(key => [key, data[key]].map(encodeURIComponent).join('='))
    .join('&');

这适用于所有情况。如果您的不同路线没有 CRUD,仍然可以创建自定义菜单。

于 2017-06-08T13:56:33.673 回答
1

只保留一种资源。创建一个包含 2 个条目的自定义菜单,这些条目将您的过滤器传递给 url 参数。

然后在 TalesList 组件中,根据您的参数显示正确的版本组件

于 2017-05-23T15:24:13.033 回答
0

在@Gildas 的大力帮助下解决了

这被解决了

1)创建自定义菜单组件

const linkData = {
  pathname: "/tales",
  hash: "trackTales"
}

export default ({ resources, onMenuTap, logout }) => {
  return (
    <div>
      <MenuItem containerElement={<Link to="/tales" />} primaryText="Tales For Edit" onTouchTap={onMenuTap} />
      <MenuItem containerElement={<Link to={ linkData } />} primaryText="Track Tales" onTouchTap={onMenuTap} />
      {logout}
    </div>
  )
}

React Router 的 Link 组件接受对象作为参数。这些作为道具传递给下游组件。

export const EditorAssignedList = (props) => {
  return taleViewJuggler(props)
}

juggler 函数读取道具并根据道具创建自定义视图。链接组件正在将数据传递给道具中的“位置”键。

const taleViewJuggler = (props) => {
  let viewName = props.location.hash
  let component;
  switch (viewName) {
    case "case1":
      component = (
        <ListView1 />
      )
      break;
    case "#case2":
      component = ( < ListView2 /> )
      break;
  }
  return component
}
于 2017-05-26T18:23:04.503 回答