Merge pull request #199 from jasmeetsohal/different-colors-feature

add random bullet color in user's events list
pull/206/head
Bailey Pumfleet 2021-05-17 10:16:08 +01:00 committed by GitHub
commit 2d0b5709a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 2 deletions

View File

@ -8,7 +8,7 @@ export default function User(props) {
<li key={type.id}>
<Link href={'/' + props.user.username + '/' + type.slug}>
<a className="block px-6 py-4">
<div className="inline-block w-3 h-3 rounded-full bg-blue-600 mr-2"></div>
<div className="inline-block w-3 h-3 rounded-full mr-2" style={{backgroundColor:getRandomColorCode()}}></div>
<h2 className="inline-block font-medium">{type.title}</h2>
<p className="inline-block text-gray-400 ml-2">{type.description}</p>
</a>
@ -79,4 +79,14 @@ export async function getServerSideProps(context) {
eventTypes
},
}
}
}
// Auxiliary methods
export function getRandomColorCode() {
let color = '#';
for (let idx = 0; idx < 6; idx++) {
color += Math.floor(Math.random() * 10);
}
return color;
}