Skip to content

Commit

Permalink
Add avatar component with contacts menu
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliushaertl committed Oct 12, 2018
1 parent 190d781 commit a213b96
Show file tree
Hide file tree
Showing 4 changed files with 223 additions and 2 deletions.
183 changes: 183 additions & 0 deletions src/components/Avatar/Avatar.vue
@@ -0,0 +1,183 @@
<!--
- @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
-
- @author Julius Härtl <jus@bitgrid.net>
-
- @license GNU AGPL version 3 or any later version
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-->

<template>
<!-- TODO: Get rid of the inline css -->
<div v-tooltip="displayName" v-click-outside="closeMenu"
:class="{ 'icon-loading': loading, 'unknown': unknown }"
:style="{width: size + 'px', height: size + 'px'}"
class="avatardiv popovermenu-wrapper" @click="toggleMenu">
<img v-if="!loading && !unknown" :src="avatarUrlLoaded">
<div v-if="unknown" class="unknown">?</div>
<div v-show="openedMenu" class="popovermenu">
<popover-menu :is-open="openedMenu" :menu="menu()" />
</div>
</div>
</template>

<script>
/* global OC oc_userconfig */
import { VTooltip } from 'v-tooltip'
import { PopoverMenu } from '../PopoverMenu'
import ClickOutside from 'vue-click-outside'
export default {
name: 'Avatar',
directives: {
tooltip: VTooltip,
ClickOutside: ClickOutside
},
components: {
PopoverMenu
},
props: {
url: {
type: String,
default: undefined
},
user: {
type: String,
default: undefined
},
displayName: {
type: String,
default: undefined
},
size: {
type: Number,
default: 32
}
},
data: function() {
return {
actions: [],
avatarUrlLoaded: null,
unknown: false,
loading: true,
openedMenu: false
}
},
mounted: function() {
let avatarUrl = OC.generateUrl(
'/avatar/{user}/{size}',
{
user: this.user,
size: Math.ceil(this.size * window.devicePixelRatio)
})
if (this.user === OC.getCurrentUser().uid) {
avatarUrl += '?v=' + oc_userconfig.avatar.version
}
if (typeof this.url !== 'undefined') {
avatarUrl = this.url
}
let img = new Image()
const self = this
img.onload = function() {
self.avatarUrlLoaded = avatarUrl
self.loading = false
}
img.onerror = function() {
self.unknown = true
self.loading = false
}
img.src = avatarUrl
},
methods: {
toggleMenu: function() {
if (this.user === OC.getCurrentUser().uid || this.unknown || this.url) {
return
}
this.openedMenu = !this.openedMenu
if (this.openedMenu) {
this.fetchContactsMenu()
}
},
closeMenu: function() {
this.openedMenu = false
},
menu: function() {
return this.actions.map((item) => {
return {
href: item.hyperlink,
icon: item.icon,
text: item.title
}
})
},
fetchContactsMenu: function() {
fetch(OC.generateUrl('contactsmenu/findOne'), {
method: 'POST',
body: 'shareType=0&shareWith=' + this.user,
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'requesttoken': OC.requestToken,
'OCS-Apirequest': true
}
}).then((response) => {
return response.json().then((json) => {
this.actions = [json.topAction].concat(json.actions)
})
})
}
}
}
</script>

<style scoped>
.avatardiv {
display: inline-block;
}
.avatardiv.unknown {
background-color: var(--color-text-maxcontrast);
position: relative;
}
.avatardiv > .unknown {
position: absolute;
color: var(--color-main-background);
width: 100%;
text-align: center;
font-size: 14pt;
display: block;
top: 18%;
left: 0;
}
.avatardiv img {
width: 100%;
height: 100%;
}
.popovermenu-wrapper {
position: relative;
display: inline-block;
}
.popovermenu {
display: block;
margin: 0;
}
</style>
26 changes: 26 additions & 0 deletions src/components/Avatar/index.js
@@ -0,0 +1,26 @@
/**
* @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
*
* @author Julius Härtl <jus@bitgrid.net>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

import Avatar from './Avatar'

export default Avatar
export { Avatar }
12 changes: 11 additions & 1 deletion src/components/PopoverMenu/PopoverMenuItem.vue
Expand Up @@ -26,7 +26,8 @@
<a v-if="item.href" :href="(item.href) ? item.href : '#' "
:target="(item.target) ? item.target : '' "
rel="noreferrer noopener" @click="action">
<span :class="item.icon" />
<span v-if="!iconIsUrl" :class="item.icon" />
<img v-else :src="item.icon">
<span v-if="item.text">{{ item.text }}</span>
<p v-else-if="item.longtext">{{ item.longtext }}</p>
</a>
Expand Down Expand Up @@ -100,6 +101,15 @@ export default {
return this.item.key
? this.item.key
: Math.round(Math.random() * 16 * 1000000).toString(16)
},
iconIsUrl() {
try {
// eslint-disable-next-line no-unused-vars
const url = new URL(this.item.icon)
return true
} catch (_) {
return false
}
}
},
methods: {
Expand Down
4 changes: 3 additions & 1 deletion src/components/index.js
Expand Up @@ -24,10 +24,12 @@ import AppNavigation from './AppNavigation'
import PopoverMenu from './PopoverMenu'
import DatetimePicker from './DatetimePicker'
import Multiselect from './Multiselect'
import Avatar from './Avatar'

export {
AppNavigation,
PopoverMenu,
DatetimePicker,
Multiselect
Multiselect,
Avatar
}

0 comments on commit a213b96

Please sign in to comment.