From 23adf352edffcb9717c479fea29cbed1f165c476 Mon Sep 17 00:00:00 2001 From: Paul Kaplan Date: Thu, 31 Jan 2019 16:48:56 -0500 Subject: [PATCH] Remove the project count request since it is no longer being used --- src/views/splash/presentation.jsx | 1 - src/views/splash/splash.jsx | 14 -------------- 2 files changed, 15 deletions(-) diff --git a/src/views/splash/presentation.jsx b/src/views/splash/presentation.jsx index d03093073..5a4af32b5 100644 --- a/src/views/splash/presentation.jsx +++ b/src/views/splash/presentation.jsx @@ -609,7 +609,6 @@ SplashPresentation.defaultProps = { inStudiosFollowing: [], // "Projects in Studios I'm Following" lovedByFollowing: [], // "Projects Loved by Scratchers I'm Following" news: [], // gets news posts from the scratch Tumblr - projectCount: 20000000, // gets the shared project count sharedByFollowing: [] // "Projects by Scratchers I'm Following" }; diff --git a/src/views/splash/splash.jsx b/src/views/splash/splash.jsx index f9a268820..8910c0ce2 100644 --- a/src/views/splash/splash.jsx +++ b/src/views/splash/splash.jsx @@ -17,7 +17,6 @@ class Splash extends React.Component { super(props); bindAll(this, [ 'getNews', - 'getProjectCount', 'handleRefreshHomepageCache', 'getHomepageRefreshStatus', 'handleShowEmailConfirmationModal', @@ -30,7 +29,6 @@ class Splash extends React.Component { ]); this.state = { adminPanelOpen: false, - projectCount: 30000000, // gets the shared project count news: [], // gets news posts from the scratch Tumblr emailConfirmationModalOpen: false, // flag that determines whether to show banner to request email conf. refreshCacheStatus: 'notrequested' @@ -44,8 +42,6 @@ class Splash extends React.Component { this.props.getInStudiosFollowing(this.props.user.username, this.props.user.token); this.props.getLovedByFollowing(this.props.user.username, this.props.user.token); this.getNews(); - } else { - this.getProjectCount(); } } componentDidUpdate (prevProps) { @@ -62,7 +58,6 @@ class Splash extends React.Component { this.props.setRows('studios', []); this.props.setRows('activity', []); this.setState({news: []}); // eslint-disable-line react/no-did-update-set-state - this.getProjectCount(); } if (this.shouldShowEmailConfirmation()) { window.addEventListener('message', this.onMessage); @@ -82,14 +77,6 @@ class Splash extends React.Component { if (!err) return this.setState({news: body}); }); } - getProjectCount () { - api({ - uri: '/projects/count/all' - }, (err, body) => { - if (!body) return log.error('No response body'); - if (!err) return this.setState({projectCount: body.count}); - }); - } handleRefreshHomepageCache () { api({ host: '', @@ -173,7 +160,6 @@ class Splash extends React.Component { isEducator={this.props.isEducator} lovedByFollowing={this.props.loved} news={this.state.news} - projectCount={this.state.projectCount} refreshCacheStatus={homepageRefreshStatus} sessionStatus={this.props.sessionStatus} sharedByFollowing={this.props.shared}