Code Monkey home page Code Monkey logo

note-app-remix's Introduction

May Tech Challenge

Prerequisites

Make sure you have both installed

  • Node 18
  • Npm

After cloning this repository, at the root level of it make sure you create a .env

cp .env.example .env

Finally, install all dependencies

npm install

Starting the project

  • Initial setup:

    npm run setup
  • Start dev server:

    npm run dev

This starts your app in development mode, rebuilding assets on file changes.

The database seed script creates a new user with some data you can use to get started:

Relevant code:

This is a pretty simple note-taking app, but it's a good example of how you can build a full stack app with Prisma and Remix. The main functionality is creating users, logging in and out, and creating and deleting notes.

Tasks

Step 0 - Looking Around

  • Install the project, get comfortable with it
  • Login with the account provided in this readme
  • Create a new account
  • Locate the logo in the file hierarchy

Step 1 - Design

  • Add the logo to the center of the login / signup page
  • Add the logo in the top left corner of the Notes pages
  • Change the color of the top banner of the Notes pages to match the landing page sky blue color

Step 2 - Data Model & Route Protection

  • Modify the data model to support admin user
  • Modify the seed data to turn the "[email protected]" into an admin user
  • Add a new page accessible only to admin users under /admin

Step 3 - New Feature Admin Control

  • On this new page list all notes including notes from other users than yourself
  • On this list, display the email associated with each note
  • Make email clickable to display notes only from this user
  • Add the ability to delete notes on all admin pages

Step 4 - New Feature Edit Note

  • Add an edit button on all notes, clicking edit should lead to /notes/:noteId/edit
  • On this page user should be able to edit and save or cancel changes
  • User should be able to see, edit and delete only their notes
  • Admin should be able to see, edit and delete all notes

Going Further - Testing

Cypress

We use Cypress for our End-to-End tests in this project. You'll find those in the cypress directory. As you make changes, add to an existing file or create a new file in the cypress/e2e directory to test your changes.

We use @testing-library/cypress for selecting elements on the page semantically.

To run these tests in development, run npm run test:e2e:dev which will start the dev server for the app as well as the Cypress client.

We have a utility for testing authenticated features without having to go through the login flow:

cy.login();
// you are now logged in as a new user

We also have a utility to auto-delete the user at the end of your test. Just make sure to add this in each test file:

afterEach(() => {
  cy.cleanupUser();
});

That way, we can keep your local db clean and keep your tests isolated from one another.

Vitest

For lower level tests of utilities and individual components, we use vitest. We have DOM-specific assertion helpers via @testing-library/jest-dom.

Type Checking

This project uses TypeScript. It's recommended to get TypeScript set up for your editor to get a really great in-editor experience with type checking and auto-complete. To run type checking across the whole project, run npm run typecheck.

Linting

This project uses ESLint for linting. That is configured in .eslintrc.js.

Formatting

We use Prettier for auto-formatting in this project. It's recommended to install an editor plugin (like the VSCode Prettier plugin) to get auto-formatting on save. There's also a npm run format script you can run to format all files in the project.

note-app-remix's People

Contributors

dkm94 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.