-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCaAvatar.js
75 lines (59 loc) · 1.76 KB
/
CaAvatar.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
import { Avatar } from 'react-native-paper';
import React from 'react';
import seedrandom from "seedrandom"
import { View } from 'react-native';
const CaAvatar = ({ size, uid, name }) => {
/*
questa funzione genera un colore pseudo-randomico per ogni avatar.
per ogni uuid dato viene generato sempre lo stesso colore.
non funziona perchè l'implementazione di random su react
native non prevede "seed stringhe"
*/
function generateRandomNumber(str, max) {
// Use the string as a seed for the random function
var seed = 0;
for (var i = 0; i < str.length; i++) {
seed += str.charCodeAt(i);
}
seedrandom(seed);
// Generate a random number between 0 and max-1
var randomNumber = Math.floor(Math.random() * max);
return randomNumber;
}
// lista colori da cui scegliere
const colorList = [
"#403F4C",
"#E84855",
"#F9DC5C",
"#3185FC",
"#EFBCD5"
];
// genera un numero randomico usando lo uid del contatto come seed
// per ottenere sempre lo stesso colore con lo stesso uid
//const pickedColor = colorList[generateRandomNumber(uid, colorList.length)]
const pickedColor = "#C7C7CC"; // usa sempre lo stesso colore (per ora)
const getInitials = (str) => {
// se la stringa non è splittabile ritorna --
if (str == undefined || str == "" || !str) {
return ("--")
}
let words = str.split(" ");
let initials = "";
// prendi solo le prime due iniziali delle prime due parole del nome
for (let i = 0; i < 2; i++) {
if (words[i] !== undefined) {
// e falle maiuscole
initials += words[i].charAt(0).toUpperCase();
}
}
return initials;
}
return (
<View>
<Avatar.Text size={size} style={{
backgroundColor: pickedColor
}} label={getInitials(name)} />
</View>
);
}
export default CaAvatar;