forked from eosullivan92/colour-palettes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.js
120 lines (106 loc) · 2.85 KB
/
utils.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
const fetch = require('node-fetch')
function randomNum(array) {
return Math.floor(Math.random() * array.length)
}
function componentToHex(c) {
let hex = c.toString(16).toUpperCase()
return hex.length == 1 ? '0' + hex : hex
}
function rgbToHex(r, g, b) {
return '#' + componentToHex(r) + componentToHex(g) + componentToHex(b)
}
function rgbArraytoHexArray(array) {
let colorOne = rgbToHex(array[0][0], array[0][1], array[0][2])
let colorTwo = rgbToHex(array[1][0], array[1][1], array[1][2])
let colorThree = rgbToHex(array[2][0], array[2][1], array[2][2])
let colorFour = rgbToHex(array[3][0], array[3][1], array[3][2])
let colorFive = rgbToHex(array[4][0], array[4][1], array[4][2])
return [colorOne, colorTwo, colorThree, colorFour, colorFive]
}
function hexToRgb(hex) {
return hex
.replace(
/^#?([a-f\d])([a-f\d])([a-f\d])$/i,
(m, r, g, b) => '#' + r + r + g + g + b + b
)
.substring(1)
.match(/.{2}/g)
.map((x) => parseInt(x, 16))
}
// loops through array and parses color string into an
function parseColors(array) {
for (let object of array) {
object.colors = JSON.parse(object.colors)
}
return array
}
//non async version
function fetchRandomPalette() {
let colors = fetch('http://colormind.io/api/', {
method: 'POST',
body: JSON.stringify({ model: 'ui' }),
})
.then((response) => {
return response.json()
})
.then((response) => {
let colors = rgbArraytoHexArray(response.result)
return { colors }
})
return colors
}
// user selects a start and end color and colormind will fill the gaps with like colors. i.e. user supplies color 1 and 5, colormind provides color 2, 3, 4
function fetchTargetedPalette(color1, color2) {
//convert hex to rgb array
let colorOne = hexToRgb(color1)
let colorTwo = hexToRgb(color2)
// takes in two colours
let colors = fetch('http://colormind.io/api/', {
method: 'POST',
body: JSON.stringify({
input: [colorOne, 'N', 'N', 'N', colorTwo],
model: 'ui',
}),
})
.then((response) => {
return response.json()
})
.then((response) => {
let colors = rgbArraytoHexArray(response.result)
return { colors }
})
return colors
}
module.exports = {
fetchRandomPalette,
fetchTargetedPalette,
randomNum,
parseColors,
}
//async version
// async function fetchRandomPalette() {
// let colors = await fetch('http://colormind.io/api/', {
// method: 'POST',
// body: JSON.stringify({ model: 'ui' }),
// })
// .then((response) => {
// return response.json()
// })
// .then((response) => {
// let colors = rgbArraytoHexArray(response.result)
// return { colors }
// })
// return colors
// }
// async version
// router.get('/generate', async (req, res) => {
// utils
// .fetchRandomPalette()
// .then((palette) => {
// res.render('generate', palette)
// })
// .catch((err) => {
// console.log(err)
// res.send('Not good. ' + err.message)
// })
// })