Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jsarnowski/oxygen / angular / controllers / controller.slider.js
Size: Mime:

/**
 * Slider Controller
 *
 */

CTFrontendBuilderUI.controller("ControllerSlider", function($controller, $scope, $timeout, $interval) {

	$scope.$parent.$on('iframe-init', function(e, iframeScope) {

        /**
         * Setup UI
         *
         */

		jQuery("#ct-sidepanel").on("mousedown", ".ct-sortable-slide", function($event){
            
            // don't animate when DOM Tree options dropdown clicked
            if ( jQuery($event.target).parents('.ct-more-options-container').length > 0 ) {
                return;
            }

			var sliderId 	= jQuery(this).closest(".ct-sortable-slider").attr("ng-attr-tree-id"),
				slideIndex 	= jQuery(this).index() - 3; // offset the .ct-dom-tree-bottom-dash-cover and .ct-dom-tree-left-dash-cover
			
			$scope.animateToSlide(sliderId, slideIndex);
    	});

    })

    
    /**
     * Add first 3 slides when adding slider component
     *
     * @author Ilya K.
     * @since 2.0
     */

    $scope.$parent.addSlides = function() {

        var timeout = $timeout(function() {
            
            $scope.iframeScope.waitOxygenTree(function(){

                var sliderId = $scope.iframeScope.component.active.id;
                            
                $scope.iframeScope.addComponent("ct_slide",false,true);
                $scope.iframeScope.addComponent("ct_slide",false,true);
                $scope.iframeScope.addComponent("ct_slide",false,true);

                $scope.iframeScope.updateDOMTreeNavigator(sliderId);

            })

            $interval.cancel(timeout);
        }, 0, false);

    }


    /**
	 * Animate Unslider to certain slide
     *
     * @author Ilya K.
     * @since 2.0
     */

    $scope.$parent.animateToSlide = function(sliderId, slideIndex) {

        //console.log("animateToSlide()",sliderId, slideIndex, $scope.iframeScope.sliders[sliderId])

    	if (slideIndex >= 0) {
    		$scope.iframeScope.sliders[sliderId].unslider('animate:'+slideIndex);
    	}
    }


    /**
     * Trigger on slide component added from builder directive
     *
     * @author Ilya K.
     * @since 2.0
     */

    $scope.$parent.slideAdded = function(sliderId, slideId) {

        // rebuild slider
        $scope.iframeScope.rebuildDOM(sliderId);

        // scroll to added slide
        var slideIndex = $scope.iframeScope.getComponentById(slideId).closest("li").index();
        $scope.animateToSlide(sliderId, slideIndex);
    }

})