feat: image widget insert from url should be optional (#5572)
This commit is contained in:
parent
97353b6778
commit
18724ff991
@ -291,7 +291,7 @@ export default function withFileControl({ forImage } = {}) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
renderSelection = subject => {
|
renderSelection = subject => {
|
||||||
const { t } = this.props;
|
const { t, field } = this.props;
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{forImage ? this.renderImages() : null}
|
{forImage ? this.renderImages() : null}
|
||||||
@ -300,9 +300,11 @@ export default function withFileControl({ forImage } = {}) {
|
|||||||
<FileWidgetButton onClick={this.handleChange}>
|
<FileWidgetButton onClick={this.handleChange}>
|
||||||
{t(`editor.editorWidgets.${subject}.chooseDifferent`)}
|
{t(`editor.editorWidgets.${subject}.chooseDifferent`)}
|
||||||
</FileWidgetButton>
|
</FileWidgetButton>
|
||||||
<FileWidgetButton onClick={this.handleUrl(subject)}>
|
{field.get('choose_url', true) ? (
|
||||||
{t(`editor.editorWidgets.${subject}.replaceUrl`)}
|
<FileWidgetButton onClick={this.handleUrl(subject)}>
|
||||||
</FileWidgetButton>
|
{t(`editor.editorWidgets.${subject}.replaceUrl`)}
|
||||||
|
</FileWidgetButton>
|
||||||
|
) : null}
|
||||||
<FileWidgetButtonRemove onClick={this.handleRemove}>
|
<FileWidgetButtonRemove onClick={this.handleRemove}>
|
||||||
{t(`editor.editorWidgets.${subject}.remove`)}
|
{t(`editor.editorWidgets.${subject}.remove`)}
|
||||||
</FileWidgetButtonRemove>
|
</FileWidgetButtonRemove>
|
||||||
@ -312,15 +314,17 @@ export default function withFileControl({ forImage } = {}) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
renderNoSelection = subject => {
|
renderNoSelection = subject => {
|
||||||
const { t } = this.props;
|
const { t, field } = this.props;
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<FileWidgetButton onClick={this.handleChange}>
|
<FileWidgetButton onClick={this.handleChange}>
|
||||||
{t(`editor.editorWidgets.${subject}.choose`)}
|
{t(`editor.editorWidgets.${subject}.choose`)}
|
||||||
</FileWidgetButton>
|
</FileWidgetButton>
|
||||||
<FileWidgetButton onClick={this.handleUrl(subject)}>
|
{field.get('choose_url', true) ? (
|
||||||
{t(`editor.editorWidgets.${subject}.chooseUrl`)}
|
<FileWidgetButton onClick={this.handleUrl(subject)}>
|
||||||
</FileWidgetButton>
|
{t(`editor.editorWidgets.${subject}.chooseUrl`)}
|
||||||
|
</FileWidgetButton>
|
||||||
|
) : null}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -17,6 +17,7 @@ The file widget allows editors to upload a file or select an existing one from t
|
|||||||
* `config`: a configuration object that will be passed directly to the media library being
|
* `config`: a configuration object that will be passed directly to the media library being
|
||||||
used - available options are determined by the library
|
used - available options are determined by the library
|
||||||
* `media_folder` (Beta): file path where uploaded files will be saved specific to this control. Paths can be relative to a collection folder (e.g. `files` will add the file to a sub-folder in the collection folder) or absolute with reference to the base of the repo which needs to begin with `/` (e.g `/static/files` will save uploaded files to the `static` folder in a sub folder named `files`)
|
* `media_folder` (Beta): file path where uploaded files will be saved specific to this control. Paths can be relative to a collection folder (e.g. `files` will add the file to a sub-folder in the collection folder) or absolute with reference to the base of the repo which needs to begin with `/` (e.g `/static/files` will save uploaded files to the `static` folder in a sub folder named `files`)
|
||||||
|
* `choose_url`: *(default: `true`)* when set to `false`, the "Insert from URL" button will be hidden
|
||||||
* **Example:**
|
* **Example:**
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
@ -14,15 +14,17 @@ The image widget allows editors to upload an image or select an existing one fro
|
|||||||
current widget
|
current widget
|
||||||
* `allow_multiple`: *(default: `true`)* when set to `false`, multiple selection will be disabled even if the media library extension supports it
|
* `allow_multiple`: *(default: `true`)* when set to `false`, multiple selection will be disabled even if the media library extension supports it
|
||||||
* `config`: a configuration object passed directly to the media library; check the documentation of your media library extension for available `config` options
|
* `config`: a configuration object passed directly to the media library; check the documentation of your media library extension for available `config` options
|
||||||
* `media_folder` (Beta): file path where uploaded images will be saved specific to this control. Paths can be relative to a collection folder (e.g. `images` will add the image to a sub-folder in the collection folder) or absolute with reference to the base of the repo which needs to begin with `/` (e.g `/static/images` will save uploaded images to the `static` folder in a sub folder named `images`)
|
* `media_folder` (Beta): file path where uploaded images will be saved specific to this control. Paths can be relative to a collection folder (e.g. `images` will add the image to a sub-folder in the collection folder) or absolute with reference to the base of the repo which needs to begin with `/` (e.g `/static/images` will save uploaded images to the `static` folder in a sub folder named `images`)
|
||||||
|
* `choose_url`: *(default: `true`)* when set to `false`, the "Insert from URL" button will be hidden
|
||||||
* **Example:**
|
* **Example:**
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- label: "Featured Image"
|
- label: "Featured Image"
|
||||||
name: "thumbnail"
|
name: "thumbnail"
|
||||||
widget: "image"
|
widget: "image"
|
||||||
|
choose_url: true
|
||||||
default: "/uploads/chocolate-dogecoin.jpg"
|
default: "/uploads/chocolate-dogecoin.jpg"
|
||||||
media_library:
|
media_library:
|
||||||
config:
|
config:
|
||||||
multiple: true
|
multiple: true
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user