|
@@ -68,8 +68,11 @@ function load_more() {
|
|
|
$(function () {
|
|
|
window.offset = 0;
|
|
|
window.player = new Plyr('#player');
|
|
|
+
|
|
|
+ var last_video_id = window.video_id - 1;
|
|
|
+ var next_video_id = window.video_id + 1;
|
|
|
|
|
|
- if (window.is_limited) {
|
|
|
+ if (window.my_user_id < 0) {
|
|
|
$('#comment_field').prop('disabled', true);
|
|
|
$('#comment_field').attr('placeholder', 'You must log in to write comments.');
|
|
|
|
|
@@ -79,7 +82,7 @@ $(function () {
|
|
|
$('#upload_date').text(moment.unix(window.video_upload_ts).calendar());
|
|
|
|
|
|
$('#likes_icon').click(function () {
|
|
|
- if (window.is_limited) {
|
|
|
+ if (window.my_user_id < 0) {
|
|
|
popup('danger', 'You must be logged in to like videos.');
|
|
|
|
|
|
return;
|
|
@@ -101,12 +104,32 @@ $(function () {
|
|
|
$('#likes_count').text(data.likes_count);
|
|
|
});
|
|
|
|
|
|
- if (!window.is_limited)
|
|
|
+ if (window.my_user_id >= 0)
|
|
|
api('liked', {video_id: window.video_id}, function (data) {
|
|
|
if (data.is_liked)
|
|
|
$('#likes_icon').addClass('liked');
|
|
|
});
|
|
|
|
|
|
+ api('exists', {video_id: last_video_id}, function (data) {
|
|
|
+ if (data.is_exists) {
|
|
|
+ $('#last_button').prop('disabled', false);
|
|
|
+
|
|
|
+ $('#last_button').click(function () {
|
|
|
+ document.location.href = '/watch/' + String(last_video_id);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ api('exists', {video_id: next_video_id}, function (data) {
|
|
|
+ if (data.is_exists) {
|
|
|
+ $('#next_button').prop('disabled', false);
|
|
|
+
|
|
|
+ $('#next_button').click(function () {
|
|
|
+ document.location.href = '/watch/' + String(next_video_id);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
$('#send_comment').click(function () {
|
|
|
var text = $('#comment_field').val().trim();
|
|
|
|