UNPKG

react-circular-text-writer

Version:

A JavaScript utility to arrange text in a circular shape using HTML and CSS. Supports monospaced fonts for better alignment.

97 lines (96 loc) 3.3 kB
"use strict"; var __create = Object.create; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; var __name = (target, value) => __defProp(target, "name", { value, configurable: true }); var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( // If the importer is in node compatibility mode or this is not an ESM // file that has been converted to a CommonJS file using a Babel- // compatible transform (i.e. "__esModule" has not been set), then set // "default" to the CommonJS "module.exports" for node compatibility. isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod )); var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // index.tsx var index_exports = {}; __export(index_exports, { default: () => index_default }); module.exports = __toCommonJS(index_exports); var import_react = __toESM(require("react")); var CircularTextWriter = /* @__PURE__ */ __name(({ text, radius, 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 letters = text?.split(""); const rotationBetweenLetters = 360 / letters.length; return /* @__PURE__ */ import_react.default.createElement( "div", { id, "aria-label": text, style: { height: `${radius * 2}px`, width: `${radius * 2}px`, position: "relative", display: "flex", justifyContent: "center" } }, letters?.map((letter, index) => { const rotation = index * rotationBetweenLetters; return /* @__PURE__ */ import_react.default.createElement( "p", { key: index, style: { height: `${radius}px`, position: "absolute", transform: `rotate(${rotation}deg)`, transformOrigin: "0 100%", color: options.color || "#000000", fontFamily, fontWeight: options.fontWeight || 400, lineHeight: "normal", fontSize: options.fontSize || 16 } }, letter ); }) ); }, "CircularTextWriter"); var index_default = CircularTextWriter; //# sourceMappingURL=index.js.map