2
0

feat(integration): Add Make.com block

This commit is contained in:
Baptiste Arnaud
2022-04-10 17:02:01 -05:00
parent a5491dc7a8
commit 38c53fbbbc
12 changed files with 156 additions and 18 deletions

View File

@ -20,7 +20,12 @@ import {
TextIcon,
WebhookIcon,
} from 'assets/icons'
import { GoogleAnalyticsLogo, GoogleSheetsLogo, ZapierLogo } from 'assets/logos'
import {
GoogleAnalyticsLogo,
GoogleSheetsLogo,
MakeComLogo,
ZapierLogo,
} from 'assets/logos'
import {
BubbleStepType,
InputStepType,
@ -74,6 +79,8 @@ export const StepIcon = ({ type, ...props }: StepIconProps) => {
return <WebhookIcon {...props} />
case IntegrationStepType.ZAPIER:
return <ZapierLogo {...props} />
case IntegrationStepType.MAKE_COM:
return <MakeComLogo {...props} />
case IntegrationStepType.EMAIL:
return <SendEmailIcon {...props} />
case 'start':

View File

@ -71,6 +71,8 @@ export const StepTypeLabel = ({ type }: Props) => {
return <Text>Webhook</Text>
case IntegrationStepType.ZAPIER:
return <Text>Zapier</Text>
case IntegrationStepType.MAKE_COM:
return <Text>Make.com</Text>
case IntegrationStepType.EMAIL:
return <Text>Email</Text>
default: