This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function validateUsername(username) { | |
if (typeof username !== "string" || username.trim() === "") { | |
return { valid: false, reason: "Username is needed" }; | |
} | |
if (!username.match(/^\w+$/)) { | |
return { valid: false, reason: "Username must consist of characters and numbers" }; | |
} | |
const response = await fetch(`/api/checkusername/${username}`); // returns { available: true | false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function isUsernameAvailable(username) { | |
const response = await fetch(`/api/checkusername/${username}`); // returns { available: true | false } | |
return (await response.json()).available; | |
} | |
async function validateUsername(username, usernameUniquenessCheckFn) { | |
if (typeof username !== "string" || username.trim() === "") { | |
return { valid: false, reason: "Username is needed" }; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Returns a function which runs given checkFn against a value. | |
const createRule = (checkFn, errorMessage) => { | |
return async (value) => await Promise.resolve(checkFn(value)) ? null : errorMessage; | |
} | |
// Returns a function which accepts a value to validate and runs all passed rules. | |
const defineValidator = (...rules) => { | |
return async (value) => { | |
for (const rule of rules) { | |
const errorMessage = await rule(value); |
OlderNewer