GithubHelp home page GithubHelp logo

gamersportal / enso Goto Github PK

View Code? Open in Web Editor NEW

This project forked from laravel-enso/enso

0.0 1.0 0.0 187.49 MB

Laravel Vue SPA, Bulma themed. For demo login use `[email protected]` & `password`.

Home Page: https://www.laravel-enso.com

License: MIT License

PHP 32.56% Vue 61.52% CSS 0.14% HTML 5.78%

enso's Introduction

Laravel Enso

StyleCI Waffle.io - Columns and their card count

Hit the ground running when building your new Laravel SPA project with boilerplate and extra functionality out of the box!

 

Watch the demo

click on the photo to view a short demo in compatible browsers

Important

If you are using this project please consult the changelog on every update.

For the v1.x / adminlte version, take a look at the adminlte branch.

Official Documentation

The documentation is available here. Note that most sections have short demo clips.

Take It For A Spin

You may try out a live demo installation by visiting laravel-enso.com and logging in with [email protected] and password.

Installation Steps

  1. Download the project with git clone https://github.com/laravel-enso/Enso.git

  2. Run in the project folder composer install

  3. Configure the .env file. Run php artisan key:generate

  4. Run php artisan migrate

  5. Login into the project with user: [email protected], password: password

  6. (optional) Setup the configuration files as needed, in config/enso/*.php

  7. (optional) npm install / npm run dev / hmr /...

Enjoy!

IMPORTANT NOTE: Due to laravel mix limitations, when using hmr,
you need to comment lines 3-to-7 inside webpack.mix.js in order for it to work correctly. Don't forget to uncomment them back when building without hot module replacement.

Using Enso for Your Project

  1. Follow the steps above to install & setup
  2. If you find Enso suited for building a project with it, delete the .git folder, run git init, and use a dedicated repo for your custom project
  3. Develop
  4. To update run composer update / npm update and compile
  5. Breaking changes in the dependencies? Update your custom code then update the new versions in composer.json and run composer update
  6. Need another new project ? Start again from the first step

Note: When we must make breaking changes to the packages, we increase the minor version. Due to how dependencies are defined, composer will not update the dependencies for you in that case, that's why you need to look at the changelog, be aware of the changes, update your code and then manually update the dependencies' minor version, so that you can continue to receive updates.

With Enso you get

A solid starting project, based on Laravel 5.6, VueJS 2, Bulma, integrated themes from Bulmaswatch, all the VueJS goodies such as VueEx and VueRouter, with features like:

  • Customizable and powerful datatables:

    • JSON templates
    • server side
    • multi-argument full column search
    • customizable column visibility
    • state save in localStorage for each table
    • automatic action buttons generation, depending on user permissions
    • custom action buttons as needed
    • beautiful tag rendering for boolean flag columns
    • easy display of flag/type columns values
    • server-side excel export for every table
  • Beautiful forms:

    • JSON templates
    • server side
    • validation
    • customizable
  • Vue select - server side builder with parameter conditioning, including pivot parameters, built as a wrapper for Vue-multiselect

  • Advanced owners / roles / permissions structure

  • Log management - view, download, clear

  • User action logger, so you can keep track of who's done what

  • User impersonation for easy support and debugging

  • Application interface tutorials based on the awesome Intro.js

  • Localisation support

  • Charts component with server side data builder, based on Chart.js

  • Comments component with support for tagging users

  • Documents component with upload, download and inline view

  • Ability to track who created, updated and deleted models, using traits

  • File uploader and file management library

  • Avatar functionality for all users

  • Ability to track the different versions of a model through its lifetime

  • Front-end date-picker and time-picker, based on Flatpickr

  • Server-side type-ahead

  • User, application-wide preferences - every user has the ability to choose his theme (from 10 variants), set the menu style, app language and more

  • Queueable jobs

  • Push notifications - working out of the box (requires Pusher)

  • Automatic breadcrumbs generation

  • Application-wide timestamp formatting customization through the configuration file

  • many more helpers and hidden gems

fully working in less than 5 minutes!

     

Under the Hood

 

Authentication

  • the standard Laravel authentication is used, via email & password

 

Stateful vs Stateless

Since we wanted to log data about our users and their requests, as well as check various permissions, the concept of a 'truly' stateless and secure API backend becomes impossible.

From a security standpoint we did not feel that a RESTful would not be more secure but probably even less safe.

Finally, from our own internal tests we concluded that we had no performance issues related to having the application stateful, especially since we don't aim to build applications of Twitter's scale.

In conclusion, even though at a point during the development we had the back-end set up as an API using JWT, in the end we designed it stateful since session is stored in the DB or in files, depending on your chosen setup.

 

Session management

  • since Enso is built on top of a Laravel back-end, we are using the provided session management

 

Security

  • since Laravel is using HttpOnly cookies and an additional CSRF token, this should provide protection against both XSS and CSRF attacks
  • remember that when working with VueJS, the v-html directive is XSS vulnerable, so it should be used only with sanitized/safe data

 

Authorization

  • application wide, checking user status: active/inactive. The check is made for every request, via a middleware. The inactive status prevents the user from logging in and making requests. If an user becomes inactive while he's still logged in, at his next request he'll be logged out and redirected to the login page with a notification
  • application-section wide, via the menu's visibility, depending on the user's role. The users that don't have access to a certain menu, can't see it. This level doesn't block access to the routes, it just affects the visibility of the menus
  • application-section wide, depending on permitted access to routes, which is tied to the user's role and the associated permissions for that role. The check is made for each request, via a middleware. If the user is not allowed on a route a 403 response is given back and a laravel.log entry is made.
  • content specific, via gates & policies. The check is made locally, when and where gates & policies are used

 

Middleware & Middleware Groups

  • for the routes within the application, the 'core' middleware group is applied
  • the 'core' group contains the middleware below, presented in the order they're applied:
    • verify-active-state - checks users's status (active/inactive)
    • action-logger - logs for each request the user's id, route, url, the HTTP verb and the timestamps
    • verify-route-access - authorizes the access to a route
    • impersonate - starts and stops the impersonation of a user, when needed
    • set-language - sets the user's chosen language (localisation)

 

Owners, Roles & Users

  • users represent the operators using the application
  • roles are collections of permissions
  • owners are user groups, and can represent departments, types, and even companies
  • an owner can have many users
  • an owner can have many roles
  • an user has just one owner and just one role
  • the role of a user may only be one of the roles available for its owner
  • users have an active or inactive status, where inactive users cannot login or make requests in the application (but can set/reset their password)

 

Preferences

The mechanism allows saving and loading of the user's preferences for several aspects of the application.

  • the preferences can be updated from the right-hand sidebar. From there the user can also reset the preferences to default.
  • the user's preferences are stored in the preferences table, under value column, in JSON format.
  • list of preferences
    • lang - the user's language
    • theme - the currently selected theme

 

Translations

Are loaded at application load, and refreshed as needed

 

Environment

  • config
    • within the configuration enso folder config/enso you'll find configuration files for the various laravel-enso packages
    • inside 'config.php' various options may be set, such as the folders used for storing uploads, avatars, etc. the caching duration and the timestamps format when displaying them, the app version displayed in the footer and more

 

Telemetry

  • the implicit login event that Laravel fires on a user's login triggers a listener that stores the user's ip, user-agent and timestamps inside the logins table

 

Exceptions

  • when needed, the exceptions thrown are as specific as possible
  • since requests are supposed to be ajax, JSON responses are given back

Usage Notes

Please note that because we want to keep the compiled size down, throughout the Enso ecosystem, icons are imported selectively.

What this means for you is that the necessary icons should be imported inside your components/pages. If you want to import FA icons globally (not recommended) the place to include them is:

resources/assets/js/app.js

For menus, icons should be imported in: assest/js/pages/layout/sidebar/icons/app.js

For languages, flag icons should be imported in: resources/assets/sass/app.scss

(you may use flags.scss as a reference)

Adding translations or a new language

If you want to add a new language, there are a few steps involved, so please check out the relevant section of the localisation package.

Thanks

Built with with ❤️, crafted on Laravel 5.6.x, Bulma 0.6.x, Vuejs 2.5.x and:

Vue Router, Vuex, Axios, Font awesome 5, Animate.css, Bulmaswatch, Bulma-Extensions, Nprogress.js, Vue-multiselect, Intro.js, Chart.js, Flatpickr,

Special thanks to Taylor Otwell, Jeffrey Way, Evan You and Jeremy Thomas.

Contributions

are welcome. Pull requests are great, but issues are good too.

License

This package is released under the MIT license.

enso's People

Contributors

aocneanu avatar gandesc avatar mauthi avatar waffle-iron avatar

Watchers

James Cloos 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.