~cytrogen/masto-fe

ref: 434712ea2279340f671bac234fdac264367f935a masto-fe/app/javascript/flavours/glitch/features/explore/index.jsx -rw-r--r-- 3.7 KiB
434712ea — Cytrogen Convert glitch component SCSS to CSS custom properties (Phase 5+6) 15 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import PropTypes from "prop-types";
import { PureComponent } from "react";

import { defineMessages, injectIntl, FormattedMessage } from "react-intl";

import { Helmet } from "react-helmet";
import { NavLink, Switch, Route } from "react-router-dom";

import { connect } from "react-redux";

import Column from "flavours/glitch/components/column";
import ColumnHeader from "flavours/glitch/components/column_header";
import Search from "flavours/glitch/features/compose/containers/search_container";
import { trendsEnabled } from "flavours/glitch/initial_state";

import Links from "./links";
import SearchResults from "./results";
import Statuses from "./statuses";
import Suggestions from "./suggestions";
import Tags from "./tags";



const messages = defineMessages({
  title: { id: "explore.title", defaultMessage: "Explore" },
  searchResults: { id: "explore.search_results", defaultMessage: "Search results" },
});

const mapStateToProps = state => ({
  layout: state.getIn(["meta", "layout"]),
  isSearching: state.getIn(["search", "submitted"]) || !trendsEnabled,
});

class Explore extends PureComponent {

  static contextTypes = {
    router: PropTypes.object,
    identity: PropTypes.object,
  };

  static propTypes = {
    intl: PropTypes.object.isRequired,
    multiColumn: PropTypes.bool,
    isSearching: PropTypes.bool,
  };

  handleHeaderClick = () => {
    this.column.scrollTop();
  };

  setRef = c => {
    this.column = c;
  };

  render() {
    const { intl, multiColumn, isSearching } = this.props;
    const { signedIn } = this.context.identity;

    return (
      <Column bindToDocument={!multiColumn} ref={this.setRef} label={intl.formatMessage(messages.title)}>
        <ColumnHeader
          icon={isSearching ? "search" : "hashtag"}
          title={intl.formatMessage(isSearching ? messages.searchResults : messages.title)}
          onClick={this.handleHeaderClick}
          multiColumn={multiColumn}
        />

        <div className='explore__search-header'>
          <Search />
        </div>

        <div className='scrollable scrollable--flex' data-nosnippet>
          {isSearching ? (
            <SearchResults />
          ) : (
            <>
              <div className='account__section-headline'>
                <NavLink exact to='/explore'>
                  <FormattedMessage tagName='div' id='explore.trending_statuses' defaultMessage='Posts' />
                </NavLink>

                <NavLink exact to='/explore/tags'>
                  <FormattedMessage tagName='div' id='explore.trending_tags' defaultMessage='Hashtags' />
                </NavLink>

                {signedIn && (
                  <NavLink exact to='/explore/suggestions'>
                    <FormattedMessage tagName='div' id='explore.suggested_follows' defaultMessage='People' />
                  </NavLink>
                )}

                <NavLink exact to='/explore/links'>
                  <FormattedMessage tagName='div' id='explore.trending_links' defaultMessage='News' />
                </NavLink>
              </div>

              <Switch>
                <Route path='/explore/tags' component={Tags} />
                <Route path='/explore/links' component={Links} />
                <Route path='/explore/suggestions' component={Suggestions} />
                <Route exact path={["/explore", "/explore/posts", "/search"]}>
                  <Statuses multiColumn={multiColumn} />
                </Route>
              </Switch>

              <Helmet>
                <title>{intl.formatMessage(messages.title)}</title>
                <meta name='robots' content={isSearching ? "noindex" : "all"} />
              </Helmet>
            </>
          )}
        </div>
      </Column>
    );
  }

}

export default connect(mapStateToProps)(injectIntl(Explore));