1
1
import { Flex , Grid , Text , Select , TextField , Tooltip } from "@radix-ui/themes" ;
2
2
import type { OGElement } from "../../lib/types" ;
3
- import type { Font } from "../../lib/fonts" ;
4
- import { FONTS , FONT_WEIGHTS } from "../../lib/fonts" ;
5
3
import { FontSizeIcon } from "../icons/FontSizeIcon" ;
6
4
import { LineHeightIcon } from "../icons/LineHeightIcon" ;
7
5
import { LetterSpacingIcon } from "../icons/LetterSpacingIcon" ;
8
6
import { useElementsStore } from "../../stores/elementsStore" ;
9
7
import { ColorPicker } from "../ColorPicker" ;
10
8
import { FontPreview } from "../FontPreview" ;
9
+ import { useFontsStore } from "../../stores/fontsStore" ;
10
+ import { FontSelector } from "./FontSelector" ;
11
11
12
12
const SPACES_REGEX = / \s + / g;
13
13
@@ -17,6 +17,7 @@ interface FontSectionProps {
17
17
18
18
export function FontSection ( { selectedElement } : FontSectionProps ) {
19
19
const updateElement = useElementsStore ( ( state ) => state . updateElement ) ;
20
+ const { allFonts, installedFonts, installFont } = useFontsStore ( ) ;
20
21
21
22
if ( selectedElement . tag !== "p" && selectedElement . tag !== "span" ) {
22
23
return null ;
@@ -25,50 +26,36 @@ export function FontSection({ selectedElement }: FontSectionProps) {
25
26
return (
26
27
< Flex direction = "column" gap = "2" >
27
28
< Text size = "1" > Font</ Text >
28
- < Grid columns = "2 " gap = "2" >
29
+ < Flex direction = "row " gap = "2" className = "justify-between ">
29
30
< Select . Root
30
- onValueChange = { ( value ) => {
31
- const font = value as unknown as Font ;
31
+ onValueChange = { ( font ) => {
32
+ const weights = allFonts . find ( ( { name } ) => name === font ) ?. weights ;
33
+ if ( ! installedFonts . has ( font ) ) {
34
+ installFont ( font ) ;
35
+ }
32
36
33
37
updateElement ( {
34
38
...selectedElement ,
35
39
fontFamily : font ,
36
- fontWeight : FONT_WEIGHTS [ font ] . includes (
37
- selectedElement . fontWeight ,
38
- )
40
+ fontWeight : weights ?. includes ( selectedElement . fontWeight )
39
41
? selectedElement . fontWeight
40
42
: 400 ,
41
43
} ) ;
42
44
} }
43
45
value = { selectedElement . fontFamily }
44
46
>
45
- < Select . Trigger color = "gray" variant = "soft" />
47
+ < Select . Trigger color = "gray" variant = "soft" className = "flex-1" />
46
48
< Select . Content variant = "soft" >
47
- { FONTS . map ( ( font ) => (
49
+ { Array . from ( installedFonts ) . map ( ( font ) => (
48
50
< Select . Item key = { font } value = { font } >
49
51
< FontPreview font = { font } />
50
52
</ Select . Item >
51
53
) ) }
52
54
</ Select . Content >
53
55
</ Select . Root >
54
- < Select . Root
55
- onValueChange = { ( value ) => {
56
- updateElement ( {
57
- ...selectedElement ,
58
- fontWeight : Number ( value ) ,
59
- } ) ;
60
- } }
61
- value = { String ( selectedElement . fontWeight ) }
62
- >
63
- < Select . Trigger color = "gray" variant = "soft" />
64
- < Select . Content variant = "soft" >
65
- { FONT_WEIGHTS [ selectedElement . fontFamily ] . map ( ( weight ) => (
66
- < Select . Item key = { weight } value = { String ( weight ) } >
67
- { weight }
68
- </ Select . Item >
69
- ) ) }
70
- </ Select . Content >
71
- </ Select . Root >
56
+ < FontSelector selectedElement = { selectedElement } />
57
+ </ Flex >
58
+ < Grid columns = "2" gap = "2" >
72
59
< TextField . Root
73
60
color = "gray"
74
61
onChange = { ( event ) => {
@@ -88,6 +75,27 @@ export function FontSection({ selectedElement }: FontSectionProps) {
88
75
</ Tooltip >
89
76
< TextField . Slot > px</ TextField . Slot >
90
77
</ TextField . Root >
78
+ < Select . Root
79
+ onValueChange = { ( value ) => {
80
+ updateElement ( {
81
+ ...selectedElement ,
82
+ fontWeight : Number ( value ) ,
83
+ } ) ;
84
+ } }
85
+ value = { String ( selectedElement . fontWeight ) }
86
+ >
87
+ < Select . Trigger color = "gray" variant = "soft" />
88
+ < Select . Content variant = "soft" >
89
+ { allFonts
90
+ . find ( ( { name } ) => name === selectedElement . fontFamily )
91
+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- the ? is definitely required
92
+ ?. weights ?. map ( ( weight ) => (
93
+ < Select . Item key = { weight } value = { String ( weight ) } >
94
+ { weight }
95
+ </ Select . Item >
96
+ ) ) }
97
+ </ Select . Content >
98
+ </ Select . Root >
91
99
< ColorPicker
92
100
onChange = { ( color ) => {
93
101
updateElement ( {
0 commit comments