about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/util/react_router_helpers.js
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2018-03-18 20:17:15 -0500
committerGitHub <noreply@github.com>2018-03-18 20:17:15 -0500
commita387f99659e9a1dde11b6a8f6f3dd5a433b55f45 (patch)
treef3050987a16c776d144a61a07299a5fb9f2c4ace /app/javascript/flavours/glitch/util/react_router_helpers.js
parent9341b982b611ed3655489a01ba32720b84dfefdc (diff)
parent6f0e50f9a0f8decc64acc92e02faace8e29153ad (diff)
Merge pull request #388 from ThibG/glitch-soc/federated-pinned-toots
Port WebUI toots/with reply/media tabs and pinned toots to glitch
Diffstat (limited to 'app/javascript/flavours/glitch/util/react_router_helpers.js')
-rw-r--r--app/javascript/flavours/glitch/util/react_router_helpers.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/util/react_router_helpers.js b/app/javascript/flavours/glitch/util/react_router_helpers.js
index 1dba5e9bb..e36c512f3 100644
--- a/app/javascript/flavours/glitch/util/react_router_helpers.js
+++ b/app/javascript/flavours/glitch/util/react_router_helpers.js
@@ -35,14 +35,19 @@ export class WrappedRoute extends React.Component {
     component: PropTypes.func.isRequired,
     content: PropTypes.node,
     multiColumn: PropTypes.bool,
+    componentParams: PropTypes.object,
   }
 
+  static defaultProps = {
+    componentParams: {},
+  };
+
   renderComponent = ({ match }) => {
-    const { component, content, multiColumn } = this.props;
+    const { component, content, multiColumn, componentParams } = this.props;
 
     return (
       <BundleContainer fetchComponent={component} loading={this.renderLoading} error={this.renderError}>
-        {Component => <Component params={match.params} multiColumn={multiColumn}>{content}</Component>}
+        {Component => <Component params={match.params} multiColumn={multiColumn} {...componentParams}>{content}</Component>}
       </BundleContainer>
     );
   }