71 lines
2.1 KiB
JavaScript
71 lines
2.1 KiB
JavaScript
|
// +----------------------------------------------------------------------
|
|||
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
import cookies from './util.cookies';
|
|||
|
import log from './util.log';
|
|||
|
import db from './util.db';
|
|||
|
|
|||
|
import Setting from '@/setting';
|
|||
|
|
|||
|
const util = {
|
|||
|
cookies,
|
|||
|
log,
|
|||
|
db
|
|||
|
};
|
|||
|
|
|||
|
function tTitle (title = '') {
|
|||
|
if (window && window.$t) {
|
|||
|
if (title.indexOf('$t:') === 0) {
|
|||
|
return window.$t(title.split('$t:')[1]);
|
|||
|
} else {
|
|||
|
return title;
|
|||
|
}
|
|||
|
} else {
|
|||
|
return title;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* @description 更改标题
|
|||
|
* @param {Object} title 标题
|
|||
|
* @param {Object} count 未读消息数提示(可视情况选择使用或不使用)
|
|||
|
*/
|
|||
|
util.title = function ({ title, count }) {
|
|||
|
title = tTitle(title);
|
|||
|
let fullTitle = ''
|
|||
|
if(util.cookies.get('pageTitle')){
|
|||
|
fullTitle = title ? `${title} - ${util.cookies.get('pageTitle')}` : util.cookies.get('pageTitle');
|
|||
|
}else{
|
|||
|
fullTitle = title ? `${title} - ${Setting.titleSuffix}` : Setting.titleSuffix;
|
|||
|
}
|
|||
|
if (count) fullTitle = `(${count}条消息)${fullTitle}`;
|
|||
|
window.document.title = fullTitle;
|
|||
|
};
|
|||
|
|
|||
|
util.wss = function (wsSocketUrl) {
|
|||
|
let ishttps = document.location.protocol == 'https:';
|
|||
|
if (ishttps) {
|
|||
|
return wsSocketUrl.replace('ws:', 'wss:');
|
|||
|
} else {
|
|||
|
return wsSocketUrl.replace('wss:', 'ws:');
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function requestAnimation (task) {
|
|||
|
if ('requestAnimationFrame' in window) {
|
|||
|
return window.requestAnimationFrame(task);
|
|||
|
}
|
|||
|
|
|||
|
setTimeout(task, 16);
|
|||
|
}
|
|||
|
|
|||
|
export { requestAnimation };
|
|||
|
|
|||
|
export default util;
|