-
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.
Preserve the generic nature of getEntityRecord and getEntityRecords t…
…hrough signature currying in `@wordpress/data`. Declare GetEntityRecord as a *callable interface* that is callable as usually, but also ships another signature without the state argument. This works around a TypeScript limitation that doesn't allow currying generic functions: ```ts type CurriedState = F extends ( state: any, ...args: infer P ) => infer R ? ( ...args: P ) => R : F; type Selector = <K extends string | number>( state: any, kind: K, key: K extends string ? 'string value' : false ) => K; type BadlyInferredSignature = CurriedState< Selector > // BadlyInferredSignature evaluates to: // (kind: string number, key: false | "string value") => string number ``` The signature without the state parameter shipped as CurriedSignature is used in the return value of `select( coreStore )`. See #41578 for more details. This commit includes a docgen update to add support for typecasting selectors
- Loading branch information
Showing
7 changed files
with
204 additions
and
140 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,73 +0,0 @@ | ||
# Autop | ||
|
||
JavaScript port of WordPress's automatic paragraph function `autop` and the `removep` reverse behavior. | ||
|
||
## Installation | ||
|
||
Install the module | ||
|
||
```bash | ||
npm install @wordpress/autop --save | ||
``` | ||
|
||
_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for such language features and APIs, you should include [the polyfill shipped in `@wordpress/babel-preset-default`](https://github.com/WordPress/gutenberg/tree/HEAD/packages/babel-preset-default#polyfill) in your code._ | ||
|
||
### API | ||
|
||
<!-- START TOKEN(Autogenerated API docs) --> | ||
|
||
#### autop | ||
|
||
Replaces double line-breaks with paragraph elements. | ||
|
||
A group of regex replaces used to identify text formatted with newlines and | ||
replace double line-breaks with HTML paragraph tags. The remaining line- | ||
breaks after conversion become `<br />` tags, unless br is set to 'false'. | ||
|
||
_Usage_ | ||
|
||
```js | ||
import { autop } from '@wordpress/autop'; | ||
autop( 'my text' ); // "<p>my text</p>" | ||
``` | ||
|
||
_Parameters_ | ||
|
||
- _text_ `string`: The text which has to be formatted. | ||
- _br_ `boolean`: Optional. If set, will convert all remaining line- breaks after paragraphing. Default true. | ||
|
||
_Returns_ | ||
|
||
- `string`: Text which has been converted into paragraph tags. | ||
|
||
#### removep | ||
|
||
Replaces `<p>` tags with two line breaks. "Opposite" of autop(). | ||
|
||
Replaces `<p>` tags with two line breaks except where the `<p>` has attributes. | ||
Unifies whitespace. Indents `<li>`, `<dt>` and `<dd>` for better readability. | ||
|
||
_Usage_ | ||
|
||
```js | ||
import { removep } from '@wordpress/autop'; | ||
removep( '<p>my text</p>' ); // "my text" | ||
``` | ||
|
||
_Parameters_ | ||
|
||
- _html_ `string`: The content from the editor. | ||
|
||
_Returns_ | ||
|
||
- `string`: The content with stripped paragraph tags. | ||
|
||
<!-- END TOKEN(Autogenerated API docs) --> | ||
|
||
## Contributing to this package | ||
|
||
This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to [npm](https://www.npmjs.com/) and used by [WordPress](https://make.wordpress.org/core/) as well as other software projects. | ||
|
||
To find out more about contributing to this package or Gutenberg as a whole, please read the project's main [contributor guide](https://github.com/WordPress/gutenberg/tree/HEAD/CONTRIBUTING.md). | ||
|
||
<br /><br /><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p> | ||
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
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
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
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
Oops, something went wrong.