Skip to content

Instantly share code, notes, and snippets.

@prawnsalad
Created August 24, 2018 15:51
Show Gist options
  • Save prawnsalad/d83476166da0b7113c50140201833388 to your computer and use it in GitHub Desktop.
Save prawnsalad/d83476166da0b7113c50140201833388 to your computer and use it in GitHub Desktop.
<!-- `Screenshot: https://imgur.com/Lc9SDaT -->
<template id="ly_avatar">
<div
:style="{
'background-image': `url(http://avatars.kiwiirc.com/robohash/${message.nick})`,
'background-size': 'contain',
}"
:data-nick="message.nick"
class="kiwi-messagelist-avatar"
></div>
</template>
<style>
.kiwi-messagelist-avatar {
cursor: pointer;
width: 40px;
height: 40px;
border-radius: 50%;
margin-top: 3px;
}
</style>
<script>
kiwi.plugin('avatars', function(kiwi, log) {
// The new avatar component
var avatar = {
template: '#ly_avatar',
props: ['message'],
};
kiwi.replaceModule('components/MessageListAvatar', avatar);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment