feat(grfn/bbbg): Init
This will eventually become a signup sheet + no-show tracker for my local board game meetup group Change-Id: Id8d1d80d95d1e2fda5041275cff2fecfd6fa43f1
This commit is contained in:
parent
479e9ea279
commit
c3cb7b0df8
35 changed files with 2549 additions and 0 deletions
49
users/grfn/bbbg/resources/main.js
Normal file
49
users/grfn/bbbg/resources/main.js
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
window.onload = () => {
|
||||
console.log("loaded");
|
||||
const input = document.getElementById("name-autocomplete");
|
||||
if (input != null) {
|
||||
const eventID = document.getElementById("event-id").value;
|
||||
|
||||
const autocomplete = new autoComplete({
|
||||
selector: "#name-autocomplete",
|
||||
placeHolder: "Enter your name",
|
||||
data: {
|
||||
src: async (query) => {
|
||||
const resp = await fetch(
|
||||
`/attendees.json?q=${query}&event_id=${eventID}&attended=false`
|
||||
);
|
||||
console.log("got resp");
|
||||
const { results } = await resp.json();
|
||||
return results;
|
||||
},
|
||||
keys: ["bbbg.attendee/meetup-name"],
|
||||
},
|
||||
resultItem: {
|
||||
highlight: {
|
||||
render: true,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
input.addEventListener("selection", function (event) {
|
||||
const attendee = event.detail.selection.value;
|
||||
event.target.value = attendee["bbbg.attendee/meetup-name"];
|
||||
|
||||
const attendeeID = attendee["bbbg.attendee/id"];
|
||||
document.getElementById("attendee-id").value = attendeeID;
|
||||
document.getElementById("signup-form").removeAttribute("disabled");
|
||||
document
|
||||
.getElementById("signup-form")
|
||||
.querySelector('input[type="submit"]')
|
||||
.removeAttribute("disabled");
|
||||
});
|
||||
}
|
||||
|
||||
document.querySelectorAll("form").forEach((form) => {
|
||||
form.onsubmit = (e) => {
|
||||
if (e.target.attributes.disabled) {
|
||||
e.preventDefault();
|
||||
}
|
||||
};
|
||||
});
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue