mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
tweak extensions page texts
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
parent
77c8617b79
commit
e0b972d21b
@ -1,3 +1,23 @@
|
|||||||
# Using Extensions
|
# Using Extensions
|
||||||
|
|
||||||
TBD
|
The features that Lens includes out-of-the-box are just the start.
|
||||||
|
Lens extensions let you add new features to your installation to support your workflow.
|
||||||
|
Rich extensibility model lets extension authors plug directly into the Lens UI and contribute functionality through the same APIs used by Lens itself.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Installing an Extension
|
||||||
|
|
||||||
|
You can install a dowloaded extension .tgz package by going to **File** > **Extensions** (**Lens** > **Extensions** on Mac). Alternatively you can point an URL to .tgz file. An installed extension is enabled automatically.
|
||||||
|
|
||||||
|
## Enabling an Extension
|
||||||
|
|
||||||
|
Go to **File** > **Extensions** (**Lens** > **Extensions** on Mac) and click "Enable" button.
|
||||||
|
|
||||||
|
## Disabling an Extension
|
||||||
|
|
||||||
|
Go to **File** > **Extensions** (**Lens** > **Extensions** on Mac) and click "Disable" button.
|
||||||
|
|
||||||
|
## Uninstalling an Extension
|
||||||
|
|
||||||
|
Go to **File** > **Extensions** (**Lens** > **Extensions** on Mac) and click "Uninstall" button.
|
||||||
|
|||||||
BIN
docs/extensions/usage/images/extensions.png
Normal file
BIN
docs/extensions/usage/images/extensions.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 589 KiB |
@ -353,7 +353,7 @@ export class Extensions extends React.Component {
|
|||||||
<Icon material="info"/>
|
<Icon material="info"/>
|
||||||
<div>
|
<div>
|
||||||
{search && <p>No search results found</p>}
|
{search && <p>No search results found</p>}
|
||||||
{!search && <p>There are no extensions in <code>{extensionsPath}</code></p>}
|
{!search && <p>There are no installed extensions. See list of <a href="https://github.com/lensapp/lens-extensions/blob/main/README.md">available extensions</a>.</p>}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@ -396,15 +396,13 @@ export class Extensions extends React.Component {
|
|||||||
|
|
||||||
render() {
|
render() {
|
||||||
const topHeader = <h2>Manage Lens Extensions</h2>;
|
const topHeader = <h2>Manage Lens Extensions</h2>;
|
||||||
const { installPath } = this;
|
const { installPath, extensions } = this;
|
||||||
return (
|
return (
|
||||||
<DropFileInput onDropFiles={this.installOnDrop}>
|
<DropFileInput onDropFiles={this.installOnDrop}>
|
||||||
<PageLayout showOnTop className="Extensions flex column gaps" header={topHeader} contentGaps={false}>
|
<PageLayout showOnTop className="Extensions flex column gaps" header={topHeader} contentGaps={false}>
|
||||||
<h2>Lens Extensions</h2>
|
<h2>Lens Extensions</h2>
|
||||||
<div>
|
<div>
|
||||||
The features that Lens includes out-of-the-box are just the start.
|
|
||||||
Lens extensions let you add new features to your installation to support your workflow.
|
Lens extensions let you add new features to your installation to support your workflow.
|
||||||
Rich extensibility model lets extension authors plug directly into the Lens UI and contribute functionality through the same APIs used by Lens itself.
|
|
||||||
Check out documentation to <a href={`${docsUrl}/latest/extensions/usage/`} target="_blank">learn more</a>.
|
Check out documentation to <a href={`${docsUrl}/latest/extensions/usage/`} target="_blank">learn more</a>.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -444,11 +442,11 @@ export class Extensions extends React.Component {
|
|||||||
|
|
||||||
<h2>Installed Extensions</h2>
|
<h2>Installed Extensions</h2>
|
||||||
<div className="installed-extensions flex column gaps">
|
<div className="installed-extensions flex column gaps">
|
||||||
<SearchInput
|
{<SearchInput
|
||||||
placeholder="Search extensions by name or description"
|
placeholder="Search installed extensions by name or description"
|
||||||
value={this.search}
|
value={this.search}
|
||||||
onChange={(value) => this.search = value}
|
onChange={(value) => this.search = value}
|
||||||
/>
|
/>}
|
||||||
{this.renderExtensions()}
|
{this.renderExtensions()}
|
||||||
</div>
|
</div>
|
||||||
</PageLayout>
|
</PageLayout>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user