项目作者: prototypearea

项目描述 :
Addon to render AMP html in Storybook
高级语言: JavaScript
项目地址: git://github.com/prototypearea/storybook-amp.git
创建时间: 2019-08-19T23:17:58Z
项目社区:https://github.com/prototypearea/storybook-amp

开源协议:MIT License

下载


Storybook AMP Html · npm package

Storybook addon for AMP (Accelerated Mobile Pages). Allows to display in your stories AMP Html components generated with React.

Screenshot


Table of Contents

- Features
- Demo
- Getting Started
- Installation
- Configuration
- Usage
- Examples
- Roadmap
- Contributing
- License
- Acknowledgements
- Links


Features

  • Deliver in each story the output code (AMP ready) resulting from the SSR.
  • Works with AMP websites, AMP email and AMP ads
  • Realtime AMP validation.
  • Adds addon panel to also validate the story (using online AMP Validator) and view the output code.
  • Support Styled Components using a custom render function

Demo


Getting Started

Installation

  1. npm install -D storybook-amp

Configuration

Next, update .storybook/main.js to the following:

  1. // .storybook/main.js
  2. module.exports = {
  3. stories: [
  4. // ...
  5. ],
  6. addons: [
  7. // Other Storybook addons
  8. 'storybook-amp', // 👈 The addon registered here
  9. ],
  10. };

Usage

To set custom settings, use the amp parameter.

  1. // .storybook/preview.js
  2. const scripts = '';
  3. const styles = '';
  4. export const parameters = {
  5. // Other defined parameters
  6. amp: { // 👈 The addon parameters here
  7. isEnabled: true, // Enable the addon, false by default (boolean)
  8. scripts, // Global scripts to add, empty by default (string)
  9. styles, // Custom css styles, empty by default (string)
  10. },
  11. };

You can use the amp parameter to override settings on each story individually:

  1. // Story example
  2. export default {
  3. title: "Components/amp-youtube",
  4. parameters: {
  5. amp: {
  6. scripts: // 👈 Script needed by the story
  7. `<script async custom-element="amp-youtube" src="https://cdn.ampproject.org/v0/amp-youtube-0.1.js"></script>`,
  8. },
  9. },
  10. };
  11. export const Story = (args) => (
  12. <amp-youtube
  13. width="480"
  14. height="270"
  15. layout="responsive"
  16. data-videoid='lBTCB7yLs8Y'
  17. ></amp-youtube>
  18. )

Examples


Roadmap

  • Make it compatible with the Chromatic addon
  • Make it compatible with the Accessibility addon
  • Adjust UI details when used with Docs addon
  • More tools for AMP Ads and AMP Email
  • Add more example tests
  • Add tests
  • Make CI integration possible


Contributing

Storybook AMP Html addon is an open-source project. We are committed to a fully transparent development process and appreciate highly any contributions. Whether you are helping us fix bugs, proposing new features, improving our documentation or spreading the word - we would love to have you as part of the community.

Please refer to our Contribution Guidelines and Code of Conduct.

License

The Storybook AMP Html addon is licensed under the MIT license — see the LICENSE file for details.

Acknowledgements

Initially created by onWidget and maintained by a community of contributors.