rasa/scoop-directory

Enhance search results

Opened this issue · 4 comments

rasa commented
  1. Add favicon
  2. Add bucket's stars
  3. Add update date?

Another suggestion: some indicator in the results for apps from official buckets - will be useful for quickly visually filtering out supported apps (as opposed to user-defined buckets).
Will have to maintain an array of official bucket URLs in the search.html file.

rasa commented

@rashil2000 Or we do something like:

SELECT
  ...
  b.official
WHERE
 apps a
INNER JOIN
  buckets b ON b.id = a.bucket_id
...

?

rasa commented

What about adding some selects and check-boxes to the search function:

  • Order by: [ name/version , popularity , freshness , ... ]
  • Results: [100 , 200 , 400 , 800 , 1600 , all]
  • Official buckets only
  • FOSS only
    ?

@rashil2000 Or we do something like:

SELECT
  ...
  b.official
WHERE
 apps a
INNER JOIN
  buckets b ON b.id = a.bucket_id
...

?

Won't this only show apps in official buckets? I was thinking of something similar to a checkmark ✔ of sorts. Here the number of results will be the same as before - just the official bucket rows will have the checkmark somewhere.