Pega Academy: Embiggen video (JS)

This is your new file, start writing code

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Pega Academy: Embiggen video (JS)
// @author      sammich
// @version     1.0.0
// @namespace   embiggen.pega.sammichco
// @license MIT
// @description This is your new file, start writing code
// @match       https://academy.pega.com/*
// ==/UserScript==

// find all the videos

const styl = `
video-js.embiggen-video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000000;
}

.o-bolt-grid__cell:has(> div > video-js) {
    width: 100% !important;
}

.embiggen-button {
    margin-top: 0.5em;
    float: right;
}

.unembiggen-button {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000001;
    border: none;
    color: white;
}
`;

const stylEl = document.createElement('style');
stylEl.textContent = styl;
document.body.appendChild(stylEl);

const vidsEls = [...document.querySelectorAll('video-js')];

// add a button to each of them that just applies a class to make a lightbox out of it
vidsEls.forEach(el => {
    const embiggenButton = document.createElement('button');
    embiggenButton.classList.add('embiggen-button')
    embiggenButton.textContent = 'Embiggen';
    embiggenButton.onclick = embiggen;
    
    el.parentNode.parentNode.appendChild(embiggenButton);
});

window.embiggener = {
    embiggen,
    unembiggen
};

document.addEventListener("keydown", ({key}) => {
    if (key !== "Escape") return;
    
    unembiggen();
})

function embiggen() {
    const vid = this.parentNode.querySelector('video-js');
    vid.classList.add('embiggen-video');
    
    const umembiggenButton = document.createElement('button');
    umembiggenButton.classList.add('unembiggen-button')
    umembiggenButton.textContent = 'x';
    umembiggenButton.onclick = unembiggen;

    document.body.appendChild(umembiggenButton);
}

function unembiggen() {
    const vid = document.body.querySelector('.embiggen-video');
    
    if (!vid) return;
    
    vid.classList.remove('embiggen-video');
    
    const unembtn = document.body.querySelector('.unembiggen-button');
    unembtn.parentNode.removeChild(unembtn);
}