hardlounge/client/js/helpers/colorClass.ts

16 lines
383 B
TypeScript
Raw Normal View History

2016-12-18 10:53:28 -05:00
// Generates a string from "color-1" to "color-32" based on an input string
export default (str: string) => {
2018-01-11 06:33:36 -05:00
let hash = 0;
2018-01-11 06:33:36 -05:00
for (let i = 0; i < str.length; i++) {
2016-12-18 10:53:28 -05:00
hash += str.charCodeAt(i);
}
2016-12-18 10:53:28 -05:00
2018-07-03 05:51:10 -04:00
/*
Modulo 32 lets us be case insensitive for ascii
due to A being ascii 65 (100 0001)
while a being ascii 97 (110 0001)
*/
return "color-" + (1 + (hash % 32)).toString();
2016-12-18 10:53:28 -05:00
};