0.4.1 • Published 5 years ago

postonents v0.4.1

Weekly downloads
36
License
MIT
Repository
github
Last release
5 years ago

Postonent

A simple UI library for light-weight, highly customizable Email components. Remove the pain of writing emails, by writing the templates in React, then SSR them and pass the generated HTML to the Backend to send it out.

npm version contributions welcome blazing

Installation

To start with postonents install:

yarn add postonents
// or
npm install --save postonents

Components included

Included in this package are the following components:

  • Template: The Wrapper component, that generates the <html>, <head> and <body> tags with many customization possibilities like adding scripts and global styles.
  • Container: Component to generally wrap Rows. By default a max of 600px wide. (for the reason why see here)
  • Row: Each row has 12 possible Columns, that wrap, if they are too big.
  • Column: A Column for content separation, can be customized for small (<600px) and large (>=600px).
  • Text: Component to display and style text content.
  • Link: Component to display and style links (a tag). Can have the look of a link, a primary button and a hollow button.
  • Image: Component for images. Needs a src and either height or width definition.
  • Header, Footer: Two Layout Components for Layouting
  • FullWidth: Basically a Container and a Row. For layouting on the top level, if different backgroundColors are wanted.
  • PostonentsProvider, PostonentsConsumer and PostonentContext: Multiple possible ways to access or change the internal Context for styling components.
  • renderHtml: A function that server-side renders your template and returns it as a string.

Component API

All components generally have a children, a className and a style prop and this will be applied to the element that has the styling for easy overrides and customization

Template

Proptyperequireddescription
langstringyesWill be added to the html tag
titlestringyesThe title of the email
headAdditionsarray<{ type, children?, props? }>noNeeds to be an array, with a type (eg. link), props and maybe children, internally we do React.createElement
headStylesstringnoStyles in the head tag, will automatically be wrapped in <styles type="text/css>
bodyStyleobjectnowill be added to the styles of the body tag

Container

Proptyperequireddescription
alignmentstringnoPass center here to make sure the Container is centered and not left-aligned
maxWidthnumber | stringno (defaults to 600)Will set the max-width of the whole container

Column

Proptyperequireddescription
smallnumberno (defaults to 12)The column count from 1 to 12 for screens under 600px
largenumberno (defaults to small)The column count from 1 to 12 for screens above 600px
noPaddingbooleannoWill remove the padding of the column

Link

Proptyperequireddescription
hrefstringyesTarget of the link
typeenumno (defaults to 'link')Can be 'link', 'primary' or 'hollow'
fullWidthbooleannoMakes the Link expand to the fullest

Image

Proptyperequireddescription
srcstringyesThe source of the image
heightnumbernoThe height of the image
widthnumbernoThe width of the image

Header

Proptyperequireddescription
logostringnosrc of log, if passed will render a logo horizontally centered at the top of the email
titlestringnoif passed, will render the title, right under the logo.
childrenNodenoFor custom styling you can pass whatever you want

renderHtml(Template, emailData, headStyles)

Argumenttyperequireddescription
TemplateNodeyesThe Template Component
emailDataobjectnoemailData will be spread as props to the uppermost component in your tree
headStylesstringnoFor global styling you can pass styles that go into the head here

Theming

If you do not have special and custom styling purposes, the default theme will be more than enough. But if you would like some more control, this is the theme that can be overriden, by passing it as a theme prop to PostonentsProvider, that need to be the first element:

<PostonentsProvider theme={{ ... }}>
  <Template>
    ...
  </Template>
</PostonentsProvider>

This is the current theme, it may be extended in the future.

const DefaultTheme = {
  colors: {
    text: '#4c5b5c', // Txxt Color
    bodyBg: '#fafafa', // Background Color of `body`
    footerBg: '#4c5b5c', // Background Color of footer
    footerText: 'white', // Text Color of Footer
    primaryBg: '#6699cc', // Background Color of primary button
    primary: 'white', // text color of primary button
    hollow: '#4c5b5c', // text color and border color of hollow button
  },
  typo: {
    fontFamily: 'Helvetica, sans-serif', // Font family
    fontSize: '14px', // Font Size
    lineHeight: '24px', // line height
    light: 300, // definition for light font weight
    normal: 400, // definition for normal font weight
    bold: 600, // definition for bold font weight
  },
};

Examples

Examples will be added regularly and will be visible on Github Pages

FAQs

My columns are not showing up after sending them out

This happens a lot with Mandrill Users. Please refer to this article in the HelpCenter and make sure automatic CSS inlining is deactivated.

0.4.1

5 years ago

0.4.0

5 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago