Giter Club home page Giter Club logo

fe-todo's Introduction

Frontend Mentor - Todo app solution

This is a solution to the Todo app challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Note: Delete this note and update the table of contents based on what sections you keep.

Overview

The challenge

Users should be able to:

  • View the optimal layout for the app depending on their device's screen size
  • See hover states for all interactive elements on the page
  • Add new todos to the list
  • Mark todos as complete
  • Delete todos from the list
  • Filter by all/active/complete todos
  • Clear all completed todos
  • Toggle light and dark mode
  • Bonus: Drag and drop to reorder items on the list

Screenshot

Links

  • Solution URL: here
  • Live Site URL: here

My process

Built with

  • Semantic HTML5 markup
  • Drag & Drop API
  • Flexbox
  • CSS Grid
  • Mobile-first workflow
  • Qwik - TS framework
  • Tailwind - Tailwind framework

What I learned

By far, the biggest piece of information that I got from this challenge was using the Drag & Drop (D&D) API. It has some quirks, but if applied porperly, can do things that JS script can match, while retaining mobile support.

Below is the neccesary code (sorry for the regex) to do some "drop-hover" effects using only the D&D API:

(e) => {
              const targetID = (e.target as HTMLElement).id;
              if (prevID.value !== targetID && targetID !== "") {
                if (prevID.value === "") {
                  prevID.value = targetID;
                  const currentE = document.getElementById(targetID);
                  const className = currentE!.classList.value.replace(
                    /bg-\[white\] dark:bg-dark-saturated-blue/,
                    "bg-violet-300 dark:bg-sky-700",
                  );
                  currentE!.classList.value = className;
                  return;
                }
                const oldE = document.getElementById(prevID.value.toString());
                const className = oldE!.classList.value.replace(
                  "bg-violet-300 dark:bg-sky-700",
                  "bg-[white] dark:bg-dark-saturated-blue",
                );
                oldE!.classList.value = className;
                prevID.value = targetID === "" ? prevID.value : targetID;
                const currentE = document.getElementById(targetID);
                const className2 = currentE!.classList.value.replace(
                  /bg-\[white\] dark:bg-dark-saturated-blue/,
                  "bg-violet-300 dark:bg-sky-700",
                );
                currentE!.classList.value = className2;
              }
            }

Continued development

My project is not fully exploring the D&D API. Currently, it has no "cross-window" capabilities.

In the future, I want users to be able to make todos by dragging text into the list from a different window.

Useful resources

Author

fe-todo's People

Contributors

themcnafaha avatar

Stargazers

Evgeni avatar

Watchers

 avatar

Forkers

mwaaas

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.