content not stretching a 100vh

I have site that I am working on all of my content is inside a main-container div and I want the content to always stretch to a 100vh, but I can’t seem to get it working correctly. my main-container is just a div but each section and the footer are their own flexboxes.

Here is the HTML:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <script src="scripts/copyrightScript.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/js/splide.min.js"></script>
    <script src="scripts/splide.js"></script>
    <script src="https://kit.fontawesome.com/26a63f0e22.js" crossorigin="anonymous"></script>
    <link rel="stylesheet" href="styles.css">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/css/splide.min.css">

    <title>Mario Shamhon Portfolio</title>
</head>
<body>
    <div id="main-container">
        <header>
            <nav>
                <div class="nav-left-side">
                    <a href="#about-me-section"> Mario Shamhon</a>
                </div>
                <ul class="nav-right-side">
                    <li><a href="#about-me-section"> About me</a></li>
                    <li><a href="#projects-section"> Projects</a></li>
                    <li><a href="#skills-section"> Skills</a></li>
                </ul>
            </nav>
        </header>

        <section id="about-me-section">
            <h2>Hi everyone I'm Mario</h2>
            <div class="headshot">
                <picture>
                    <img src="images/headshot.jpg" alt="headshot">
                </picture>
            </div>
            <div class="bio">
                <p>
                    Hi all! I'm Mario I recently graduated from San Diego State University with a masters degree in computer Science I really enjoy 
                    all types of software development I am always experimenting to learn new technologies and programming languages. We can only fail if we don't 
                    try!   
                </p>
                <br>
                <p>
                    Apart from coding I enjoy working out or trying out new restaurants  
                </p>
            </div>
            <div class="social-links">
                <a href="https://github.com/marioshamhon" target="_blank">
                    <i class="fa-brands fa-github"></i>
                </a>
                <a href="https://www.linkedin.com/in/mario-shamhon-2224a9b7/" target="_blank">
                    <i class="fa-brands fa-linkedin"></i>
                </a>
            </div>
        </section>

        <div class="projects-skills-container">
            <section id="projects-section">
                <h2>ProJects</h2>
                <!-- Swiper Container -->
                <div class="splide" id="project-slider" role="group" aria-label="Splide Basic HTML Example">
                    <div class="splide__track">
                        <ul class="splide__list">
                        <!-- Project 1 -->
                            <li class="splide__slide">
                                <div class="project-card">
                                    <a href="https://github.com/marioshamhon/cs648assignment13/" target="_blank">
                                        <img src="images/inventory_management_project.webp" alt="Inventory Management System: React">
                                        <h3>Inventory Management System: React </h3>
                                        <p>
                                            This is an Inventory Management System made using React as the frontend and Express Server 
                                            along with MongoDB for the backend. You can view, add, delete, or update product inventory
                                            that are all managed a database I created using MongoDB. 
                                        </p>
                                    </a>    
                                </div>
                            </li>
                            <!-- Project 2 -->
                            <li class="splide__slide">
                                <div class="project-card">
                                    <a href="https://github.com/marioshamhon/RedNosePirate/" target="_blank">
                                        <img src="images/red_nose_project.webp" alt="Red Nose Pirate">
                                        <h3>Red Nose Pirate: C#</h3>
                                        <p>
                                            This was a platformer game I developed with a group of my peers.  
                                            I was responsible for level design and enemy character programming and behavior.
                                        </p>
                                    </a>    
                                </div>
                            </li>
                            <!-- Project 3 -->
                            <li class="splide__slide">
                                <div class="project-card">
                                    <a href="https://github.com/marioshamhon/CS-570-Linux-shell-clone/" target="_blank">
                                        <img src="images/shell_clone_project.webp" alt="Linux Shell Clone: C">
                                        <h3>Linux Shell Clone: C</h3>
                                        <p>
                                            Developed a functional clone of the Linux shell using C programming language. Implemented features: valid 
                                            command execution, input/output redirection, pipeline commands, and background commandexecution. Created custom built-in 
                                            functionalities, including directory changing and error checking. Utilized system calls to ensure correct shell functionality.
                                        </p>
                                    </a>    
                                </div>
                            </li>
                        </ul>
                    </div>
                </div>
            </section>
        
            <section id="skills-section">
                <h2>Skills</h2>
                <div class="skills-icons-container">
                    <i class="fa-brands fa-python"></i>
                    <i class="fa-brands fa-java"></i>
                    <i class="fa-solid fa-database"></i>
                    <i class="fa-brands fa-react"></i>
                    <i class="fa-brands fa-js"></i>
                    <i class="fa-brands fa-bootstrap"></i>
                </div>
            </section>
        </div>
        
        <footer>
            <p>&copy; <span id="year"></span> Mario Shamhon. All Rights Reserved</p>
        </footer>
    </div>
