-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
Copy pathfont-collection.js
540 lines (501 loc) · 13.6 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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
/**
* WordPress dependencies
*/
import {
useContext,
useEffect,
useState,
useMemo,
createInterpolateElement,
} from '@wordpress/element';
import {
__experimentalSpacer as Spacer,
__experimentalText as Text,
__experimentalHStack as HStack,
__experimentalVStack as VStack,
__experimentalNavigatorProvider as NavigatorProvider,
__experimentalNavigatorScreen as NavigatorScreen,
__experimentalNavigatorToParentButton as NavigatorToParentButton,
__experimentalHeading as Heading,
Notice,
SelectControl,
FlexItem,
Flex,
Button,
DropdownMenu,
SearchControl,
privateApis as componentsPrivateApis,
} from '@wordpress/components';
import { debounce } from '@wordpress/compose';
import { sprintf, __, _x } from '@wordpress/i18n';
import { moreVertical, chevronLeft } from '@wordpress/icons';
/**
* Internal dependencies
*/
import { FontLibraryContext } from './context';
import FontCard from './font-card';
import filterFonts from './utils/filter-fonts';
import { toggleFont } from './utils/toggleFont';
import {
getFontsOutline,
isFontFontFaceInOutline,
} from './utils/fonts-outline';
import GoogleFontsConfirmDialog from './google-fonts-confirm-dialog';
import { downloadFontFaceAssets } from './utils';
import { sortFontFaces } from './utils/sort-font-faces';
import CollectionFontVariant from './collection-font-variant';
import { unlock } from '../../../lock-unlock';
const { ProgressBar } = unlock( componentsPrivateApis );
const DEFAULT_CATEGORY = {
slug: 'all',
name: _x( 'All', 'font categories' ),
};
const LOCAL_STORAGE_ITEM = 'wp-font-library-google-fonts-permission';
const MIN_WINDOW_HEIGHT = 500;
function FontCollection( { slug } ) {
const requiresPermission = slug === 'google-fonts';
const getGoogleFontsPermissionFromStorage = () => {
return window.localStorage.getItem( LOCAL_STORAGE_ITEM ) === '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,
installFonts,
isInstalling,
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 ] );
const revokeAccess = () => {
window.localStorage.setItem( LOCAL_STORAGE_ITEM, 'false' );
window.dispatchEvent( new Event( 'storage' ) );
};
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 ]
);
const isLoading = ! selectedCollection?.font_families && ! notice;
// NOTE: The height of the font library modal unavailable to use for rendering font family items is roughly 417px
// The height of each font family item is 61px.
const windowHeight = Math.max( window.innerHeight, MIN_WINDOW_HEIGHT );
const pageSize = Math.floor( ( windowHeight - 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 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 installFonts( [ fontFamily ] );
setNotice( {
type: 'success',
message: __( 'Fonts were installed successfully.' ),
} );
} catch ( error ) {
setNotice( {
type: 'error',
message: error.message,
} );
}
resetFontsToInstall();
};
const getSortedFontFaces = ( fontFamily ) => {
if ( ! fontFamily ) {
return [];
}
if ( ! fontFamily.fontFace || ! fontFamily.fontFace.length ) {
return [
{
fontFamily: fontFamily.fontFamily,
fontStyle: 'normal',
fontWeight: '400',
},
];
}
return sortFontFaces( fontFamily.fontFace );
};
if ( renderConfirmDialog ) {
return <GoogleFontsConfirmDialog />;
}
const ActionsComponent = () => {
if ( slug !== 'google-fonts' || renderConfirmDialog || selectedFont ) {
return null;
}
return (
<DropdownMenu
icon={ moreVertical }
label={ __( 'Actions' ) }
popoverProps={ {
position: 'bottom left',
} }
controls={ [
{
title: __( 'Revoke access to Google Fonts' ),
onClick: revokeAccess,
},
] }
/>
);
};
return (
<div className="font-library-modal__tabpanel-layout">
{ isLoading && (
<div className="font-library-modal__loading">
<ProgressBar />
</div>
) }
{ ! isLoading && (
<>
<NavigatorProvider
initialPath="/"
className="font-library-modal__tabpanel-layout"
>
<NavigatorScreen path="/">
<HStack justify="space-between">
<VStack>
<Heading level={ 2 } size={ 13 }>
{ selectedCollection.name }
</Heading>
<Text>
{ selectedCollection.description }
</Text>
</VStack>
<ActionsComponent />
</HStack>
<Spacer margin={ 4 } />
<Flex>
<FlexItem>
<SearchControl
className="font-library-modal__search"
value={ filters.search }
placeholder={ __( 'Font name…' ) }
label={ __( 'Search' ) }
onChange={ debouncedUpdateSearchInput }
__nextHasNoMarginBottom
hideLabelFromVision={ false }
/>
</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 } />
{ !! selectedCollection?.font_families?.length &&
! fonts.length && (
<Text>
{ __(
'No fonts found. Try with a different search term'
) }
</Text>
) }
<div className="font-library-modal__fonts-grid__main">
{ /*
* Disable reason: The `list` ARIA role is redundant but
* Safari+VoiceOver won't announce the list otherwise.
*/
/* eslint-disable jsx-a11y/no-redundant-roles */ }
<ul
role="list"
className="font-library-modal__fonts-list"
>
{ items.map( ( font ) => (
<li
key={
font.font_family_settings.slug
}
className="font-library-modal__fonts-list-item"
>
<FontCard
font={
font.font_family_settings
}
navigatorPath={ '/fontFamily' }
onClick={ () => {
setSelectedFont(
font.font_family_settings
);
} }
/>
</li>
) ) }
</ul>
{ /* eslint-enable jsx-a11y/no-redundant-roles */ }{ ' ' }
</div>
</NavigatorScreen>
<NavigatorScreen path="/fontFamily">
<Flex justify="flex-start">
<NavigatorToParentButton
icon={ chevronLeft }
size="small"
onClick={ () => {
setSelectedFont( null );
setNotice( null );
} }
label={ __( 'Back' ) }
/>
<Heading
level={ 2 }
size={ 13 }
className="edit-site-global-styles-header"
>
{ selectedFont?.name }
</Heading>
</Flex>
{ notice && (
<>
<Spacer margin={ 1 } />
<Notice
status={ notice.type }
onRemove={ () => setNotice( null ) }
>
{ notice.message }
</Notice>
<Spacer margin={ 1 } />
</>
) }
<Spacer margin={ 4 } />
<Text>
{ __( 'Select font variants to install.' ) }
</Text>
<Spacer margin={ 4 } />
<VStack spacing={ 0 }>
<Spacer margin={ 8 } />
{ getSortedFontFaces( selectedFont ).map(
( face, i ) => (
<CollectionFontVariant
font={ selectedFont }
face={ face }
key={ `face${ i }` }
handleToggleVariant={
handleToggleVariant
}
selected={ isFontFontFaceInOutline(
selectedFont.slug,
selectedFont.fontFace
? face
: null, // If the font has no fontFace, we want to check if the font is in the outline
fontToInstallOutline
) }
/>
)
) }
</VStack>
<Spacer margin={ 16 } />
</NavigatorScreen>
</NavigatorProvider>
{ selectedFont && (
<Flex
justify="flex-end"
className="font-library-modal__tabpanel-layout__footer"
>
<Button
variant="primary"
onClick={ handleInstall }
isBusy={ isInstalling }
disabled={
fontsToInstall.length === 0 || isInstalling
}
__experimentalIsFocusable
>
{ __( 'Install' ) }
</Button>
</Flex>
) }
{ ! selectedFont && (
<Flex
justify="center"
className="font-library-modal__tabpanel-layout__footer"
>
<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 <CurrentPageControl /> of %s',
'paging'
),
totalPages
),
{
CurrentPageControl: (
<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>
) }
</>
) }
</div>
);
}
export default FontCollection;