KevinMidboe
20dc2b8e38
Api call from component itself and linting.
2021-02-18 22:11:09 +01:00
KevinMidboe
2477f36f96
Get all wines with limit parameter.
2021-02-18 22:07:54 +01:00
KevinMidboe
4ab67877b9
New toast plugin, replacing ui/TextToast.vue.
...
Globally register toast plugin allows us to call this.$toast.info({})
from anywhere for a toast.
Currently styled types:
- error
- info
2021-02-18 21:57:29 +01:00
KevinMidboe
6968ccf389
Linting some ui components.
2021-02-18 21:54:01 +01:00
KevinMidboe
8bd41cc691
Much simpler using prizeDistribution endpoints.
2021-02-18 21:44:33 +01:00
KevinMidboe
eaf57115e8
Liting.
2021-02-18 21:42:03 +01:00
KevinMidboe
cded690fba
Api call from component itself and linting.
2021-02-18 21:41:23 +01:00
KevinMidboe
eb9e7d4b43
When mounted focus on username input.
2021-02-18 21:35:32 +01:00
KevinMidboe
b2755add12
Api call from component itself and linting.
2021-02-18 21:35:18 +01:00
KevinMidboe
b5cca00ed4
Liting
2021-02-18 21:18:01 +01:00
KevinMidboe
2cf4095b97
Api call from component itself and linting.
2021-02-18 21:17:22 +01:00
KevinMidboe
72c1896747
Do api call from within the component itself.
2021-02-18 21:15:21 +01:00
KevinMidboe
011aec3dea
Tabs redesigned, update url and can show counter.
...
Tabs have been redesigned and can now display a counter. This counter
can be set by emiting a "counter" event from the child.
Tabs read and set a ?tab={slug} query parameter when changing tab, when
loaded we check for this parameter to automatically select the correct
tab.
2021-02-18 21:10:14 +01:00
KevinMidboe
b57fb5f1f8
Admin gets new tabs.
...
Tabs for registering wines, adding attendees, drawing winner,
registering/archiving lottery and sending push notifications.
Each tab also has a slug and counter attribute.
2021-02-18 21:08:37 +01:00
KevinMidboe
9823197a48
Better validation and error resp validating wines.
2021-02-18 21:06:49 +01:00
KevinMidboe
d0fa89b92b
Update lottery winner by id.
...
Endpoint, controller and repository function for updating lottery winner
by id and json payload.
Keeps previous definition for undefined/null values.
2021-02-18 21:05:40 +01:00
KevinMidboe
fc029f80df
New message & wine controllers!
...
These interface towards the respective repositories.
Wine:
- /api/wine/:id - getWineById
- /api/wines - allWines
Messages:
- /api/lottery/messages/winner/:id - notifyWinnerById
2021-02-18 21:02:07 +01:00
KevinMidboe
824bd60c02
Updated internal name of wine schema.
2021-02-18 21:00:32 +01:00
KevinMidboe
6003151e3b
Better error handling for claim prize.
...
We wrap await function calls with try catch and return the res if any
error occur.
2021-02-18 20:58:57 +01:00
KevinMidboe
ab58a45da5
Better var name and response message text.
2021-02-18 20:58:40 +01:00
KevinMidboe
dcaaeae51f
Get prizes only returns wines without a winner already.
2021-02-18 20:58:09 +01:00
KevinMidboe
9fd67a6bc3
Removed unused parameter.
2021-02-18 20:55:41 +01:00
KevinMidboe
70c80849df
No longer delete winner as part of selecting prize.
...
Winners are rather marked with prize_selected and have it's own endpoint
to remove all winners.
2021-02-18 20:54:15 +01:00
KevinMidboe
a28a8ccacb
When selecting prize, add winner to wine.
...
Changed the way we register a prize for winner.
Now we have a new prize_selected boolean field on a winner. This is
used to filter on when finding what winners have not selected a prize
yet. This also replaces the previous method of removing virtualWinners
after they selected a prize.
PrelotteryWine also get's a winner reference. This is used to filter on
when finding what prizes are left, and also makes it easier to
archive/register a lottery when the wine has a winner attached.
2021-02-18 20:50:30 +01:00
KevinMidboe
4bd3b688e9
Get wines by id or search with wine object.
...
Search with wine object tries to find wines matching name, year and id.
This is used for finding a wine from a prelottery wine where their _id
do not match.
2021-02-18 20:44:54 +01:00
KevinMidboe
930c458d9c
Search history for winner name.
2021-02-18 20:40:35 +01:00
KevinMidboe
787882e753
History ordered by wins has limit parameter.
2021-02-18 20:40:14 +01:00
KevinMidboe
68b4e96ad0
Import with lowercase name, it's not a class.
2021-02-18 20:39:27 +01:00
KevinMidboe
56d2513a9c
Incorrect history.js function called.
2021-02-18 20:38:49 +01:00
KevinMidboe
1c40fae69d
Repository gets new search winner by query func.
...
Has sort parameter that defaults to newest first.
2021-02-17 19:26:01 +01:00
KevinMidboe
bca4558d59
orderByWins has limit parameter to slice response
...
Limit the number of rows returned, used for frontpage where we display
max 20.
2021-02-17 19:21:33 +01:00
KevinMidboe
38eb98e68b
Sorting happens in mongo query, no longer in js.
2021-02-17 19:20:52 +01:00
KevinMidboe
c98ccbc3f0
We want a mongo instance of both winner and wine.
...
The inputs to these functions are objects, if we want to use mongoose we
need to get a new instance of wine and winner.
2021-02-17 19:19:13 +01:00
KevinMidboe
3d99a3e5f2
Wine repository gets function for all wines.
2021-02-17 19:17:36 +01:00
KevinMidboe
7292cf7983
Endpoint for getting wine schema.
...
This is for manual registration of prelottery wines from the admin page.
2021-02-15 22:38:22 +01:00
KevinMidboe
57fe7d444b
Used correct func name for wines from vinmonpolet.
2021-02-15 22:34:51 +01:00
KevinMidboe
cb4a30b5e9
BIGBOY rewrite.
...
All endpoints have been re-worked to be more clear on what they do. They
also all have their own controller now.
2021-01-26 23:05:52 +01:00
KevinMidboe
56095cb3e2
Linting.
2021-01-26 23:04:49 +01:00
KevinMidboe
b321f2cfdd
Fixed import location for redis.
2021-01-26 23:04:15 +01:00
KevinMidboe
ce480e790a
Replaced for clearer project structure & new ctrls.
...
These files where directly called from the api endpoints. Now all
functoins have been replaced with a controller interfacing to the
endpoint and a repository file for each of the functions.
2021-01-26 23:01:49 +01:00
KevinMidboe
ba86bf3ada
New custom errors to throw.
2021-01-26 23:01:18 +01:00
KevinMidboe
f4a16bc417
Removed always setting isAdmin true.
2021-01-26 23:01:08 +01:00
KevinMidboe
4c33708ff4
Made some required wine attributes optional.
2021-01-26 22:59:46 +01:00
KevinMidboe
87257fd5b2
Moved everything not lottery out.
...
Moved all logic related to lotteryAttendees, lotteryWinners and
prelotteryWines into each their repository and controller.
Now only holds draw, archive and get archived lotteries.
2021-01-26 22:58:41 +01:00
KevinMidboe
ac829052b6
Wine models now have extra year field.
2021-01-26 22:55:43 +01:00
KevinMidboe
1b1a99ccc3
Linting and more clear function names.
2021-01-26 22:43:18 +01:00
KevinMidboe
5e018f071d
Prize distribution for selecting wines.
...
Moved the same functionality out from lottery.js and simplified a bit.
Now the backend also sends with wines to pick from.
When hitting the controller we check that the user is the next user in
line.
2021-01-26 22:42:33 +01:00
KevinMidboe
939e7e34df
All CRUDS on winners for current lottery.
2021-01-26 22:37:36 +01:00
KevinMidboe
33070ae31a
Keeps more information when adding prelottery wine
2021-01-26 22:35:12 +01:00
KevinMidboe
6e02c5e393
Reflecting changes, isolated winner from lottery.
2021-01-26 22:32:14 +01:00