 c1d90eb438
			
		
	
	
		c1d90eb438
		
			
		
	
	
	
	
		
			
			* [WIP] checkpoint before pull & merge - Added teams to sidebar - Refactored team settings - Improved team list UI This code will be partly reverted next commit. * [WIP] - Moved team code back to components - Removed team link from sidebar - Built new team manager screen based on Event Type designs - Component-ized frequently reused code (SettingInputContainer, FlatIconButton) * [WIP] - Created LinkIconButton as standalone component - Added functionality to sidebar of team settings - Fixed type bug on public team page induced by my normalization of members array in team query - Removed teams-old which was kept as refrence - Cleaned up loose ends * [WIP] - added create team model - fixed profile missing label due to my removal of default label from component * [WIP] - Fixed TeamCreateModal trigger - removed TeamShell, it didn't make the cut - added getPlaceHolderAvatar - renamed TeamCreate to TeamCreateModal - removed deprecated UsernameInput and replaced uses with suggested TextField * fix save button * [WIP] - Fixed drop down actions on team list - Cleaned up state updates * [WIP] converting teams to tRPC * [WIP] Finished refactor to tRPC * [WIP] Finishing touches * [WIP] Team availability beginning * team availability mvp * - added validation to change role - modified layout of team availability - corrected types * fix ui issue on team availability screen * - added virtualization to team availability - added flexChildrenContainer boolean to Shell to allow for flex on children * availability style fix * removed hard coded team type as teams now use inferred type from tRPC * Removed unneeded vscode settings * Reverted prisma schema * Fixed migrations * Removes unused dayjs plugins * Reverts type regression * Type fix * Type fixes * Type fixes * Moves team availability code to ee Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: zomars <zomars@me.com>
		
			
				
	
	
		
			86 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { MembershipRole } from "@prisma/client";
 | |
| import { useState } from "react";
 | |
| import React, { SyntheticEvent } from "react";
 | |
| 
 | |
| import { useLocale } from "@lib/hooks/useLocale";
 | |
| import { trpc } from "@lib/trpc";
 | |
| 
 | |
| import Button from "@components/ui/Button";
 | |
| import ModalContainer from "@components/ui/ModalContainer";
 | |
| 
 | |
| export default function MemberChangeRoleModal(props: {
 | |
|   memberId: number;
 | |
|   teamId: number;
 | |
|   initialRole: MembershipRole;
 | |
|   onExit: () => void;
 | |
| }) {
 | |
|   const [role, setRole] = useState(props.initialRole || MembershipRole.MEMBER);
 | |
|   const [errorMessage, setErrorMessage] = useState("");
 | |
|   const { t } = useLocale();
 | |
|   const utils = trpc.useContext();
 | |
| 
 | |
|   const changeRoleMutation = trpc.useMutation("viewer.teams.changeMemberRole", {
 | |
|     async onSuccess() {
 | |
|       await utils.invalidateQueries(["viewer.teams.get"]);
 | |
|       props.onExit();
 | |
|     },
 | |
|     async onError(err) {
 | |
|       setErrorMessage(err.message);
 | |
|     },
 | |
|   });
 | |
| 
 | |
|   function changeRole(e: SyntheticEvent) {
 | |
|     e.preventDefault();
 | |
| 
 | |
|     changeRoleMutation.mutate({
 | |
|       teamId: props.teamId,
 | |
|       memberId: props.memberId,
 | |
|       role,
 | |
|     });
 | |
|   }
 | |
| 
 | |
|   return (
 | |
|     <ModalContainer>
 | |
|       <>
 | |
|         <div className="mb-4 sm:flex sm:items-start">
 | |
|           <div className="text-center sm:text-left">
 | |
|             <h3 className="text-lg font-medium leading-6 text-gray-900" id="modal-title">
 | |
|               {t("change_member_role")}
 | |
|             </h3>
 | |
|           </div>
 | |
|         </div>
 | |
|         <form onSubmit={changeRole}>
 | |
|           <div className="mb-4">
 | |
|             <label className="block mb-2 text-sm font-medium tracking-wide text-gray-700" htmlFor="role">
 | |
|               {t("role")}
 | |
|             </label>
 | |
|             <select
 | |
|               value={role}
 | |
|               onChange={(e) => setRole(e.target.value as MembershipRole)}
 | |
|               id="role"
 | |
|               className="block w-full mt-1 border-gray-300 rounded-md shadow-sm focus:ring-black focus:border-brand sm:text-sm">
 | |
|               <option value="MEMBER">{t("member")}</option>
 | |
|               <option value="ADMIN">{t("admin")}</option>
 | |
|               <option value="OWNER">{t("owner")}</option>
 | |
|             </select>
 | |
|           </div>
 | |
| 
 | |
|           {errorMessage && (
 | |
|             <p className="text-sm text-red-700">
 | |
|               <span className="font-bold">Error: </span>
 | |
|               {errorMessage}
 | |
|             </p>
 | |
|           )}
 | |
|           <div className="mt-5 sm:mt-4 sm:flex sm:flex-row-reverse">
 | |
|             <Button type="submit" color="primary" className="ml-2">
 | |
|               {t("save")}
 | |
|             </Button>
 | |
|             <Button type="button" color="secondary" onClick={props.onExit}>
 | |
|               {t("cancel")}
 | |
|             </Button>
 | |
|           </div>
 | |
|         </form>
 | |
|       </>
 | |
|     </ModalContainer>
 | |
|   );
 | |
| }
 |