-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Add NFT 2 content with message & button template
- Loading branch information
Showing
9 changed files
with
834 additions
and
475 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 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 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
222 changes: 222 additions & 0 deletions
222
src/templates/nft/two-content-with-message-and-button.tsx
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,222 @@ | ||
import * as React from 'react'; | ||
import { | ||
MjmlButton, | ||
MjmlColumn, | ||
MjmlDivider, | ||
MjmlRaw, | ||
MjmlText, | ||
} from 'mjml-react'; | ||
|
||
import * as Colors from '../../constants/colors'; | ||
|
||
import { Avatar } from '../../components/avatar'; | ||
import { FooterSection } from '../../components/footer'; | ||
import { HeaderSection } from '../../components/header'; | ||
import { TemplateBase } from '../../components/template-base'; | ||
import { BasicSection } from '../../components/sections/basic'; | ||
|
||
interface NFTMessageBoxProps { | ||
title?: string; | ||
content?: string; | ||
avatarSrc?: string; | ||
} | ||
|
||
const NFTMessageBox = (props: NFTMessageBoxProps) => ( | ||
<MjmlRaw> | ||
<table | ||
style={{ | ||
marginTop: 16, | ||
marginBottom: 16, | ||
|
||
fontSize: '1rem', | ||
fontFamily: 'Arial, sans-serif', | ||
|
||
backgroundColor: Colors.White, | ||
|
||
borderWidth: 1, | ||
borderColor: Colors.GreyEB, | ||
borderStyle: 'solid', | ||
borderCollapse: 'separate', | ||
borderRadius: 16, | ||
borderTopLeftRadius: 24, | ||
|
||
boxShadow: '0px 20px 20px 0px rgba(0, 0, 0, 0.04)', | ||
}} | ||
> | ||
<tr> | ||
<td style={{ paddingLeft: 24, width: 48 }}> | ||
<Avatar | ||
src={props.avatarSrc} | ||
size={40} | ||
style={{ marginTop: -16, marginLeft: -4 }} | ||
/> | ||
</td> | ||
<td | ||
style={{ | ||
paddingTop: 8, | ||
paddingRight: 16, | ||
paddingLeft: 8, | ||
fontWeight: 'bold', | ||
lineHeight: 1.5, | ||
}} | ||
> | ||
{props.title} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td | ||
colSpan={2} | ||
style={{ | ||
paddingTop: 4, | ||
paddingBottom: 16, | ||
paddingRight: 16, | ||
paddingLeft: 24, | ||
lineHeight: 1.5, | ||
}} | ||
> | ||
{props.content} | ||
</td> | ||
</tr> | ||
</table> | ||
</MjmlRaw> | ||
); | ||
|
||
export interface NFTContentWithMessageAndButtonSectionProps { | ||
content?: string; | ||
messageAvatarSrc?: string; | ||
messageTitle?: string; | ||
messageContent?: string; | ||
buttonText?: string; | ||
buttonHref?: string; | ||
append?: string; | ||
} | ||
|
||
export const NFTContentWithMessageAndButtonSection = ( | ||
props: NFTContentWithMessageAndButtonSectionProps | ||
) => { | ||
return ( | ||
<BasicSection | ||
paddingLeft={40} | ||
paddingRight={40} | ||
paddingTop={32} | ||
paddingBottom={32} | ||
> | ||
<MjmlColumn> | ||
{!!props.content && ( | ||
<MjmlText paddingBottom={24}> | ||
<div dangerouslySetInnerHTML={{ __html: props.content }} /> | ||
</MjmlText> | ||
)} | ||
|
||
<NFTMessageBox | ||
avatarSrc={props.messageAvatarSrc} | ||
content={props.messageContent} | ||
title={props.messageTitle} | ||
/> | ||
|
||
{!!props.buttonText && ( | ||
<MjmlButton | ||
color={Colors.White} | ||
align="left" | ||
fontWeight={600} | ||
backgroundColor={Colors.LikeGreen} | ||
paddingTop={32} | ||
paddingBottom={16} | ||
inner-padding="16px 64px" | ||
borderRadius={12} | ||
href={props.buttonHref} | ||
rel="noopener noreferrer" | ||
> | ||
{props.buttonText} | ||
</MjmlButton> | ||
)} | ||
|
||
{!!props.append && ( | ||
<MjmlText paddingTop={24}> | ||
<div dangerouslySetInnerHTML={{ __html: props.append }} /> | ||
</MjmlText> | ||
)} | ||
</MjmlColumn> | ||
</BasicSection> | ||
); | ||
}; | ||
|
||
export interface NFTTwoContentWithMessageAndButtonTemplateProps { | ||
subject?: string; | ||
title1?: string; | ||
title2?: string; | ||
content1?: string; | ||
content2?: string; | ||
messageAvatarSrc1?: string; | ||
messageAvatarSrc2?: string; | ||
messageTitle1?: string; | ||
messageTitle2?: string; | ||
messageContent1?: string; | ||
messageContent2?: string; | ||
buttonText1?: string; | ||
buttonText2?: string; | ||
buttonHref1?: string; | ||
buttonHref2?: string; | ||
append1?: string; | ||
append2?: string; | ||
unsubscribeLink?: string; | ||
} | ||
|
||
export const NFTTwoContentWithMessageAndButtonTemplate = ( | ||
props: NFTTwoContentWithMessageAndButtonTemplateProps | ||
) => { | ||
return ( | ||
<TemplateBase subject={props.subject}> | ||
<HeaderSection /> | ||
|
||
<BasicSection | ||
backgroundColor={Colors.LikeGreen} | ||
paddingLeft={40} | ||
paddingRight={40} | ||
paddingTop={60} | ||
paddingBottom={60} | ||
> | ||
<MjmlColumn> | ||
<MjmlText color="white" fontSize={36} fontWeight={600} align="left"> | ||
{props.title1} | ||
<br /> | ||
{props.title2} | ||
</MjmlText> | ||
</MjmlColumn> | ||
</BasicSection> | ||
|
||
<NFTContentWithMessageAndButtonSection | ||
content={props.content1} | ||
append={props.append1} | ||
messageAvatarSrc={props.messageAvatarSrc1} | ||
messageTitle={props.messageTitle1} | ||
messageContent={props.messageContent1} | ||
buttonHref={props.buttonHref1} | ||
buttonText={props.buttonText1} | ||
/> | ||
|
||
<BasicSection | ||
paddingLeft={40} | ||
paddingRight={40} | ||
paddingTop={24} | ||
paddingBottom={24} | ||
> | ||
<MjmlColumn> | ||
<MjmlDivider borderColor={Colors.Grey4A} borderWidth={1} /> | ||
</MjmlColumn> | ||
</BasicSection> | ||
|
||
<NFTContentWithMessageAndButtonSection | ||
content={props.content2} | ||
append={props.append2} | ||
messageAvatarSrc={props.messageAvatarSrc2} | ||
messageTitle={props.messageTitle2} | ||
messageContent={props.messageContent2} | ||
buttonHref={props.buttonHref2} | ||
buttonText={props.buttonText2} | ||
/> | ||
|
||
<FooterSection unsubscribeLink={props.unsubscribeLink} /> | ||
</TemplateBase> | ||
); | ||
}; |
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
Oops, something went wrong.