Jump to content


Photo

ColorPicker

Module

  • Please log in to reply
36 replies to this topic

#1 Soma

Soma

    Hero Member

  • Moderators
  • 3,205 posts
  • 1757

  • LocationSH, Switzerland

Posted 19 January 2012 - 07:32 AM

ColorPicker 1.0.4

Custom Fieldtype/Inputfield for ProcessWire 2.+

This module gives you a new custom Fieldtype. Let's you select a color using a Colorpicker jQuery Plugin. The color selected will be stored in HEX format uppercase: "EAEAEA";

To use it in your template as a background HEX color, you'd simple output the value and prefix it with a #:

 

echo "background-color: #" . $page->color;


When creating a new field in the admin, you can set a default value the field should be prefilled with when creating a new page. The field supports a "reset" button to be able to set it back to the default value.
The colorpicker used: ColorPicker jQuery Plugin by Eyecon


Changelog

 

1.0.4

  • fixed bug with use in repeater

1.0.3

 

  • added support for default value
  • added reset link to set back to default color

1.0.2

  • Fixed issue with colorpicker not working when used in tabs

1.0.1

  • Remove lots of code not needed. Cleanup.

1.0.0

  • Initial Stable Release.

How to install:

  • Download the contents of this repository and put the folder renamed as "ColorPicker" into your site/modules/ folder
  • Login to processwire and got to Modules page and click "Check for new modules". You should see a note that two new modules were found. Install the FieldtypeColorPicker module under "Field" section. This will also install the required InputfieldColorPicker at the same time.
  • Done
  • You can now create a new field with the "ColorPicker" Fieldtype.


Get it from modules section: http://modules.proce...e-color-picker/

pw-colorpicker.jpg


@somartist | modules created | support me, flattr my work flattr.com


#2 apeisa

apeisa

    Hero Member

  • Moderators
  • 2,526 posts
  • 855

  • LocationVihti, Finland

Posted 19 January 2012 - 08:30 AM

(can't attach/upload files! what's going on?)


You have probably wasted your generous 500kt (heh heh) quota on old forums already: http://processwire.c...rea=attachments

So maybe that limit could be raised, Pete and Ryan?


About your module, great stuff, I am pretty sure this will come handy! Do you save the hex-value or rgb?

#3 Nico Knoll

Nico Knoll

    The Boss.

  • Members
  • PipPipPipPipPip
  • 644 posts
  • 236

  • LocationBerlin, Germany

Posted 19 January 2012 - 09:24 AM

Looks nice. Will try it soon :)

#4 ryan

ryan

    Hero Member

  • Administrators
  • 5,780 posts
  • 3124

  • LocationAtlanta, GA

Posted 19 January 2012 - 06:32 PM

Soma, great idea and it seems to work great. Nice job.

As for the code in there, I think all looks good except that you've got a lot of 'extra' that you don't need. I don't think there's any reason to extend FieldtypeText (?) so I would just start from a fresh Fieldtype instead:


class FieldtypeColorPicker extends Fieldtype {
  
  public static function getModuleInfo() {
	return array(
	  'title' => 'ColorPicker',
	  'version' => 100,
	  'summary' => 'Field that stores a hex color as string in a text field. Color is picked using a jQuery ColorPicker Plugin by http://www.eyecon.ro/colorpicker/',
	  'installs' => 'InputfieldColorPicker'
	   );
  }
  
  public function getBlankValue(Page $page, Field $field) {
	return 'FFFFFF';
  }
  
  public function sanitizeValue(Page $page, Field $field, $value) {
	return strtoupper(substr($value, 0, 6));
  }
  
  public function getInputfield(Page $page, Field $field) {
	return $this->modules->get('InputfieldColorPicker');
  }
  
  public function getDatabaseSchema(Field $field) {
	$schema = parent::getDatabaseSchema($field);
	$schema['data'] = 'CHAR(6) NOT NULL'; // i.e. FFFFFF or 333333 (hex color codes)
	return $schema;
  }
}

Likewise, your Inputfield had a lot of extra functions and stuff in there that you didn't need. So you could reduce it to this:


<?php
class InputfieldColorPicker extends Inputfield {
  
  public static function getModuleInfo() {
	return array(
	  'title' => 'ColorPicker',
	  'version' => 100,
	  'summary' => 'Provides and ColorPicker interface for defining hex color.',
	  'requires' => array("FieldtypeColorPicker")
	  );
  }
  
  public function __construct() {
	parent::__construct();
	$this->setAttribute('type', 'hidden');
  }
  
  public function init() {
	parent::init();
	$this->config->styles->add($this->config->urls->InputfieldColorPicker . "colorpicker/css/colorpicker.css");
	$this->config->scripts->add($this->config->urls->InputfieldColorPicker . "colorpicker/js/colorpicker.js");  
  }
  
  public function ___render() {
	$out = "\n<p><div id='ColorPicker_$this->name' style='border:2px solid #444;display:block;width:40px;height:40px;background-color:#".$this->value."'></div>";
	$out .= "<input " . $this->getAttributesString() . " /></p>";
	$out .= <<<_OUT

<script type='text/javascript'>
$('#ColorPicker_$this->name').ColorPicker({
  color: '#$this->value',
  onShow: function (colpkr) {
	$(colpkr).fadeIn(500);
	return false;
  },
  onHide: function (colpkr) {
	$(colpkr).fadeOut(500);
	return false;
  },
  onChange: function (hsb, hex, rgb) {
	$('#ColorPicker_$this->name').css('backgroundColor', '#' + hex);
	$('#Inputfield_$this->name').val(hex);
  }
});
  
</script>
  
_OUT;
  
	return $out;
  }
}


#5 Soma

Soma

    Hero Member

  • Moderators
  • 3,205 posts
  • 1757

  • LocationSH, Switzerland

Posted 19 January 2012 - 07:13 PM

@apeisa, I don't know if it got to do with limited space? ... switched to extended post options ... ok now that is funny, that has to be most funny notice I've seen. There's this line I didn't payed attention closely yet but it says: "Used 2.84MB of your 500K global upload quota (Max. single file size: 100MB)" :D

And yes it's stored as hex. I also thought about wether to chose rgb or hex. And I can't really tell as there's so many option possible, so I just went with hex. I don't know if a converted function or a separate fieldtype or a config option would be best. I haven't really put much more time into it for now, but now that it's working it's time to consider some more possible options.

@ryan, you're awesome, you just made my day. Seriously you helped me really a lot just by doing this cleanup. This is great, as I was also thinking about what could still be removed that's not necessary, but I struggled a lot because I'm still learning this stuff. Thanks for the better database shema! Haven't really taken care of that, oh well. Good idea. I will study it to get a little more clear on fieldtypes. Basicly I wasn't sure what really would be needed to create a new one and thought extending text field would be ok, so I copied the text fieldtype code and deleted some stuff but I guess it was a little off still :D I will implement the changes now and update the rep.

Thanks so much for your help!

@somartist | modules created | support me, flattr my work flattr.com


#6 Soma

Soma

    Hero Member

  • Moderators
  • 3,205 posts
  • 1757

  • LocationSH, Switzerland

Posted 19 January 2012 - 08:21 PM

Ok, I cleaned up the code and tested it. I just comited a new version to github.
  • improved database schema
  • removed a lot of not needed functions and code
  • fixed an issue where it wouldn't trigger a change on the hidden form text input, now works with "isdirty" type of js checks, i.e. for save reminder type modules
Thanks again Ryan. I may will get back with some questions... but need some sleep now :D

@somartist | modules created | support me, flattr my work flattr.com


#7 ryan

ryan

    Hero Member

  • Administrators
  • 5,780 posts
  • 3124

  • LocationAtlanta, GA

Posted 20 January 2012 - 02:45 PM

Thanks Soma, nice job. This is a great module!

#8 adamkiss

adamkiss

    Master of the universe

  • Moderators
  • 1,078 posts
  • 289

Posted 08 August 2012 - 07:29 AM

In case you didn't notice, I posted you a Issue on GH: https://github.com/s...Picker/issues/1

#9 Soma

Soma

    Hero Member

  • Moderators
  • 3,205 posts
  • 1757

  • LocationSH, Switzerland

Posted 08 August 2012 - 07:53 AM

Thanks Adam, didn't really notice somethings wrong (wrong method name) when recently adding version to scripts. It's fixed in latest commit. You should be able to install it sucessfully.

@somartist | modules created | support me, flattr my work flattr.com


#10 adamkiss

adamkiss

    Master of the universe

  • Moderators
  • 1,078 posts
  • 289

Posted 08 August 2012 - 07:56 AM

Yeah, I noticed, thanks.

If the MM has update function, can you update the version on modules.processwire.com ? I'd love to try that :) [sorry for DP both here and on GH]

#11 Soma

Soma

    Hero Member

  • Moderators
  • 3,205 posts
  • 1757

  • LocationSH, Switzerland

Posted 08 August 2012 - 08:10 AM

Yeah, I noticed, thanks.

If the MM has update function, can you update the version on modules.processwire.com ? I'd love to try that :) [sorry for DP both here and on GH]


Yep, it's now updated on directory.

@somartist | modules created | support me, flattr my work flattr.com


#12 adamkiss

adamkiss

    Master of the universe

  • Moderators
  • 1,078 posts
  • 289

Posted 08 August 2012 - 08:48 AM

Yep, it's now updated on directory.


The update was super pleasant. Great work.


#13 Wim van Buynder

Wim van Buynder

    Starter

  • Members
  • 1 posts
  • 1

Posted 18 October 2012 - 09:13 AM

Hi,

Great module! Is it possible to give an example on how to use it in the templates? Thanks in advance!

Wim

---------

Found it :)

It's just $page->field_color

#14 netcarver

netcarver

    Sr. Member

  • Members
  • PipPipPipPip
  • 428 posts
  • 341

  • LocationUK

Posted 18 October 2012 - 11:40 AM

Hey Wim,

glad you worked it out. Welcome to the PW forum.
Steve ☧

#15 Soma

Soma

    Hero Member

  • Moderators
  • 3,205 posts
  • 1757

  • LocationSH, Switzerland

Posted 19 October 2012 - 04:12 PM

Hi,

Great module! Is it possible to give an example on how to use it in the templates? Thanks in advance!

Wim

---------

Found it :)

It's just $page->field_color


Welcome!

Thanks, glad you found it out on your own. I wanted to add that you also need echo it ;)

echo $page->field_color;


@somartist | modules created | support me, flattr my work flattr.com


#16 onjegolders

onjegolders

    Hero Member

  • Members
  • PipPipPipPipPip
  • 804 posts
  • 211

  • LocationMidlands, UK

Posted 13 November 2012 - 12:15 PM

Call me stupid (please don't, I may cry) but how do you actually use this? Can you use it to style things in the CSS?

Would you need to use inline styles?

#17 diogo

diogo

    Hero Member

  • Moderators
  • 2,008 posts
  • 1089

  • LocationPorto, Portugal

Posted 13 November 2012 - 12:37 PM

just an example:

<style>
body{
   background-color: <?=$page->backColor?>;
}
</style>


#18 Martijn Geerts

Martijn Geerts

    Sr. Member

  • Members
  • PipPipPipPip
  • 373 posts
  • 168

Posted 13 November 2012 - 01:15 PM

You could create a styles.php template. And add your colorpicker there.

then on top of that PHP file:
<?php header("Content-type: text/css"); ?>


#19 Soma

Soma

    Hero Member

  • Moderators
  • 3,205 posts
  • 1757

  • LocationSH, Switzerland

Posted 13 November 2012 - 01:25 PM

You could also output it as a js var and use it in scripts.

<script>
  var mycolor = "#<?php echo $page->color?>";
</script>

@somartist | modules created | support me, flattr my work flattr.com


#20 Martijn Geerts

Martijn Geerts

    Sr. Member

  • Members
  • PipPipPipPip
  • 373 posts
  • 168

Posted 13 November 2012 - 01:49 PM

I wanted to use Soma's Sliders to generate hsl colours.( 3 sliders ) But Older IE needs rgb.
here's just a bunch of code I used/created to manage it.

maybe helpful.

<?php header("Content-type: text/css");
// rgbToHsl
function rgbToHsl ( array $rgb ) {
list( $r, $g, $b ) = $rgb;
$r/= 255;
$g/= 255;
$b/= 255;
$max = max( $r, $g, $b );
$min = min( $r, $g, $b );
$h;
$s;
$l = ( $max + $min )/ 2;
if ( $max == $min ) {
  $h = $s = 0;
} else {
  $d = $max - $min;
  $s = $l > 0.5 ? $d/ ( 2 - $max - $min ) : $d/ ( $max + $min );
  switch( $max ) {
   case $r:
   $h = ( $g - $b )/ $d + ( $g < $b ? 6 : 0 );
   break;
   case $g:
   $h = ( $b - $r )/ $d + 2;
   break;
   case $b:
   $h = ( $r - $g )/ $d + 4;
   break;
  }
  $h/= 6;
}
return array( $h, $s, $l );
}
// hslToRgb
function hslToRgb ( array $hsl ) {
list( $h, $s, $l ) = $hsl;
$r;
$g;
$b;
if ( $s == 0 ) {
  $r = $g = $b = $l;
}
else {
  $q = $l < 0.5 ? $l * ( 1 + $s ) : $l + $s - $l * $s;
  $p = 2 * $l - $q;
  $r = hueToRgb( $p, $q, $h + 1/ 3 );
  $g = hueToRgb( $p, $q, $h );
  $b = hueToRgb( $p, $q, $h - 1/ 3 );
}
return array( round( $r * 255 ), round( $g * 255 ), round( $b * 255 ) );
}
// Convert percentages to points (0-255)
function normalizeCssRgb ( array $rgb ) {
foreach ( $rgb as &$val ) {
  if ( strpos( $val, '%' ) !== false ) {
   $val = str_replace( '%', '', $val );
   $val = round( $val * 2.55 );
  }
}
return $rgb;
}
// cssHslToRgb
function cssHslToRgb ( array $hsl ) {
// Normalize the hue degree value then convert to float
$h = array_shift( $hsl );
$h = $h % 360;
if ( $h < 0 ) {
  $h = 360 + $h;
}
$h = $h/ 360;
// Convert s and l to floats
foreach ( $hsl as &$val ) {
  $val = str_replace( '%', '', $val );
  $val/= 100;
}
list( $s, $l ) = $hsl;

$hsl = array( $h, $s, $l );
$rgb = hslToRgb( $hsl );

return $rgb;
}
// hueToRgb
function hueToRgb ( $p, $q, $t ) {
if ( $t < 0 ) $t += 1;
if ( $t > 1 ) $t -= 1;
if ( $t < 1/6 ) return $p + ( $q - $p ) * 6 * $t;
if ( $t < 1/2 ) return $q;
if ( $t < 2/3 ) return $p + ( $q - $p ) * ( 2/ 3 - $t ) * 6;
return $p;
}
// rgbToHex
function rgbToHex ( array $rgb ) {
$hex_out = '#';
foreach ( $rgb as $val ) {
  $hex_out .= str_pad( dechex( $val ), 2, '0', STR_PAD_LEFT );
}
return $hex_out;
}
// hexToRgb
function hexToRgb ( $hex ) {
$hex = substr( $hex, 1 );

// Handle shortened format
if ( strlen( $hex ) === 3 ) {
  $long_hex = array();
  foreach ( str_split( $hex ) as $val ) {
   $long_hex[] = $val . $val;
  }
  $hex = $long_hex;
}
else {
  $hex = str_split( $hex, 2 );
}
return array_map( 'hexdec', $hex );
}
/**
*
* Output to a "r, g, b" string
*
*/
function colorStringRGB($h, $s, $l ) {
$output = '';
$hsl = array($h, $s, $l);
$color = cssHslToRgb($hsl);

foreach( $color as $rgb ) $output .= $rgb . ', ';

$output = rtrim( $output, ', ' );
return $output;
}

// ---------------------------------------------------------------------------------------

$out = '';
$sections = array(
'aa' => 'value-a',
'bb' => 'value-b',
'cc' => 'value-c',
'dd' => 'value-d',
'ee' => 'value-e',
'ff' => 'value-f',
'gg' => 'value-g',
);


/**
*
* Converts HSL to RGB.
*
*
*/
$minH = $page->css_hue->min;
$maxH = $page->css_hue->max;
$count = count($sections);
$steps = round(( $maxH - $minH ) / $count);
$minL = $page->css_lightness->min;
$maxL = $page->css_lightness->max;
// l is defined in the foreach
$h = $page->css_check == 1 ? $minH : $maxH;
$s = $page->css_saturation;

foreach($sections as $key => $value) {
$out .= "\n\nli." . $key . ' {';
$out .= "\n\t" . 'background-color: rgb(' . colorStringRGB($h, ($s+20), $minL) . ');';
$out .= "\n" .  '}';
$out .= "\n";  
$out .= "\n\ndiv." . $key . ' {';
$out .= "\n\t" . 'background-color: rgb(' . colorStringRGB($h, ($s+20), $minL) . ');';
$out .= "\n" .  '}';
$out .= "\n";  
$out .= "\n." . $key . ' .column {			    background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';
$out .= "\n." . $key . ' .column:nth-child(2n) {  background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';
$out .= "\n." . $key . ' .column:nth-child(3n) {  background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';
$out .= "\n." . $key . ' .column:nth-child(5n) {  background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';
$out .= "\n." . $key . ' .column:nth-child(7n) {  background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';
$out .= "\n." . $key . ' .column:nth-child(11n) { background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';
$out .= "\n." . $key . ' .column:nth-child(13n) { background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';
$out .= "\n." . $key . ' .column:nth-child(17n) { background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';
$out .= "\n." . $key . ' .column:nth-child(23n) { background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';
$out .= "\n." . $key . ' .column.r1.c8 {		  background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';
$out .= "\n." . $key . ' .column.r3.c1 {		  background-color: rgb(' . colorStringRGB($h, $s, rand($minL,$maxL)) . '); }';

$h = $page->css_check == 1 ? $h + $steps : $h - $steps;

}

echo $out;

?>






Also tagged with one or more of these keywords: Module

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users