-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3255 from mozilla/redesign/leave-room-modal
Room UI Redesign: Leave Room Modal
- Loading branch information
Showing
8 changed files
with
94 additions
and
48 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,53 @@ | ||
import React from "react"; | ||
import styles from "./LeaveRoomModal.scss"; | ||
import { useIntl, defineMessages } from "react-intl"; | ||
import PropTypes from "prop-types"; | ||
import { Modal } from "../modal/Modal"; | ||
import { CloseButton } from "../input/CloseButton"; | ||
import { Button } from "../input/Button"; | ||
|
||
export const LeaveReason = { | ||
joinRoom: "joinRoom", | ||
createRoom: "createRoom" | ||
}; | ||
|
||
const reasonMessages = defineMessages({ | ||
[LeaveReason.joinRoom]: { | ||
id: "leave-room-dialog.join-room.message", | ||
defaultMessage: "Joining a new room will leave this one. Are you sure?" | ||
}, | ||
[LeaveReason.createRoom]: { | ||
id: "leave-room-dialog.create-room.message", | ||
defaultMessage: "Creating a new room will leave this one. Are you sure?" | ||
} | ||
}); | ||
|
||
const confirmationMessages = defineMessages({ | ||
[LeaveReason.joinRoom]: { | ||
id: "leave-room-dialog.join-room.confirm", | ||
defaultMessage: "Join Room" | ||
}, | ||
[LeaveReason.createRoom]: { | ||
id: "leave-room-dialog.create-room.confirm", | ||
defaultMessage: "Leave and Create Room" | ||
} | ||
}); | ||
|
||
export function LeaveRoomModal({ reason, destinationUrl, onClose }) { | ||
const intl = useIntl(); | ||
|
||
return ( | ||
<Modal title="Leave Room" beforeTitle={<CloseButton onClick={onClose} />} contentClassName={styles.leaveRoomModal}> | ||
<p>{intl.formatMessage(reasonMessages[reason])}</p> | ||
<Button as="a" preset="cancel" href={destinationUrl} rel="noopener noreferrer"> | ||
{intl.formatMessage(confirmationMessages[reason])} | ||
</Button> | ||
</Modal> | ||
); | ||
} | ||
|
||
LeaveRoomModal.propTypes = { | ||
reason: PropTypes.string, | ||
destinationUrl: PropTypes.string, | ||
onClose: PropTypes.func | ||
}; |
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,17 @@ | ||
:local(.leave-room-modal) { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
text-align: center; | ||
padding: 20px; | ||
line-height: 1.25; | ||
|
||
& > * { | ||
margin-bottom: 16px; | ||
|
||
&:last-child { | ||
margin-bottom: 0; | ||
} | ||
} | ||
} |
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,17 @@ | ||
import React from "react"; | ||
import { RoomLayout } from "../layout/RoomLayout"; | ||
import { LeaveReason, LeaveRoomModal } from "./LeaveRoomModal"; | ||
|
||
export default { | ||
title: "LeaveRoomModal", | ||
parameters: { | ||
layout: "fullscreen" | ||
}, | ||
args: { | ||
destinationUrl: "#" | ||
} | ||
}; | ||
|
||
export const LeaveRoom = args => <RoomLayout modal={<LeaveRoomModal reason={LeaveReason.joinRoom} {...args} />} />; | ||
|
||
export const CreateRoom = args => <RoomLayout modal={<LeaveRoomModal reason={LeaveReason.createRoom} {...args} />} />; |
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