1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+preferences/extension-settings-page.tsx
Alex Andreev f698a792e0 Styling empty states a bit
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
2022-01-10 14:21:46 +03:00

70 lines
2.7 KiB
TypeScript

/**
* Copyright (c) 2021 OpenLens Authors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
import styles from "./extension-settings-page.module.scss";
import React from "react";
import { matchPath, RouteComponentProps } from "react-router";
import { extensionSettingsRoute } from "../../../common/routes";
import { AppPreferenceRegistry } from "../../../extensions/registries";
import { Icon } from "../icon";
import { ExtensionSettings } from "./extension-settings";
interface Props extends RouteComponentProps<{ extensionId?: string }> {
}
export const ExtensionSettingsPage = (props: Props) => {
// https://github.com/remix-run/react-router/issues/5870#issuecomment-394194338
const match = matchPath<{ extensionId: string }>(props.location.pathname, {
path: extensionSettingsRoute.path,
exact: true,
});
if (!match?.params.extensionId) {
return (
<div className={styles.noItems}><span><Icon material="info"/> No extension id provided in URL.</span></div>
);
}
const extensionId = decodeURIComponent(match?.params.extensionId);
const settings = AppPreferenceRegistry.getInstance().getItems();
const currentSettings = settings.filter(setting => setting.extensionId == extensionId);
const renderContent = () => {
if (!currentSettings.length) {
return (
<div className={styles.noItems}><span><Icon material="info"/> No settings found.</span></div>
);
}
return currentSettings.filter(e => !e.showInPreferencesTab).map((setting) =>
<ExtensionSettings key={setting.id} setting={setting} size="small" />,
);
};
return (
<section id="extensions">
<h2>{extensionId} settings</h2>
{renderContent()}
</section>
);
};