Logan1x / Order-number

1 stars 1 forks source link

Need to do this project from scratch. #1

Open Logan1x opened 4 years ago

Logan1x commented 4 years ago

So this project is supposed to help my friend who wants to input order number on a webpage and show that order on another route(webpage). So anytime new order comes, the order number on the other page should be changed(reflected).

dragid10 commented 4 years ago

Would you mind if I took this? This doesn't seem too difficult to do

dragid10 commented 4 years ago

Actually I think I'm a bit confused about what needs to happen. I see this was / is a nucleotide sequence generator? Is that still what this project is achieving?

Logan1x commented 4 years ago

@dragid10 This project is different from nucleotide seq generator, I forked that repo and made changes on that so you will see code from that repo, but I want to start this from scratch.

This project is supposed to help my friend who wants to input order number on a webpage and show that order on another route(webpage).

image

dragid10 commented 4 years ago

@Logan1x do you want the order numbers to be persisted somewhere? Or could they be in memory? Also is the /orders page only supposed to display one order number at a time? Lastly, I assumed you want the /orders page to update the latest order number without having to manually refresh the page?

Logan1x commented 4 years ago

do you want the order numbers to be persisted somewhere? Or could they be in memory?

For the version 1, I do not want to store the orders.

Also is the /orders page only supposed to display one order number at a time?

How about the latest order with big size(like h1) and last 4 with small (h4), but for this we need to store last 4 orders too. So it's fine, if you to leave it for version-1 and just implementing the latest order.

Lastly, I assumed you want the /orders page to update the latest order number without having to manually refresh the page?

Yes