Fix labels randomly changing color after saving
This commit is contained in:
13
src/helpers/color/colorFromHex.js
Normal file
13
src/helpers/color/colorFromHex.js
Normal file
@ -0,0 +1,13 @@
|
||||
/**
|
||||
* Returns the hex color code without the '#' if it has one.
|
||||
*
|
||||
* @param color
|
||||
* @returns {string}
|
||||
*/
|
||||
export const colorFromHex = color => {
|
||||
if (color.substring(0, 1) === '#') {
|
||||
color = color.substring(1, 7)
|
||||
}
|
||||
|
||||
return color
|
||||
}
|
11
src/helpers/color/colorFromHex.test.js
Normal file
11
src/helpers/color/colorFromHex.test.js
Normal file
@ -0,0 +1,11 @@
|
||||
import {colorFromHex} from './colorFromHex'
|
||||
|
||||
test('hex', () => {
|
||||
const color = '#ffffff'
|
||||
expect(colorFromHex(color)).toBe('ffffff')
|
||||
})
|
||||
|
||||
test('no hex', () => {
|
||||
const color = 'ffffff'
|
||||
expect(colorFromHex(color)).toBe('ffffff')
|
||||
})
|
16
src/helpers/color/colorIsDark.test.js
Normal file
16
src/helpers/color/colorIsDark.test.js
Normal file
@ -0,0 +1,16 @@
|
||||
import {colorIsDark} from './colorIsDark'
|
||||
|
||||
test('dark color', () => {
|
||||
const color = '#111111'
|
||||
expect(colorIsDark(color)).toBe(false)
|
||||
})
|
||||
|
||||
test('light color', () => {
|
||||
const color = '#DDDDDD'
|
||||
expect(colorIsDark(color)).toBe(true)
|
||||
})
|
||||
|
||||
test('default dark', () => {
|
||||
const color = ''
|
||||
expect(colorIsDark(color)).toBe(true)
|
||||
})
|
Reference in New Issue
Block a user