Wire up placeholder name change modal
This commit is contained in:
25
web/components/modals/NameChangeModal.tsx
Normal file
25
web/components/modals/NameChangeModal.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import { useRecoilValue } from 'recoil';
|
||||
import WebsocketService from '../../services/websocket-service';
|
||||
// import { setLocalStorage } from '../../utils/helpers';
|
||||
import { websocketServiceAtom } from '../stores/ClientConfigStore';
|
||||
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||
interface Props {}
|
||||
|
||||
export default function NameChangeModal(props: Props) {
|
||||
const websocketService = useRecoilValue<WebsocketService>(websocketServiceAtom);
|
||||
|
||||
// const handleNameChange = () => {
|
||||
// // Send name change
|
||||
// const nameChange = {
|
||||
// type: SOCKET_MESSAGE_TYPES.NAME_CHANGE,
|
||||
// newName,
|
||||
// };
|
||||
// websocketService.send(nameChange);
|
||||
|
||||
// // Store it locally
|
||||
// setLocalStorage(KEY_USERNAME, newName);
|
||||
// };
|
||||
|
||||
return <div>Name change modal component goes here</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user