-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
208 additions
and
93 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,20 @@ | ||
import { SetStateAction, Dispatch, useState, createContext, ChangeEvent } from "react" | ||
import { useMutation, useQueryClient } from "react-query"; | ||
import { postCSR } from "./queries"; | ||
import { extractCSR } from "./utils"; | ||
import { useCookies } from "react-cookie"; | ||
import { SetStateAction, Dispatch, createContext, useContext, ComponentType } from "react" | ||
|
||
type AsideContextType = { | ||
isOpen: boolean, | ||
setIsOpen: Dispatch<SetStateAction<boolean>> | ||
} | ||
export const AsideContext = createContext<AsideContextType>({ isOpen: false, setIsOpen: () => { } }); | ||
|
||
export function Aside({ isOpen, setIsOpen }: { isOpen: boolean, setIsOpen: Dispatch<SetStateAction<boolean>> }) { | ||
const [cookies, setCookie, removeCookie] = useCookies(['user_token']); | ||
const queryClient = useQueryClient() | ||
const mutation = useMutation(postCSR, { | ||
onSuccess: () => { | ||
queryClient.invalidateQueries('csrs') | ||
}, | ||
}) | ||
const [CSRPEMString, setCSRPEMString] = useState<string>("") | ||
const handleTextChange = (event: ChangeEvent<HTMLTextAreaElement>) => { | ||
setCSRPEMString(event.target.value); | ||
} | ||
const handleFileChange = (event: ChangeEvent<HTMLInputElement>) => { | ||
const file = event.target.files?.[0] | ||
if (file) { | ||
const reader = new FileReader(); | ||
reader.onload = (e: ProgressEvent<FileReader>) => { | ||
if (e.target) { | ||
if (e.target.result) { | ||
setCSRPEMString(e.target.result.toString()); | ||
} | ||
} | ||
}; | ||
reader.readAsText(file); | ||
} | ||
}; | ||
export const AsideContext = createContext<AsideContextType>({ | ||
isOpen: false, | ||
setIsOpen: () => { }, | ||
}); | ||
|
||
export function Aside({ FormComponent, formProps }: { FormComponent: React.ComponentType<any>, formProps: any }) { | ||
const asideContext = useContext(AsideContext) | ||
return ( | ||
<aside className={"l-aside" + (isOpen ? "" : " is-collapsed")} id="aside-panel" aria-label="aside-panel" > | ||
<div className="p-panel"> | ||
<div className="p-panel__header"> | ||
<h4 className="p-panel__title">Add a New Certificate Request</h4> | ||
<div className="p-panel__controls"> | ||
<button onClick={() => setIsOpen(false)} className="p-button--base u-no-margin--bottom has-icon"><i className="p-icon--close"></i></button> | ||
</div> | ||
</div> | ||
<div className="p-panel__content"> | ||
<form className="p-form p-form--stacked"> | ||
<div className="p-form__group row"> | ||
<label htmlFor="textarea"> | ||
Enter or upload the CSR in PEM format below | ||
</label> | ||
<textarea id="csr-textarea" name="textarea" rows={10} placeholder="-----BEGIN CERTIFICATE REQUEST-----" onChange={handleTextChange} value={CSRPEMString} /> | ||
</div> | ||
<div className="p-form__group row"> | ||
<input type="file" name="upload" accept=".pem,.csr" onChange={handleFileChange}></input> | ||
</div> | ||
<div className="p-form__group row"> | ||
<SubmitCSR csrText={CSRPEMString} onClickFunc={() => mutation.mutate({ authToken: cookies.user_token, csr: CSRPEMString })} /> | ||
</div> | ||
</form> | ||
</div> | ||
</div > | ||
<aside className={"l-aside" + (asideContext.isOpen ? "" : " is-collapsed")} id="aside-panel" aria-label="aside-panel" > | ||
<FormComponent {...formProps} /> | ||
</aside > | ||
) | ||
} | ||
|
||
function SubmitCSR({ csrText, onClickFunc }: { csrText: string, onClickFunc: any }) { | ||
let csrIsValid = false | ||
try { | ||
extractCSR(csrText.trim()) | ||
csrIsValid = true | ||
} | ||
catch { } | ||
|
||
const validationComponent = csrText == "" ? <></> : csrIsValid ? <div><i className="p-icon--success"></i>Valid CSR</div> : <div><i className="p-icon--error"></i>Invalid CSR</div> | ||
const buttonComponent = csrIsValid ? <button className="p-button--positive u-float-right" name="submit" onClick={onClickFunc} >Submit</button> : <button className="p-button--positive u-float-right" name="submit" disabled={true} onClick={onClickFunc} >Submit</button> | ||
return ( | ||
<> | ||
{validationComponent} | ||
{buttonComponent} | ||
</> | ||
) | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import { useMutation, useQueryClient } from "react-query"; | ||
import { extractCSR } from "../utils"; | ||
import { useCookies } from "react-cookie"; | ||
import { postCSR } from "../queries"; | ||
import { ChangeEvent, useContext, useState } from "react"; | ||
import { AsideContext } from "../aside"; | ||
|
||
export default function UploadCSRAsidePanel(): JSX.Element { | ||
const asideContext = useContext(AsideContext) | ||
const [cookies, setCookie, removeCookie] = useCookies(['user_token']); | ||
const queryClient = useQueryClient() | ||
const mutation = useMutation(postCSR, { | ||
onSuccess: () => { | ||
queryClient.invalidateQueries('csrs') | ||
}, | ||
}) | ||
const [CSRPEMString, setCSRPEMString] = useState<string>("") | ||
const handleTextChange = (event: ChangeEvent<HTMLTextAreaElement>) => { | ||
setCSRPEMString(event.target.value); | ||
} | ||
const handleFileChange = (event: ChangeEvent<HTMLInputElement>) => { | ||
const file = event.target.files?.[0] | ||
if (file) { | ||
const reader = new FileReader(); | ||
reader.onload = (e: ProgressEvent<FileReader>) => { | ||
if (e.target) { | ||
if (e.target.result) { | ||
setCSRPEMString(e.target.result.toString()); | ||
} | ||
} | ||
}; | ||
reader.readAsText(file); | ||
} | ||
}; | ||
return ( | ||
<div className="p-panel" > | ||
<div className="p-panel__header"> | ||
<h4 className="p-panel__title">Add a New Certificate Request</h4> | ||
<div className="p-panel__controls"> | ||
<button onClick={() => asideContext.setIsOpen(false)} className="p-button--base u-no-margin--bottom has-icon"><i className="p-icon--close"></i></button> | ||
</div> | ||
</div> | ||
<div className="p-panel__content"> | ||
<form className="p-form p-form--stacked"> | ||
<div className="p-form__group row"> | ||
<label htmlFor="textarea"> | ||
Enter or upload the CSR in PEM format below | ||
</label> | ||
<textarea id="csr-textarea" name="textarea" rows={10} placeholder="-----BEGIN CERTIFICATE REQUEST-----" onChange={handleTextChange} value={CSRPEMString} /> | ||
</div> | ||
<div className="p-form__group row"> | ||
<input type="file" name="upload" accept=".pem,.csr" onChange={handleFileChange}></input> | ||
</div> | ||
<div className="p-form__group row"> | ||
<SubmitCSR csrText={CSRPEMString} onClickFunc={() => mutation.mutate({ authToken: cookies.user_token, csr: CSRPEMString })} /> | ||
</div> | ||
</form> | ||
</div> | ||
</div > | ||
) | ||
} | ||
|
||
function SubmitCSR({ csrText, onClickFunc }: { csrText: string, onClickFunc: any }) { | ||
let csrIsValid = false | ||
try { | ||
extractCSR(csrText.trim()) | ||
csrIsValid = true | ||
} | ||
catch { } | ||
|
||
const validationComponent = csrText == "" ? <></> : csrIsValid ? <div><i className="p-icon--success"></i>Valid CSR</div> : <div><i className="p-icon--error"></i>Invalid CSR</div> | ||
const buttonComponent = csrIsValid ? <button className="p-button--positive u-float-right" name="submit" onClick={onClickFunc} >Submit</button> : <button className="p-button--positive u-float-right" name="submit" disabled={true} onClick={onClickFunc} >Submit</button> | ||
return ( | ||
<> | ||
{validationComponent} | ||
{buttonComponent} | ||
</> | ||
) | ||
} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
import { useMutation, useQueryClient } from "react-query"; | ||
import { extractCSR } from "../utils"; | ||
import { useCookies } from "react-cookie"; | ||
import { postUser } from "../queries"; | ||
import { ChangeEvent, useContext, useState } from "react"; | ||
import { AsideContext } from "../aside"; | ||
import { useAuth } from "../auth/authContext"; | ||
|
||
export default function UploadUserAsidePanel() { | ||
const asideContext = useContext(AsideContext) | ||
const auth = useAuth() | ||
const queryClient = useQueryClient() | ||
const mutation = useMutation(postUser, { | ||
onSuccess: () => { | ||
queryClient.invalidateQueries('users') | ||
setErrorText("") | ||
}, | ||
onError: (e: Error) => { | ||
setErrorText(e.message) | ||
} | ||
}) | ||
const [username, setUsername] = useState<string>("") | ||
const [password1, setPassword1] = useState<string>("") | ||
const [password2, setPassword2] = useState<string>("") | ||
const passwordsMatch = password1 === password2 | ||
const [errorText, setErrorText] = useState<string>("") | ||
const handleUsernameChange = (event: ChangeEvent<HTMLInputElement>) => { setUsername(event.target.value) } | ||
const handlePassword1Change = (event: ChangeEvent<HTMLInputElement>) => { setPassword1(event.target.value) } | ||
const handlePassword2Change = (event: ChangeEvent<HTMLInputElement>) => { setPassword2(event.target.value) } | ||
return ( | ||
<div className="p-panel" > | ||
<div className="p-panel__header"> | ||
<h4 className="p-panel__title">Add a New User</h4> | ||
<div className="p-panel__controls"> | ||
<button onClick={() => asideContext.setIsOpen(false)} className="p-button--base u-no-margin--bottom has-icon"><i className="p-icon--close"></i></button> | ||
</div> | ||
</div> | ||
<div className="p-panel__content"> | ||
<form className={"p-form-validation " + (!passwordsMatch ? "is-error" : "")}> | ||
<div className="p-form__group row"> | ||
<label className="p-form__label">User Name</label> | ||
<input type="text" id="InputUsername" name="InputUsername" onChange={handleUsernameChange} /> | ||
<label className="p-form__label">Password</label> | ||
<input className="p-form-validation__input" type="password" id="password1" name="password" placeholder="******" autoComplete="current-password" required={true} onChange={handlePassword1Change} /> | ||
<p className="p-form-help-text"> | ||
Password must have 8 or more characters, must include at least one capital letter, one lowercase letter, and either a number or a symbol. | ||
</p> | ||
<label htmlFor="p-form__label">Password Again</label> | ||
<input className="p-form-validation__input" type="password" id="InputPassword" name="password2" placeholder="******" autoComplete="current-password" onChange={handlePassword2Change} /> | ||
{!passwordsMatch && <p className="p-form-validation__message">Passwords do not match</p>} | ||
{errorText && | ||
<div className="p-notification--negative"> | ||
<div className="p-notification__content"> | ||
<h5 className="p-notification__title">Error</h5> | ||
<p className="p-notification__message">{errorText.split("error: ")}</p> | ||
</div> | ||
</div> | ||
} | ||
{!passwordsMatch ? ( | ||
<> | ||
<button type="submit" name="submit" disabled={true}>Submit</button> | ||
</> | ||
) : ( | ||
<button type="submit" name="submit" onClick={(event) => { event.preventDefault(); mutation.mutate({ authToken: (auth.user ? auth.user.authToken : ""), username: username, password: password1 }) }}>Submit</button> | ||
) | ||
} | ||
</div> | ||
</form> | ||
</div> | ||
</div > | ||
) | ||
} | ||
|
||
// function SubmitUser({ csrText, onClickFunc }: { csrText: string, onClickFunc: any }) { | ||
// const validationComponent = csrText == "" ? <></> : csrIsValid ? <div><i className="p-icon--success"></i>Valid CSR</div> : <div><i className="p-icon--error"></i>Invalid CSR</div> | ||
// const buttonComponent = csrIsValid ? <button className="p-button--positive u-float-right" name="submit" onClick={onClickFunc} >Submit</button> : <button className="p-button--positive u-float-right" name="submit" disabled={true} onClick={onClickFunc} >Submit</button> | ||
// return ( | ||
// <> | ||
// {validationComponent} | ||
// {buttonComponent} | ||
// </> | ||
// ) | ||
// } |
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