video.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. function render_comments(comments) {
  2. for (var i = 0; i < comments.length; i++) {
  3. var comment = comments[i];
  4. var html = '';
  5. var ago = moment.unix(comment.publish_ts).calendar();
  6. html += '<div class="column is-full">';
  7. html += '<div class="card">';
  8. html += '<div class="card-content">';
  9. html += '<div class="media">';
  10. html += '<div class="media-left">';
  11. html += '<figure class="image is-64x64">';
  12. html += '<a href="/user/' + String(comment.author_id) + '"><img id="avatar_' + String(comment.id) + '" src="/static/avatars/default/default.128.png"></a>';
  13. html += '</figure>';
  14. html += '</div>';
  15. html += '<div class="media-content" style="overflow-x: hidden;">';
  16. html += '<div class="content">';
  17. html += '<p>';
  18. html += '<strong ><a id="username_' + String(comment.id) + '" href="/user/' + String(comment.author_id) + '">the void</a></strong> <small>' + ago + '</small>';
  19. html += '<br>';
  20. html += '<div class="content" style="word-break: break-all;">';
  21. html += comment.text;
  22. html += '</div>';
  23. html += '</p>';
  24. html += '</div>';
  25. html += '</div>';
  26. html += '</div>';
  27. html += '</div>';
  28. html += '</div>';
  29. html += '</div>';
  30. $('#comments').append(html);
  31. api('user', {user_id: comment.author_id}, function (data, additional_data) {
  32. var comment_id = additional_data[0];
  33. $('#avatar_' + String(comment_id)).attr('src', data.avatar128);
  34. $('#username_' + String(comment_id)).text(data.username);
  35. }, comment.id);
  36. }
  37. if (comments.length >= 5) {
  38. window.offset += comments.length;
  39. $(window).bind('scroll', load_more);
  40. }
  41. }
  42. function update_comments() {
  43. api('comments', {video_id: window.video_id, offset: window.offset}, function (data) {
  44. $('#comments_count').text(data.comments_count);
  45. $('#comments_count_suffix').text(data.comments_count != 1? 's': '');
  46. render_comments(data.comments);
  47. });
  48. }
  49. function load_more() {
  50. if (!scrolled_down(100))
  51. return;
  52. update_comments()
  53. $(window).unbind('scroll', load_more);
  54. }
  55. $(function () {
  56. window.offset = 0;
  57. window.player = new Plyr('#player');
  58. if (window.is_limited) {
  59. $('#comment_field').prop('disabled', true);
  60. $('#comment_field').attr('placeholder', 'You must log in to write comments.');
  61. $('#send_comment_field').hide();
  62. }
  63. $('#upload_date').text(moment.unix(window.video_upload_ts).calendar());
  64. $('#likes_icon').click(function () {
  65. if (window.is_limited) {
  66. popup('danger', 'You must be logged in to like videos.');
  67. return;
  68. }
  69. api('liked', {video_id: window.video_id}, function (data) {
  70. api(data.is_liked? 'unlike': 'like', {video_id: window.video_id}, function (data) {
  71. $('#likes_count').text(data.likes_count);
  72. });
  73. if (data.is_liked)
  74. $('#likes_icon').removeClass('liked');
  75. else
  76. $('#likes_icon').addClass('liked');
  77. });
  78. });
  79. api('likes', {video_id: window.video_id}, function (data) {
  80. $('#likes_count').text(data.likes_count);
  81. });
  82. if (!window.is_limited)
  83. api('liked', {video_id: window.video_id}, function (data) {
  84. if (data.is_liked)
  85. $('#likes_icon').addClass('liked');
  86. });
  87. $('#send_comment').click(function () {
  88. var text = $('#comment_field').val().trim();
  89. if (text.length < 2)
  90. return;
  91. $('#comment_field').val('');
  92. $('#send_comment').addClass('is-loading');
  93. api('comment', {video_id: window.video_id, text: text}, function () {
  94. $('#comments').html('');
  95. $('#characters_left').text('256');
  96. window.offset = 0;
  97. update_comments();
  98. $('#send_comment').removeClass('is-loading');
  99. });
  100. });
  101. api('user', {user_id: window.video_uploader_id}, function (data) {
  102. $('#uploader_avatar').attr('src', data.avatar128);
  103. $('#uploader_username').text(data.username);
  104. $('#uploader_username').attr('href', '/user/' + String(window.video_uploader_id));
  105. });
  106. api('tags', {video_id: window.video_id}, function (data) {
  107. for (var i = 0; i < data.tags_list.length; i++) {
  108. var html = '';
  109. html += '<a class="tag is-light" href="/search?q=' + data.tags_list[i] + '">';
  110. html += data.tags_list[i];
  111. html += '</a>'
  112. $('#tags').append(html);
  113. }
  114. });
  115. update_comments();
  116. $('textarea').each(function () {
  117. this.setAttribute('style', 'height:' + (this.scrollHeight) + 'px;overflow-y:hidden;resize:none;');
  118. }).on('input', function () {
  119. this.style.height = 'auto';
  120. this.style.height = (this.scrollHeight) + 'px';
  121. });
  122. $('#comment_field').keyup(function () {
  123. if ($('#comment_field').val().length > 256)
  124. $('#comment_field').val($('#comment_field').val().slice(0, 256));
  125. $('#characters_left').text(256 - $('#comment_field').val().length);
  126. });
  127. });