2021-06-07 17:22:07 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 模板字符串解析,如:template = 'hahaha{name}_{id}' ,param = {name: 'hh', id: 1}
|
|
|
|
|
|
* 解析后为 hahahahh_1
|
|
|
|
|
|
* @param template 模板字符串
|
|
|
|
|
|
* @param param 参数占位符
|
|
|
|
|
|
* @returns
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function templateResolve(template: string, param: any) {
|
|
|
|
|
|
return template.replace(/\{\w+\}/g, (word) => {
|
|
|
|
|
|
const key = word.substring(1, word.length - 1);
|
|
|
|
|
|
const value = param[key];
|
|
|
|
|
|
if (value != null || value != undefined) {
|
|
|
|
|
|
return value;
|
|
|
|
|
|
}
|
|
|
|
|
|
return "";
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-06-09 16:58:57 +08:00
|
|
|
|
// 首字符头像
|
2021-06-07 17:22:07 +08:00
|
|
|
|
export function letterAvatar(name: string, size = 60, color = '') {
|
|
|
|
|
|
name = name || '';
|
|
|
|
|
|
size = size || 60;
|
|
|
|
|
|
var colours = [
|
|
|
|
|
|
"#1abc9c", "#2ecc71", "#3498db", "#9b59b6", "#34495e", "#16a085", "#27ae60", "#2980b9", "#8e44ad", "#2c3e50",
|
|
|
|
|
|
"#f1c40f", "#e67e22", "#e74c3c", "#00bcd4", "#95a5a6", "#f39c12", "#d35400", "#c0392b", "#bdc3c7", "#7f8c8d"
|
|
|
|
|
|
],
|
|
|
|
|
|
nameSplit = String(name).split(' '),
|
|
|
|
|
|
initials, charIndex, colourIndex, canvas, context, dataURI;
|
2021-06-09 16:58:57 +08:00
|
|
|
|
|
2021-06-07 17:22:07 +08:00
|
|
|
|
if (nameSplit.length == 1) {
|
|
|
|
|
|
initials = nameSplit[0] ? nameSplit[0].charAt(0) : '?';
|
|
|
|
|
|
} else {
|
|
|
|
|
|
initials = nameSplit[0].charAt(0) + nameSplit[1].charAt(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
if (window.devicePixelRatio) {
|
|
|
|
|
|
size = (size * window.devicePixelRatio);
|
|
|
|
|
|
}
|
|
|
|
|
|
initials = initials.toLocaleUpperCase()
|
|
|
|
|
|
charIndex = (initials == '?' ? 72 : initials.charCodeAt(0)) - 64;
|
|
|
|
|
|
colourIndex = charIndex % 20;
|
|
|
|
|
|
canvas = document.createElement('canvas');
|
|
|
|
|
|
canvas.width = size;
|
|
|
|
|
|
canvas.height = size;
|
|
|
|
|
|
context = canvas.getContext("2d") as any;
|
|
|
|
|
|
|
|
|
|
|
|
context.fillStyle = color ? color : colours[colourIndex - 1];
|
|
|
|
|
|
context.fillRect(0, 0, canvas.width, canvas.height);
|
|
|
|
|
|
context.font = Math.round(canvas.width / 2) + "px 'Microsoft Yahei'";
|
|
|
|
|
|
context.textAlign = "center";
|
|
|
|
|
|
context.fillStyle = "#FFF";
|
|
|
|
|
|
context.fillText(initials, size / 2, size / 1.5);
|
|
|
|
|
|
dataURI = canvas.toDataURL();
|
|
|
|
|
|
canvas = null;
|
|
|
|
|
|
return dataURI;
|
2023-06-29 00:40:42 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 计算文本所占用的宽度(px) -> 该种方式较为准确
|
|
|
|
|
|
* 使用span标签包裹内容,然后计算span的宽度 width: px
|
|
|
|
|
|
* @param str
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function getTextWidth(str: string) {
|
|
|
|
|
|
let width = 0;
|
|
|
|
|
|
let html = document.createElement('span');
|
|
|
|
|
|
html.innerText = str;
|
|
|
|
|
|
html.className = 'getTextWidth';
|
|
|
|
|
|
document?.querySelector('body')?.appendChild(html);
|
|
|
|
|
|
width = (document?.querySelector('.getTextWidth') as any).offsetWidth;
|
|
|
|
|
|
document?.querySelector('.getTextWidth')?.remove();
|
|
|
|
|
|
return width;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 获取内容所需要占用的宽度
|
|
|
|
|
|
*/
|
|
|
|
|
|
export function getContentWidth(content: any): number {
|
|
|
|
|
|
if (!content) {
|
|
|
|
|
|
return 50;
|
|
|
|
|
|
}
|
|
|
|
|
|
// 以下分配的单位长度可根据实际需求进行调整
|
|
|
|
|
|
let flexWidth = 0;
|
|
|
|
|
|
for (const char of content) {
|
|
|
|
|
|
if (flexWidth > 500) {
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
if ((char >= '0' && char <= '9') || (char >= 'a' && char <= 'z')) {
|
|
|
|
|
|
// 小写字母、数字字符
|
|
|
|
|
|
flexWidth += 9.3;
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (char >= 'A' && char <= 'Z') {
|
|
|
|
|
|
flexWidth += 9;
|
|
|
|
|
|
continue;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (char >= '\u4e00' && char <= '\u9fa5') {
|
|
|
|
|
|
// 如果是中文字符,为字符分配16个单位宽度
|
|
|
|
|
|
flexWidth += 20;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 其他种类字符
|
|
|
|
|
|
flexWidth += 8;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
// if (flexWidth > 450) {
|
|
|
|
|
|
// // 设置最大宽度
|
|
|
|
|
|
// flexWidth = 450;
|
|
|
|
|
|
// }
|
|
|
|
|
|
return flexWidth;
|
2021-06-07 17:22:07 +08:00
|
|
|
|
};
|