react-triangular-text
Version:
React utility to display text in a equilateral triangular shape. Supports monospaced fonts for better alignment.
127 lines (126 loc) • 3.71 kB
JavaScript
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
// index.tsx
import React from "react";
var TriangularText = /* @__PURE__ */ __name(({
text,
size,
id,
options = {}
}) => {
const monospacedFonts = [
"Menlo",
"Courier New",
"Consolas",
"Lucida Console",
"Monaco",
"monospace"
];
let fontFamily = "Menlo, monospace";
if (options.fontFamily === "customFont" && options.customFont) {
fontFamily = options.customFont;
} else if (monospacedFonts.includes(options.fontFamily || "")) {
fontFamily = options.fontFamily || "Menlo";
}
const fontSize = options.fontSize || 16;
const triangleHeight = Math.sqrt(3) / 2 * size;
const perimeter = size * 3;
const spacing = perimeter / text.length;
const baseText = text.slice(0, Math.floor(text.length / 3));
const rightText = text.slice(
Math.floor(text.length / 3),
Math.floor(2 * text.length / 3)
);
const leftText = text.slice(Math.floor(2 * text.length / 3));
return /* @__PURE__ */ React.createElement(
"div",
{
id,
"aria-label": text,
style: {
height: `${triangleHeight}px`,
width: `${size}px`,
position: "relative"
}
},
rightText?.split("")?.reverse()?.map((letter, index) => {
const x = size / baseText.length * index;
const y = triangleHeight - fontSize / 2;
return /* @__PURE__ */ React.createElement(
"p",
{
key: `base-${index}`,
style: {
position: "absolute",
left: `${x}px`,
top: `${y}px`,
transform: `rotate(180deg)`,
color: options.color || "#000000",
fontFamily,
fontWeight: options.fontWeight || 400,
fontSize,
margin: 0,
lineHeight: 0,
whiteSpace: "nowrap"
}
},
letter
);
}),
baseText?.split("")?.reverse()?.map((letter, index) => {
const adjustedDistance = size / rightText.length * index;
const x = size - adjustedDistance / 2 - fontSize / 2;
const y = triangleHeight - Math.sqrt(3) / 2 * adjustedDistance - fontSize / 2;
return /* @__PURE__ */ React.createElement(
"p",
{
key: `right-${index}`,
style: {
position: "absolute",
left: `${x}px`,
top: `${y}px`,
transform: `rotate(60deg)`,
color: options.color || "#000000",
fontFamily,
fontWeight: options.fontWeight || 400,
fontSize,
margin: 0,
lineHeight: 0,
whiteSpace: "nowrap"
}
},
letter
);
}),
leftText?.split("")?.map((letter, index) => {
const adjustedDistance = size / leftText.length * index;
const x = adjustedDistance / 2 + fontSize / 2;
const y = triangleHeight - Math.sqrt(3) / 2 * adjustedDistance - spacing - fontSize / 3;
return /* @__PURE__ */ React.createElement(
"p",
{
key: `left-${index}`,
style: {
position: "absolute",
left: `${x}px`,
top: `${y}px`,
transform: `rotate(-60deg)`,
color: options.color || "#000000",
fontFamily,
fontWeight: options.fontWeight || 400,
fontSize,
margin: 0,
lineHeight: 0,
whiteSpace: "nowrap"
}
},
letter
);
})
);
}, "TriangularText");
var index_default = TriangularText;
export {
index_default as default
};
//# sourceMappingURL=index.mjs.map