Coder Social home page Coder Social logo

todo's Introduction

Fancy little ToDo App

It does what its name says

TechStack

  • TS, React, Next.js
  • twMerge, clsx, class-variance-authority
  • Zustand
  • TailwindCSS
  • Framer Motion

Reusable Components in TailwindCSS with variants

  • I like how styled-components allows to create different variants of components and I was looking for away to do replicate this with tailwindCSS.

  • twMerge, clsx and class-variance-authority allow to do exactly that:

    • variant: {} stores any new variant of the button
    • size: {} allows for different sizes of one variant.
    • defaultVariant {} applies a pre-determinded combination of variant and size in case they aren't explicitly given to the component.

    type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> &
      VariantProps<typeof buttonVariants> & {
        children: React.ReactNode;
      };
    export default function Button({
      children,
      variant,
      size,
      ...props
    }: ButtonProps) {
      return (
        <button className={cn(buttonVariants({ variant, size }))} {...props}>
          {children}
        </button>
      );
    }
    
    const buttonVariants = cva("border", {
      variants: {
        variant: {
          primary: "fixed place-items-center top-[3%] right-[3%] text-[#3b4749] ",
          secondary: "border-2 text-white border-grey",
          danger: "border-2 bg-red-500",
          addTaskDisabled: `w-[20%] max-w-[120px] py-2 border border-slate-200 rounded-r-md text-slate-200
          xs:text-xs xs:py-1`,
          addTaskEnabled: `w-[20%] py-2 border border-white rounded-r-md text-white
          xs:text-xs xs:py-1`,
        },
        size: {
          sm: "text-sm px-1 py-0",
          md: "text-base px-2 py-1",
          lg: "text-xl px-3 py-2",
        },
      },
      defaultVariants: {
        variant: "primary",
        size: "md",
      },
    });

This is how the component is used:

{
  inputValue ? (
    <NewTaskButton
      variant="addTaskEnabled"
      onClick={handleAddTaskButton}
      disabled={!inputValue}
    >
      add
    </NewTaskButton>
  ) : (
    <NewTaskButton
      variant="addTaskDisabled"
      onClick={handleAddTaskButton}
      disabled={!inputValue}
    >
      add
    </NewTaskButton>
  );
}

cn() consists of twMerge and clsx...

import { ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";

export default function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs));
}

to make this line less cluttered:

<button className={cn(buttonVariants({ variant, size }))} {...props}>

todo's People

Contributors

j-eick avatar

Watchers

 avatar

todo's Issues

New Tasks aren't displayed

As a [Developer]
I want [the process of adding new tasks work]
So that [the TodoList is displayed correctly]

Description:

  • After adding a task via input, only a new LI is displayed without content.

Acceptance Criteria:

  • New tasks are added to the list.

Additional Information:

Image

Tasks:

  • Check:
    • Typescript typing errors
    • Possible render issues (LI is displayed, but why not the content?)

Dependencies:

///

Estimation:

๐ŸŸ  Easy ๐ŸŸ 

Delete Task function

As a User
I want the option to delete a single
So that I can make corrections to the list

Description:

  • A delete button is displayed next to the edit button.
  • Clicking the button removes the respective task from the list.

Acceptance Criteria:

  • The target task is removed from the list.

Additional Information:

Tasks:

  • Create a delete button + delete functionality
  • user .filter( )

Dependencies:

///

Estimation:

๐ŸŸ  Easy ๐ŸŸ 

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.