</body>
</html>

Here is the CSS:

/* VARIABLES */
:root {
    --background-color: #74C0FC;
    --headings-and-links-color: #1a1c20;
    --sections-background-color: #f8f8f8;
    --link-hover-color: #ffffff;
    --project-card-background-color: #DFDFDF;
}

/* RESET BROWSER  DEFAULTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 @font-face {
    font-family: "Sour Gummy";
    src: url(fonts/SourGummy-Italic-VariableFont_wdth,wght.ttf);
 }   


body{
    font-family: "Sour Gummy", sans-serif;
}

#main-container {
    margin: 0 auto;
    max-width: 1200px;
    width: 90%; 
    height: 100vh;  
}

a {
    color: var(--headings-and-links-color);
    text-decoration: none;
}

nav {
    background-color: var(--background-color);
    display: flex;
    justify-content: space-between;
    height: 5rem;
    align-items: center;
    padding: 0 3.125rem;
}

nav .nav-right-side {
    display: flex;
    list-style: none;
}

nav .nav-left-side a {
    font-size: 1.5rem;
    font-weight: 600;
}

nav .nav-right-side a {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0.625rem;
}

nav .nav-right-side a:hover {
    color: var(--link-hover-color)
}

/* General Section Styles */
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--sections-background-color);
}

/* Section Heading Styles */
section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--headings-and-links-color);
}

#about-me-section {
    padding: 0 2rem;
    margin-bottom: 2rem;
    border-radius: 0 0 10px 10px;
}

#about-me-section .headshot {
    width: 20rem;
    height: 20rem;
    margin-top: 1rem;
    margin-bottom: 2.4rem;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#about-me-section .headshot img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top; /* Moves the image upwards so the head is more visible */
    transition: transform 0.3s ease;
}

#about-me-section .headshot img:hover {
    transform: scale(1.05);
}

#about-me-section .bio p {
    font-size: 1.25rem;
    font-weight: 300;
    text-align: center;
}

#about-me-section .social-links {
    font-size: 3rem;
}

#about-me-section .social-links i {
    color: var(--background-color);
}

#about-me-section .social-links a {
    margin: 0 0.75rem;
}

.projects-skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
}

#projects-section, #skills-section {
    border-radius: 10px 10px 0 0;
    padding: 0 2rem;
    gap: 0.625rem;
}

.skills-icons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
} 

.skills-icons-container i {
    color: var(--background-color);
    font-size: 3rem; 
} 

.project-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    background-color: var(--project-card-background-color);
}

.project-card:hover {
    transform: scale(1.05);
}

.project-card img {
    width: 100%;
    max-height: 12.5rem;
    object-fit: cover;
    border-radius: 10px;
}

.project-card h3 {
    margin-top: 1rem;
    font-size: 1.4rem;
}

.project-card p {
    font-size: 1rem;
    padding: 1rem 1rem;
}

footer {
    display: flex;
    justify-content: center;
    background-color:  var(--background-color);
    color: var(--headings-and-links-color);
    padding: 1rem 0;
    font-size: 0.875rem;
}

