GithubHelp home page GithubHelp logo

fbrzrvn / frontend-master-todo-app Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 1.06 MB

Frontend Mentor challenge - The classic todo app with a few twists! This app includes a dark/light theme toggle and drag & drop reordering.

Home Page: https://frontendmaster-todo-app.netlify.app/

License: MIT License

HTML 3.23% JavaScript 96.77%
react redux styled-components frontend-mentor challenge drag drop

frontend-master-todo-app'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

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


Empty list empty list Light theme light-mode Complete todo complete

Links

My process

Built with

What I learned

I learned how to create global styles and how to use the theme context to toggle the theme-mode using styled-components. I also improve my redux knowledge.

import styled, { createGlobalStyle } from 'styled-components';

export const GlobalStyles = createGlobalStyle` {
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
}
const App = ({ children }) => {
  const currentTheme = () => {
    const localTheme = localStorage.getItem('TODO_THEME');
    return localTheme || 'dark';
  };

  const [theme, toggleTheme] = useTheme(currentTheme);
  const themeMode = theme === 'dark' ? darkTheme : lightTheme;

  <ThemeProvider theme={themeMode}>{children}</ThemeProvider>;
};

Useful resources

  • react-beautiful-dnd - This helped me for implement the drag and drop functionality and understand how to use it. I'd recommend it to anyone still learning this concept.

Author

frontend-master-todo-app's People

Stargazers

Roman avatar

Watchers

Fabrizio Ervini avatar

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.