Coder Social home page Coder Social logo

fs-project-frontend's Introduction

fs-project-frontend's People

Contributors

bashayer770 avatar fahad-ha avatar xdelusion avatar

Watchers

 avatar

fs-project-frontend's Issues

auth.js

Please remove dead aka commented out code.

This applies everywhere

Categories.js

There's a lot of repetitive code in this page that needs to be cleaned up. I understand you guys are relying on dummy data here but what can be done is have the categories setup as an array and then you can map on the elements of the array, adding it into the button, or card. That will ensure an easier transition to when you have the api integrated and functional

ErrorMsg.js

One way to improve readability for the following:

{" "} {error?.response?.data == "Bad Request" ? "Fields cannot be empty" : error?.response?.data?.message == "data and salt arguments required" ? "Fields cannot be empty" : error?.response?.data?.message || error?.response?.data || error?.message}

is having it setup this way:

{" "} {(() => { const responseData = error?.response?.status; const errorMessage = responseData?.message || error?.message;
if (responseData === "Bad Request" || errorMessage === "data and salt arguments required") {
  return "Fields cannot be empty";
} else {
  return responseData || errorMessage;
}

})()}

"data and salt arguments required" is not an appropriate message to show the user

images

It's better practice to have your images setup in a media folder within an assets folder like so: src>assets>media>Dev-image.jpg

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.