/* TABLETS IN LANDSCAPE */
@media (max-width: 71rem) {
    /* 1127px / 16px = 71rem */
    /* 71rem * 16px = 1136px */

    html {
        /* 12px / 16px = 75% */
        /* font-size: 87.5%; */
    }
}

/* TABLETS IN PORTRAIT */
@media (max-width: 56.6875rem) {
    /* 907 /16px = 56.6875rem */
    /* 56.6875 * 16px = 907px */
    /* I chose this breakpoint because this where 
       the two start have different widths */

    html {
        /* 10px / 16px = 50% */
        /* font-size: 62.5%; */
    }

    #about-me-section, #projects-section, #skills-section {
        padding: 1.25rem 2rem; 
    }

    .projects-skills-container {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }

    .skills-icons-container {
        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
    } 

    #projects-section {
        border-radius: 10px;
    }
}

/* MOBILE'S IN PORTRAIT & LANDSCAPE */
@media (max-width: 36rem) {
    /* 576px /16px = 36rem */
    /* 36rem * 16px = 576px */

    html {
        /* 9px / 16px = 56.25% */
        font-size: 56.25%;
    }
}

Here is the JavaScript file for slideshow:

document.addEventListener( 'DOMContentLoaded', function() {
    var splide = new Splide( '.splide', {
      pagination: false,
    });
    splide.mount();
  } );

On Slick Carousel how to center the slick-slide items if its less than three?

Here are what going to happen. If the condition is (slideCount <=2 ) the slide items should be at the center of the container, but right now they are align to the right(run the code snippet below). I’m not sure if its possible using css or slick events/settings to dynamically count the items. I want it to be centered if the (slideCount <=2 ) like this.
slick

Notes that it is working if the slick-slide item is only one.

Below are my codes:

$(function() {
    $('.js-addons-builder-slick').each(function() {
        let slider = $(this);
        let slideCount = slider.children('.items').length; // Count the number of slides

        let slickOptions = {
            slidesToShow: 1,
            slidesToScroll: 1,
            autoplay: false,
            dots: true,
            infinite: false,
            arrows: true,
            centerPadding: '0px',
            variableWidth: true,
            touchThreshold: 100,
            rows: 0,
            responsive: [{
                breakpoint: 768,
                settings: {
                    draggable: true,
                    variableWidth: true,
                    dots: true,
                    arrows: true,
                    infinite: false,
                }
            }]
        };

        // Conditional settings based on slide count
        if (slideCount <=2 ) {
            slickOptions.centerMode = true;
        } else {
            slickOptions.centerMode = false;
        }

        slider.slick(slickOptions);
    });
});
    .mycontainer {
        max-width: 1400px;
        margin: auto;
        background: orange;
        padding: 10px 0;
    }
    .items {
        width: 340px;
        margin: 0 10px;
        text-align: center;
        border: 1px solid black;
        padding: 20px;
        box-sizing: border-box;
    }
    .slick-prev:before, .slick-next:before {
        color: black;
    }
<link href="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.css" rel="stylesheet"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick-theme.css" rel="stylesheet"/>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js"></script>

<div class="mycontainer">
    <div class="js-addons-builder-slick page-slick-flex">
        <div class="items">Slide 1</div>
        <div class="items">Slide 2</div>
    </div>

    <div class="js-addons-builder-slick page-slick-flex">
        <div class="items">Slide 1</div>
    </div>
</div>

IIS Application Pools cannot access Google Drive shortcuts [closed]

I have a folder from Google Drive account A that is shared with Google Drive account B. From account B, I created a shortcut for this folder. I installed Google Drive B on my computer, and from here, my web application on IIS will access this shortcut to read data. However, the problem is that the Application Pools do not have sufficient permissions to access it, even though I have set full control for the shortcut with IIS_IUSRS. It only works if I use the Admin account that is running this Google Drive, but this requires the Admin account to have a password. I need to figure out how to set permissions so that the Application Pools can also access it, or use the Admin account for identity without requiring a password. Alternatively, I can adjust the code if needed.enter code here

