Need an Angular Web Worker for a Reactive Auction Submission form
Budget: $30 – $250 USD
I'm currently working a project using Angular for the first time and I've been reading about using web workers rather than Mutex or Semaphores, since a web worker is isolated and would not need any synchronization. Essentially what I want to do is when a user fills out the form (I haven't created it yet) and they hit submit, the web worker should handle the synchronization process so the form is submitted one at a time, even if multiple users are submitting a form for the same item being auctioned.
I would like to be able to use this web worker for this process in order to update a count on the html card i've created for each item that is posted. So that if an item has currently received 5 "Bids", the card will be updated to show 5 bids. Additionally, if possible with the same web worker I would also like the ability to change the status of an item being auctioned from opened to closed so that more "bids" cannot be submitted after the item has been closed. I'm not sure if that required a different web worker or not, as I am new to Angular. I am open to recommendation.
Items that are transferred when the auction form is submitted should be the users ID (who is submitting the form) and all the text areas that are required (i.e. Bid Amount, Contact information like email phone and name) and then my auction form will create a unique bidID via Angular Service (at form submission) by concatenating the userID + itemID + userBidNum ( if a userBidNum hasn't be set yet, it will instantiate the userBidNum to 1 and each time after that, when a bid is submitted, it will increment that number by 1). This bidID will be used later for other things/service I plan to integrate into the application.
I can provide more details as necessary but I regrettably will not provide any of my current code. Thank you in advance.
I would like to be able to use this web worker for this process in order to update a count on the html card i've created for each item that is posted. So that if an item has currently received 5 "Bids", the card will be updated to show 5 bids. Additionally, if possible with the same web worker I would also like the ability to change the status of an item being auctioned from opened to closed so that more "bids" cannot be submitted after the item has been closed. I'm not sure if that required a different web worker or not, as I am new to Angular. I am open to recommendation.
Items that are transferred when the auction form is submitted should be the users ID (who is submitting the form) and all the text areas that are required (i.e. Bid Amount, Contact information like email phone and name) and then my auction form will create a unique bidID via Angular Service (at form submission) by concatenating the userID + itemID + userBidNum ( if a userBidNum hasn't be set yet, it will instantiate the userBidNum to 1 and each time after that, when a bid is submitted, it will increment that number by 1). This bidID will be used later for other things/service I plan to integrate into the application.
I can provide more details as necessary but I regrettably will not provide any of my current code. Thank you in advance.