/**
 * Used for "Value" slider.
 * @private
 */
Ext.define('Ext.ux.colorpick.SliderValue', {
    extend: 'Ext.ux.colorpick.Slider',
    alias: 'widget.colorpickerslidervalue',
    cls: Ext.baseCSSPrefix + 'colorpicker-value',
    requires: [
        'Ext.XTemplate'
    ],
 
    gradientStyleTpl: Ext.create('Ext.XTemplate', // eslint-disable-next-line max-len
                                 'background: -mox-linear-gradient(top, #{hex} 0%, #000000 100%);' + /* FF3.6+ */ // eslint-disable-next-line max-len
            'background: -webkit-linear-gradient(top, #{hex} 0%,#000000 100%);' + /* Chrome10+,Safari5.1+ */
            'background: -o-linear-gradient(top, #{hex} 0%,#000000 100%);' +      /* Opera 11.10+ */
            'background: -ms-linear-gradient(top, #{hex} 0%,#000000 100%);' +     /* IE10+ */
            'background: linear-gradient(to bottom, #{hex} 0%,#000000 100%);'     /* W3C */
    ),
 
    // Called via data binding whenever selectedColor.v changes; value param is 0-100
    setValue: function(value) {
        var me = this,
            container = me.getDragContainer(),
            dragHandle = me.getDragHandle(),
            containerEl = container.bodyElement,
            containerHeight = containerEl.getHeight(),
            yRatio,
            top;
 
        value = Math.max(value, 0);
        value = Math.min(value, 100);
 
        // User actively dragging? Skip event
        if (dragHandle.isDragging) {
            return;
        }
 
        // y-axis of slider with value 0-1 translates to reverse of "value"
        yRatio = 1 - (value / 100);
        top = containerHeight * yRatio;
 
        // Position dragger
        dragHandle.element.setStyle({
            top: top + 'px'
        });
    },
 
    // Called via data binding whenever selectedColor.h changes; hue param is 0-1
    setHue: function(hue) {
        var me = this,
            container = me.getDragContainer(),
            rgb, hex;
 
        // Too early in the render cycle? Skip event
        if (!me.element) {
            return;
        }
 
        // Determine HEX for new hue and set as background based on template
        rgb = Ext.ux.colorpick.ColorUtils.hsv2rgb(hue, 1, 1);
        hex = Ext.ux.colorpick.ColorUtils.rgb2hex(rgb.r, rgb.g, rgb.b);
        container.bodyElement.applyStyles(me.gradientStyleTpl.apply({ hex: hex }));
    }
});