📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 20:58:19
📂
/ (Root)
/
home
/
apkbfjox
/
rs786.org
/
wp-content
/
themes
/
kadence
/
inc
/
customizer
/
react
/
src
/
common
📍 /home/apkbfjox/rs786.org/wp-content/themes/kadence/inc/customizer/react/src/common
🔄 Refresh
✏️
Editing: font-loader.js
Writable
if ( kadencegooglefonts === undefined ) { var kadencegooglefonts = []; } const { Component, } = wp.element; import PropTypes from "prop-types"; import WebFont from "webfontloader"; const statuses = { inactive: 'inactive', active: 'active', loading: 'loading', }; const noop = () => {}; class KadenceWebfontLoader extends Component { constructor(props) { super( props ); this.handleLoading = this.handleLoading.bind( this ); this.handleActive = this.handleActive.bind( this ); this.addFont = this.addFont.bind( this ); this.handleInactive = this.handleInactive.bind( this ); this.loadFonts = this.loadFonts.bind( this ); this.state = { status: undefined, }; } addFont( font ) { if ( ! kadencegooglefonts.includes( font ) ) { kadencegooglefonts.push( font ); } }; handleLoading() { this.setState( { status: statuses.loading } ); }; handleActive() { this.setState( { status: statuses.active } ); }; handleInactive() { this.setState( { status: statuses.inactive } ); }; loadFonts() { //if ( ! this.state.fonts.includes( this.props.config.google.families[ 0 ] ) ) { if ( ! kadencegooglefonts.includes( this.props.config.google.families[ 0 ] ) ) { WebFont.load( { ...this.props.config, loading: this.handleLoading, active: this.handleActive, inactive: this.handleInactive, } ); this.addFont( this.props.config.google.families[ 0 ] ); } } componentDidMount() { this.loadFonts(); } componentDidUpdate( prevProps, prevState ) { const { onStatus, config } = this.props; if ( prevState.status !== this.state.status ) { onStatus( this.state.status ); } if ( prevProps.config !== config ) { this.loadFonts(); } } render() { const { children } = this.props; return children || null; } } KadenceWebfontLoader.propTypes = { config: PropTypes.object.isRequired, children: PropTypes.element, onStatus: PropTypes.func.isRequired, }; KadenceWebfontLoader.defaultProps = { onStatus: noop, }; export default KadenceWebfontLoader;
💾 Save Changes
❌ Cancel