@hanzo/ui 4.7.0 → 4.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (272) hide show
  1. package/assets/ai-icons.tsx +207 -0
  2. package/assets/crypto.tsx +33 -0
  3. package/assets/file-type-icon.tsx +66 -0
  4. package/assets/file.tsx +45 -0
  5. package/assets/general.tsx +2318 -0
  6. package/assets/hanzo-logo.svg +9 -0
  7. package/assets/hanzo-logo.tsx +17 -0
  8. package/assets/index.ts +122 -0
  9. package/assets/index.tsx +4 -0
  10. package/assets/llm-provider.tsx +1094 -0
  11. package/blocks/auth/index.ts +6 -0
  12. package/blocks/auth/login-2fa.tsx +165 -0
  13. package/blocks/auth/login-basic.tsx +94 -0
  14. package/blocks/auth/login-social.tsx +148 -0
  15. package/blocks/auth/magic-link.tsx +129 -0
  16. package/blocks/auth/password-reset.tsx +97 -0
  17. package/blocks/auth/signup.tsx +157 -0
  18. package/blocks/components/accordian-block.tsx +48 -0
  19. package/blocks/components/block-component-props.ts +11 -0
  20. package/blocks/components/bullet-cards-block.tsx +46 -0
  21. package/blocks/components/card-block/index.tsx +171 -0
  22. package/blocks/components/card-block/link-out-button.tsx +20 -0
  23. package/blocks/components/card-block/util.ts +28 -0
  24. package/blocks/components/carte-blanche-block/index.tsx +127 -0
  25. package/blocks/components/carte-blanche-block/variant-content-left.tsx +49 -0
  26. package/blocks/components/content.tsx +70 -0
  27. package/blocks/components/cta-block.tsx +115 -0
  28. package/blocks/components/enh-heading-block.tsx +204 -0
  29. package/blocks/components/grid-block/grid-block-mutator.ts +12 -0
  30. package/blocks/components/grid-block/index.tsx +83 -0
  31. package/blocks/components/grid-block/mutator-registry.ts +10 -0
  32. package/blocks/components/grid-block/table-borders.mutator.ts +47 -0
  33. package/blocks/components/group-block.tsx +83 -0
  34. package/blocks/components/heading-block.tsx +88 -0
  35. package/blocks/components/image-block.tsx +111 -0
  36. package/blocks/components/index.ts +30 -0
  37. package/blocks/components/screenful-block/content.tsx +123 -0
  38. package/blocks/components/screenful-block/index.tsx +107 -0
  39. package/blocks/components/screenful-block/poster-background.tsx +34 -0
  40. package/blocks/components/screenful-block/video-background.tsx +45 -0
  41. package/blocks/components/space-block.tsx +66 -0
  42. package/blocks/components/video-block.tsx +138 -0
  43. package/blocks/data-display/activity-feed.tsx +242 -0
  44. package/blocks/data-display/data-table.tsx +235 -0
  45. package/blocks/data-display/stats-grid.tsx +194 -0
  46. package/blocks/def/accordian-block.ts +14 -0
  47. package/blocks/def/block.ts +7 -0
  48. package/blocks/def/bullet-cards-block.ts +22 -0
  49. package/blocks/def/card-block.ts +22 -0
  50. package/blocks/def/carte-blanche-block.ts +21 -0
  51. package/blocks/def/cta-block.ts +19 -0
  52. package/blocks/def/element-block.ts +11 -0
  53. package/blocks/def/enh-heading-block.ts +44 -0
  54. package/blocks/def/grid-block.ts +16 -0
  55. package/blocks/def/group-block.ts +11 -0
  56. package/blocks/def/heading-block.ts +15 -0
  57. package/blocks/def/image-block.ts +31 -0
  58. package/blocks/def/index.ts +35 -0
  59. package/blocks/def/screenful-block.ts +54 -0
  60. package/blocks/def/space-block.ts +64 -0
  61. package/blocks/def/video-block.ts +9 -0
  62. package/blocks/ecommerce/checkout.tsx +242 -0
  63. package/blocks/ecommerce/index.ts +7 -0
  64. package/blocks/ecommerce/product-detail.tsx +257 -0
  65. package/blocks/ecommerce/product-grid.tsx +148 -0
  66. package/blocks/ecommerce/shopping-cart.tsx +181 -0
  67. package/blocks/index.ts +2 -0
  68. package/blocks/marketing/cta-section.tsx +207 -0
  69. package/blocks/marketing/faq.tsx +159 -0
  70. package/blocks/marketing/features-grid.tsx +156 -0
  71. package/blocks/marketing/hero-section.tsx +192 -0
  72. package/blocks/marketing/index.ts +6 -0
  73. package/blocks/marketing/pricing-table.tsx +121 -0
  74. package/blocks/marketing/testimonials.tsx +196 -0
  75. package/components/index.ts +9 -0
  76. package/dist/index.js +1407 -1514
  77. package/dist/index.mjs +1363 -1472
  78. package/dist/tailwind/index.js +3 -1
  79. package/dist/tailwind/index.mjs +3 -1
  80. package/dist/util/format-text.js +51 -0
  81. package/dist/util/format-text.mjs +32 -0
  82. package/dist/util/index.js +384 -0
  83. package/dist/util/index.mjs +363 -0
  84. package/frameworks/core/index.ts +6 -0
  85. package/frameworks/core/utils/index.ts +64 -0
  86. package/frameworks/react/components/button.tsx +26 -0
  87. package/frameworks/react/components/index.ts +5 -0
  88. package/frameworks/react/hooks/index.ts +5 -0
  89. package/frameworks/react/index.ts +9 -0
  90. package/frameworks/react/package.json +8 -0
  91. package/frameworks/react/utils/index.ts +2 -0
  92. package/frameworks/react-native/index.ts +9 -0
  93. package/frameworks/react-native/package.json +8 -0
  94. package/frameworks/registry.json +371 -0
  95. package/frameworks/setup.sh +69 -0
  96. package/frameworks/svelte/index.ts +9 -0
  97. package/frameworks/svelte/package.json +8 -0
  98. package/frameworks/tracker.json +1854 -0
  99. package/frameworks/vue/index.ts +9 -0
  100. package/frameworks/vue/package.json +8 -0
  101. package/helpers/file.ts +33 -0
  102. package/helpers/memoization.ts +40 -0
  103. package/package.json +49 -11
  104. package/primitives/accordion.tsx +74 -0
  105. package/primitives/action-button.tsx +42 -0
  106. package/primitives/alert-dialog.tsx +185 -0
  107. package/primitives/alert.tsx +74 -0
  108. package/primitives/apply-typography.tsx +55 -0
  109. package/primitives/aspect-ratio.tsx +5 -0
  110. package/primitives/avatar.tsx +57 -0
  111. package/primitives/background-beams.tsx +142 -0
  112. package/primitives/badge.tsx +45 -0
  113. package/primitives/breadcrumb.tsx +130 -0
  114. package/primitives/breakpoint-indicator.tsx +19 -0
  115. package/primitives/button.tsx +72 -0
  116. package/primitives/calendar.tsx +72 -0
  117. package/primitives/card.tsx +97 -0
  118. package/primitives/carousel.tsx +238 -0
  119. package/primitives/chat/chat-input-area.tsx +88 -0
  120. package/primitives/chat/chat-input.tsx +71 -0
  121. package/primitives/chat/files-preview.tsx +331 -0
  122. package/primitives/chat/index.ts +6 -0
  123. package/primitives/chat/json-form.tsx +8 -0
  124. package/primitives/chat/message-list.tsx +308 -0
  125. package/primitives/chat/message.tsx +569 -0
  126. package/primitives/chat/sqlite-preview.tsx +215 -0
  127. package/primitives/checkbox.tsx +32 -0
  128. package/primitives/collapsible.tsx +9 -0
  129. package/primitives/combobox.tsx +239 -0
  130. package/primitives/command.tsx +151 -0
  131. package/primitives/context-menu.tsx +206 -0
  132. package/primitives/copy-to-clipboard-icon.tsx +60 -0
  133. package/primitives/dialog-video-controller.tsx +38 -0
  134. package/primitives/dialog.tsx +128 -0
  135. package/primitives/dot-pattern.tsx +57 -0
  136. package/primitives/dots-loader.tsx +13 -0
  137. package/primitives/drawer.tsx +113 -0
  138. package/primitives/dropdown-menu.tsx +199 -0
  139. package/primitives/error-message.tsx +19 -0
  140. package/primitives/file-uploader.tsx +202 -0
  141. package/primitives/form.tsx +183 -0
  142. package/primitives/hover-card.tsx +28 -0
  143. package/primitives/icons/github.tsx +14 -0
  144. package/primitives/icons/index.ts +18 -0
  145. package/primitives/icons/youtube-logo.tsx +59 -0
  146. package/primitives/index-common.ts +304 -0
  147. package/primitives/index-next.ts +4 -0
  148. package/primitives/input-otp.tsx +65 -0
  149. package/primitives/input.tsx +126 -0
  150. package/primitives/label.tsx +21 -0
  151. package/primitives/list-adaptor.ts +12 -0
  152. package/primitives/list-box.tsx +74 -0
  153. package/primitives/loading-spinner.tsx +33 -0
  154. package/primitives/markdown-preview.tsx +612 -0
  155. package/primitives/mermaid.tsx +191 -0
  156. package/primitives/navigation-menu.tsx +147 -0
  157. package/primitives/next/image.tsx +91 -0
  158. package/primitives/next/index.ts +7 -0
  159. package/primitives/next/inline-icon.tsx +36 -0
  160. package/primitives/next/link-element.tsx +109 -0
  161. package/primitives/next/mdx-link.tsx +22 -0
  162. package/primitives/next/media-stack.tsx +52 -0
  163. package/primitives/next/nav-items.tsx +45 -0
  164. package/primitives/next/youtube-embed.tsx +83 -0
  165. package/primitives/pagination.tsx +117 -0
  166. package/primitives/popover.tsx +34 -0
  167. package/primitives/pretty-json-print.tsx +28 -0
  168. package/primitives/progress.tsx +27 -0
  169. package/primitives/prompt-textarea.tsx +72 -0
  170. package/primitives/qr-code.tsx +112 -0
  171. package/primitives/radio-group.tsx +42 -0
  172. package/primitives/resizable.tsx +47 -0
  173. package/primitives/scroll-area.tsx +57 -0
  174. package/primitives/search-input.tsx +66 -0
  175. package/primitives/select.tsx +122 -0
  176. package/primitives/separator.tsx +26 -0
  177. package/primitives/sheet.tsx +139 -0
  178. package/primitives/skeleton.tsx +18 -0
  179. package/primitives/slider.tsx +63 -0
  180. package/primitives/sonner.tsx +35 -0
  181. package/primitives/step-indicator.tsx +69 -0
  182. package/primitives/stepper.tsx +272 -0
  183. package/primitives/switch.tsx +27 -0
  184. package/primitives/table.tsx +105 -0
  185. package/primitives/tabs.tsx +50 -0
  186. package/primitives/text-area.tsx +26 -0
  187. package/primitives/text-link.tsx +25 -0
  188. package/primitives/textarea.tsx +62 -0
  189. package/primitives/textfield.tsx +76 -0
  190. package/primitives/toast.tsx +30 -0
  191. package/primitives/toggle-group.tsx +63 -0
  192. package/primitives/toggle.tsx +44 -0
  193. package/primitives/tooltip.tsx +47 -0
  194. package/primitives/video-player.tsx +23 -0
  195. package/src/button.ts +1 -0
  196. package/src/hooks/index.ts +7 -0
  197. package/src/hooks/use-click-away.ts +31 -0
  198. package/src/hooks/use-combined-refs.ts +22 -0
  199. package/src/hooks/use-copy-clipboard.ts +30 -0
  200. package/src/hooks/use-debounce.ts +17 -0
  201. package/src/hooks/use-fill-ids.ts +25 -0
  202. package/src/hooks/use-map.ts +26 -0
  203. package/src/hooks/use-measure.ts +42 -0
  204. package/src/hooks/use-reverse-video-playback.ts +43 -0
  205. package/src/hooks/use-scroll-restoration.ts +50 -0
  206. package/src/index-lean.ts +87 -0
  207. package/src/index.ts +54 -0
  208. package/src/mcp/README.md +141 -0
  209. package/src/mcp/enhanced-server.ts +1208 -0
  210. package/src/mcp/index.ts +518 -0
  211. package/src/mcp/package.json +10 -0
  212. package/src/registry/api.ts +164 -0
  213. package/src/registry/index.ts +60 -0
  214. package/src/registry/package.json +10 -0
  215. package/src/utils.ts +19 -0
  216. package/tailwind/colors.tailwind.js +53 -0
  217. package/tailwind/fontFamily.tailwind.ts +7 -0
  218. package/tailwind/fontSize.tailwind.ts +13 -0
  219. package/tailwind/index.ts +7 -0
  220. package/tailwind/safelist.tailwind.js +26 -0
  221. package/tailwind/screens.tailwind.js +8 -0
  222. package/tailwind/spacing.tailwind.js +65 -0
  223. package/tailwind/tailwind.config.hanzo-preset.d.ts +5 -0
  224. package/tailwind/tailwind.config.hanzo-preset.js +915 -0
  225. package/tailwind/tw-font-desc.ts +15 -0
  226. package/tailwind/typo-plugin/get-plugin-styles.js +679 -0
  227. package/tailwind/typo-plugin/index.d.ts +9 -0
  228. package/tailwind/typo-plugin/index.js +141 -0
  229. package/tailwind/typo-plugin/utils.js +60 -0
  230. package/tailwind/typography-test.mdx +35 -0
  231. package/tailwind/z-index.tailwind.js +71 -0
  232. package/types/animation-def.ts +3 -0
  233. package/types/breakpoints.ts +11 -0
  234. package/types/bullet-item.ts +10 -0
  235. package/types/button-def.ts +39 -0
  236. package/types/dimensions.ts +8 -0
  237. package/types/grid-def.ts +56 -0
  238. package/types/image-def.ts +32 -0
  239. package/types/index.ts +30 -0
  240. package/types/link-def.ts +56 -0
  241. package/types/media-stack-def.ts +31 -0
  242. package/types/t-shirt-size.ts +5 -0
  243. package/types/tshirt-dimensions.ts +20 -0
  244. package/types/video-def.ts +25 -0
  245. package/util/blob.ts +33 -0
  246. package/util/copy-to-clipboard.ts +17 -0
  247. package/util/create-shadow-root.ts +22 -0
  248. package/util/date.ts +84 -0
  249. package/util/debounce.ts +11 -0
  250. package/util/file.ts +15 -0
  251. package/util/format-and-abbreviate-as-currency.ts +125 -0
  252. package/util/format-text.ts +34 -0
  253. package/util/format-to-max-char.ts +68 -0
  254. package/util/index-client.ts +3 -0
  255. package/util/index.ts +112 -0
  256. package/util/number-abbreviate.ts +49 -0
  257. package/util/specifier.ts +43 -0
  258. package/util/spread-to-transform.ts +25 -0
  259. package/util/step-animation.ts +90 -0
  260. package/util/timing.ts +3 -0
  261. package/util/toasts.tsx +17 -0
  262. package/util/two-way-map.ts +19 -0
  263. package/dist/index.d.mts +0 -16
  264. package/dist/index.d.ts +0 -16
  265. package/dist/lib/utils.d.mts +0 -2
  266. package/dist/lib/utils.d.ts +0 -2
  267. package/dist/src/utils.d.mts +0 -7
  268. package/dist/src/utils.d.ts +0 -7
  269. package/dist/tailwind/index.d.mts +0 -2
  270. package/dist/tailwind/index.d.ts +0 -2
  271. package/dist/types/index.d.mts +0 -12
  272. package/dist/types/index.d.ts +0 -12
