Compare commits

..

No commits in common. "2e2c9ae83750a38c223a96add8b8d4b9b8da13f2" and "e65047fead110c3e12ecf7ab82c710d5322c2c2a" have entirely different histories.

5 changed files with 7 additions and 8 deletions

View File

@ -53,7 +53,7 @@ def put_story(story):
def search(q):
if not SEARCH_ENABLED: return []
params = dict(q=q, limit=settings.FEED_LENGTH)
params = dict(q=q, limit=100)
r = meili_api(requests.get, 'indexes/qotnews/search', params=params, parse_json=False)
return r

View File

@ -15,7 +15,6 @@ import traceback
import time
from urllib.parse import urlparse, parse_qs
import settings
import database
import search
import feed
@ -28,6 +27,7 @@ from flask_cors import CORS
database.init()
search.init()
FEED_LENGTH = 75
news_index = 0
def new_id():
@ -43,7 +43,7 @@ cors = CORS(flask_app)
@flask_app.route('/api')
def api():
skip = request.args.get('skip', 0)
limit = request.args.get('limit', settings.FEED_LENGTH)
limit = request.args.get('limit', FEED_LENGTH)
stories = database.get_stories(limit, skip)
# hacky nested json
res = Response('{"stories":[' + ','.join(stories) + ']}')
@ -177,7 +177,7 @@ def feed_thread():
logging.info('Already have ID / ref, skipping.')
continue
ref_list = database.get_reflist(settings.FEED_LENGTH)
ref_list = database.get_reflist(FEED_LENGTH)
# update current stories
if news_index < len(ref_list):
@ -204,7 +204,7 @@ def feed_thread():
gevent.sleep(6)
news_index += 1
if news_index == settings.FEED_LENGTH: news_index = 0
if news_index == FEED_LENGTH: news_index = 0
except KeyboardInterrupt:
logging.info('Ending feed thread...')

View File

@ -4,7 +4,6 @@
# Feed Lengths
# Number of top items from each site to pull
# set to 0 to disable that site
FEED_LENGTH = 75
NUM_HACKERNEWS = 15
NUM_LOBSTERS = 10
NUM_REDDIT = 15

View File

@ -58,7 +58,7 @@ class App extends React.Component {
<p>
<Link to='/'>QotNews</Link>
<span className='theme'><a href='#' onClick={() => this.light()}>Light</a> - <a href='#' onClick={() => this.dark()}>Dark</a></span>
<span className='theme'>Theme: <a href='#' onClick={() => this.light()}>Light</a> - <a href='#' onClick={() => this.dark()}>Dark</a></span>
<br />
<span className='slogan'>Hacker News, Reddit, Lobsters, and Tildes articles rendered in reader mode.</span>
</p>

View File

@ -41,7 +41,7 @@ class Submit extends Component {
<span className='search'>
<form onSubmit={this.submitArticle}>
<input
placeholder='Submit URL'
placeholder='Submit Article'
ref={this.inputRef}
/>
</form>