GithubHelp home page GithubHelp logo

winstein27 / firebase-login Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 199 KB

React project to signup, login and logout using Firebase Authentication.

Home Page: https://firebase-login-iota.vercel.app

HTML 1.98% TypeScript 82.95% CSS 15.07%

firebase-login's Introduction

Personal Expenses

This project allows users to create an account and login using Firebase Authentication.

Table of contents

Overview

The challenge

Users should be able to:

  • Create an account using email and password
  • Login with the created account
  • Logout from my account

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Mobile-first workflow
  • React
  • Context API
  • React Router
  • React Icons
  • React Toastify
  • TypeScript
  • Vite
  • Firebase
  • Yarn

What I learned

Context API (Creating context and provider):

const UserContext = createContext({
  userIsLogged: false,
  loggedUser: {} as User,
  logUserIn: (userCredential: Firebase.UserCredential) => {},
  logUserOut: () => {},
});
const UserProvider = (props: { children: React.ReactNode }) => {
  const [userState, setUserState] = useState(initalState);

  const logUserIn = (userCredential: Firebase.UserCredential) => {
    setUserState({
      userIsLogged: true,
      loggedUser: {
        id: userCredential.user.uid,
        firstName: '',
        lastName: '',
        email: userCredential.user.email || '',
      },
    });
  };

  const logUserOut = () => {
    setUserState(initalState);
  };

  const userContext = {
    userIsLogged: userState.userIsLogged,
    loggedUser: userState.loggedUser,
    logUserIn,
    logUserOut,
  };

  return (
    <UserContext.Provider value={userContext}>
      {props.children}
    </UserContext.Provider>
  );

React hook to validate inputs:

const useInput = (props: Props) => {
  const [value, setValue] = useState('');
  const [inputWasTouched, setInputWasTouched] = useState(false);

  const valueIsValid = props.validation(value);

  const valueChangedHandler = (event: React.ChangeEvent<HTMLInputElement>) => {
    setValue(event.target.value);
  };

  const inputTouchedHandler = () => {
    setInputWasTouched(true);
  };

  return {
    value: value,
    touched: inputWasTouched,
    isValid: valueIsValid,
    changeHandler: valueChangedHandler,
    blurHandler: inputTouchedHandler,
  };
};

Useful resources

Author

firebase-login's People

Contributors

winstein27 avatar

Watchers

 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.