Code Monkey home page Code Monkey logo

Comments (1)

cxr29 avatar cxr29 commented on September 23, 2024

I wrote one:

(function(angular) {
    angular.module('bootstrap.sidebar', [])
        .directive('sidebar', ['$animate', '$document', function($animate, $document) {
            return {
                restrict: 'A',
                link: function(scope, element, attrs) {
                    if (!element.hasClass('sidebar')) element.addClass('sidebar');
                    if (!element.hasClass('sidebar-left') &&
                        !element.hasClass('sidebar-right')) element.addClass('sidebar-left');
                    if (!scope.$eval(attrs.sidebar) &&
                        element.hasClass('sidebar-open')) element.removeClass('sidebar-open');

                    function show() {
                        if (element.hasClass('sidebar-open')) return;
                        $animate.addClass(element, 'sidebar-open');
                    }

                    function hide() {
                        if (!element.hasClass('sidebar-open')) return;
                        $animate.removeClass(element, 'sidebar-open');
                    }

                    scope.$watch(attrs.sidebar, function(newValue) {
                        newValue ? show() : hide();
                    });

                    if (attrs.clickOutside) {
                        function handler(event) {
                            if (!event || !event.target) return;
                            for (var e = event.target; e != null; e = e.parentNode) {
                                var element = angular.element(e);
                                if (element.hasClass('sidebar') ||
                                    element.hasClass('toggle-sidebar')) return;
                            }
                            scope.$apply(attrs.clickOutside);
                        }

                        $document.on('click', handler);

                        scope.$on('$destroy', function() {
                            $document.off('click', handler);
                        });
                    }
                }
            };
        }]);
})(angular);
<button type="button" class="navbar-toggle toggle-sidebar toggle-left hidden-md hidden-lg" ng-click="hideLeftSidebar = !hideLeftSidebar">
    <span class="icon-bar"></span>
    <span class="icon-bar"></span>
    <span class="icon-bar"></span>
</button>
<button type="button" class="navbar-toggle toggle-sidebar toggle-right" ng-click="showRightSidebar = !showRightSidebar">
    <span class="icon-bar"></span>
    <span class="icon-bar"></span>
    <span class="icon-bar"></span>
</button>
<div sidebar="!hideLeftSidebar" class="col-xs-7 col-sm-3 col-md-3 sidebar-left sidebar-animate sidebar-md-show">
    <ul class="nav navbar-stacked">
        <li class="active"><a href="#">Home</a></li>
        <li><a href="#about">About</a></li>
        <li><a href="#contact">Contact</a></li>
    </ul>
</div>
<div sidebar="showRightSidebar" click-outside="showRightSidebar = false" class="col-xs-7 col-sm-3 col-md-3 sidebar-right sidebar-animate">
    <ul class="nav navbar-stacked">
        <li class="active"><a href="#">Home</a></li>
        <li><a href="#about">About</a></li>
        <li><a href="#contact">Contact</a></li>
    </ul>
</div>

from bootstrap-sidebar.

Related Issues (10)

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.