145 lines
3.8 KiB
TypeScript
145 lines
3.8 KiB
TypeScript
import moment from 'moment'
|
|
import { h } from 'vue'
|
|
import type { NotificationReactive } from 'naive-ui'
|
|
import { NButton, createDiscreteApi } from 'naive-ui'
|
|
import { useNoticeStore, useUserStore } from '@/store'
|
|
import { getInfo as getUserInfo } from '@/api/system/user'
|
|
import { getListByDisplayType as getListByDisplayTypeApi } from '@/api/notice'
|
|
|
|
const noticeStore = useNoticeStore()
|
|
const userStore = useUserStore()
|
|
|
|
const { notification } = createDiscreteApi(['notification'])
|
|
|
|
/**
|
|
* 生成指定时间格式
|
|
* @param format 时间格式 默认:'YYYY-MM-DD HH:mm:ss'
|
|
* @returns string
|
|
*/
|
|
export function buildTimeString(format?: string): string {
|
|
if (!format)
|
|
format = 'YYYY-MM-DD HH:mm:ss'
|
|
|
|
return moment().format(format)
|
|
}
|
|
|
|
export function timeFormat(timeString?: string) {
|
|
return moment(timeString).format('YYYY-MM-DD HH:mm:ss')
|
|
}
|
|
|
|
/**
|
|
* 创建新的公告
|
|
* @param timeString
|
|
*/
|
|
export function noticeCreate(info: Notice.NoticeInfo) {
|
|
const option: any = {
|
|
title: info.title,
|
|
content: info.content,
|
|
meta: info.createTime ? timeFormat(info.createTime) : '',
|
|
}
|
|
|
|
const btns: any = []
|
|
|
|
let n: NotificationReactive
|
|
// 链接按钮
|
|
if (info.url !== '') {
|
|
btns.push(
|
|
h(
|
|
NButton,
|
|
{
|
|
text: true,
|
|
type: 'info',
|
|
onClick: () => {
|
|
window.open(info.url, '_blank')
|
|
n.destroy()
|
|
},
|
|
},
|
|
{
|
|
default: () => '打开链接',
|
|
},
|
|
),
|
|
)
|
|
}
|
|
if (info.oneRead === 1) {
|
|
btns.push(
|
|
h(
|
|
NButton,
|
|
{
|
|
text: true,
|
|
type: 'primary',
|
|
style: { marginLeft: '20px' },
|
|
onClick: () => {
|
|
if (info.id) {
|
|
if (info.isLogin === 1 && userStore.userInfo.username) {
|
|
noticeStore.setReadByUsername(userStore.userInfo.username, info.id)
|
|
console.log('设置用户已读', info.id)
|
|
}
|
|
else {
|
|
noticeStore.setReadByGlobal(info.id)
|
|
console.log('设置全局已读', info.id)
|
|
}
|
|
}
|
|
n.destroy()
|
|
},
|
|
},
|
|
{
|
|
default: () => '不再提醒',
|
|
},
|
|
),
|
|
)
|
|
}
|
|
option.action = () => btns
|
|
n = notification.create(option)
|
|
}
|
|
|
|
export function setTitle(titile: string) {
|
|
document.title = titile
|
|
}
|
|
|
|
export function getTitle(titile: string) {
|
|
document.title = titile
|
|
}
|
|
|
|
//
|
|
export async function updateLocalUserInfo() {
|
|
const { data } = await getUserInfo<User.Info>()
|
|
|
|
userStore.updateUserInfo({ headImage: data.headImage, name: data.name })
|
|
}
|
|
|
|
export async function getNotice(displayType: number | number[]) {
|
|
let param: number[]
|
|
if (typeof displayType === 'number')
|
|
param = [displayType]
|
|
else
|
|
param = displayType
|
|
|
|
const { data } = await getListByDisplayTypeApi<Common.ListResponse<Notice.NoticeInfo[]>>(param)
|
|
|
|
for (let i = 0; i < data.list.length; i++) {
|
|
const element = data.list[i]
|
|
if (element.id && !noticeStore.getReadByNoticeId(element.id, userStore.userInfo.username))
|
|
noticeCreate(element)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @description: 获取随机码
|
|
* @param {number} size
|
|
* @param {array} seed ["a","b"m"c]
|
|
* @return {string}
|
|
*/
|
|
export function randomCode(size: number, seed?: Array<string>) {
|
|
seed = seed || ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
|
|
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n', 'p', 'Q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
|
|
'2', '3', '4', '5', '6', '7', '8', '9',
|
|
]// 数组
|
|
const seedlength = seed.length// 数组长度
|
|
let createPassword = ''
|
|
for (let i = 0; i < size; i++) {
|
|
const j = Math.floor(Math.random() * seedlength)
|
|
createPassword += seed[j]
|
|
}
|
|
return createPassword
|
|
}
|