CoreUI#

CoreUI is a robust, enterprise-grade admin template built on top of Bootstrap. It distinguishes itself through its modular architecture, comprehensive component library, and strong focus on real-world application needs.

  • πŸ‘‰ CoreUI - Product page

  • πŸ‘‰ CoreUI - Live Demo

The template is designed for building responsive, cross-browser web applications while maintaining high performance and accessibility standards.

πŸ‘‰ New to App-Generator? Join our 10k+ Community using GitHub One-Click SignIN.

CoreUI - open-source dashboard template provided by CoreUI Agency

Project Structure#

CoreUI follows a well-organized directory structure:

coreui/
    β”œβ”€β”€ dist/                # Compiled production files
    β”œβ”€β”€ src/
    β”‚   β”œβ”€β”€ assets/
    β”‚   β”‚   β”œβ”€β”€ brand/      # Logo and brand assets
    β”‚   β”‚   β”œβ”€β”€ icons/      # CoreUI Icons
    β”‚   β”‚   └── img/        # Images
    β”‚   β”œβ”€β”€ js/
    β”‚   β”‚   β”œβ”€β”€ core/       # Core functionality
    β”‚   β”‚   β”œβ”€β”€ widgets/    # Widget components
    β”‚   β”‚   └── main.js     # Main JavaScript file
    β”‚   β”œβ”€β”€ pug/            # Pug templates (optional)
    β”‚   β”œβ”€β”€ scss/
    β”‚   β”‚   β”œβ”€β”€ style.scss  # Main style file
    β”‚   β”‚   β”œβ”€β”€ _custom.scss
    β”‚   β”‚   β”œβ”€β”€ _variables.scss
    β”‚   β”‚   └── vendors/    # Third-party styles
    β”‚   └── views/          # HTML templates
    β”œβ”€β”€ build/              # Build scripts
    └── node_modules/       # Dependencies

Core Layout Structure#

Here’s the fundamental layout structure for CoreUI pages:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CoreUI</title>
    <!-- CoreUI CSS -->
    <link href="css/style.css" rel="stylesheet">
</head>
<body class="c-app">
    <!-- Sidebar -->
    <div class="c-sidebar c-sidebar-dark c-sidebar-fixed c-sidebar-lg-show" id="sidebar">
        <div class="c-sidebar-brand">
            <img class="c-sidebar-brand-full" src="assets/brand/coreui-base.svg" height="46">
            <img class="c-sidebar-brand-minimized" src="assets/brand/coreui-signet.svg" height="46">
        </div>

        <ul class="c-sidebar-nav">
            <!-- Sidebar navigation items -->
        </ul>

        <button class="c-sidebar-minimizer c-class-toggler" type="button"></button>
    </div>

    <!-- Main content wrapper -->
    <div class="c-wrapper">
        <!-- Header -->
        <header class="c-header c-header-light c-header-fixed">
            <button class="c-header-toggler" type="button">
                <span class="c-header-toggler-icon"></span>
            </button>

            <ul class="c-header-nav ml-auto">
                <!-- Header navigation items -->
            </ul>
        </header>

        <!-- Main content -->
        <div class="c-body">
            <main class="c-main">
                <div class="container-fluid">
                    <!-- Page content -->
                </div>
            </main>
        </div>

        <!-- Footer -->
        <footer class="c-footer">
            <div>CoreUI Β© 2024</div>
            <div class="ml-auto">Powered by CoreUI</div>
        </footer>
    </div>
</body>
</html>

Component System#

Card Components#

CoreUI extends Bootstrap’s card component with additional features:

<div class="card">
    <div class="card-header">
        Featured
        <div class="card-header-actions">
            <a class="card-header-action btn-setting" href="#">
                <i class="cil-settings"></i>
            </a>
            <a class="card-header-action btn-minimize" href="#">
                <i class="cil-arrow-circle-top"></i>
            </a>
            <a class="card-header-action btn-close" href="#">
                <i class="cil-x"></i>
            </a>
        </div>
    </div>
    <div class="card-body">
        Content
    </div>
</div>

Customization#

SCSS Variables#

CoreUI provides extensive customization through SCSS variables:

// Core variables
$sidebar-width: 256px;
$sidebar-minimized-width: 56px;
$sidebar-brand-height: 56px;

// Theme colors
$primary: #321fdb;
$secondary: #ced2d8;
$success: #2eb85c;
$info: #39f;
$warning: #f9b115;
$danger: #e55353;

