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

feat: Suggest integration after pasting link #7664

Closed
wants to merge 4 commits into from

Conversation

gitstart-parabol
Copy link
Contributor

@gitstart-parabol gitstart-parabol commented Jan 17, 2023

Description

Fixes #5940

Suggest integration after pasting link

When a user pastes a link from:

  • one of the integrations that we support, and
  • we detect that the integration is not currently connected
  • we prompt the user to connect the integration.

Demo

Trimed.mov

Testing scenarios

  • From the sidebar select tasks menu
  • Edit any task card by pasting a GitHub link
  • Click the link on the banner redirects the user to the integrations page
  • Close the Integration banner
  • Refresh page to confirm the action persisted
  • Test with other task cards

Final checklist

  • I checked the code review guidelines
  • I have added Metrics Representative as reviewer(s) if my PR invovles metrics/data/analytics related changes
  • I have performed a self-review of my code, the same way I'd do it for any other team member
  • I have tested all cases I listed in the testing scenarios and I haven't found any issues or regressions
  • Whenever I took a non-obvious choice I added a comment explaining why I did it this way
  • I added the label One Review Required if the PR introduces only minor changes, does not contain any architectural changes or does not introduce any new patterns and I think one review is sufficient'
  • PR title is human readable and could be used in changelog

@gitstart-parabol gitstart-parabol self-assigned this Jan 17, 2023
@gitstart-parabol gitstart-parabol marked this pull request as ready for review January 17, 2023 13:02
@gitstart-parabol gitstart-parabol changed the title feat: [PARA-5940] - Suggest integration after pasting link feat: Suggest integration after pasting link Jan 17, 2023
Copy link
Contributor

@BartoszJarocki BartoszJarocki left a comment

Choose a reason for hiding this comment

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

Thank you for the PR. It seems to handle only one scenario ie. Github, where the issue says When a user pastes a link from one of the integrations that we support.... It'd be great to have a more generic solution, that'd detect any of the integrations Parabol supports.

Do you mind taking a look and outlining the proposed solution in the issue itself, before writing code? It'll make us on the same page and hopefully resolve more unknowns and save some time during the review. Thank you!

@gitstart-parabol
Copy link
Contributor Author

@BartoszJarocki we have developed a broader solution to cover all integrations, please review.

const [integration, setIntegration] = React.useState<Integration | undefined>()

React.useEffect(() => {
const text = editorState.getCurrentContent().getPlainText()
Copy link
Contributor

Choose a reason for hiding this comment

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

-1 it's better to extract a variable above like

const plainTextValue = editorState.getCurrentContent().getPlainText()

and use it in the hook and hook deps array to avoid calling it twice, especially considering it's pretty heavyweight method


useEffect(() => {
const getProviders = async () => {
const result = await atmosphere.fetchQuery<useIntegrationProvidersGetProvidersListQuery>(
Copy link
Contributor

Choose a reason for hiding this comment

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

-1 fetching data in useEffect isn't something we should be doing when using relay. this hook should have it's own fragment, and the fragment should be spread in each component that's using this hook

Copy link
Contributor Author

@gitstart-parabol gitstart-parabol Apr 27, 2023

Choose a reason for hiding this comment

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

Hi @BartoszJarocki, wasn't able to spread the fragment specifically for teamMember.integrations in OutcomeCard.tsx because doing so would require making extensive changes throughout other fragments in the same hierarchy just to include the teamId argument. As a result, we have instead created a new root for the providers list query in the IntegrationsBanner

query useIntegrationProvidersGetProvidersListQuery($teamId: ID!) {
viewer {
teamMember(teamId: $teamId) {
integrations {
Copy link
Contributor

Choose a reason for hiding this comment

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

-1 preferably, this data should be the same as in ProviderList so I'd encurage to reuse that fragment

name: string
connected: boolean
regex: RegExp
provider?: any
Copy link
Contributor

Choose a reason for hiding this comment

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

-1 avoid any

Comment on lines 16 to 42
const SuggestIntegration = styled('div')({
display: 'flex',
flexDirection: 'row',
border: `1px solid ${PALETTE.SLATE_400}`,
borderRadius: '4px',
marginTop: '8px',
padding: '8px 6px'
})

const Link = styled('span')({
color: PALETTE.SLATE_800,
cursor: 'pointer',
textDecoration: 'underline',
fontWeight: 600,
':hover, :focus, :active': {
color: PALETTE.SLATE_600
}
})

const SuggestionContent = styled('div')({
padding: 0
})

const CloseIcon = styled(Close)({
color: PALETTE.SLATE_600,
cursor: 'pointer'
})
Copy link
Contributor

Choose a reason for hiding this comment

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

+1 we're migrating to TailwindCSS, so if possible all new stuff should be done using Tailwind

@mattkrick
Copy link
Member

Hi! Thank you for contributing to our app! We're closing this PR due to inactivity, but that doesn't mean the end of the code! This is still a useful feature & if we prioritize it in an upcoming sprint we will use this PR as a reference point.

@mattkrick mattkrick closed this Jul 6, 2023
@jordanh jordanh deleted the PARA-5940 branch March 2, 2024 06:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Suggest integration after pasting link
3 participants