JQuery Inputmask large and negative time values

I’m trying to configure inputmask to allow large and negative time values.

Examples:

  • 1:10
  • 10:20
  • 198:45
  • -20:00
  • -300:01
  • -0:01

I’ve found this for regular 24 time periods:

$(“input.timeedit”).inputmask({
alias: “datetime”,
inputFormat: “HH:mm” });

Which works great for a max 24 hours but does not go higher or allow negatives. Any suggestions on how to configure it?

O puppeteer não encontra os elementos da pagina independente do tempo [closed]

Estou criando um bot mas quando tento acessar as tags da pagina recebo null ou um array vazio, quando peço para esperar ele passa o tempo de espera e manda um erro:

    const browser = await puppeteer.launch({
    headless: false,
    defaultViewport: null,
    args: ['--start-maximized', '--no-sandbox', '--disable-setuid-sandbox'],
});
const page = await browser.newPage();

await page.goto('https://vera.bet.br/');

//Confirmar idade
await page.locator('.OFi5b').click();
await page.locator('#cookieConsentContainer > div > button.u9v7x').click();

//entrar na sessão de tênis
await page.goto('https://vera.bet.br/sports?sportId=6', { waitUntil: 'networkidle2' });
await new Promise(function (resolve, reject) {
    setTimeout(function () {
        resolve();
    }, 3000);
})

await page.waitForSelector('.eventlist_eu_fe_Selection_line .eventlist_eu_fe_TwoBoxTemplate_side1', {visible: true});
let allMatches = await page.$$('.eventlist_eu_fe_Selection_line .eventlist_eu_fe_TwoBoxTemplate_side1');

console.log(allMatches.length);
await allMatches[0].click();

MatterJS Ball Not Getting Affected by Gravity in SvelteKit Webapp

I’m trying to integrate a game, built with matter-js, into my existing SvelteKit webapp but am getting stumped as to why gravity is not affecting the circle body I’m adding. The following is the typescript code within my svelte file:

onMount(async () => {
  const Matter = await import('matter-js');
  const canvas = document.getElementById("canvas")!

  const engine = Matter.Engine.create();

  const ball = Matter.Bodies.circle(100, 0, 10);
  Matter.Composite.add(engine.world, ball);
  Matter.Engine.update(engine);

  const render = Matter.Render.create({
    element: canvas,
    engine: engine,
    })
  Matter.Render.run(render);
  Matter.Runner.run(engine);
})

The ball is stuck in the initial position set within the circle() method. I’m using vite for the local dev server.

Custom validation to exclude trailing spaces in text responses in Qualtrics

I’m building a Qualtrics form that requires a respondent to enter their email address. That question is a single line text entry question type. The email address being typed correctly matters because I have display logic that relies on specific email addresses, and that display logic fails when emails are entered with a trailing space. I anticipate my respondents will use their phones to answer the survey, and phones are notorious for leaving trailing spaces in open text fields.

Normally, I would use the “Email Address” content type validation choice under “Response Requirements” to enforce only valid email addresses to eliminate the trailing space issue. The issue here is that I have custom validation already implemented on that question. It requires the text to contains our organization’s specific email suffix. The question asks them to only enter email addresses with that suffix, but I don’t trust people to read and follow directions, so I wanted it to throw an error if another email suffix was detected and force them to fix the error.

Current Conditional Validation Logic:

IF: Q2 Please enter your business email (@org.com) 
>CONTAINS: "@org.com" 
>THEN: Validation passes

I tried adding another logical statement to the conditional validation logic above that would reject validation if a space was contained in the response, but it did not work:

Attempted Conditional Validation Logic:

IF: Q2 Please enter your business email (@org.com) 
>CONTAINS: "@org.com" AND
>DOES NOT CONTAIN: " "
>THEN: Validation passes

Other ideas I had were:

  • Changing the additional logical statement to match regex
  • JavaScript that prohibits spaces in that question’s responses
  • Converting to a form field type question to enforce validation

