Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update workflow file #79

Merged
merged 43 commits into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
0c216e8
QR Code View init (#3)
DonChiaQE Jun 30, 2023
b57dcde
Add Home, Room Check-in (#5)
shaunBoahCodes Jul 3, 2023
18caaf2
UI: added menu, improve form flow (#6)
cweitat Jul 6, 2023
42a0163
Update SearchAttendee.vue (#16)
shaunBoahCodes Jul 8, 2023
4d88b13
fix #14 Password Prompt added (#17)
DonChiaQE Jul 8, 2023
b563bb1
Update ScanSearch (#18)
shaunBoahCodes Jul 8, 2023
7b95172
Renamed and Relocated Modal Files (#19)
DonChiaQE Jul 8, 2023
f450211
Flex UI fixed (#20)
DonChiaQE Jul 8, 2023
fac027b
Fixed navbar in manual registration (#21)
shaunBoahCodes Jul 10, 2023
fb5f013
Removed lower navbar, added stats to dropdown menu and fixed password…
shaunBoahCodes Jul 11, 2023
9904079
Create LICENSE
mariobehling Jul 11, 2023
28e859f
reformatting + shifting cam icon from cam overview
cweitat Jul 12, 2023
609a84e
Fix #13 added checklist to let user select fields to print (#28)
DonChiaQE Jul 14, 2023
8d4dc39
Loading View added
DonChiaQE Jul 14, 2023
4bede01
Updated spinner to tailwind
DonChiaQE Jul 15, 2023
9e7ab0e
Fix #9 Auth and API added (#29)
DonChiaQE Jul 15, 2023
da992f6
Fix #36 404 page (#37)
DonChiaQE Jul 15, 2023
2ba7eb6
Fix #31 Added dropdown list to allow user to choose which details to …
shaunBoahCodes Jul 16, 2023
18d05cf
Fix #48 created standard button component and replace some buttons (#54)
shaunBoahCodes Jul 19, 2023
b977104
Fix #40 standardised all pages to p-6 except pages with scanners. als…
shaunBoahCodes Jul 22, 2023
f9ff2ea
Fix #50 #51 #52 print button works. print modal new layout. success n…
shaunBoahCodes Jul 24, 2023
49b0dd5
fixed #49 #46 ported everything to stores (#58)
shaunBoahCodes Jul 26, 2023
6257a11
update eslint config to include script setup vars
cweitat Jul 29, 2023
4ded965
update eslint package to vue highest tier
cweitat Jul 29, 2023
dbc5cd3
refactoring for existing files
cweitat Jul 29, 2023
fe35c97
fix #59 #53 implement APIs for search and logout functions (#60)
shaunBoahCodes Jul 29, 2023
f744a7d
remove redundancy in api calling (#65)
cweitat Jul 31, 2023
5d5df33
Fix #61 implemented API for checking in attendees in registration via…
shaunBoahCodes Jul 31, 2023
46f2b92
delete useless icons
cweitat Jul 31, 2023
61b7299
fix #68 implemented better error handling for logout function (#69)
shaunBoahCodes Aug 1, 2023
92b0b2b
Fix #66 type selector changes according to selection (#70)
cweitat Aug 1, 2023
bb96d16
revert microlocation needed for route
cweitat Aug 2, 2023
0c18cb0
patch for selector
cweitat Aug 2, 2023
249280f
fix #71 (#72)
cweitat Aug 2, 2023
c0e1d09
force sign out user on first load if unreachable
cweitat Aug 2, 2023
1b5ef6c
update favicon and project title
cweitat Aug 2, 2023
04bf7ea
fix #73 navbar dropdown fixed on small screen (#74)
shaunBoahCodes Aug 3, 2023
439fe18
Fix #63 implemented API for session check in (#77)
shaunBoahCodes Aug 4, 2023
ef30bd9
include base for vite config
cweitat Aug 4, 2023
449b16e
Merge branch 'develop' of https://github.com/fossasia/open-event-chec…
cweitat Aug 4, 2023
b1aef9c
create gh actions for deply pages
cweitat Aug 4, 2023
ccc96f3
Update main.yml
cweitat Aug 4, 2023
8ea8f6d
Merge branch 'main' into develop
cweitat Aug 4, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Flex UI fixed (#20)
* fix #14 Password Prompt added

* Update NavBar.vue

* Update App.vue

* Renamed and Relocated Modal Files

* Update SearchAttendee.vue

* Flex UI fixed

* Update SearchAttendee.vue
  • Loading branch information
DonChiaQE committed Jul 8, 2023
commit f450211e47ea8769cac245cdd45340c57c925625
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import NavBar from '@/components/NavBar.vue'
<template>
<div class="flex flex-col h-screen">
<NavBar />
<div class="mx-3 grow">
<RouterView class="h-full" />
<div class="mx-3 grow flex">
<RouterView class="grow flex flex-col" />
</div>
</div>
</template>
2 changes: 1 addition & 1 deletion src/components/QRScanner/ScannedStats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const trackStats = [
</script>

<template>
<div>
<div class="grow">
<div class="py-2 space-y-3">
<h2 class="text-center text-xl font-bold capitalize">Stats</h2>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/QRScanner/ScannerCamera.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async function logErrors(promise) {
</script>

<template>
<div>
<div class="grow">
<div class="py-2 space-y-3">
<h2 class="text-center text-xl font-bold capitalize">{{ scannerType }} Scan</h2>
<p class="text-center text-lg font-medium">Scan QR on badge</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Registration/Manual/RegistrationStats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const overallStats = [
</script>

<template>
<div>
<div class="grow">
<div class="py-2">
<h2 class="text-center text-xl font-bold capitalize">Stats</h2>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Registration/Manual/ScanSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ async function logErrors(promise) {
</script>

<template>
<div class="mx-auto max-w-7xl sm:px-6 lg:px-8">
<div class="mx-auto max-w-7xl sm:px-6 lg:px-8 grow">
<div
class="mx-auto flex max-w-2xl flex-col gap-16 bg-white/5 px-6 py-16 ring-1 ring-white/10 sm:rounded-3xl sm:p-8 lg:mx-0 lg:max-w-none lg:flex-row lg:items-center lg:py-20 xl:gap-x-20 xl:px-20"
class="mx-auto flex h-full max-w-2xl flex-col gap-16 bg-white/5 px-6 py-16 ring-1 ring-white/10 sm:rounded-3xl sm:p-8 lg:mx-0 lg:max-w-none lg:flex-row lg:items-center lg:py-20 xl:gap-x-20 xl:px-20"
>
<qrcode-stream
:key="componentKey"
class="h-96 w-full flex-none rounded-2xl shadow-xl aspect-square lg:h-auto lg:max-w-sm"
class="w-full aspect-square sm:!w-3/4 sm:!p-0 md:!h-2/3 md:!w-auto"
:track="selected.value"
@init="logErrors"
:camera="camera"
Expand Down
24 changes: 21 additions & 3 deletions src/components/Registration/Manual/SearchAttendee.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,24 @@ const items = [
organisation: 'SUSS AI-IG',
checkedIn: ref(false)
},
{
id: 3,
name: 'Don Chia',
position: 'Chairperson',
role: 'Organiser',
email: '[email protected]',
organisation: 'SUSS AI-IG',
checkedIn: ref(false)
},
{
id: 3,
name: 'Don Chia',
position: 'Chairperson',
role: 'Organiser',
email: '[email protected]',
organisation: 'SUSS AI-IG',
checkedIn: ref(false)
},
{
id: 3,
name: 'Don Chia',
Expand All @@ -54,7 +72,7 @@ const items = [
<div class="mx-auto max-w-2xl sm:px-6 lg:px-8">
<label
for="search"
class="block flex items-center justify-center text-lg font-medium leading-10 text-gray-900"
class="flex items-center justify-center text-lg font-medium leading-10 text-gray-900"
>
<MagnifyingGlassIcon class="h-6 mr-2" aria-hidden="true" />
<span>Enter my information</span>
Expand All @@ -80,11 +98,11 @@ const items = [
</div>

<div class="mx-auto max-w-2xl sm:px-6 lg:px-8 overflow-visible mt-6">
<ul role="list" class="space-y-3">
<ul role="list" class="space-y-3 h-96 overflow-scroll">
<li
v-for="item in items"
:key="item.id"
class="overflow-hidden rounded-2xl bg-white px-6 py-4 shadow border border-gray-300 space-y-2"
class="rounded-2xl bg-white px-6 py-4 shadow border border-gray-300 space-y-2"
>
<div class="flex items-center justify-between gap-2">
<div class="flex flex-col gap-2">
Expand Down