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 a1fcca5
Show file tree
Hide file tree
Showing 4 changed files with 214 additions and 2 deletions.
172 changes: 172 additions & 0 deletions src/components/Avatar/Avatar.vue
@@ -0,0 +1,172 @@
<!--
- @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" :class="{ 'icon-loading': loading, 'unknown': unknown }" :style="{width: size + 'px', height: size + 'px'}"
class="avatardiv popovermenu-wrapper" @click="openMenu">
<img v-if="!loading && !unknown" :src="avatarUrlLoaded">
<span v-if="unknown">?</span>
<div v-show="openedMenu" class="popovermenu">
<popover-menu :is-open="openedMenu" :menu="menu()" />
</div>
</div>
</template>

<script>
/* global oc_userconfig */
// contactsmenu: http://localhost:8000/index.php/contactsmenu/findOne
import { VTooltip } from 'v-tooltip'
import { PopoverMenu } from '../PopoverMenu'
export default {
name: 'Avatar',
directives: {
tooltip: VTooltip
},
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: {
openMenu: function() {
this.openedMenu = !this.openedMenu
this.fetchContactsMenu()
},
menu: function() {
return this.actions.map((item) => {
return {
href: item.hyperlink,
icon: item.icon,
text: item.title
}
});
},
fetchContactsMenu: function() {
fetch('http://localhost:8000/index.php/contactsmenu/findOne', {
method: "POST",
body: 'shareType=0&shareWith=abc3',
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: #b9b9b9;
position: relative;
}
.avatardiv span {
position: absolute;
color: var(--color-background);
width: 100%;
text-align: center;
height: 100%;
font-size: 12pt;
/* TODO: proper centering */
padding-top: 25%;
}
.avatardiv img {
width: 100%;
height: 100%;
}
.popovermenu-wrapper {
position: relative;
display: inline-block;
}
.popovermenu {
display: block;
}
</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 }
14 changes: 13 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,17 @@ export default {
return this.item.key
? this.item.key
: Math.round(Math.random() * 16 * 1000000).toString(16)
},
iconIsUrl() {
try {
console.log(this.item.icon);
const url = new URL(this.item.icon)
console.log(url);
return true
} catch (_) {
console.log(_)
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 a1fcca5

Please sign in to comment.