For the first two, I’m not sure how to approach the creation of a regex or JavaScript that would meet my needs. Any thoughts are appreciated.

Jquery: Dynamically adding code stored in a variable to events WITHOUT using eval()

I have a project which has a large number of controls (buttons, checkboxes, etc.) that I’m trying to find a way to add events to without directly putting the code in the html or in the main javascript/jquery file. Rather, I’d like to store the event code in a config file so that I can make changes if needed without having to touch the main code and so I don’t have a massive amount of repeating code just to assign actions.

The HTML has controls like this:

<id="elem1">
<id="elem2">
<id="elem3">
...

And then there is a separate JS config file which has an object like this:

btnAssign: [
    { el: '#elem1', onEvent: 'click', action: "someAction();" },
    { el: '#elem2', onEvent: 'change', action: "someOtherCode();someOtherCode2();" },
    { el: '#elem3', onEvent: 'click', action: "doSomethingElse();" }
    ...
    ]

What I want to do is now assign the “action” for the specified “onEvent” to the listed “el”. As an example, I want to add someAction(); to elem1‘s onclick event so that when I click on elem1, someAction(); gets executed.

In the main JS/Jquery file, the following works perfectly, but only if I use eval()

btnAssign.forEach((assignment) => {
    $(assignment.el).on(assignment.onEvent, function () {
        eval(assignment.action);
    });
});

Based on reading (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval) I’d really like to find another way to accomplish this without the potential risks. I tried using indirect eval?. but some of the entries (not all) fail.

Is there a safer or better way to do this?

Create/generate a zip from user selections (website)

I’m in the process of overhauling my personal site for some small games/mods I made. I want to be able to have the users select what games and/or mods they want and generate a zip with said selections.

Basically, say I have GunGame, NoghtWalk, Banana City and VanillaBeans (fake names) available for download. User selects GunGame and VanillaBeans for downloading. I know I need to setup check boxes/click buttons for selections. But how would I go about generating a ZIP file with said selections?

Long story short, I have like 100 different versions of my files. I don’t want to have to upload and update 100 different files anytime there is an update. User selection and zip generation would save me TONS of time if I can figure it out.

I hope this makes sense to everyone. I know this is possible, as I’ve seen sites like this before. Unfortunately, it’s been about 15 years or more since I’ve messed with more than just basic HTML and the newer html5 is kinda kicking my butt. I appreciate any help anyone can give. Thanks in advance!

I tried about an hour of Google searching. Came across JSZip but not 100% sure how to implement it into my situation and I’m unsure of how to exactly use it.

Form dirty does not work properly for combobox – ExtJs

I have an edit form and I’m trying to unlock the Save button only if the form has any changes compared to what data was loaded at the beginning of the form.

It works fine for various input types, but unfortunately it doesn’t work at all for ComboBox. I don’t know what could be wrong here, because formally everything looks fine and works for other input types. Does anyone have any idea why?

https://fiddle.sencha.com/#view/editor&fiddle/3te7

form = Ext.widget('form', {
    id: 'gridPopUpForm',
    cls: 'form form--full-width',
    bodyCls: 'form__body',
    scrollable: true,
    listeners: {
      dirtychange: () => {
        const saveButton = form.up().down('#gridPopUpFormSaveButton')
        console.log('dirtychange')
        console.log(`isDirty: ${form.isDirty()}`)

        saveButton.setDisabled(!form.isDirty())
      },
      change: () => {
        console.log('change')
      },
      validitychange: (_, valid) => {
        const disabled = !valid
        const saveButton = form.up().down('#gridPopUpFormSaveButton')

        saveButton.setDisabled(disabled)
      },
    },
  })

field.listeners = {
        ...field.listeners,
        change: (field, newValue, oldValue) => {
          if (column?.dependants?.length) {
            this.handleDependentFields(column)
          }

          console.log(field, newValue, oldValue)
        },

        afterRender: (field) => {
          if (column?.dependants?.length) {
            this.handleDependentFields(column)
          }
          console.log(field)
        },

        dirtyChange: (field, isDirty) => {
          const formWindow = field?.up('#gridPopUpFormWindow')
          const saveButton = formWindow?.down('#gridPopUpFormSaveButton')

          console.log(`isDirty: ${isDirty}`) // if combobox is true after form render
          saveButton?.setDisabled(!isDirty)
        },
      }

