Files
myprojplanet_vite/src/layouts/toolbar/messagePopover/messagePopover.ts
Paolo Arena 42cb624f41 Pannello Utente
Aggiornamento Yarn
2022-07-10 01:24:54 +02:00

81 lines
2.0 KiB
TypeScript
Executable File

import { defineComponent } from 'vue'
import {
IMessage,
} from '@model'
import './messagePopover.scss'
import { tools } from '@src/store/Modules/tools'
import { useRouter } from 'vue-router'
import MixinUsers from '../../../mixins/mixin-users'
const namespace = 'MessageModule'
export default defineComponent({
name: 'MessagePopover',
setup(props) {
const $router = useRouter()
const { getNumMsgUnread, getNumMsg, getUsernameChatByMsg, getImgByMsg, getNumNotifUnread } = MixinUsers()
// function lasts_messages (state: IUserState) => IMessage[] {
//
// }
function lasts_messages() {
// ++Todo: lasts_messages
return []
}
function clickChat(msg: IMessage) {
// $router.replace(`/messages/${ msg.dest.username}`)
}
function randomDate(): Date {
const myval = Math.floor(Math.random() * 10000000000)
return tools.getstrDateTime(new Date(tools.getTimestampsNow() - myval))
}
function randomAvatarUrl() {
// return `https://api.adorable.io/avatars/face/${this.randomEye()}/${this.randomNose()}/${this.randomMouth()}/${this.randomHexColor()}`
}
function randomHexColor() {
return Math.random().toString(16).slice(2, 8)
}
function randomArrayElement(array: any) {
return array[Math.floor((Math.random() * array.length))]
}
/*
function randomEye() {
return this.randomArrayElement(['eyes1', 'eyes10', 'eyes2', 'eyes3', 'eyes4', 'eyes5', 'eyes6', 'eyes7', 'eyes9'])
}
function randomNose() {
return this.randomArrayElement(['nose2', 'nose3', 'nose4', 'nose5', 'nose6', 'nose7', 'nose8', 'nose9'])
}
function randomMouth() {
return this.randomArrayElement(['mouth1', 'mouth10', 'mouth11', 'mouth3', 'mouth5', 'mouth6', 'mouth7', 'mouth9'])
}
*/
return {
lasts_messages,
clickChat,
getNumMsgUnread,
getNumMsg,
getUsernameChatByMsg,
getImgByMsg,
getNumNotifUnread,
tools,
}
},
})