-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chrome: Allow settings custom taxonomies
- Loading branch information
1 parent
60001ba
commit e713c0e
Showing
7 changed files
with
416 additions
and
344 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
/** | ||
* External dependencies | ||
*/ | ||
import { connect } from 'react-redux'; | ||
import { unescape, find, throttle } from 'lodash'; | ||
|
||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { __ } from '@wordpress/i18n'; | ||
import { Component } from '@wordpress/element'; | ||
import { FormTokenField } from '@wordpress/components'; | ||
|
||
/** | ||
* Internal dependencies | ||
*/ | ||
import { getEditedPostAttribute } from '../../selectors'; | ||
import { editPost } from '../../actions'; | ||
|
||
const DEFAULT_QUERY = { | ||
per_page: 100, | ||
orderby: 'count', | ||
order: 'desc', | ||
}; | ||
const MAX_TERMS_SUGGESTIONS = 20; | ||
|
||
class FlatTaxonomy extends Component { | ||
constructor() { | ||
super( ...arguments ); | ||
this.onChange = this.onChange.bind( this ); | ||
this.searchTerms = throttle( this.searchTerms.bind( this ), 500 ); | ||
this.findOrCreateTerm = this.findOrCreateTerm.bind( this ); | ||
this.state = { | ||
loading: false, | ||
availableTerms: [], | ||
selectedTerms: [], | ||
}; | ||
} | ||
|
||
componentDidMount() { | ||
if ( this.props.terms ) { | ||
this.setState( { loading: false } ); | ||
this.initRequest = this.fetchTerms( { include: this.props.terms } ); | ||
this.initRequest.then( | ||
() => { | ||
this.setState( { loading: false } ); | ||
}, | ||
( xhr ) => { | ||
if ( xhr.statusText === 'abort' ) { | ||
return; | ||
} | ||
this.setState( { | ||
loading: false, | ||
} ); | ||
} | ||
); | ||
} | ||
this.searchTerms(); | ||
} | ||
|
||
componentWillUnmount() { | ||
this.initRequest.abort(); | ||
if ( this.searchRequest ) { | ||
this.searchRequest.abort(); | ||
} | ||
} | ||
|
||
componentWillReceiveProps( newProps ) { | ||
if ( newProps.terms !== this.props.terms ) { | ||
this.updateSelectedTerms( newProps.terms ); | ||
} | ||
} | ||
|
||
fetchTerms( params = {} ) { | ||
const query = { ...DEFAULT_QUERY, ...params }; | ||
const Collection = wp.api.getTaxonomyCollection( this.props.slug ); | ||
const request = new Collection().fetch( { data: query } ); | ||
request.then( ( terms ) => { | ||
this.setState( ( state ) => ( { | ||
availableTerms: state.availableTerms.concat( | ||
terms.filter( ( term ) => ! find( state.availableTerms, ( availableTerm ) => availableTerm.id === term.id ) ) | ||
), | ||
} ) ); | ||
this.updateSelectedTerms( this.props.terms ); | ||
} ); | ||
|
||
return request; | ||
} | ||
|
||
updateSelectedTerms( terms = [] ) { | ||
const selectedTerms = terms.map( ( termId ) => { | ||
const termObject = find( this.state.availableTerms, ( term ) => term.id === termId ); | ||
return termObject ? termObject.name : ''; | ||
} ); | ||
this.setState( { | ||
selectedTerms, | ||
} ); | ||
} | ||
|
||
findOrCreateTerm( termName ) { | ||
return new Promise( ( resolve, reject ) => { | ||
// Tries to create a term or fetch it if it already exists | ||
const Model = wp.api.getTaxonomyModel( this.props.slug ); | ||
new Model( { name: termName } ).save() | ||
.then( resolve, ( xhr ) => { | ||
const errorCode = xhr.responseJSON && xhr.responseJSON.code; | ||
if ( errorCode === 'term_exists' ) { | ||
return new Model( { id: xhr.responseJSON.data } ) | ||
.fetch().then( resolve, reject ); | ||
} | ||
reject( xhr ); | ||
} ); | ||
} ); | ||
} | ||
|
||
onChange( termNames ) { | ||
this.setState( { selectedTerms: termNames } ); | ||
const newTermNames = termNames.filter( ( termName ) => | ||
! find( this.state.availableTerms, ( term ) => term.name === termName ) | ||
); | ||
const termNamesToIds = ( names, availableTerms ) => { | ||
return names | ||
.map( ( termName ) => | ||
find( availableTerms, ( term ) => term.name === termName ).id | ||
); | ||
}; | ||
|
||
if ( newTermNames.length === 0 ) { | ||
return this.props.onUpdateTerms( termNamesToIds( termNames, this.state.availableTerms ), this.props.restBase ); | ||
} | ||
Promise | ||
.all( newTermNames.map( this.findOrCreateTerm ) ) | ||
.then( ( newTerms ) => { | ||
const newAvailableTerms = this.state.availableTerms.concat( newTerms ); | ||
this.setState( { availableTerms: newAvailableTerms } ); | ||
return this.props.onUpdateTerms( termNamesToIds( termNames, newAvailableTerms ), this.props.restBase ); | ||
} ); | ||
} | ||
|
||
searchTerms( search = '' ) { | ||
if ( this.searchRequest ) { | ||
this.searchRequest.abort(); | ||
} | ||
this.searchRequest = this.fetchTerms( { search } ); | ||
} | ||
|
||
render() { | ||
const { loading, availableTerms, selectedTerms } = this.state; | ||
const { label } = this.props; | ||
const termNames = availableTerms.map( ( term ) => term.name ); | ||
|
||
return ( | ||
<div className="editor-post-taxonomies__flat-terms-selector"> | ||
<h4 className="editor-post-taxonomies__flat-terms-selector-title">{ label }</h4> | ||
<FormTokenField | ||
value={ selectedTerms } | ||
displayTransform={ unescape } | ||
suggestions={ termNames } | ||
onChange={ this.onChange } | ||
onInputChange={ this.searchTerms } | ||
maxSuggestions={ MAX_TERMS_SUGGESTIONS } | ||
disabled={ loading } | ||
placeholder={ __( 'Add New Term' ) } | ||
messages={ { | ||
added: __( 'Term added.' ), | ||
removed: __( 'Term removed.' ), | ||
remove: __( 'Remove term: %s.' ), | ||
} } | ||
/> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
export default connect( | ||
( state, ownProps ) => { | ||
return { | ||
terms: getEditedPostAttribute( state, ownProps.restBase ), | ||
}; | ||
}, | ||
( dispatch ) => { | ||
return { | ||
onUpdateTerms( terms, restBase ) { | ||
dispatch( editPost( { [ restBase ]: terms } ) ); | ||
}, | ||
}; | ||
} | ||
)( FlatTaxonomy ); | ||
|
Oops, something went wrong.