Who uses OOP Javascript and in what circumstance? [closed]

It’s been a long time since I’ve used Javascript heavily. I’m taking a refresher course online and I’m reacquainting myself with OOP Javascript as well as functional. I personally only recall using functional Javascript.

Do you use OOP Javascript? Why do you choose to use that over functional? I’ve read that it’s more typical to use functional, but that OOP can make for cleaner/efficient code. Is it typical in certain jobs to use OOP or is it just a personal preference no matter what you’re coding?

Ckeditor5 with React – Custom Comment View is not working

I am new to Ckeditor5 with React and created sample application where I am trying to create custom comment view where user can view/ edit the comment. (refer below screenshot)

Description – We have a editor with comments. As per our requirement we are trying to customize the Comment view, where user can edit the comment in TextArea (later we will going to add few more controls like Input, Input as File) in comment popup as shown below(View and edit mode). We are using vite.config for bundling.

enter image description here

package.json

 "devDependencies": {
    "@ckeditor/ckeditor5-react": "^9.2.0",
    "@vitejs/plugin-react": "^4.0.0",
    "ckeditor5": "44.3.0",
    "ckeditor5-premium-features": "44.3.0",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "vite": "^5.0.0"
  },
  "dependencies": {
    "html-to-text": "^9.0.5"
  }
}
import { BaseCommentView, CommentView } from 'ckeditor5-premium-features';
import { View, icons, ButtonView } from "ckeditor5";

export default class CustomCommentView extends BaseCommentView {
    constructor(locale, model, config) {
        super(locale, model,
            {
               ....
            });

        this._model = model;

        this.commentContent = model.content || '';
        this.state = 'view';

        // Define the template
        this._setTemplateBasedOnState();
    }

    // Dynamically update the template based on the state (view/edit)
    _setTemplateBasedOnState() {
        if (this.state === 'edit') {
            // Edit Mode Template
            this.setTemplate({
                tag: 'div',
                attributes: {
                    class: 'custom-comment-view edit-mode'
                },
                children: [
                    {
                        tag: 'textarea',
                        attributes: {
                            class: 'comment-textarea',
                            rows: 3,
                            value: this.commentContent,
                            onchange: this._onContentChange.bind(this)
                        }
                    },
                    {
                        tag: 'button',
                        attributes: {
                            class: 'save-button',
                            onclick: this._onSave.bind(this)
                        },
                        children: [{ text: 'Save' }]
                    },
                    {
                        tag: 'button',
                        attributes: {
                            class: 'cancel-button',
                            onclick: this._onCancel.bind(this)
                        },
                        children: [{ text: 'Cancel' }]
                    }
                ]
            });
        } else {
            // View Mode Template
            this.setTemplate({
                tag: 'div',
                attributes: {
                    class: 'custom-comment-view view-mode'
                },
                children: [
                    {
                        tag: 'p',
                        attributes: {
                            class: 'comment-content'
                        },
                        children: [{ text: this.commentContent }]
                    },
                    {
                        tag: 'button',
                        attributes: {
                            class: 'edit-button',
                            onclick: this._onEdit.bind(this)
                        },
                        children: [{ text: 'Edit' }]
                    },
                    {
                        tag: 'button',
                        attributes: {
                            class: 'delete-button',
                            onclick: this._onDelete.bind(this)
                        },
                        children: [{ text: 'Remove' }]
                    }
                ]
            });
        }
    }

    // Handle content changes in the textarea
    _onContentChange(event) {
        this.commentContent = event.target.value;
    }

    // Switch to edit mode
    _onEdit() {
        this.state = 'edit';
        this._setTemplateBasedOnState(); // Re-render the template
    }