@@ -0,0 +1,70 @@
1
+ import React, { ComponentType, type ReactNode} from 'react'
2
+
3
+ import type * as B from '../def'
4
+
5
+ import AccordianBlockComponent from './accordian-block'
6
+ import BulletCardsBlockComponent from './bullet-cards-block'
7
+ import CTABlockComponent from './cta-block'
8
+ import CardBlockComponent from './card-block'
9
+ import CarteBlancheBlockComponent from './carte-blanche-block'
10
+ import EnhHeadingBlockComponent from './enh-heading-block'
11
+ import HeadingBlockComponent from './heading-block'
12
+ import GroupBlockComponent from './group-block'
13
+ import GridBlockComponent from './grid-block'
14
+ import ImageBlockComponent from './image-block'
15
+ import SpaceBlockComponent from './space-block'
16
+ import VideoBlockComponent from './video-block'
17
+
18
+ import type BlockComponentProps from './block-component-props'
19
+
20
+ const map = new Map<string, ComponentType<BlockComponentProps>>()
21
+ map.set('accordian', AccordianBlockComponent)
22
+ map.set('bullet-cards', BulletCardsBlockComponent)
23
+ map.set('card', CardBlockComponent)
24
+ map.set('carte-blanche', CarteBlancheBlockComponent)
25
+ map.set('cta', CTABlockComponent)
26
+ map.set('heading', HeadingBlockComponent)
27
+ map.set('enh-heading', EnhHeadingBlockComponent as ComponentType<BlockComponentProps>)
28
+ map.set('space', SpaceBlockComponent)
29
+ map.set('image', ImageBlockComponent)
30
+ map.set('video', VideoBlockComponent)
31
+ map.set('group', GroupBlockComponent)
32
+ map.set('grid', GridBlockComponent)
33
+
34
+ const registerBlockType = (key: string, type: ComponentType<BlockComponentProps>): void => {
35
+ map.set(key, type)
36
+ }
37
+
38
+ const renderBlock = (block: B.Block, className: string, agent?: string, keyStr?: string): ReactNode => {
39
+ if (block.blockType === 'element') {
40
+ return (block as B.ElementBlock).element
41
+ }
42
+ const CompType = map.get(block.blockType)
43
+ if (!CompType) return null
44
+ return <CompType block={block} className={className} agent={agent} key={keyStr ?? ''} />
45
+ }
46
+
47
+ const ContentComponent: React.FC<{
48
+ blocks: B.Block | B.Block[] | undefined
49
+ className?: string
50
+ agent?: string
51
+ }> = ({
52
+ blocks,
53
+ className='',
54
+ agent
55
+ }) => {
56
+ if (!blocks) return null
57
+ if (Array.isArray(blocks)) {
58
+ return (
59
+ blocks.map((block, index) => (
60
+ renderBlock(block, className, agent, `content-block-${block.blockType}-${index}`)
61
+ ))
62
+ )
63
+ }
64
+ return renderBlock(blocks, className, agent)
65
+ }
66
+
67
+ export {
68
+ ContentComponent as default,
69
+ registerBlockType
70
+ }
@@ -0,0 +1,115 @@
1
+ import React from 'react'
2
+
3
+ import type { LinkDef, ButtonDef} from '../../types'
4
+ import { buttonVariants, ActionButton, LinkElement } from '../../primitives/index-next'
5
+ import type { CTABlock } from '../def'
6
+ import { cn, containsToken, type VariantProps } from '../../util'
7
+
8
+ import type BlockComponentProps from './block-component-props'
9
+
10
+ const CtaBlockComponent: React.FC<BlockComponentProps & {
11
+ itemClasses?: string
12
+ itemSize?: VariantProps<typeof buttonVariants>['size'],
13
+ renderLink?: (def: LinkDef, key: any) => JSX.Element
14
+ renderButton?: (def: ButtonDef, key: any) => JSX.Element
15
+ }> = ({
16
+ block,
17
+ className='', // assigned to each item
18
+ itemClasses='',
19
+ itemSize, // do not provide default. this is an override to the def
20
+ renderLink,
21
+ renderButton,
22
+ agent
23
+ }) => {
24
+
25
+ if (block.blockType !== 'cta') {
26
+ return <>cta block required</>
27
+ }
28
+
29
+ const { elements, specifiers } = block as CTABlock
30
+ let wrapperClasses = ''
31
+ let itemclx = ''
32
+ if (containsToken(specifiers, 'fill')) {
33
+ wrapperClasses += 'w-full '
34
+ itemclx += 'grow shrink !min-w-0'
35
+ }
36
+ else if (containsToken(specifiers, 'left')) {
37
+ wrapperClasses += 'md:justify-start '
38
+ }
39
+ else if (containsToken(specifiers, 'right')) {
40
+ wrapperClasses += 'md:justify-end '
41
+ }
42
+ else {
43
+ wrapperClasses += 'md:justify-center '
44
+ }
45
+
46
+ const mobile2Columns = containsToken(specifiers, 'mobile-2-columns')
47
+ // normally 'default' buttons have a min width only at > lg.
48
+ // generally if more than one we don't want this and override it,
49
+ // but this specifier asks to observe the default behavior.
50
+ const fillEvenly = !containsToken(specifiers, 'desktop-dont-fill')
51
+ const mobileCenterFirstIfOdd = containsToken(specifiers, 'mobile-center-first-if-odd')
52
+ const mobileOddFullWidth = containsToken(specifiers, 'mobile-odd-full-width')
53
+
54
+ let layoutclx: string | undefined = undefined
55
+ if (elements.length > 1) {
56
+ let resetMinWidth = false
57
+ if (mobile2Columns) {
58
+ layoutclx = 'grid grid-cols-2 gap-2 self-stretch '
59
+ resetMinWidth = true
60
+ }
61
+ if (fillEvenly) {
62
+ layoutclx = (layoutclx ?? 'grid grid-cols-2 gap-2 self-stretch')
63
+ resetMinWidth = true
64
+ }
65
+ else {
66
+ layoutclx = layoutclx ? (layoutclx + 'md:flex md:flex-row md:justify-center ') : 'flex flex-row justify-center '
67
+ }
68
+ itemclx += resetMinWidth ? '!min-w-0 ' : ''
69
+ }
70
+ layoutclx = layoutclx ?? 'flex flex-col items-stretch gap-2 self-stretch md:flex-row sm:justify-center '
71
+
72
+ const getMobileColSpanClx = (index: number, total: number) => {
73
+ const indexToCenter = (total % 2 === 0) ? -1 : (mobileCenterFirstIfOdd) ? 0 : total - 1
74
+ const widthclx = mobileOddFullWidth ? 'w-full ' : 'w-3/5 mx-auto '
75
+ return (
76
+ (agent === 'phone' && mobile2Columns && (index === indexToCenter)) ? ('col-span-2 ' + widthclx) : ''
77
+ )
78
+ }
79
+
80
+ return (
81
+ <div className={cn(
82
+ layoutclx,
83
+ wrapperClasses,
84
+ className
85
+ )}>
86
+ {elements.map((element, index) => {
87
+ const twoColClx = getMobileColSpanClx(index, elements.length)
88
+ if ((element as any).title) {
89
+ const def = element as LinkDef
90
+ return renderLink ? renderLink(def, index) : (
91
+ <LinkElement
92
+ def={def}
93
+ key={index}
94
+ size={itemSize}
95
+ className={cn(itemclx, itemClasses, twoColClx)}
96
+ />
97
+ )
98
+ }
99
+ else {
100
+ const def = element as ButtonDef
101
+ return renderButton ? renderButton(def, index) : (
102
+ <ActionButton
103
+ def={def}
104
+ key={index}
105
+ size={itemSize}
106
+ className={cn(itemclx, itemClasses, twoColClx)}
107
+ />
108
+ )
109
+ }
110
+ })}
111
+ </div>
112
+ )
113
+ }
114
+
115
+ export default CtaBlockComponent
@@ -0,0 +1,204 @@
1
+ import React, {type ElementType} from 'react'
2
+
3
+ import type { EnhHeadingBlock } from '../def'
4
+ import { ApplyTypography } from '../../primitives/index-common'
5
+ import { cn, containsToken } from '../../util'
6
+
7
+ import type BlockComponentProps from './block-component-props'
8
+ import InlineIcon from '../../primitives/next/inline-icon'
9
+
10
+ const DEFAULTS = {
11
+ preheading: {
12
+ tag: 'h4' as ElementType,
13
+ mb: 2
14
+ },
15
+ heading: {
16
+ tag: 'h1' as ElementType,
17
+ mb: 2
18
+ },
19
+ byline: {
20
+ tag: 'h6' as ElementType,
21
+ }
22
+ }
23
+
24
+ const tagFromLevel = (level: number): ElementType => {
25
+ switch (level) {
26
+ case 1: {
27
+ return 'h1'
28
+ }
29
+ case 2: {
30
+ return 'h2'
31
+ }
32
+ case 3: {
33
+ return 'h3'
34
+ }
35
+ case 4: {
36
+ return 'h4'
37
+ }
38
+ case 5: {
39
+ return 'h5'
40
+ }
41
+ case 6: {
42
+ return 'h6'
43
+ }
44
+ }
45
+ return 'p'
46
+ }
47
+
48
+ // TODO Impl icon support
49
+ const Element: React.FC<{
50
+ asTag: ElementType
51
+ text: string
52
+ icon?: React.ReactNode
53
+ iconLeft?: boolean
54
+ className?: string
55
+ }> = ({
56
+ asTag: Tag,
57
+ text,
58
+ icon,
59
+ iconLeft=true,
60
+ className : elClassName=''
61
+ }) => (
62
+ <Tag className={elClassName}>{text}</Tag>
63
+ )
64
+
65
+ const getPositionClx = (
66
+ specified: (s: string) => boolean,
67
+ agent: string | undefined
68
+ ): {
69
+ preheading: string
70
+ heading: string
71
+ byline: string
72
+ } => {
73
+
74
+ const mobileHeadingCentered = specified('mobile-heading-centered')
75
+ const mobileHeadingLeft = specified('mobile-heading-left')
76
+ const headingCentered = specified('center')
77
+ const headingRight = specified('right')
78
+ const bylineCentered = specified('byline-center')
79
+ const bylineRight = specified('byline-right')
80
+ const mobileBylineLeft = specified('mobile-byline-left')
81
+
82
+ let headerclx = ''
83
+ let bylineclx = (bylineCentered) ?
84
+ 'self-center !text-center' : (bylineRight ? 'self-end !text-right' : 'self-start !text-left')
85
+
86
+ if (agent === 'phone') {
87
+ if (mobileHeadingLeft) {
88
+ headerclx = 'self-start text-left'
89
+ } else {
90
+ headerclx = (mobileHeadingCentered || headingCentered) ?
91
+ 'self-center text-center' : (headingRight ? 'self-end text-right' : 'self-start text-left')
92
+ }
93
+
94
+ if (mobileBylineLeft) {
95
+ bylineclx = 'self-start !text-left'
96
+ }
97
+ }
98
+ else {
99
+ const largerclx = (headingCentered) ?
100
+ 'self-center text-center' : (headingRight ? 'self-end text-right' : 'self-start text-left')
101
+
102
+ if (mobileHeadingCentered) {
103
+ headerclx = 'self-center text-center md:' + largerclx.split(' ').join(' md:')
104
+ }
105
+ else {
106
+ headerclx = largerclx
107
+ }
108
+ }
109
+
110
+ return {
111
+ preheading: headerclx,
112
+ heading: headerclx,
113
+ byline: bylineclx
114
+ }
115
+ }
116
+
117
+ const EnhHeadingBlockComponent: React.FC<
118
+ BlockComponentProps & {
119
+ applyTypography?: boolean
120
+ extraSpecifiers?: string
121
+ }> = ({
122
+ block,
123
+ className='',
124
+ agent,
125
+ applyTypography=true,
126
+ extraSpecifiers=''
127
+ }) => {
128
+
129
+ if (block.blockType !== 'enh-heading') {
130
+ return <>enhance heading block required</>
131
+ }
132
+ const b = block as EnhHeadingBlock
133
+ const specified = (s: string) => (containsToken(b.specifiers + extraSpecifiers, s))
134
+ const preheadingHeadingFont = specified('preheading-heading-font')
135
+ const phFontClx = preheadingHeadingFont ? 'font-heading' : ''
136
+ const alignMiddleClx = specified('align-middle') ? 'my-auto' : ''
137
+
138
+ const positionclx = getPositionClx(specified, agent)
139
+
140
+ const Inner: React.FC = () => {
141
+ const toRender = [
142
+ {
143
+ tag: (b.preheading) ?
144
+ (b.preheading.level !== undefined ? tagFromLevel(b.preheading.level) : DEFAULTS.preheading.tag)
145
+ :
146
+ undefined,
147
+ clx: (b.preheading) ?
148
+ (b.preheading.mb !== undefined ?
149
+ `mb-${b.preheading.mb}` : `mb-${DEFAULTS.preheading.mb}`) + ' ' + positionclx.preheading + ' ' + phFontClx
150
+ :
151
+ positionclx.preheading + ' ' + phFontClx,
152
+ text: (b.preheading) ? (b.preheading.text ) : undefined,
153
+ },
154
+ {
155
+ tag: (b.heading.level !== undefined ? tagFromLevel(b.heading.level) : DEFAULTS.heading.tag),
156
+ clx: (b.heading.mb !== undefined ? `mb-${b.heading.mb}` : `mb-${DEFAULTS.heading.mb}`) + ' ' + positionclx.heading,
157
+ text: b.heading.text,
158
+ },
159
+ {
160
+ tag: (b.byline) ?
161
+ (b.byline.level !== undefined ? tagFromLevel(b.byline.level) : DEFAULTS.byline.tag)
162
+ :
163
+ undefined,
164
+ clx: positionclx.byline,
165
+ text: (b.byline) ? (b.byline.text ) : undefined,
166
+ },
167
+ ] as {
168
+ tag: ElementType
169
+ clx: string
170
+ text: string
171
+ }[]
172
+
173
+ let iconRendered = false
174
+ return <>
175
+ {toRender.map(({tag, clx, text}, index) => {
176
+ if (!tag) return null
177
+ if (b.icon && !iconRendered) {
178
+ iconRendered = true
179
+ return (
180
+ <div className={cn('flex flex-row items-center gap-2 sm:gap-4', clx)} key={`div-${index}`}>
181
+ <InlineIcon icon={b.icon} size={b.iconSize ?? 32} agent={agent}/>
182
+ <Element asTag={tag} text={text} />
183
+ </div>
184
+ )
185
+ }
186
+ return (
187
+ (<Element asTag={tag} text={text} className={clx} key={`el-${index}`}/>)
188
+ )
189
+ })}
190
+ </>
191
+ }
192
+
193
+ return applyTypography ? (
194
+ <ApplyTypography className={cn('flex flex-col w-full !gap-0', className, alignMiddleClx)}>
195
+ <Inner />
196
+ </ApplyTypography>
197
+ ) : (
198
+ <div className={cn('flex flex-col w-full gap-0', className, alignMiddleClx)}>
199
+ <Inner />
200
+ </div>
201
+ )
202
+ }
203
+
204
+ export default EnhHeadingBlockComponent
@@ -0,0 +1,12 @@
1
+ interface GridBlockMutator {
2
+ gapClx?: string
3
+ getCellClx?: (
4
+ cellIndex: number,
5
+ cellCount: number,
6
+ colCount: number
7
+ ) => string
8
+ }
9
+
10
+ export {
11
+ type GridBlockMutator as default
12
+ }
@@ -0,0 +1,83 @@
1
+ import React, { PropsWithChildren } from 'react'
2
+
3
+ import { cn, containsToken } from '../../../util'
4
+ import type { GridBlock } from '../../def'
5
+ import type { GridColumnSpec } from '../../../types'
6
+
7
+ import Content from '../content'
8
+ import type BlockComponentProps from '../block-component-props'
9
+
10
+ import getMutator from './mutator-registry'
11
+
12
+ // These must be / are safelisted in tailwind.config
13
+ const gridClx = (d: GridColumnSpec, prefix?: string ): string => (
14
+ (typeof d === 'number') ?
15
+ `${(prefix ?? '')}grid-cols-${d} `
16
+ :
17
+ `${(prefix ?? '')}grid-cols-${d.columns} ${(prefix ?? '')}gap-${d.gap} `
18
+ )
19
+
20
+ /**
21
+ * A component that lays out the Blocks in 'cells' on a grid.
22
+ * If invoked directly, and children are supplied,
23
+ * block.cells is ignore and the children are rendered.
24
+ */
25
+ const GridBlockComponent: React.FC<
26
+ BlockComponentProps & PropsWithChildren
27
+ > = ({
28
+ block,
29
+ className='',
30
+ agent,
31
+ children
32
+ }) => {
33
+
34
+ if (block.blockType !== 'grid') {
35
+ return <>grid block required</>
36
+ }
37
+
38
+ const { cells, grid, specifiers } = block as GridBlock
39
+ const specified = (s: string) => (containsToken(specifiers, s))
40
+ const mutator = specified('style-table-borders') ? getMutator('style-table-borders') : undefined
41
+
42
+ // https://tailwindcss.com/docs/content-configuration#dynamic-class-names
43
+ // All variants in use MUST be in style/safelist.tailwind.js
44
+ let clx = 'grid '
45
+ if (agent === 'phone') {
46
+ const d = (grid.mobile) ? grid.mobile : (grid.at.xs ? grid.at.xs : (grid.at.sm ?? 1))
47
+ clx += gridClx(d)
48
+ }
49
+ else {
50
+ let defaultSet = false
51
+ for (const [key, value] of Object.entries(grid.at)) {
52
+ if (!defaultSet) {
53
+ // ts brain fart!
54
+ clx += gridClx(value as GridColumnSpec)
55
+ defaultSet = true
56
+ }
57
+ else {
58
+ // ts brain fart!
59
+ clx += gridClx(value as GridColumnSpec, `${key}:`)
60
+ }
61
+ }
62
+ }
63
+
64
+ let getMutatorCellClx = (ignore: number): string => ('')
65
+ if (mutator?.getCellClx) {
66
+ const colCount = (typeof grid.at.md! === 'number') ? grid.at.md! as number : grid.at.md!.columns
67
+ const cellCount = cells?.length
68
+ if (!colCount || !cellCount) {
69
+ throw new Error('GridBlockComponent: using mutator, but colCount and / or cellCount is invalid!')
70
+ }
71
+ getMutatorCellClx = (cellIndex: number) => ( mutator!.getCellClx!(cellIndex, cellCount, colCount) )
72
+ }
73
+
74
+ return (
75
+ <div className={cn('grid gap-2 md:gap-4 xl:gap-6', clx, (mutator?.gapClx ?? ''), className)}>
76
+ {React.Children.count(children) > 0 ? children : cells?.map((cell, index) => (
77
+ <Content blocks={cell} agent={agent} key={`cell-${index}`} className={getMutatorCellClx(index)}/>
78
+ ))}
79
+ </div>
80
+ )
81
+ }
82
+
83
+ export default GridBlockComponent
@@ -0,0 +1,10 @@
1
+ import type GridBlockMutator from './grid-block-mutator'
2
+
3
+ import tableBorders from './table-borders.mutator'
4
+
5
+ const map = new Map<string, GridBlockMutator>()
6
+ map.set('style-table-borders', tableBorders)
7
+
8
+ // get
9
+ export default (key: string): GridBlockMutator | undefined => (map.get(key))
10
+
@@ -0,0 +1,47 @@
1
+ import type GridBlockMutator from './grid-block-mutator'
2
+
3
+ const getCellClx = (
4
+ cellIndex: number,
5
+ cellCount: number,
6
+ colCount: number
7
+ ): string => {
8
+
9
+ const isFirstRow = (): boolean => (cellIndex < colCount)
10
+ const isFirstColumn = (): boolean => (cellIndex % colCount === 0)
11
+ const isTLCorner = (): boolean => (cellIndex === 0)
12
+ const isTRCorner = (): boolean => (cellIndex === colCount -1 )
13
+ const isBLCorner = (): boolean => (cellIndex === cellCount - colCount)
14
+ const isBRCorner = (): boolean => (cellIndex === cellCount - 1)
15
+
16
+ // all get a right and bottom border and padding,
17
+ // other borders are a special base
18
+ let clx = 'border-b md:border-r p-4 md:p-8 lg:p-12 '
19
+ if (isFirstRow()) {
20
+ clx += 'border-t '
21
+ }
22
+ if (isFirstColumn()) {
23
+ clx += 'md:border-l '
24
+ }
25
+ // on mobile this will be the first (top) cell
26
+ if (isTLCorner()) {
27
+ clx += 'border-t md:rounded-tl-lg '
28
+ }
29
+ else if (isTRCorner()) {
30
+ clx += 'md:rounded-tr-lg '
31
+ }
32
+ else if (isBLCorner()) {
33
+ clx += 'md:rounded-bl-lg '
34
+ }
35
+ else if (isBRCorner()) {
36
+ clx += 'md:rounded-br-lg '
37
+ }
38
+
39
+ return clx
40
+ }
41
+
42
+ const gapClx = 'gap-0 md:gap-0 xl:gap-0'
43
+
44
+ export default {
45
+ getCellClx,
46
+ gapClx
47
+ } as GridBlockMutator
@@ -0,0 +1,83 @@
1
+ import React from 'react'
2
+
3
+ import { Breakpoints} from '../../types'
4
+ import { cn } from '../../util'
5
+
6
+ import type { Block, GroupBlock } from '../def'
7
+ import Content from './content'
8
+
9
+ // eg: 'layout-grid-2-starting-md'
10
+ // see comments below regarding dynamic classes and the safelist
11
+ const getLayoutInfo = (s: string): {
12
+ layout: string
13
+ spec: any
14
+ } | undefined => {
15
+ const tokenArray = s.split(' ')
16
+ const layoutToken = tokenArray.find((tok) => (tok.startsWith('layout-')))
17
+ if (layoutToken) {
18
+ const subtokens = layoutToken.split('-')
19
+ const layout = subtokens[1]
20
+ let spec: any = {}
21
+ switch (layout) {
22
+ case 'grid': {
23
+ const columns = parseInt(subtokens[2], 10)
24
+ const starting = subtokens[4]
25
+ if (Number.isNaN(columns) || columns < 2 || columns > 6 || !Breakpoints.includes(starting)) {
26
+ return undefined
27
+ }
28
+ spec = {
29
+ columns,
30
+ starting
31
+ }
32
+ } break
33
+ // no other types supported yet
34
+ }
35
+ return {
36
+ layout,
37
+ spec
38
+ }
39
+ }
40
+ return undefined
41
+ }
42
+
43
+ const GroupBlockComponent: React.FC<{
44
+ block: Block
45
+ className?: string,
46
+ }> = ({
47
+ block,
48
+ className=''
49
+ }) => {
50
+
51
+ if (block.blockType !== 'group') {
52
+ return <>group block required</>
53
+ }
54
+
55
+ const group = block as GroupBlock
56
+
57
+ // only one supported so fat
58
+ if (group.specifiers?.includes('layout')) {
59
+ const layoutSpec = getLayoutInfo(group.specifiers)
60
+ if (!layoutSpec) {
61
+ return <>invalid or missing layout specifier in group block!</>
62
+ }
63
+
64
+ if (layoutSpec.layout === 'grid') {
65
+ const { elements } = group
66
+ const { spec: {starting, columns} } = layoutSpec
67
+
68
+ // https://tailwindcss.com/docs/content-configuration#dynamic-class-names
69
+ // All variants in use MUST be in style/safelist.tailwind.js
70
+ const clazzName = cn('grid xs:grid-cols-1 gap-2 sm:gap-3',
71
+ `${starting}:grid-cols-${columns} `,
72
+ className)
73
+ return (
74
+ <div className={clazzName}>
75
+ <Content blocks={elements} />
76
+ </div>
77
+ )
78
+ }
79
+ }
80
+ return null
81
+ }
82
+
83
+ export default GroupBlockComponent