diegomura / journey-react-renderers-slides

Home Page:https://diegomura.github.io/journey-react-renderers-slides/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bespoke-react

Bootstrap project for easily generate Bespoke presentations using React

I want to create my own presentation

Great! That's pretty easy. All you have to do is:

# First, clone this repo
git clone git@github.com:diegomura/bespoke-react.git

# Navigate to the project and delete the git history
cd bespoke-react
rm -rf .git

# Install the dependencies
npm install

# Initialize the development server
npm start

* you can use Yarn instead of npm if you prefer

Creating a new slide

All you need to do is creating a new SlideXX.js file into the slides directory and leave the rest to bespoke-react (being XX consecutive ascending numbers). Your slide will be automagically added to the presentation in the order you specified. Remember that to make it work, each file should export a valid React component:

import React from 'react';

const Slide01 = () => (
  <section>Slide 1</section>
);

export default Slide01;

bespoke-react will use the file names to order the slides, so it's important to name the files correctly

Accessing the Bespoke instance

Each Slide component will receive the Bespoke instance via the deck prop. You can use it for a fine-grained control of the slides flow or events handling.

import React from 'react';

const Slide01 = ({ deck }) => (
  <section>
    <button onClick={() => deck.next()}>
      Next!!
    </button>
  </section>
);

export default Slide01;

For more information of what can be done, you can read more about the instance API and Events in the official Bespoke documentation.

Setup Bespoke

This project tries to be the more unopinionated as possible. This means letting you define what Bespoke plugins and themes you want to use. To add a new plugin, just go to your src/index.js and add one more element to the plugins array:

import somePlugin from 'some-plugin';

const plugins = [
  // ... more plugins
  somePlugin(),
];

Building

To build the project, just run:

npm run build
# or
yarn build

You will see the output in the dist folder of your project.

Deploying to Github pages

Github pages is a great way of quickly share your presentations and code all together. That's why bespoke-react is shipped with a script to easily deploy your current code to your Github repo page. Just:

npm run deploy
#or
yarn deploy

You should be able to see your presentation online when this finishes executing.

License

MIT © Diego Muracciole

About

https://diegomura.github.io/journey-react-renderers-slides/


Languages

Language:JavaScript 83.5%Language:CSS 16.0%Language:HTML 0.5%