Skip to content
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

Recommendation bot UI #2019

Merged
merged 19 commits into from
Feb 12, 2025
Merged

Recommendation bot UI #2019

merged 19 commits into from
Feb 12, 2025

Conversation

jonkafton
Copy link
Contributor

@jonkafton jonkafton commented Feb 7, 2025

What are the relevant tickets?

Closes https://github.com/mitodl/hq/issues/6648

https://github.com/mitodl/hq/issues/6648

Description (What does it do?)

Applies the current Chat designs by loading the AiChat component from the related PR branch on Smoot Design and adds the Recommendation Bot drawer to the Homepage.

This change also updates the Resource Drawer Syllabus Bot to us the updated styles.

  • Applies similar treatment to the "Need help? AskTIM" button.
  • Adjustments to support the new Chat styles at width breakpoints (designs in progress).

Screenshots (if appropriate):

image



image



image



image



image



image



image



image



image

How can this be tested?

Homepage Recommendation Bot:

  • Set recommendationBotEnabled in HeroSearch.tsx to true to test locally.
  • "AskTIM" button should appear.
  • Enter a prompt or click suggestions to open the chat with the initial message.
  • Check that the designs are applied at desktop width and layout is sensible (no designs just yet) at smaller screen widths.

Resource Drawer Syllabus Bot:

  • Set chatEnabled to true in LearningResourceExpanded.tsx to test locally.
  • Click a Resource Card to open the drawer.
  • The "Need help? AskTIM" button should be visible. Click it!
  • The chat layout should look ok at all screen widths (designs in progress)

Additional Context

@jonkafton jonkafton marked this pull request as draft February 7, 2025 19:34
@jonkafton
Copy link
Contributor Author

Various attempts to install from the smoot-design branch on CI have failed (see commits). Any insight is welcome. In the meantime the remainder is good for review. The corresponding PR is here: mitodl/smoot-design#49.

@jonkafton jonkafton marked this pull request as ready for review February 10, 2025 22:08
@jonkafton jonkafton added Needs Review An open Pull Request that is ready for review labels Feb 11, 2025
@jonkafton jonkafton force-pushed the jk/6648-recommendation-chat branch from 7a94034 to f3a9821 Compare February 11, 2025 16:21
Copy link
Contributor

@ChristopherChudzicki ChristopherChudzicki left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approving since this is flagged and I know there's some eagerness to get it out.

Did leave one request to use real buttons, though. Could do now or after.

},
{
content:
"I am curious about AI applications for business. Do you have any free courses about that?",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one gave me no results, asked for followup. Maybe we should change it. (non-blocking)

ref,
}: {
onClose?: () => void
ref?: React.Ref<{ append: (message: Omit<AiChatMessage, "id">) => void }>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i would expect

Suggested change
ref?: React.Ref<{ append: (message: Omit<AiChatMessage, "id">) => void }>
ref?: Pick<AiChatProps, "ref">

to work

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I expected same, but was getting

Type 'Pick<AiChatProps, "ref"> | undefined' is not assignable to type 'Ref<{ append: (message: Omit<AiChatMessage, "id">) => void; }> | undefined'.
  Type 'Pick<AiChatProps, "ref">' is not assignable to type 'Ref<{ append: (message: Omit<AiChatMessage, "id">) => void; }> | undefined'

Comment on lines 187 to 188
role="button"
tabIndex={index}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Request: Could we use real buttons unless there's a good reason not to?

Real buttons can be pressed with spacebar or enter.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Those do submit for me with space or enter (Chrome). Changed in any case as they didn't need much style override.

<AdornmentButton
aria-label="Send"
onClick={() => setShowEntryScreen(false)}
disabled={!initialPrompt}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This maybe is a smoot-design issue to be fixed elsewhere, but I'm noticing hover effect even when disabled.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed for svgs in mitodl/smoot-design#49, but here it was a specificity issue as we're coloring above. Fixed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

... the svg fill, though it does have a hover bg

onClick={() => setShowEntryScreen(false)}
disabled={!initialPrompt}
>
<StyledSendButton />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggest renaming this. It's not a button, and button inside button would have been invalid.

@jonkafton jonkafton merged commit 123da67 into main Feb 12, 2025
11 checks passed
@jonkafton jonkafton deleted the jk/6648-recommendation-chat branch February 12, 2025 21:28
This was referenced Feb 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Needs Review An open Pull Request that is ready for review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants