Colorpickers for everyone! This colorpicker addon uses the widely used jQuery-based plugin, Spectrum as well as Jimdo's excellent angular binder angular-spectrum-colorpicker.
Spectrum support a wide variety of formats, such as hex, rgb(a), hsv(a), names and so forth, default is rgb. You can specify this as colorFormat
in the form. More info below at Form Type options.
The date picker is an add-on to the Bootstrap decorator. To use it, just include
dist/bootstrap-colorpicker.min.js
after dist/bootstrap-decorator.min.js
.
Easiest way is to install is with bower, this will also include dependencies:
$ bower install angular-schema-form-colorpicker
You'll need to load a few additional files to use colorpicker:
Be sure to load this projects files after you load angular schema form
- jQuery
- Angular
- The Spectrum source files (see the GitHub page for documentation)
- The Spectrum-angular source files (see the GitHub page for documentation)
- The spectrum CSS
- Translation files for whatever language you want to use (optional)
- Angular Schema Form
- The Angular Schema Form Colorpicker files (this project)
Example
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="/bower_components/angular/angular.min.js"></script>
<script type="text/javascript" src="/bower_components/angular-sanitize/angular-sanitize.min.js"></script>
<script type="text/javascript" src="/bower_components/spectrum/spectrum.js"></script>
<script type="text/javascript" src="/bower_components/angular-spectrum-colorpicker/dist/angular-spectrum-colorpicker.min.js"></script>
<script type="text/javascript" src="/bower_components/angular-schema-form/schema-form.min.js"></script>
<script type="text/javascript" src="/bower_components/angular-schema-form/bootstrap-decorator.min.js"></script>
<script type="text/javascript" src="/bower_components/angular-schema-form-colorpicker/bootstrap-colorpicker.min.js"></script>
<link rel="stylesheet" href="/bower_components/spectrum/spectrum.css">
<script type="text/javascript" src="/bower_components/spectrum/i18n/jquery.spectrum-sv.js"></script>
The colorpicker add-on adds a new form type, colorpicker
, and a new default
mapping.
Form Type | Becomes |
---|---|
colorpicker | a colorpicker widget |
Schema | Default Form type |
---|---|
"type": "string" and "format": "color" | colorpicker |
The colorpicker
form type takes two options: colorFormat
and spectrumOptions
.
and preferredFormat
in spectrumOptions
supports the following values at this time:
- hex
- hex3 (3 characters if possible)
- hsl
- rgb
- name (Falls back to hex)
- none (Depends on input)
More info at http://bgrins.github.io/spectrum/#options-preferredFormat
Spectrum supports a large amount of options that tweak a lot of the interface and behaviour. This addon uses a few standard options but these can be overwritten via the form key by the same name. There are too many options to list here but they can all be found in the spectrum documentation.
Here's an example:
{
key: "color",
colorFormat: 'hsv',
spectrumOptions: {
preferredFormat: 'hex3',
showAlpha: false,
palette: [['black', 'white'], ['red', 'green']]
}
}