1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <img
- class="profile-picture using-gravatar"
- v-if="avatar.type === 'gravatar'"
- :src="
- avatar.url ? `${avatar.url}?d=${notes}&s=250` : '/assets/notes.png'
- "
- onerror="this.src='/assets/notes.png'; this.onerror=''"
- />
- <div class="profile-picture using-initials" :class="avatar.color" v-else>
- <span>{{ initials }}</span>
- </div>
- </template>
- <script>
- export default {
- props: {
- avatar: {
- type: Object,
- default: () => {}
- },
- name: {
- type: String,
- default: ": )"
- }
- },
- data() {
- return {
- notes: ""
- };
- },
- computed: {
- initials() {
- return this.name
- .replaceAll(/[^A-Za-z ]+/g, "")
- .replaceAll(/ +/g, " ")
- .split(" ")
- .map(word => word.charAt(0))
- .splice(0, 2)
- .join("")
- .toUpperCase();
- }
- },
- async mounted() {
- const frontendDomain = await lofig.get("frontendDomain");
- this.notes = encodeURI(`${frontendDomain}/assets/notes.png`);
- }
- };
- </script>
- <style lang="scss" scoped>
- .profile-picture {
- width: 100px;
- height: 100px;
- border-radius: 100%;
- border: 0.5px solid var(--light-grey-3);
- &.using-initials {
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: var(--light-grey-2);
- font-family: "Inter", sans-serif;
- font-weight: 400;
- user-select: none;
- -webkit-user-select: none;
- span {
- font-size: 40px; // 2/5th of .profile-picture height/width
- }
- &.blue {
- background-color: var(--primary-color);
- color: var(--white);
- }
- &.orange {
- background-color: var(--orange);
- color: var(--white);
- }
- &.green {
- background-color: var(--green);
- color: var(--white);
- }
- &.purple {
- background-color: var(--purple);
- color: var(--white);
- }
- &.teal {
- background-color: var(--teal);
- color: var(--white);
- }
- &.grey {
- background-color: var(--grey);
- color: var(--white);
- }
- }
- }
- </style>
|