fix build

This commit is contained in:
m1k1o 2020-10-18 17:19:23 +02:00
parent aeb98e60cd
commit 06e5d19944

View File

@ -7,7 +7,7 @@
height: size + 'px', height: size + 'px',
lineHeight: size + 'px', lineHeight: size + 'px',
fontSize: (size/2) + 'px', fontSize: (size/2) + 'px',
backgroundColor: Background(), backgroundColor: Background(seed),
}"> }">
{{ seed.substring(0, 2).toUpperCase() }} {{ seed.substring(0, 2).toUpperCase() }}
</div> </div>
@ -35,12 +35,12 @@
@Prop(String) readonly seed: string | undefined; @Prop(String) readonly seed: string | undefined;
@Prop(Number) readonly size: number | undefined; @Prop(Number) readonly size: number | undefined;
Background() { Background(seed: string) {
let a = 0, b = 0, c = 0; let a = 0, b = 0, c = 0;
for(let i = 0; i < this.seed.length; i++) { for(let i = 0; i < seed.length; i++) {
a += this.seed.charCodeAt(i) * 3; a += seed.charCodeAt(i) * 3;
b += this.seed.charCodeAt(i) * 5; b += seed.charCodeAt(i) * 5;
c += this.seed.charCodeAt(i) * 7; c += seed.charCodeAt(i) * 7;
} }
let x = Math.floor(128 + (a % 128)); let x = Math.floor(128 + (a % 128));