-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
Copy pathfont-collection.js
417 lines (381 loc) · 9.96 KB
/
font-collection.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
/**
* WordPress dependencies
*/
import {
useContext,
useEffect,
useState,
useMemo,
createInterpolateElement,
} from '@wordpress/element';
import {
__experimentalSpacer as Spacer,
__experimentalInputControl as InputControl,
__experimentalText as Text,
__experimentalHStack as HStack,
SelectControl,
Spinner,
Icon,
FlexItem,
Flex,
Button,
} from '@wordpress/components';
import { debounce } from '@wordpress/compose';
import { sprintf, __, _x } from '@wordpress/i18n';
import { search, closeSmall } from '@wordpress/icons';
/**
* Internal dependencies
*/
import TabPanelLayout from './tab-panel-layout';
import { FontLibraryContext } from './context';
import FontCard from './font-card';
import filterFonts from './utils/filter-fonts';
import CollectionFontDetails from './collection-font-details';
import { toggleFont } from './utils/toggleFont';
import { getFontsOutline } from './utils/fonts-outline';
import GoogleFontsConfirmDialog from './google-fonts-confirm-dialog';
import { downloadFontFaceAssets } from './utils';
const DEFAULT_CATEGORY = {
slug: 'all',
name: _x( 'All', 'font categories' ),
};
function FontCollection( { slug } ) {
const requiresPermission = slug === 'google-fonts';
const getGoogleFontsPermissionFromStorage = () => {
return (
window.localStorage.getItem(
'wp-font-library-google-fonts-permission'
) === 'true'
);
};
const [ selectedFont, setSelectedFont ] = useState( null );
const [ fontsToInstall, setFontsToInstall ] = useState( [] );
const [ page, setPage ] = useState( 1 );
const [ filters, setFilters ] = useState( {} );
const [ renderConfirmDialog, setRenderConfirmDialog ] = useState(
requiresPermission && ! getGoogleFontsPermissionFromStorage()
);
const { collections, getFontCollection, installFont, notice, setNotice } =
useContext( FontLibraryContext );
const selectedCollection = collections.find(
( collection ) => collection.slug === slug
);
useEffect( () => {
const handleStorage = () => {
setRenderConfirmDialog(
requiresPermission && ! getGoogleFontsPermissionFromStorage()
);
};
handleStorage();
window.addEventListener( 'storage', handleStorage );
return () => window.removeEventListener( 'storage', handleStorage );
}, [ slug, requiresPermission ] );
useEffect( () => {
const fetchFontCollection = async () => {
try {
await getFontCollection( slug );
resetFilters();
} catch ( e ) {
if ( ! notice ) {
setNotice( {
type: 'error',
message: e?.message,
} );
}
}
};
fetchFontCollection();
}, [ slug, getFontCollection, setNotice, notice ] );
useEffect( () => {
setSelectedFont( null );
setNotice( null );
}, [ slug, setNotice ] );
useEffect( () => {
// If the selected fonts change, reset the selected fonts to install
setFontsToInstall( [] );
}, [ selectedFont ] );
const collectionFonts = useMemo(
() => selectedCollection?.font_families ?? [],
[ selectedCollection ]
);
const collectionCategories = selectedCollection?.categories ?? [];
const categories = [ DEFAULT_CATEGORY, ...collectionCategories ];
const fonts = useMemo(
() => filterFonts( collectionFonts, filters ),
[ collectionFonts, filters ]
);
// NOTE: The height of the font library modal unavailable to use for rendering font family items is roughly 417px
// The hight of each font family item is 61px
const pageSize = Math.floor( ( window.innerHeight - 417 ) / 61 );
const totalPages = Math.ceil( fonts.length / pageSize );
const itemsStart = ( page - 1 ) * pageSize;
const itemsLimit = page * pageSize;
const items = fonts.slice( itemsStart, itemsLimit );
const handleCategoryFilter = ( category ) => {
setFilters( { ...filters, category } );
setPage( 1 );
};
const handleUpdateSearchInput = ( value ) => {
setFilters( { ...filters, search: value } );
setPage( 1 );
};
const debouncedUpdateSearchInput = debounce( handleUpdateSearchInput, 300 );
const resetFilters = () => {
setFilters( {} );
setPage( 1 );
};
const resetSearch = () => {
setFilters( { ...filters, search: '' } );
setPage( 1 );
};
const handleUnselectFont = () => {
setSelectedFont( null );
};
const handleToggleVariant = ( font, face ) => {
const newFontsToInstall = toggleFont( font, face, fontsToInstall );
setFontsToInstall( newFontsToInstall );
};
const fontToInstallOutline = getFontsOutline( fontsToInstall );
const resetFontsToInstall = () => {
setFontsToInstall( [] );
};
const handleInstall = async () => {
setNotice( null );
const fontFamily = fontsToInstall[ 0 ];
try {
if ( fontFamily?.fontFace ) {
await Promise.all(
fontFamily.fontFace.map( async ( fontFace ) => {
if ( fontFace.src ) {
fontFace.file = await downloadFontFaceAssets(
fontFace.src
);
}
} )
);
}
} catch ( error ) {
// If any of the fonts fail to download,
// show an error notice and stop the request from being sent.
setNotice( {
type: 'error',
message: __(
'Error installing the fonts, could not be downloaded.'
),
} );
return;
}
try {
await installFont( fontFamily );
setNotice( {
type: 'success',
message: __( 'Fonts were installed successfully.' ),
} );
} catch ( error ) {
setNotice( {
type: 'error',
message: error.message,
} );
}
resetFontsToInstall();
};
let footerComponent = null;
if ( selectedFont ) {
footerComponent = (
<InstallFooter
handleInstall={ handleInstall }
isDisabled={ fontsToInstall.length === 0 }
/>
);
} else if ( ! renderConfirmDialog && totalPages > 1 ) {
footerComponent = (
<PaginationFooter
page={ page }
totalPages={ totalPages }
setPage={ setPage }
/>
);
}
return (
<TabPanelLayout
title={
! selectedFont ? selectedCollection.name : selectedFont.name
}
description={
! selectedFont
? selectedCollection.description
: __( 'Select font variants to install.' )
}
notice={ notice }
handleBack={ !! selectedFont && handleUnselectFont }
footer={ footerComponent }
>
{ renderConfirmDialog && (
<>
<Spacer margin={ 8 } />
<GoogleFontsConfirmDialog />
</>
) }
{ ! renderConfirmDialog && ! selectedFont && (
<Flex>
<FlexItem>
<InputControl
value={ filters.search }
placeholder={ __( 'Font name…' ) }
label={ __( 'Search' ) }
onChange={ debouncedUpdateSearchInput }
prefix={ <Icon icon={ search } /> }
suffix={
filters?.search ? (
<Icon
icon={ closeSmall }
onClick={ resetSearch }
/>
) : null
}
/>
</FlexItem>
<FlexItem>
<SelectControl
label={ __( 'Category' ) }
value={ filters.category }
onChange={ handleCategoryFilter }
>
{ categories &&
categories.map( ( category ) => (
<option
value={ category.slug }
key={ category.slug }
>
{ category.name }
</option>
) ) }
</SelectControl>
</FlexItem>
</Flex>
) }
<Spacer margin={ 4 } />
{ ! renderConfirmDialog &&
! selectedCollection?.font_families &&
! notice && <Spinner /> }
{ ! renderConfirmDialog &&
!! selectedCollection?.font_families?.length &&
! fonts.length && (
<Text>
{ __(
'No fonts found. Try with a different search term'
) }
</Text>
) }
{ ! renderConfirmDialog && selectedFont && (
<CollectionFontDetails
font={ selectedFont }
handleToggleVariant={ handleToggleVariant }
fontToInstallOutline={ fontToInstallOutline }
/>
) }
{ ! renderConfirmDialog && ! selectedFont && (
<div className="font-library-modal__fonts-grid__main">
{ items.map( ( font ) => (
<FontCard
key={ font.font_family_settings.slug }
font={ font.font_family_settings }
onClick={ () => {
setSelectedFont( font.font_family_settings );
} }
/>
) ) }
</div>
) }
</TabPanelLayout>
);
}
function PaginationFooter( { page, totalPages, setPage } ) {
return (
<Flex justify="center">
<Button
label={ __( 'First page' ) }
size="compact"
onClick={ () => setPage( 1 ) }
disabled={ page === 1 }
__experimentalIsFocusable
>
<span>«</span>
</Button>
<Button
label={ __( 'Previous page' ) }
size="compact"
onClick={ () => setPage( page - 1 ) }
disabled={ page === 1 }
__experimentalIsFocusable
>
<span>‹</span>
</Button>
<HStack justify="flex-start" expanded={ false } spacing={ 2 }>
{ createInterpolateElement(
sprintf(
// translators: %s: Total number of pages.
_x( 'Page <CurrenPageControl /> of %s', 'paging' ),
totalPages
),
{
CurrenPageControl: (
<SelectControl
aria-label={ __( 'Current page' ) }
value={ page }
options={ [ ...Array( totalPages ) ].map(
( e, i ) => {
return {
label: i + 1,
value: i + 1,
};
}
) }
onChange={ ( newPage ) =>
setPage( parseInt( newPage ) )
}
size={ 'compact' }
__nextHasNoMarginBottom
/>
),
}
) }
</HStack>
<Button
label={ __( 'Next page' ) }
size="compact"
onClick={ () => setPage( page + 1 ) }
disabled={ page === totalPages }
__experimentalIsFocusable
>
<span>›</span>
</Button>
<Button
label={ __( 'Last page' ) }
size="compact"
onClick={ () => setPage( totalPages ) }
disabled={ page === totalPages }
__experimentalIsFocusable
>
<span>»</span>
</Button>
</Flex>
);
}
function InstallFooter( { handleInstall, isDisabled } ) {
const { isInstalling } = useContext( FontLibraryContext );
return (
<Flex justify="flex-end">
<Button
variant="primary"
onClick={ handleInstall }
isBusy={ isInstalling }
disabled={ isDisabled || isInstalling }
__experimentalIsFocusable
>
{ __( 'Install' ) }
</Button>
</Flex>
);
}
export default FontCollection;