summaryrefslogtreecommitdiff
path: root/src/client/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/components')
-rw-r--r--src/client/components/avatar.vue16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/client/components/avatar.vue b/src/client/components/avatar.vue
index fd4ab78ce1..ef376aa93e 100644
--- a/src/client/components/avatar.vue
+++ b/src/client/components/avatar.vue
@@ -40,7 +40,23 @@ export default Vue.extend({
: this.user.avatarUrl;
},
},
+ watch: {
+ 'user.avatarBlurhash'() {
+ this.$el.style.color = this.getBlurhashAvgColor(this.user.avatarBlurhash);
+ }
+ },
+ mounted() {
+ this.$el.style.color = this.getBlurhashAvgColor(this.user.avatarBlurhash);
+ },
methods: {
+ getBlurhashAvgColor(s) {
+ return typeof s == 'string'
+ ? '#' + [...s.slice(2, 6)]
+ .map(x => '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz#$%*+,-.:;=?@[]^_{|}~'.indexOf(x))
+ .reduce((a, c) => a * 83 + c, 0)
+ .toString(16)
+ : undefined;
+ },
onClick(e) {
this.$emit('click', e);
}