-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
Copy pathinstalled-fonts.js
202 lines (183 loc) · 4.77 KB
/
installed-fonts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { useContext, useEffect, useState } from '@wordpress/element';
import {
privateApis as componentsPrivateApis,
__experimentalHStack as HStack,
__experimentalSpacer as Spacer,
__experimentalText as Text,
Button,
Spinner,
FlexItem,
} from '@wordpress/components';
/**
* Internal dependencies
*/
import TabPanelLayout from './tab-panel-layout';
import { FontLibraryContext } from './context';
import LibraryFontDetails from './library-font-details';
import LibraryFontCard from './library-font-card';
import ConfirmDeleteDialog from './confirm-delete-dialog';
import { unlock } from '../../../lock-unlock';
const { ProgressBar } = unlock( componentsPrivateApis );
function InstalledFonts() {
const {
baseCustomFonts,
libraryFontSelected,
baseThemeFonts,
handleSetLibraryFontSelected,
refreshLibrary,
uninstallFontFamily,
isResolvingLibrary,
notice,
setNotice,
} = useContext( FontLibraryContext );
const [ isConfirmDeleteOpen, setIsConfirmDeleteOpen ] = useState( false );
const handleUnselectFont = () => {
handleSetLibraryFontSelected( null );
};
const handleSelectFont = ( font ) => {
handleSetLibraryFontSelected( font );
};
const handleConfirmUninstall = async () => {
setNotice( null );
try {
await uninstallFontFamily( libraryFontSelected );
setNotice( {
type: 'success',
message: __( 'Font family uninstalled successfully.' ),
} );
// If the font was succesfully uninstalled it is unselected.
handleUnselectFont();
setIsConfirmDeleteOpen( false );
} catch ( error ) {
setNotice( {
type: 'error',
message:
__( 'There was an error uninstalling the font family. ' ) +
error.message,
} );
}
};
const handleUninstallClick = async () => {
setIsConfirmDeleteOpen( true );
};
const handleCancelUninstall = () => {
setIsConfirmDeleteOpen( false );
};
const tabDescription = !! libraryFontSelected
? __(
'Choose font variants. Keep in mind that too many variants could make your site slower.'
)
: null;
const shouldDisplayDeleteButton =
!! libraryFontSelected && libraryFontSelected?.source !== 'theme';
useEffect( () => {
handleSelectFont( libraryFontSelected );
refreshLibrary();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [] );
return (
<TabPanelLayout
title={ libraryFontSelected?.name || '' }
description={ tabDescription }
notice={ notice }
handleBack={ !! libraryFontSelected && handleUnselectFont }
footer={
<Footer
shouldDisplayDeleteButton={ shouldDisplayDeleteButton }
handleUninstallClick={ handleUninstallClick }
/>
}
>
<ConfirmDeleteDialog
font={ libraryFontSelected }
isConfirmDeleteOpen={ isConfirmDeleteOpen }
handleConfirmUninstall={ handleConfirmUninstall }
handleCancelUninstall={ handleCancelUninstall }
/>
{ ! libraryFontSelected && (
<>
{ isResolvingLibrary && (
<FlexItem>
<Spacer margin={ 2 } />
<Spinner />
<Spacer margin={ 2 } />
</FlexItem>
) }
{ baseCustomFonts.length > 0 && (
<>
{ baseCustomFonts.map( ( font ) => (
<LibraryFontCard
font={ font }
key={ font.slug }
onClick={ () => {
handleSelectFont( font );
} }
/>
) ) }
<Spacer margin={ 8 } />
</>
) }
{ baseThemeFonts.length > 0 && (
<>
<Text className="font-library-modal__subtitle">
{ __( 'Theme Fonts' ) }
</Text>
<Spacer margin={ 2 } />
{ baseThemeFonts.map( ( font ) => (
<LibraryFontCard
font={ font }
key={ font.slug }
onClick={ () => {
handleSelectFont( font );
} }
/>
) ) }
</>
) }
<Spacer margin={ 16 } />
</>
) }
{ libraryFontSelected && (
<LibraryFontDetails
font={ libraryFontSelected }
isConfirmDeleteOpen={ isConfirmDeleteOpen }
handleConfirmUninstall={ handleConfirmUninstall }
handleCancelUninstall={ handleCancelUninstall }
/>
) }
</TabPanelLayout>
);
}
function Footer( { shouldDisplayDeleteButton, handleUninstallClick } ) {
const { saveFontFamilies, fontFamiliesHasChanges, isInstalling } =
useContext( FontLibraryContext );
return (
<HStack justify="flex-end">
{ isInstalling && <ProgressBar /> }
<div>
{ shouldDisplayDeleteButton && (
<Button
isDestructive
variant="tertiary"
onClick={ handleUninstallClick }
>
{ __( 'Delete' ) }
</Button>
) }
</div>
<Button
variant="primary"
onClick={ saveFontFamilies }
disabled={ ! fontFamiliesHasChanges }
__experimentalIsFocusable
>
{ __( 'Update' ) }
</Button>
</HStack>
);
}
export default InstalledFonts;