aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-list
Commit message (Collapse)AuthorAgeFilesLines
* Simplify client syndicationsChocobozzz2018-04-173-14/+6
|
* feature: initial syndication feeds supportRigel Kent2018-04-174-0/+36
| | | | | | | | | | | | | | | | | | Provides rss 2.0, atom 1.0 and json 1.0 feeds for videos (instance and account-wide) on listings and video-watch views. * still lacks redis caching * still lacks lastBuildDate support * still lacks channel-wide support * still lacks semantic annotation (for licenses, NSFW warnings, etc.) * still lacks love ( ˘ ³˘) * RSS: has MRSS support for torrent lists! * RSS: includes the first torrent in an enclosure * JSON: lists all torrents in the 'attachments' object * ATOM: lacking torrent listing support Advances #23 Partial implementation for the accountId generation in the client, which will need a hotfix to add a way to get the proper account id.
* Fix videos list paramsChocobozzz2018-03-271-0/+1
|
* Redirect to homepage on empty searchChocobozzz2018-03-271-2/+6
|
* Don't forget to clean up subscriptionsChocobozzz2018-03-194-9/+21
|
* Add "local" videos in menuChocobozzz2018-03-131-0/+37
|
* Rewrite infinite scrollChocobozzz2018-02-133-9/+16
|
* Fix search paginationChocobozzz2018-01-291-3/+8
|
* Small style fixesChocobozzz2017-12-123-0/+6
|
* Upgrade scripts and embed webpack configChocobozzz2017-12-122-3/+2
|
* Begin video watch designChocobozzz2017-12-065-82/+0
|
* Add delete button to my videosChocobozzz2017-12-061-1/+1
|
* Fix client searchChocobozzz2017-12-054-14/+62
|
* Fix lintChocobozzz2017-12-041-1/+1
|
* Begin videos of an accountChocobozzz2017-12-019-190/+11
|
* Add account settings new designChocobozzz2017-12-015-76/+19
|
* Add auto scroll to videos listChocobozzz2017-12-014-21/+58
|
* Begin videos list new designChocobozzz2017-12-0113-250/+99
|
* Add loader when expanding long video descriptionChocobozzz2017-11-283-15/+0
|
* Make the client compile tooChocobozzz2017-11-272-3/+3
|
* Improve client mobile versionChocobozzz2017-11-061-2/+1
|
* Add video privacy settingChocobozzz2017-10-3114-87/+170
|
* Support roles with rights and add moderator roleChocobozzz2017-10-271-1/+1
|
* Replace NSFW with "mature or explicit content"Chocobozzz2017-10-274-29/+25
| | | | Blur their thumbnail and name
* Add channels to upload formChocobozzz2017-10-261-9/+1
|
* Client: fix loading server configurationsChocobozzz2017-10-091-13/+2
|
* Add info when server is processing a video at uploadChocobozzz2017-09-142-23/+1
|
* Fix lintChocobozzz2017-09-141-1/+0
|
* Move to HttpClient and PrimeNG data tableChocobozzz2017-09-141-5/+6
|
* Use global uuid instead of remoteId for videosChocobozzz2017-07-111-2/+2
|
* Type webtorrentChocobozzz2017-07-111-7/+8
|
* Use typescript standard and lint all filesChocobozzz2017-06-166-96/+97
|
* Update webpack stackChocobozzz2017-06-111-1/+1
|
* Use shared modelsChocobozzz2017-06-111-1/+1
|
* Client: little refractoringChocobozzz2017-05-059-33/+39
|
* Client: minor css fixesChocobozzz2017-04-291-0/+1
|
* Client: fix bad rebaseChocobozzz2017-04-261-5/+0
|
* Client: adjust viewport heightChocobozzz2017-04-262-2/+1
|
* Client: display video tagsChocobozzz2017-04-261-0/+6
|
* Client: beautiful watch pageChocobozzz2017-04-264-26/+15
|
* Client: responsive designChocobozzz2017-04-264-37/+48
|
* Add ability for an administrator to remove any video (#61)Green-Star2017-04-264-43/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add ability for an admin to remove every video on the pod. * Server: add BlacklistedVideos relation. * Server: Insert in BlacklistedVideos relation upon deletion of a video. * Server: Modify BlacklistedVideos schema to add Pod id information. * Server: Moving insertion of a blacklisted video from the `afterDestroy` hook into the process of deletion of a video. To avoid inserting a video when it is removed on its origin pod. When a video is removed on its origin pod, the `afterDestroy` hook is fire, but no request is made on the delete('/:videoId') interface. Hence, we insert into `BlacklistedVideos` only on request on delete('/:videoId') (if requirements for insertion are met). * Server: Add removeVideoFromBlacklist hook on deletion of a video. We are going to proceed in another way :). We will add a new route : /:videoId/blacklist to blacklist a video. We do not blacklist a video upon its deletion now (to distinguish a video blacklist from a regular video delete) When we blacklist a video, the video remains in the DB, so we don't have any concern about its update. It just doesn't appear in the video list. When we remove a video, we then have to remove it from the blacklist too. We could also remove a video from the blacklist to 'unremove' it and make it appear again in the video list (will be another feature). * Server: Add handler for new route post(/:videoId/blacklist) * Client: Add isBlacklistable method * Client: Update isRemovableBy method. * Client: Move 'Delete video' feature from the video-list to the video-watch module. * Server: Exclude blacklisted videos from the video list * Server: Use findAll() in BlacklistedVideos.list() method * Server: Fix addVideoToBlacklist function. * Client: Add blacklist feature. * Server: Use JavaScript Standard Style. * Server: In checkUserCanDeleteVideo, move the callback call inside the db callback function * Server: Modify BlacklistVideo relation * Server: Modifiy Videos methods. * Server: Add checkVideoIsBlacklistable method * Server: Rewrite addVideoToBlacklist method * Server: Fix checkVideoIsBlacklistable method * Server: Add return to addVideoToBlacklist method
* Client: Handle NSFW videoChocobozzz2017-04-043-3/+34
|
* Relax on tags (accept any characters and not required anymore)Chocobozzz2017-03-221-0/+1
|
* Client: fix prod compilationChocobozzz2017-03-101-1/+1
|
* Allow to sort by likesChocobozzz2017-03-082-3/+4
|
* Client: check token valitidy at startupChocobozzz2017-03-041-2/+2
|
* Client: add views information and sortChocobozzz2017-02-263-3/+13
|
* Client: better confirm box for a beautiful worldChocobozzz2017-01-271-6/+12
|
* Client: better notifications for a beautiful worldChocobozzz2017-01-272-3/+13
|