    // Save changes and switch back to view mode
    _onSave() {
        console.log('Saved Comment:', this.commentContent);
        this.state = 'view';
        this._setTemplateBasedOnState();

        // Trigger a save callback if defined
        // if (this._options.onSave) {
        //     this._options.onSave(this.commentContent);
        // }
    }

    // Cancel editing and revert back to the original state
    _onCancel() {
        console.log('Edit cancelled');
        this.state = 'view';
        this._setTemplateBasedOnState();
    }

    _onDelete() {
        console.log('Delete button clicked');
        // if (this._options.onDelete) {
        //     this._options.onDelete(this.commentContent);
        // }
    }
}

Below I have created CustomCommentView and used it in Ckeditor config but after running I am getting “TypeError: Cannot read properties of undefined (reading ‘on’)” error for removebutton. When i checked this error is coming on remove button while creating template. Due to this events are not getting registered on button and also not able to check whether other edit template loading will also work or not.

enter image description here

enter image description here

If someone can help us on this will be appreciated.

How to calculate 3d point on a 2d triangle in a 3d space?

I’m making my own 3D renderer in JS and am trying to create a z-buffer. However, I need to then get the position of each pixel on the triangles being rendered to get the distance from the camera. I can get which pixels I need to measure, but how can I find the cooridnates on the triangle?

To clarify, I’m not trying to render a triangle or find the coordinates of the vertice. I’m trying to find the position of a point on the triangle that is spread through three dimensions.

Mock one function under object instantiated from class in jest

I need to test how my function would respond when only one of the methods under an object instantiated in the function script returns a certain value.

The function’s script:

import TTLCache from '@isaacs/ttlcache';

const DATA_KEY = 'barks';

const dataCache = new TTLCache({ ttl: 100, checkAgeOnGet: true, max: 1 });

export const getCachedData = async (): Promise<string | undefined> => {    
    if (!dataCache.has(DATA_KEY)) {
        dataCache.set(DATA_KEY, 'new-item');
    }

    return dataCache.get(DATA_KEY);
};

My test:

import { getCachedData } from '../functionScript';

const mockGetRemainingTTL = jest.fn();

jest.mock('@isaacs/ttlcache', () => {
    return jest.fn().mockImplementation(() => ({
        ...jest.requireActual('@isaacs/ttlcache'),
        getRemainingTTL: () => mockGetRemainingTTL(),
    }));
})

describe('ttlCaching', () => {
    test('Return undefined when ttl has expired', async () => {
        mockGetRemainingTTL.mockReturnValue(0);
        expect(await getCachedData()).toEqual(undefined);
    });
});

getRemainingTTL is a method under the cache object that gets called internally.

For the above test, I get the error:
“TypeError: dataCache.has is not a function”

I do not understand why the ...jest.requireActual('@isaacs/ttlcache') part did not fill in the original implementations.

How can I create a rotating slider with clickable circles and arrow controls?

I’m developing a rotating slider interface where several circles are arranged in a circular layout. I want the slider to have two main functionalities:

Clickable Circles: When a user clicks on any circle, it should smoothly rotate and reposition so that the clicked circle becomes the central, prominent element.

Arrow Controls: In addition to clicking the circles, I’d like to include left/right arrow buttons that allow the user to rotate through the circles.

I’ve attempted to implement this behavior using HTML/CSS/JavaScript, but I’m encountering issues with the position of circles, rotation animations and ensuring the clicked circle transitions correctly to the main position. Additionally, managing the arrow control rotations has proven challenging.

Could someone provide guidance or examples on how to achieve this functionality? Any suggestions for libraries, frameworks, or code examples that can help me implement a smooth, interactive rotating slider would be greatly appreciated.

Thank you in advance for your help.

