コード例 #1
0
ファイル: ListPage.js プロジェクト: supnate/rekit-example
  render() {
    const { fetchTopicListPending, fetchTopicListError } = this.props.topic;

    return (
      <div className="topic-list-page">
        <h1>
          Topics
          <button className="btn-new-topic" onClick={memobind(this, 'handleNewTopicBtnClick')}>+ New Topic</button>
        </h1>
        {fetchTopicListPending && <div className="loading">Loading....</div>}
        {fetchTopicListError && <div className="error-tip">Failed to load topic list: {fetchTopicListError.message || fetchTopicListError.toString()}</div>}
        <ul className="topic-list">
          {
            this.props.topic.listData.map(item => (
              <li
                className="topic-row"
                key={item.id}
                onClick={memobind(this, 'handleRowClick', item.id)}
                tabIndex="0"
              >
                <span className="title">{item.get('title')}</span>
                <span className="author">{item.get('author') || 'Anonymous'}</span>
                <span className="date">{item.createdAt.toString().replace(/\s*[\((].*/g, '')}</span>
              </li>
            ))
          }
        </ul>
      </div>
    );
  }
コード例 #2
0
ファイル: ListPage.js プロジェクト: supnate/rekit-example
 this.props.topic.listData.map(item => (
   <li
     className="topic-row"
     key={item.id}
     onClick={memobind(this, 'handleRowClick', item.id)}
     tabIndex="0"
   >
     <span className="title">{item.get('title')}</span>
     <span className="author">{item.get('author') || 'Anonymous'}</span>
     <span className="date">{item.createdAt.toString().replace(/\s*[\((].*/g, '')}</span>
   </li>
 ))