modularcode / modular-admin-html

ModularAdmin - Free Dashboard Theme Built On Bootstrap 4 | HTML Version

Home Page:https://modularcode.io/modular-admin-html/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ModularAdmin: Free Bootstrap 4 Dashboard Theme
HTML version

Backers on Open Collective Sponsors on Open Collective Join the chat at https://gitter.im/modularcode/modular-admin

demo

View Demo | Download ZIP

ModularAdmin is an open source dashboard theme built in a modular way. That makes it easy to scale, modify and maintain.


πŸ“£ Heads up for the Modular Material Admin + React!

Currently I work on the Modular Admin ReactJS version, which uses React, MaterialUI, Redux and TypeScript. πŸŽ– Star the project or πŸ‘£ follow me on Twitter to stay up to date!

πŸ‘‰ Support me on pateron to make this happen! πŸ‘


Getting Started

Note: If you don't want to re-build the project, you may just clone this branch directly https://github.com/modularcode/modular-admin-html/tree/gh-pages

1. Download ZIP or Git Clone

git clone https://github.com/modularcode/modular-admin-html.git

2. Build the project

The cloned/downloaded repository doesn't contain prebuilt version of the project and you need to build it. You need to have NodeJs (v8+) with npm (v3+) installed.

Install npm dependencies

npm install

Build the project and start local web server

npm start

Open the project http://localhost:4000.

Warning! all changes made in dist/ folder would be overwriten on application build.


You can also run the project in docker thanks to @japrogramer


Folder Structure

β”œβ”€β”€ build/               # app build tasks and tools
β”œβ”€β”€ config/              # build configs and paths definitions
β”œβ”€β”€ dist/                # compiled result
β”œβ”€β”€ node_modules/        # node dependencies        
β”œβ”€β”€ src/                 # source files
└── package.json         # npm configuration file

config/ folder

This folder contains application build configurations and paths definitions. For adding/removing NPM dependencies you need to manually define the paths in config/index.js file after the module installation.

build/ folder

This folder contains files related to our application compilation. That can be styles preprocessing (LESS,SASS,PostCSS) and template engine compilation, script file concatenation and minification and other related tasks.

β”œβ”€β”€ tasks/                           # tasks folder
|   └── {different tasks}            # each file represents a single build task
β”œβ”€β”€ utils/                           # some utils
└── gulpfile.js                      # main build file for gulp build system

src/ folder

This folder contains our application source files. The folder structure reflects the app component structure.

Each non-underscored folder represents a single component module. Modules can be nested inside each other.

There are also special folders which start with an underscore. For example _common/ folder contains common components that are used by other components at the same level.

This file structuring makes our app file organization very semantic and scalable. Also It's very easy to work on separate components even if you're developing large-scale applications.

β”œβ”€β”€ _assets/                           # application assets
β”œβ”€β”€ _common/                           # common components
|   β”œβ”€β”€ helpers/                       # handlebars helpers
|   └── styles/                        # application common styles
β”œβ”€β”€ _themes/                           # different theme versions
β”œβ”€β”€ app/                               # app module (dashboard view)
β”‚   β”œβ”€β”€ _common/                       # app common components
β”‚   |   β”œβ”€β”€ editor/                    # wysiwyg editor files
β”‚   |   β”œβ”€β”€ footer/                    # footer files
β”‚   |   β”œβ”€β”€ header/                    # header files
β”‚   |   β”œβ”€β”€ modals/                    # common modal dialogs (confirm, image library, etc)
β”‚   |   └── sidebar/                   # sidebar files
β”‚   β”œβ”€β”€ {different modules}
β”‚   β”œβ”€β”€ app-layout.hbs                 # app view layout
β”‚   └── app.scss                       # main app view styles
β”œβ”€β”€ auth/                              # auth module (login/signup/recover)
β”‚   β”œβ”€β”€ {different modules}
β”‚   β”œβ”€β”€ auth-layout.hbs                # auth view layout
β”‚   └── auth.scss                      # main auth view styles
β”œβ”€β”€ _context.js                        # main handlebars variables
β”œβ”€β”€ _main.scss                         # main styles
β”œβ”€β”€ _variables.scss                    # variables
β”œβ”€β”€ config.js                          # javascript configs
└── main.js                            # main script file

