Giter Club home page Giter Club logo

electron-router's Introduction

Electron Pagination

Boilerplate to get quick started with fast Electron page loading.

Features
  • Use of SMPLDM for handling the DOM
  • Fading between pages
  • Customizable elements
  • Minimal code
How to I get started?
git clone https://github.com/aabbccsmith/electron-router.git
yarn install
yarn start
How do I use this?

File structure is as follows

+-- src/
|   +-- renderer/
|   |   +-- assets/
|   |   |   +-- index.scss (Supply your own SCSS compiler. Personally, I use Live Sass Compiler for VSCode)
|   |   +-- pages/
|   |   |   +-- about.js
|   |   |   +-- home.js
|   |   +-- index.html (The main HTMl file. Include CSS in here as well as other meta)
|   |   +-- loader.js (Loads all pages and handles page loading)
|   |   +-- renderer.js (Loads all navigation)
+-- package.json
How do I add another page?

Like this:

/src/renderer/pages/page.js:

const { c, ct } = require("smpldm");
let needUpdate;

const render = () => { // This cannot be async!
    return c("p", {className: "paragraph"}, ct("This is a paragraph"));
}

module.exports = nu => {
    needUpdate = nu;
    return render;
}

/src/renderer/renderer.js:

const NAVIGATION_SETUP = [
    ...
    {to: "page", icon: "computer"} // I'm using material icons for this, but you can take out icon if you'd like.
    ...
]
What's needUpdate?

If your page needs to make a request, or do other non "instant" activities, then you can call needUpdate to tell the loader file to re render the current page.

Finally,

I highly reccomend using yarn rather than npm. It's much faster. We use electron-builder to make installers/binaries. To build, simply modify package.json to your taste, and run yarn build.

Any question? DM me on twitter: @aabbccsmith

electron-router's People

Contributors

alii avatar

Stargazers

Andrew N avatar YoungChief avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.