chartx
Version:
Data Visualization Chart Library
78 lines (74 loc) • 3.94 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.estimateTextSize = estimateTextSize;
exports.estimateTextWidth = estimateTextWidth;
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t.return || t.return(); } finally { if (u) throw o; } } }; }
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
// 基准字体大小(所有字符宽度基于此)
var baseFontSize = 14;
function isChineseChar(char) {
return /[\u4e00-\u9fff]/.test(char); // 匹配常用汉字
}
function estimateTextWidth(text) {
var opt = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var _opt$fontSize = opt.fontSize,
fontSize = _opt$fontSize === void 0 ? 14 : _opt$fontSize,
_opt$chineseCharWidth = opt.chineseCharWidth,
chineseCharWidth = _opt$chineseCharWidth === void 0 ? 14 : _opt$chineseCharWidth,
_opt$defaultCharWidth = opt.defaultCharWidth,
defaultCharWidth = _opt$defaultCharWidth === void 0 ? 8 : _opt$defaultCharWidth;
var scale = fontSize / baseFontSize; // 缩放因子
var totalWidth = 0;
var _iterator = _createForOfIteratorHelper(text),
_step;
try {
for (_iterator.s(); !(_step = _iterator.n()).done;) {
var char = _step.value;
if (isChineseChar(char)) {
totalWidth += chineseCharWidth * scale; // 中文字符宽度
} else {
var width = defaultCharWidth; // 英文/符号
totalWidth += width * scale;
}
}
} catch (err) {
_iterator.e(err);
} finally {
_iterator.f();
}
return totalWidth;
}
function estimateTextSize(text) {
var opt = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var maxWidth = opt.maxWidth,
_opt$fontSize2 = opt.fontSize,
fontSize = _opt$fontSize2 === void 0 ? 14 : _opt$fontSize2,
_opt$lineHeight = opt.lineHeight,
lineHeight = _opt$lineHeight === void 0 ? 1.5 : _opt$lineHeight;
if (!maxWidth) {
return {
width: estimateTextWidth(text, opt),
height: fontSize
}; //单行文本
}
//多行换行逻辑, 后面再说
// const words = text.split('');
// let lineCount = 0;
// let currentLineLength = 0;
// let maxWordWidth = 0
// for (const word of words) {
// const wordWidth = estimateTextWidth(word, { fontSize });
// maxWordWidth = Math.max( wordWidth, maxWordWidth )
// if (currentLineLength + wordWidth > maxWidth) {
// lineCount++;
// currentLineLength = wordWidth + estimateTextWidth(' ', { fontSize }); // 当前行重置
// } else {
// currentLineLength += wordWidth + estimateTextWidth(' ', { fontSize });
// }
// }
// lineCount++; // 最后一行
// return lineCount * fontSize * lineHeight;
}