aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/recommendations
Commit message (Collapse)AuthorAgeFilesLines
* Add language filters in user preferencesChocobozzz2019-06-191-1/+1
|
* Handle actions in other videos sectionChocobozzz2019-04-082-1/+4
|
* Remove jest testsChocobozzz2019-03-182-88/+0
| | | | I don't have time to maintain them
* Fix no other videos displayed on some videosChocobozzz2018-09-283-25/+18
|
* remove unused importsBO412018-09-221-3/+2
|
* Don't get recommended videos twiceChocobozzz2018-09-192-7/+11
|
* Add video recomandation by tags (#1001)Jorropo2018-09-045-23/+43
| | | | | | | | | | * Recommendation by tags (thx bradsk88) Thx bradsk88 for the help. * Prefer jest-preset-angular to skip need for babel config * Fix jest
* Refactor: Separated "Other Videos" section into a dedicated ↵Brad Johnson2018-08-318-0/+234
component/service (#969) * Separated "Other Videos" section into a dedicated component/service I'm currently working on some proof-of-concepts for recommendation providers that could work with PeerTube to provide useful video suggestions to the user. As a first step, I want to have great clarity about how PeerTube, itself, will surface these videos to the user. With this branch, I'm refactoring the "recommendations" to make it easier to swap out different recommender implementations quickly. Stop recommender from including the video that's being watched. Ensure always 5 recommendations * Treat recommendations as a stream of values, rather than a single async value. * Prioritize readability over HTTP response size early-optimization. * Simplify pipe