-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DOCSP-32954] Add ErrorBanner, React-Transition-Group #182
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,4 +1,5 @@ | ||||||||||||||||||||||||||||||||||
import { css } from "@emotion/css"; | ||||||||||||||||||||||||||||||||||
import Banner from "@leafygreen-ui/banner"; | ||||||||||||||||||||||||||||||||||
import LeafyGreenProvider, { | ||||||||||||||||||||||||||||||||||
useDarkMode, | ||||||||||||||||||||||||||||||||||
} from "@leafygreen-ui/leafygreen-provider"; | ||||||||||||||||||||||||||||||||||
|
@@ -17,9 +18,13 @@ import { | |||||||||||||||||||||||||||||||||
import { LeafyGreenChatProvider } from "@lg-chat/leafygreen-chat-provider"; | ||||||||||||||||||||||||||||||||||
import { Message as LGMessage, MessageSourceType } from "@lg-chat/message"; | ||||||||||||||||||||||||||||||||||
import { MessageFeed } from "@lg-chat/message-feed"; | ||||||||||||||||||||||||||||||||||
import { MessagePrompt, MessagePrompts } from "@lg-chat/message-prompts"; | ||||||||||||||||||||||||||||||||||
import { | ||||||||||||||||||||||||||||||||||
MessagePrompts as LGMessagePrompts, | ||||||||||||||||||||||||||||||||||
MessagePrompt, | ||||||||||||||||||||||||||||||||||
} from "@lg-chat/message-prompts"; | ||||||||||||||||||||||||||||||||||
import { MessageRatingProps } from "@lg-chat/message-rating"; | ||||||||||||||||||||||||||||||||||
import { Fragment, useEffect, useState } from "react"; | ||||||||||||||||||||||||||||||||||
import { Fragment, useEffect, useRef, useState } from "react"; | ||||||||||||||||||||||||||||||||||
import { Transition } from "react-transition-group"; | ||||||||||||||||||||||||||||||||||
import { CharacterCount } from "./InputBar"; | ||||||||||||||||||||||||||||||||||
import { UserProvider } from "./UserProvider"; | ||||||||||||||||||||||||||||||||||
import { MessageData } from "./services/conversations"; | ||||||||||||||||||||||||||||||||||
|
@@ -337,7 +342,8 @@ function ChatbotModal({ | |||||||||||||||||||||||||||||||||
<InputBar | ||||||||||||||||||||||||||||||||||
inputBarValue={inputBarValue} | ||||||||||||||||||||||||||||||||||
onSubmit={() => handleSubmit(inputBarValue)} | ||||||||||||||||||||||||||||||||||
hasError={promptIsTooLong()} | ||||||||||||||||||||||||||||||||||
inputBarHasError={promptIsTooLong()} | ||||||||||||||||||||||||||||||||||
conversationError={conversation.error} | ||||||||||||||||||||||||||||||||||
disabled={!!conversation.error} | ||||||||||||||||||||||||||||||||||
disableSend={awaitingReply || promptIsTooLong()} | ||||||||||||||||||||||||||||||||||
textareaProps={{ | ||||||||||||||||||||||||||||||||||
|
@@ -361,20 +367,35 @@ function ChatbotModal({ | |||||||||||||||||||||||||||||||||
const MAX_INPUT_CHARACTERS = 300; | ||||||||||||||||||||||||||||||||||
interface InputBarProps extends LGInputBarProps { | ||||||||||||||||||||||||||||||||||
inputBarValue: string; | ||||||||||||||||||||||||||||||||||
hasError: boolean; | ||||||||||||||||||||||||||||||||||
inputBarHasError: boolean; | ||||||||||||||||||||||||||||||||||
conversationError: string | undefined; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const InputBar = (props: InputBarProps) => { | ||||||||||||||||||||||||||||||||||
const { inputBarValue, hasError, ...LGInputBarProps } = props; | ||||||||||||||||||||||||||||||||||
const { | ||||||||||||||||||||||||||||||||||
inputBarValue, | ||||||||||||||||||||||||||||||||||
inputBarHasError, | ||||||||||||||||||||||||||||||||||
conversationError, | ||||||||||||||||||||||||||||||||||
...LGInputBarProps | ||||||||||||||||||||||||||||||||||
} = props; | ||||||||||||||||||||||||||||||||||
const { darkMode } = useDarkMode(); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
if (conversationError) | ||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||
<div className={styles.chatbot_input_area}> | ||||||||||||||||||||||||||||||||||
<ErrorBanner darkMode={darkMode} message={conversationError} /> | ||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||
<div className={styles.chatbot_input_area}> | ||||||||||||||||||||||||||||||||||
<LGInputBar | ||||||||||||||||||||||||||||||||||
className={ | ||||||||||||||||||||||||||||||||||
hasError ?? false ? styles.chatbot_input_error_border : undefined | ||||||||||||||||||||||||||||||||||
inputBarHasError ?? false | ||||||||||||||||||||||||||||||||||
? styles.chatbot_input_error_border | ||||||||||||||||||||||||||||||||||
: undefined | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
shouldRenderGradient={!hasError} | ||||||||||||||||||||||||||||||||||
shouldRenderGradient={!inputBarHasError} | ||||||||||||||||||||||||||||||||||
{...LGInputBarProps} | ||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||
<div | ||||||||||||||||||||||||||||||||||
|
@@ -397,6 +418,24 @@ const InputBar = (props: InputBarProps) => { | |||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
type ErrorBannerProps = { | ||||||||||||||||||||||||||||||||||
message?: string; | ||||||||||||||||||||||||||||||||||
darkMode?: boolean; | ||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
function ErrorBanner({ | ||||||||||||||||||||||||||||||||||
message = "Something went wrong.", | ||||||||||||||||||||||||||||||||||
darkMode = false, | ||||||||||||||||||||||||||||||||||
}: ErrorBannerProps) { | ||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||
<Banner darkMode={darkMode} variant="danger"> | ||||||||||||||||||||||||||||||||||
{message} | ||||||||||||||||||||||||||||||||||
<br /> | ||||||||||||||||||||||||||||||||||
Reload the page to start a new conversation. | ||||||||||||||||||||||||||||||||||
</Banner> | ||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const DisclaimerText = () => { | ||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||
<LGDisclaimerText | ||||||||||||||||||||||||||||||||||
|
@@ -443,7 +482,6 @@ const Message = ({ | |||||||||||||||||||||||||||||||||
renderRating, | ||||||||||||||||||||||||||||||||||
conversation, | ||||||||||||||||||||||||||||||||||
}: MessageProp) => { | ||||||||||||||||||||||||||||||||||
const [suggestedPromptIdx, setSuggestedPromptIdx] = useState(-1); | ||||||||||||||||||||||||||||||||||
const user = useUser(); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||
|
@@ -526,26 +564,70 @@ const Message = ({ | |||||||||||||||||||||||||||||||||
: messageData.content} | ||||||||||||||||||||||||||||||||||
</LGMessage> | ||||||||||||||||||||||||||||||||||
{displaySuggestedPrompts && ( | ||||||||||||||||||||||||||||||||||
<div className={styles.message_prompts}> | ||||||||||||||||||||||||||||||||||
<MessagePrompts label="Suggested Prompts"> | ||||||||||||||||||||||||||||||||||
{suggestedPrompts.map((sp, idx) => ( | ||||||||||||||||||||||||||||||||||
<MessagePrompts | ||||||||||||||||||||||||||||||||||
messagePrompts={suggestedPrompts} | ||||||||||||||||||||||||||||||||||
messagePromptsOnClick={suggestedPromptOnClick} | ||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||||||
</Fragment> | ||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
type MessagePromptsProps = { | ||||||||||||||||||||||||||||||||||
messagePrompts: string[]; | ||||||||||||||||||||||||||||||||||
messagePromptsOnClick: (prompt: string) => void; | ||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const MessagePrompts = ({ | ||||||||||||||||||||||||||||||||||
messagePrompts, | ||||||||||||||||||||||||||||||||||
messagePromptsOnClick, | ||||||||||||||||||||||||||||||||||
}: MessagePromptsProps) => { | ||||||||||||||||||||||||||||||||||
const [inProp, setInProp] = useState(true); | ||||||||||||||||||||||||||||||||||
const [suggestedPromptIdx, setSuggestedPromptIdx] = useState(-1); | ||||||||||||||||||||||||||||||||||
const nodeRef = useRef(null); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const duration = 300; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const defaultStyle = { | ||||||||||||||||||||||||||||||||||
transition: `opacity ${duration}ms ease-in`, | ||||||||||||||||||||||||||||||||||
opacity: 0, | ||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const transitionStyles = { | ||||||||||||||||||||||||||||||||||
entering: { opacity: 1 }, | ||||||||||||||||||||||||||||||||||
entered: { opacity: 1 }, | ||||||||||||||||||||||||||||||||||
exiting: { opacity: 0 }, | ||||||||||||||||||||||||||||||||||
exited: { opacity: 0 }, | ||||||||||||||||||||||||||||||||||
unmounted: { opacity: 0 }, | ||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||
Comment on lines
+591
to
+602
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's use emotion for this instead of the jsx Since we're only doing CSS transitions right now I think it'd be easier to switch to You should be able to put all this in the message_prompts: css`
margin-left: 70px;
@media screen and (max-width: 804px) {
margin-left: 50px;
}
transition: opacity ${duration}ms ease-in;
&-enter {
opacity: 0;
}
&-enter-active {
opacity: 1;
}
&-exit {
opacity: 1;
}
&-exit-active {
opacity: 0;
}
`, then you'll replace |
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||
<Transition in={inProp} timeout={duration} nodeRef={nodeRef}> | ||||||||||||||||||||||||||||||||||
{(state) => ( | ||||||||||||||||||||||||||||||||||
<div | ||||||||||||||||||||||||||||||||||
className={styles.message_prompts} | ||||||||||||||||||||||||||||||||||
style={{ ...defaultStyle, ...transitionStyles[state] }} | ||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||
Comment on lines
+605
to
+610
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Per my earlier comment about using emotion & CSSTransition. Also make sure to import
Suggested change
|
||||||||||||||||||||||||||||||||||
<LGMessagePrompts label="Suggested Prompts"> | ||||||||||||||||||||||||||||||||||
{messagePrompts.map((sp, idx) => ( | ||||||||||||||||||||||||||||||||||
<MessagePrompt | ||||||||||||||||||||||||||||||||||
key={idx} | ||||||||||||||||||||||||||||||||||
onClick={() => { | ||||||||||||||||||||||||||||||||||
setSuggestedPromptIdx(idx); | ||||||||||||||||||||||||||||||||||
setInProp(false); | ||||||||||||||||||||||||||||||||||
setTimeout(() => { | ||||||||||||||||||||||||||||||||||
suggestedPromptOnClick(suggestedPrompts[idx]); | ||||||||||||||||||||||||||||||||||
}, 300); | ||||||||||||||||||||||||||||||||||
messagePromptsOnClick(messagePrompts[idx]); | ||||||||||||||||||||||||||||||||||
}, duration); | ||||||||||||||||||||||||||||||||||
}} | ||||||||||||||||||||||||||||||||||
selected={idx === suggestedPromptIdx} | ||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||
{sp} | ||||||||||||||||||||||||||||||||||
</MessagePrompt> | ||||||||||||||||||||||||||||||||||
))} | ||||||||||||||||||||||||||||||||||
</MessagePrompts> | ||||||||||||||||||||||||||||||||||
</LGMessagePrompts> | ||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||||||
</Fragment> | ||||||||||||||||||||||||||||||||||
</Transition> | ||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think conversation errors are the concern of the input bar, especially given that we use it here to short circuit rendering. In the docs
Chatbot
component we conditionally render the InputBar based on conversation error state rather than have the InputBar handle the conditional internally.Could we refactor here to use that pattern instead? It'll make it easier to combine this all into shared components.