More date input updates
This commit is contained in:
parent
6774868dfc
commit
3d34acc77a
@ -82,14 +82,14 @@ function TournamentForm(props) {
|
||||
event.preventDefault();
|
||||
console.log(maxTeamsExponent)
|
||||
let maxTeams = Math.pow(2, maxTeamsExponent);
|
||||
let startTime = new Date(startTime).toUTCString();
|
||||
let endTime = new Date(endTime).toUTCString();
|
||||
let tournamentStart = new Date(startTime).toUTCString();
|
||||
let tournamentEnd = new Date(endTime).toUTCString();
|
||||
postTournament(
|
||||
props.showError,
|
||||
document.getElementById("nameInput").value,
|
||||
document.getElementById("descriptionInput").value,
|
||||
startTime,
|
||||
endTime,
|
||||
tournamentStart,
|
||||
tournamentEnd,
|
||||
maxTeams
|
||||
);
|
||||
console.log(startTime, endTime);
|
||||
@ -114,33 +114,19 @@ function TournamentForm(props) {
|
||||
<TextField type="text" multiline={true} id="descriptionInput" label="Description" placeholder="Description" InputLabelProps={{shrink: true}}/>
|
||||
<Box>
|
||||
<LocalizationProvider dateAdapter={AdapterDateFns}>
|
||||
<DateTimePicker
|
||||
label={"Start Time"}
|
||||
inputVariant="outlined"
|
||||
ampm={false}
|
||||
mask="____-__-__ __:__"
|
||||
format="yyyy-MM-dd HH:mm"
|
||||
inputFormat="yyyy-MM-dd HH:mm"
|
||||
value={startTime}
|
||||
<DateTimePicker label={"Start Time"} inputVariant="outlined" ampm={false} mask="____-__-__ __:__" format="yyyy-MM-dd HH:mm" inputFormat="yyyy-MM-dd HH:mm" value={startTime}
|
||||
onChange={(newValue) => {
|
||||
setStartTime(newValue);
|
||||
console.log(new Date(newValue).toUTCString());
|
||||
// console.log(new Date(newValue).toUTCString());
|
||||
}}
|
||||
renderInput={(params) => <TextField id="startDatePicker" {...params} />}
|
||||
/>
|
||||
</LocalizationProvider>
|
||||
<LocalizationProvider dateAdapter={AdapterDateFns}>
|
||||
<DateTimePicker
|
||||
label={"End Time"}
|
||||
inputVariant="outlined"
|
||||
ampm={false}
|
||||
mask="____-__-__ __:__"
|
||||
format="yyyy-MM-dd HH:mm"
|
||||
inputFormat="yyyy-MM-dd HH:mm"
|
||||
value={endTime}
|
||||
<DateTimePicker label={"End Time"} inputVariant="outlined" ampm={false} mask="____-__-__ __:__" format="yyyy-MM-dd HH:mm" inputFormat="yyyy-MM-dd HH:mm" value={endTime}
|
||||
onChange={(newValue) => {
|
||||
setEndTime(newValue);
|
||||
console.log(new Date(newValue).toUTCString());
|
||||
// console.log(new Date(newValue).toUTCString());
|
||||
}}
|
||||
renderInput={(params) => <TextField id="endDatePicker" {...params} />}
|
||||
/>
|
||||
|
@ -131,7 +131,7 @@ function ManageTournament(props) {
|
||||
<Stack sx={{minHeight: "30vh", margin: "10px auto"}} direction="column" justifyContent="center" spacing={2} align="center">
|
||||
<TextField type="text" id="editName" label="Edit Name:" placeholder="Edit Name" InputLabelProps={{shrink: true}}/>
|
||||
<TextField type="text" multiline={true} id="editDesc" label="Edit Description:" placeholder="Edit Description" InputLabelProps={{shrink: true}} />
|
||||
<Box>
|
||||
<Box sx={{flexGrow: 1}}>
|
||||
<LocalizationProvider dateAdapter={AdapterDateFns}>
|
||||
<DateTimePicker label={"Start Time"} inputVariant="outlined" ampm={false} mask="____-__-__ __:__" format="yyyy-MM-dd HH:mm" inputFormat="yyyy-MM-dd HH:mm" value={startTime}
|
||||
onChange={(newValue) => {
|
||||
|
Loading…
Reference in New Issue
Block a user