JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "04d705a02ca761bd021acf881508c284.php"

Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/storage/framework/views/04d705a02ca761bd021acf881508c284.php
File size: 8.61 KB
MIME-type: text/x-php
Charset: utf-8

<?php $__env->startPush('js'); ?>
    <script>
        "use strict";
        var player = new Plyr('#player', {
            youtube: {
                // Options for YouTube player
                controls: 1, // Show YouTube controls
                modestBranding: false, // Show YouTube logo
                showinfo: 1, // Show video title and uploader on play
                rel: 0, // Show related videos at the end
                iv_load_policy: 3, // Do not show video annotations
                cc_load_policy: 1, // Show captions by default
                autoplay: false, // Do not autoplay
                loop: false, // Do not loop the video
                mute: false, // Do not mute the video
                start: 0, // Start at this time (in seconds)
                end: null // End at this time (in seconds)
            }
        });
    </script>
<?php $__env->stopPush(); ?>

<style type="text/css">
    .plyr__progress video {
        width: 180px !important;
        height: auto !important;
        position: absolute !important;
        bottom: 30px !important;
        z-index: 1 !important;
        border-radius: 10px !important;
        border: 2px solid #fff !important;
        display: none;
        background-color: #000;
    }

    .plyr__progress video:hover {
        display: none !important;
    }

    video:not(.plyr:fullscreen video) {
        width: 100%;
        max-height: auto !important;
        max-height: 567px !important;
        border-radius: 5px;
    }

    /* Overlay and progress bar styling */
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        visibility: hidden;
    }

    /* Circular progress bar container */
    .circular-progress-container {
        position: relative;
        width: 100px;
        height:100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Outer circle border (for border effect) */
    .outer-circle {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        stroke: #ddd; /* Border color */
        stroke-width: 7;
        fill: none;
    }

    /* Inner circle for progress animation */
    .circular-progress {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        stroke-dasharray: 440; /* Circumference of the circle */
        stroke-dashoffset: 440;
        stroke: #6610f2; /* Progress color */
        stroke-width: 7;
        fill: none;
        transition: stroke-dashoffset 5s linear;
    }

    .progress-ring {
        transform: rotate(-90deg); /* To start progress from the top */
    }

    .cancel-icon {
        position: absolute;
        top: 6px;
        right: 6px;
        cursor: pointer;
        background: #ff0000;
        color: #fff;
        font-size: 18px;
        height: 30px;
        width: 30px;
        line-height: 32px;
        border-radius: 50%;
        text-align: center;
    }
    .overlay-text {
        position: absolute;
        font-size: 16px;
        color: #ffffff;
        text-align: center;
        top: 70%;
        transform: translateY(-50%);
    }
</style>

<div class="overlay" id="nextVideoOverlay">
    <div class="circular-progress-container">
        <svg class="progress-ring" width="100" height="100">
            <!-- Outer Circle (border) -->
            <circle class="outer-circle" cx="50" cy="50" r="45" />
            <!-- Inner Circle (progress) -->
            <circle class="circular-progress" cx="50" cy="50" r="45" />
        </svg>
    </div>
    <div class="overlay-text">Playing next video in <span id="countdown">5</span> sec</div>
    <div class="cancel-icon" id="cancelNextVideo">✖</div>
</div>

<script type="text/javascript">
    // Define elements for overlay and countdown
    const overlay = document.getElementById('nextVideoOverlay');
    const countdownElement = document.getElementById('countdown');
    const cancelNextVideoButton = document.getElementById('cancelNextVideo');
    let countdownInterval;

    // Function to start countdown
    function startCountdown() {
        let countdown = 5; // Countdown set to 5 seconds
        countdownElement.textContent = countdown;
        overlay.style.visibility = 'visible';

        // Restart the circular progress animation
        const circleProgress = document.querySelector('.circular-progress');
        circleProgress.style.transition = 'none'; // Remove previous transition
        circleProgress.style.strokeDashoffset = 440; // Reset stroke offset
        setTimeout(() => {
            circleProgress.style.transition = 'stroke-dashoffset 5s linear';
            circleProgress.style.strokeDashoffset = 0; // Animate the circle fill to complete
        }, 10);

        countdownInterval = setInterval(() => {
            countdown -= 1;
            countdownElement.textContent = countdown;

            if (countdown <= 0) {
                clearInterval(countdownInterval);
                overlay.style.visibility = 'hidden';

                let lesson_id = '<?php echo e($lesson_details['id']); ?>';
                let course_id = '<?php echo e($course_details['id']); ?>';
                var next_lesson_id = '<?php echo e(next_lesson($course_details['id'], $lesson_details['id'])); ?>';

                if (next_lesson_id) {
                    const url = '<?php echo e(url("play-course")); ?>' + '/' + '<?php echo e(Str::slug($course_details['title'])); ?>' + '-' + course_id + '/' + next_lesson_id;
                    window.location.href = url; // Redirect to the next lesson
                }
            }

        }, 1000);
    }

    // Event listener for video end
    if (typeof player === 'object' && player !== null) {
        player.addEventListener('ended', () => {
            console.log('Video has ended');
            var next_lesson_id = '<?php echo e(next_lesson($course_details['id'], $lesson_details['id'])); ?>';
            if (next_lesson_id) {
                startCountdown(); // Start showing countdown when video ends
            }
        });
    }

    // Cancel next video if user clicks cancel icon
    cancelNextVideoButton.addEventListener('click', () => {
        clearInterval(countdownInterval);
        overlay.style.visibility = 'hidden';
        console.log('Next video playback canceled');
    });
</script>


<!-- Update Watch history and set current duration-->
<script type="text/javascript">
    let lesson_id = '<?php echo e($lesson_details['id']); ?>';
    let course_id = '<?php echo e($course_details['id']); ?>';
    var currentProgress = '<?php echo e(lesson_progress($lesson_details['id'])); ?>';
    let previousSavedDuration = 0;
    let currentDuration = 0;

    if (typeof player === 'object' && player !== null) {
        setInterval(function() {
            currentDuration = parseInt(player.currentTime);
            if (lesson_id && course_id && (currentDuration % 5) == 0 && previousSavedDuration != currentDuration) {
                previousSavedDuration = currentDuration;
                let url = "<?php echo e(route('update_watch_history')); ?>";

                $.ajax({
                    type: 'POST',
                    url: url,
                    data: {
                        lesson_id: lesson_id,
                        course_id: course_id,
                        current_duration: currentDuration,
                    },
                    headers: {
                        'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')  // Add CSRF token from meta tag
                    },
                    success: function(response) {
                        console.log(response);
                        console.log(response.course_progress);
                    }
                });
            }
        }, 900);
    }

    
    var watched_duration = <?php echo json_encode(get_watched_duration($lesson_details['id'], auth()->user()->id), 512) ?>;

    watched_duration = JSON.parse(watched_duration);
    
    var previous_duration = watched_duration && watched_duration.current_duration > 0
        ? watched_duration.current_duration 
        : 0;

    var previousTimeSetter = setInterval(function() {
        if (player.playing == false && player.currentTime != previous_duration) {
            player.currentTime = previous_duration;
            console.log(previous_duration);
            console.log(player.currentTime);
        } else {
            clearInterval(previousTimeSetter);
        }
    }, 200);

</script><?php /**PATH C:\xampp\htdocs\Arise\resources\views/course_player/player_config.blade.php ENDPATH**/ ?>