Fixed date issue with models.
This commit is contained in:
parent
5d2528da5f
commit
9c4696b797
@ -2,6 +2,7 @@ import React from "react";
|
||||
import { Alert, Button, Card, Container, Form } from "react-bootstrap";
|
||||
import { Link } from "react-router-dom";
|
||||
import validator from "validator";
|
||||
import globals from "../globals";
|
||||
import { apiClient } from "../utils/httpClients";
|
||||
|
||||
export default class Signup extends React.Component {
|
||||
@ -27,9 +28,10 @@ export default class Signup extends React.Component {
|
||||
this.setUserState = this.setUserState.bind(this);
|
||||
}
|
||||
|
||||
static contextType = globals;
|
||||
|
||||
async registerUser(event) {
|
||||
event.preventDefault(); // We need this so that the page doesn't refresh.
|
||||
event.preventDefault();
|
||||
let formIssues = this.validateCurrentForm();
|
||||
if (formIssues.length > 0) {
|
||||
this.notifyUser("Oops there were issue(s)", (
|
||||
@ -47,7 +49,10 @@ export default class Signup extends React.Component {
|
||||
const res = await apiClient.post("/user", this.state.user);
|
||||
console.log(res.data);
|
||||
if (res.status === 201) {
|
||||
this.notifyUser("Success!", <div>You are successfully signed up! You <Link to="/login">can now go log in</Link>.</div>, "success");
|
||||
this.notifyUser("Success!", <div>You are successfully signed up! You wil be directed to <Link to="/login">login</Link> now.</div>, "success");
|
||||
this.redirectTimer = setTimeout(() => {
|
||||
this.context.navigate("/signin", { replace: true });
|
||||
}, 1000);
|
||||
} else if (res.status === 409) {
|
||||
this.notifyUser("User exists!", <div>This user already exists. Try <Link to="/login">logging in</Link> instead.</div>, "danger");
|
||||
} else if (res.status === 400) {
|
||||
@ -57,6 +62,10 @@ export default class Signup extends React.Component {
|
||||
}
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
clearTimeout(this.redirectTimer);
|
||||
}
|
||||
|
||||
validateCurrentForm() {
|
||||
console.log(this.state);
|
||||
let formIssues = [];
|
||||
@ -104,8 +113,8 @@ export default class Signup extends React.Component {
|
||||
</Alert>
|
||||
<Card style={{ width: "35rem" }}>
|
||||
<Card.Body>
|
||||
<Card.Title>Login</Card.Title>
|
||||
<Card.Subtitle>Welcome to Sports Matcher!</Card.Subtitle>
|
||||
<Card.Title>Sign up!</Card.Title>
|
||||
<Card.Subtitle>Welcome to Sports Matcher! Already <Link to="/login">have an account</Link>?</Card.Subtitle>
|
||||
<Form onSubmit={this.registerUser}>
|
||||
<Form.Group className="mb-3" controlId="firstName">
|
||||
<Form.Label>First name</Form.Label>
|
||||
|
@ -1,5 +1,5 @@
|
||||
import express from "express";
|
||||
import { requireAuthenticated } from "../middleware/authority.js";
|
||||
import { requireAdmin, requireAuthenticated } from "../middleware/authority.js";
|
||||
import { needDatabase } from "../middleware/database.js";
|
||||
import matchModel from "../schemas/matchModel.js";
|
||||
import sportModel from "../schemas/sportModel.js";
|
||||
@ -46,6 +46,16 @@ MatchController.get("/recent/:limit?", needDatabase, async (req, res) => {
|
||||
}
|
||||
});
|
||||
|
||||
MatchController.get("/all", requireAdmin, async (req, res) => {
|
||||
try {
|
||||
const allmatches = await matchModel.find().populate("sport");
|
||||
res.status(200).send({ all: allmatches });
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
res.status(500).send("Internal server error.");
|
||||
}
|
||||
});
|
||||
|
||||
MatchController.get("/recent/user/:limit", needDatabase, requireAuthenticated, async (req, res) => {
|
||||
try {
|
||||
let user = req.user;
|
||||
|
@ -1,5 +1,4 @@
|
||||
import express from "express";
|
||||
import validator from "validator";
|
||||
import { requireAdmin, requireAuthenticated } from "../middleware/authority.js";
|
||||
import { needDatabase } from "../middleware/database.js";
|
||||
import userModel from "../schemas/userModel.js";
|
||||
@ -125,14 +124,20 @@ UserController.patch("/:id?", needDatabase, requireAuthenticated, async (req, re
|
||||
}
|
||||
});
|
||||
|
||||
UserController.get("/all", requireAdmin, async (req, res) => {
|
||||
try {
|
||||
let all = await userModel.find();
|
||||
res.status(200).send({ all: all });
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
res.status(500).send("Internal server error");
|
||||
}
|
||||
});
|
||||
|
||||
UserController.get("/all/active", requireAdmin, async (req, res) => {
|
||||
try {
|
||||
if (req.user.accessLevel < 3) {
|
||||
res.status(401).send("You do not have the required privileges.");
|
||||
return;
|
||||
}
|
||||
let res = await userModel.find().where("suspend").lt(Date.now);
|
||||
res.status(200).send({ all: res });
|
||||
let active = await userModel.find().where("suspend").lt(Date.now());
|
||||
res.status(200).send({ active: active });
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
res.status(500).send("Internal server error");
|
||||
@ -141,8 +146,8 @@ UserController.get("/all/active", requireAdmin, async (req, res) => {
|
||||
|
||||
UserController.get("/all/suspended", requireAuthenticated, async (req, res) => {
|
||||
try {
|
||||
let res = await userModel.find().where("suspend").gte(Date.now);
|
||||
res.status(200).send({ suspended: res });
|
||||
let suspended = await userModel.find().where("suspend").gte(Date.now());
|
||||
res.status(200).send({ suspended: suspended });
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
res.status(500).send("Internal server error");
|
||||
|
@ -21,7 +21,7 @@ const matchSchema = new mongoose.Schema({
|
||||
participants: { type: [{ type: Types.ObjectId, ref: ModelNameRegister.User }], required: true, default: [] },
|
||||
difficulty: { type: Number, required: true },
|
||||
sport: { type: Types.ObjectId, ref: ModelNameRegister.Sport },
|
||||
createDate: { type: Date, required: true, default: Date.now }
|
||||
createDate: { type: Date, required: true, default: Date.now() }
|
||||
});
|
||||
|
||||
matchSchema.pre("remove", function (next) {
|
||||
|
@ -8,7 +8,7 @@ const rentalSchema = new mongoose.Schema({
|
||||
rate: { type: String, required: true, trim: true },
|
||||
description: { type: String, required: true },
|
||||
contact: { type: String, required: true },
|
||||
createDate: { type: Date, required: true, default: Date.now },
|
||||
createDate: { type: Date, required: true, default: Date.now() },
|
||||
creator: { type: Types.ObjectId, ref: modelNameRegister.User }
|
||||
});
|
||||
|
||||
|
@ -19,7 +19,7 @@ const userSchema = new mongoose.Schema({
|
||||
},
|
||||
firstName: { type: String, required: true, trim: true },
|
||||
lastName: { type: String, required: true, trim: true },
|
||||
joinDate: { type: Date, default: Date.now, required: true },
|
||||
joinDate: { type: Date, default: Date.now(), required: true },
|
||||
phone: { type: Number, required: false, min: 0 },
|
||||
password: {
|
||||
type: String,
|
||||
@ -36,7 +36,7 @@ const userSchema = new mongoose.Schema({
|
||||
participatingMatchesPublicity: { type: Boolean, required: true, default: false },
|
||||
friends: { type: Types.ObjectId, ref: modelNameRegister.User },
|
||||
accessLevel: { type: Number, required: true, default: 0 },
|
||||
suspend: { type: Date, required: true, default: Date.now } // suspend the user until the when the user was created.
|
||||
suspend: { type: Date, required: true, default: Date.now() } // suspend the user until the when the user was created.
|
||||
});
|
||||
|
||||
userSchema.statics.credentialsExist = async function (email, password) {
|
||||
|
Loading…
Reference in New Issue
Block a user