dist/ folder

Compiled state of our app with processed styles, templates, scripts and assets.

Warning! Never work inside this folder, because your changes would be overwritten on every build


File Types

Our app consists of different file types.

Styles (*.scss)

We use SASS as CSS preprocessor language. Main variables are defined in src/_variables.scss folder. For making life easier we broke down styles into components, and on build we're just merging all .scss files together and processing it to dist/css/app.css file. Style files are merged in the following order

{variables.scss}
{bootstrap variables}
{bootstrap mixins}
{rest style files}

The remaining style files are merged in the alphabetical order.

There are also different theme variations located in src/_themes/ folder, where you can change the main variables to get different themes. There are a few predefined themes built in. You can add new themes by adding a new file in src/_themes/ folder. The file name must end with -theme.scss.

Scripts (*.js)

We separate application's scripts across its components. For simplicity we use ES5 in this version, and just wrap each component's script in jQuery $(function() { }). JS configurations are defined in src/config.js file. On build, application script files are merged together and copied to dist/js/app.js folder. The script files are merged in the following order.

{config.js}
{all .js files except main.js}
{main.js}

Templates (*.hbs)

Templates are pieces of HTML files written in template engine language. We use Handlebars, which allows to have conditions in HTML, reuse partials in different pages (e.g. sidebars, footers), use loops, layouts etc.

Pages (*-page.hbs)

Templates themselves are just parts of the markup, and aren't compiled as separate files. What we really want in the final output is a .html page in the dist/ folder. There are special handlebar templates for it, their filenames ending with -page.hbs. Each {pagename}-page.hbs file would be compiled to dist/{pagename}.html page with a flatened file structure.

Pages can consist of different templates (partials) which can be included thanks to handlebars partial including feature. Also each page has its context, which is a data passed into the template on rendering. That data is used in template expressions and variables. page contexts can be defined in two ways:

YAML headers (example)

---
foo: bar
list: 
  - One
  - Two
  - Three
---

and _context.js files.

module.exports = {
  foo: 'bar',
  foo2: function() {
    // do some magic, return some string
  },
  list: [
    'One', 'Two', 'Three'
  ]
}

The final result of page context is a combination of both ways. Moreover, different depth level _context.js files are extending each other and then are extended with YAML headers data. For simplicity we use only YAML headers.

Layouts (*-layout.hbs)

If different pages have a lot of common components like sidebars, headers, footers, then it's a good idea to define a layout for those common pages, and define in page files only the content which is unique.

Layout is a page content wrapper. If the page has a layout in output we'll get page's content inserted into the layout. Layouts should have {{{body}}} handlebars tag, which is entry point for the page content. (example)

To define a page layout you need to specify page file context's layout variable. It can be done both with a YAML header or a _context.js file. (example).

Layouts can also have contexts and parent layouts.

{_main-layout.hbs}                  # main layout with doctype, head, scripts declaration
    {app/app-layout.hbs}            # dashboard layout with sidebar, header and footer
        {app/forms/forms-page.hbs}  # any dashboard page

If you need more advanced layouting with multiple content blocks at the same time you can use handlebar-layouts helper approach, which is also available out of the box.


Running in Docker

You can run the project in docker. To build the container, you need to install docker and docker-compose than launch the docker daemon. After launching the daemon run the following commands from the project folder:

Build the image

docker-compose build

Launch the container

docker-compose up

Support me!

Creating a good quality project takes a lot's of time, so any help is really appreciated!

https://www.patreon.com/modularcoder

Contribute

Be part of our team! Feel free to open new issues/pull-requests.

Get in touch

You can get in touch with us in gitter chat Join the chat at https://gitter.im/modularcode/modular-admin or in the ModularCode Facebook Group. Feel free to contact us with any questions, sugestions, remarks and potential feature requests that you might have.

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]

Credits

About

ModularAdmin - Free Dashboard Theme Built On Bootstrap 4 | HTML Version

https://modularcode.io/modular-admin-html/

License:Other


Languages

Language:HTML 62.0%Language:JavaScript 20.4%Language:CSS 17.4%Language:Dockerfile 0.1%