Sha256: eef6ce2fc29428c956dd59891b5c66b43357b75e023e23997f7683f625dc82e2

Contents?: true

Size: 1006 Bytes

Versions: 44

Compression:

Stored size: 1006 Bytes

Contents

var React = require('react');
var Mui = require('material-ui');
var ColorCell = require('./ColorCell');

var ColorPicker = React.createClass({

    componentWillMount: function() {

        this.palette_ = [];
        this.palette_.push(
            '#f6e8c3',
            '#c7eae5',
            '#fde0ef',
            '#e6f5d0',
            '#e7d4e8',
            '#fee0b6',
            '#d1e5f0',
            '#f46d43',
            '#bdbdbd',
            '#a8ddb5'
        );

    },

    render: function() {
        var self = this;

        var colorsGrid = [];
        this.palette_.forEach(function(c) {
            colorsGrid.push(
                <ColorCell color={c}
                           size={self.props.cellSize}
                           onPickColor={self.props.onPickColor}/>
            );
        });

        return (

                <div className='color-picker' >

                    {colorsGrid}

                </div>

        );

    }

});

module.exports = ColorPicker;

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
nutella_framework-0.7.3 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.7.2 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.7.1 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.7.0 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.21 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.20 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.19 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.18 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.17 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.16 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.15 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.13 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.12 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.11 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.10 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.9 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.8 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.7 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.6 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js
nutella_framework-0.6.5 framework_components/roomcast-channel-creator/src/app/components/ColorPicker.js