GithubHelp home page GithubHelp logo

eventio's Introduction

Eventio

โ€œUse the force, Luke.โ€ ...

Getting Started

to develop:

  > npm install
  > npm run dev

to build:

  > npm run build

Folder Structure

./pages - served pages

./static - public site folder

./src/api - api config and helper functions

./src/auth - authentication server logic

./src/components - reusable components

./src/layouts - global layout components

./src/lib - 3rd party libs

./src/store - app store and wrappers (Context)

./src/styles - global styles

./src/utils - js utils functions

Code Guide

  1. Component's styles are imported directly to the component or the parent's component and named after the component/folder name

  2. CSS Class should be followed by the Component's name.

  • import the styles core into your module style so you can have access to the theme and global sass functions
// Icon.js
import "./Icon.styles.scss";

function Icon() {
  return <div className="Icon" />;
}
// Icon.styles.scss
@import "./src/styles/core.scss";

.Icon {
}
  1. Every Page should be wrapped with <Page /> component

  2. Layout are broken into section, to keep render function cleaner you can use <Section /> wrapper

import { Page, Section } from "./src/layouts";

function Login() {
  return (
    <Page>
      <Section>
        <h2>Section with Component</h2>
      </Section>
      <section>
        <div className="container">
          <h2>Section without component</h2>
        </div>
      </section>
    </Page>
  );
}

Test

Test still needs to be written, the jest is already plugged on the project.

> npm test

Release

> npm install -g now
> now

Built with

TODO

SignUp

status: layout and logic is pretty much done, it needs to connect to the api and do the correct redirection

Event Detail

status: a few components done, it can display the event but edit option needs work

Handle Better Preload Image

to give better 'feedback' to the user using the site for the first

eventio's People

Contributors

gplopes avatar

Watchers

 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.