Rotating Circles Slider

  // Grab all carousel items and the main circle
  const items = document.querySelectorAll('.carousel-item');
  const mainCircle = document.getElementById('mainCircle');
  const arrowLeft = document.getElementById('arrowLeft');
  const arrowRight = document.getElementById('arrowRight');
  
  // Track which item is "active"
  let activeIndex = 0;

  // Update positions based on the active index
  function updateCarousel() {
    // Update main circle text to match the active item
    mainCircle.textContent = items[activeIndex].textContent;
    
    const totalItems = items.length;
    const angleStep = 360 / totalItems;
    
    // Define ellipse radii (must match the SVG ellipse)
    const radiusX = 250;  // horizontal radius
    const radiusY = 50;   // vertical radius
    
    items.forEach((item, i) => {
      // Calculate angle relative to the active index
      const angle = (i - activeIndex) * angleStep;
      const rad = angle * Math.PI / 180;
      
      // Calculate x/y positions for elliptical orbit
      const x = radiusX * Math.cos(rad);
      const y = radiusY * Math.sin(rad);
      
      // Move each item into position around the main circle
      item.style.transform = `translate(-50%, -50%) translate(${x}px, ${y}px)`;
    });
  }

  // Event listeners for arrow clicks
  arrowLeft.addEventListener('click', () => {
    activeIndex = (activeIndex - 1 + items.length) % items.length;
    updateCarousel();
  });
  
  arrowRight.addEventListener('click', () => {
    activeIndex = (activeIndex + 1) % items.length;
    updateCarousel();
  });

  // Event listener for clicking on an outer item
  items.forEach((item, i) => {
    item.addEventListener('click', () => {
      activeIndex = i;
      updateCarousel();
    });
  });

  // Initialize the carousel on page load
  updateCarousel();
 .carousel-container {
      position: relative;
      width: 900px;
      height: 300px;
      margin:  auto;
      overflow: hidden;
      /* Remove the container border since we use an SVG for the orbit */
    }
    
    /* SVG orbit drawn behind the circles */
    .orbit {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }
    
    /* The central circle (the "sun") */
    .carousel-center {
      position: absolute;
      top: 80%; /* Orbit center vertical position */
      left: 50%;
      width: 120px;
      height: 120px;
      background-color: orange;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-weight: bold;
      color: #fff;
      z-index: 10;
      box-shadow: 0 0 8px rgba(0,0,0,0.3);
      cursor: default;
    }
    
    /* Outer circles (the "planets") */
    .carousel-item {
      position: absolute;
      top: 80%; /* Same center as the main circle */
      left: 50%;
      width: 80px;
      height: 80px;
      background-color: #ffe0a2;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      cursor: pointer;
      transition: transform 0.5s;
      box-shadow: 0 0 5px rgba(0,0,0,0.2);
      z-index: 5;
    }

    /* Arrows for manual sliding */
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #ddd;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 20;
      font-size: 16px;
      border-radius: 4px;
      box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }
    .carousel-arrow.left {
      left: 10px;
    }
    .carousel-arrow.right {
      right: 10px;
    }
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Carousel Orbit</title>
</head>
<body>

<div class="carousel-container">
  <!-- SVG Orbit Path matching the ellipse in JS -->
  <svg class="orbit" width="900" height="300">
    <!-- The ellipse is centered at (450, 240) which is 50% (450px) horizontally and 80% (240px of 300px) vertically -->
    <ellipse cx="450" cy="240" rx="250" ry="50" fill="none" stroke="#ccc" stroke-dasharray="5,5" />
  </svg>

  <!-- Main circle (active item) -->
  <div class="carousel-center" id="mainCircle">API Applications</div>
  
  <!-- Outer circles (planets) -->
  <div class="carousel-item" data-index="0">E2E Testing</div>
  <div class="carousel-item" data-index="1">API Portal</div>
  <div class="carousel-item" data-index="2">API Governance</div>
  <div class="carousel-item" data-index="3">API Navigator</div>
  
  <!-- Navigation arrows -->
  <button class="carousel-arrow left" id="arrowLeft">&lt;</button>
  <button class="carousel-arrow right" id="arrowRight">&gt;</button>
</div>


 
</body>
</html>