// Layout options
$enable-sidebar-nav-rounded: true;
$enable-footer-fixed: true;
$enable-header-fixed: true;
$enable-sidebar-fixed: true;

// Typography
$font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue";
$font-size-base: 0.875rem;

JavaScript Configuration#

CoreUI’s behavior can be customized through JavaScript:

// Initialize CoreUI
window.addEventListener('load', function() {
    coreui.Sidebar._jQueryInterface.call($('#sidebar'), 'show');

    // Custom sidebar configuration
    var sidebar = new coreui.Sidebar('#sidebar', {
        minimize: true,
        unfoldable: false,
        breakpoints: {
            xs: 'c-sidebar-show',
            sm: 'c-sidebar-sm-show',
            md: 'c-sidebar-md-show',
            lg: 'c-sidebar-lg-show',
            xl: 'c-sidebar-xl-show'
        }
    });
});

// Configure tooltip options globally coreui.Utils.setTooltipDistance(10);

Advanced Features#

State Management#

CoreUI implements a robust state management system:

// State management for sidebar
class SidebarState {
    constructor() {
        this.minimized = false;
        this.unfoldable = false;
        this.mobile = window.innerWidth < 992;
    }

    toggle() {
        this.minimized = !this.minimized;
        document.body.classList.toggle('c-sidebar-minimized');
    }

    // Persist state
    save() {
        localStorage.setItem('sidebar-state', JSON.stringify({
            minimized: this.minimized,
            unfoldable: this.unfoldable
        }));
    }
}

const sidebarState = new SidebarState();

Custom Events#

CoreUI provides custom events for component interactions:

// Listen for sidebar events
const sidebar = document.querySelector('#sidebar');

sidebar.addEventListener('classtoggle.coreui.sidebar', function(event) {
    console.log('Sidebar class toggled:', event.detail);
});

sidebar.addEventListener('minimize.coreui.sidebar', function(event) {
    console.log('Sidebar minimized:', event.detail);
});

Performance Optimization#

Lazy Loading#

Implement lazy loading for better performance:

// Lazy load components
document.addEventListener('DOMContentLoaded', function() {
    const lazyComponents = document.querySelectorAll('[data-load]');

    const loadComponent = (element) => {
        const componentUrl = element.dataset.load;
        fetch(componentUrl)
            .then(response => response.text())
            .then(html => {
                element.innerHTML = html;
                element.removeAttribute('data-load');
            });
    };

    const observer = new IntersectionObserver((entries) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                loadComponent(entry.target);
                observer.unobserve(entry.target);
            }
        });
    });

    lazyComponents.forEach(component => observer.observe(component));
});

Asset Optimization#

// Configure webpack for optimal asset loading
module.exports = {
    optimization: {
        splitChunks: {
            chunks: 'all',
            cacheGroups: {
                vendors: {
                    test: /[\\/]node_modules[\\/]/,
                    priority: -10
                },
                default: {
                    minChunks: 2,
                    priority: -20,
                    reuseExistingChunk: true
                }
            }
        }
    }
};

## Responsive Design

CoreUI implements a mobile-first approach:

// Responsive breakpoints
$grid-breakpoints: (
    xs: 0,
    sm: 576px,
    md: 768px,
    lg: 992px,
    xl: 1200px,
    xxl: 1400px
);

// Responsive utilities
@include media-breakpoint-down(md) {
    .c-sidebar {
        position: fixed;
        z-index: $zindex-fixed + 1;
        transform: translateX(-100%);

        &.c-sidebar-show {
            transform: translateX(0);
        }
    }
}

Best Practices#

  1. Component Organization: - Keep components modular and reusable - Follow CoreUI’s naming conventions - Maintain consistent component structure - Document component dependencies

  2. Performance Guidelines: - Minimize HTTP requests - Optimize asset loading - Use proper caching strategies - Implement lazy loading where appropriate

  3. Accessibility: - Maintain ARIA labels - Ensure keyboard navigation - Provide sufficient color contrast - Support screen readers

Browser Support#

CoreUI supports all modern browsers: - Chrome (latest) - Firefox (latest) - Safari (latest) - Edge (latest) - Opera (latest) - Internet Explorer 11 (with polyfills)

Development Workflow#

# Install dependencies
npm install

# Start development server
npm run serve

# Build for production
npm run build

# Run tests
npm test

Resources and Support#

Remember to keep your CoreUI installation updated for the latest features and security patches.