Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/custom report improvements #1131

Merged
merged 9 commits into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ module.exports = {
'@typescript-eslint/no-warning-comments': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-var-requires': 'error',
'@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/explicit-module-boundary-types': 'warn',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- **Frontend**: Custom reporst can now be confihured using an interactive form. #1131
- **Frontend**: New feature: Run custom reports from the reports page. #1050

### Fixed
Expand Down
27 changes: 18 additions & 9 deletions packages/api-types/out/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,15 @@ export interface components {
*/
praiseIds: string[];
};
SettingDto: {
ConfigurationValueItemsDto: {
/**
* @description Allowed array types
* @example string
* @enum {string}
*/
type: 'string' | 'number';
};
ConfigurationValueDto: {
/**
* @description Type of the setting
* @example string
Expand All @@ -1059,9 +1067,9 @@ export interface components {
type: 'string' | 'number' | 'boolean' | 'array';
/**
* @description Default value for the setting
* @example Some string
* @example 666
*/
default: Record<string, never>;
default: number | string | boolean | number[] | string[];
/**
* @description Description of the setting
* @example Description of the string setting
Expand All @@ -1071,7 +1079,7 @@ export interface components {
* @description Markdown description of the setting
* @example Description of the string setting
*/
markdownDescription: string;
markdownDescription?: string;
/**
* @description Edit presentation style
* @example multiline
Expand All @@ -1082,7 +1090,7 @@ export interface components {
* @description Order of the setting
* @example 1
*/
order: number;
order?: number;
/**
* @description Enum values for string type settings
* @example [
Expand All @@ -1091,9 +1099,8 @@ export interface components {
* ]
*/
enum?: string[];
items: {
type?: Record<string, never>;
};
/** @description Defines the type of items for array settings */
items?: components['schemas']['ConfigurationValueItemsDto'];
};
ReportManifestDto: {
/** @example https://raw.githubusercontent.com/givepraise/reports/main/reports/disperse-dist-straight-curve-with-ceiling/manifest.json */
Expand Down Expand Up @@ -1131,7 +1138,9 @@ export interface components {
keywords: string[];
/** @description Configuration settings for the report */
configuration: {
[key: string]: components['schemas']['SettingDto'] | undefined;
[key: string]:
| components['schemas']['ConfigurationValueDto']
| undefined;
};
};
};
Expand Down
2 changes: 1 addition & 1 deletion packages/api/openapi.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,22 +1,47 @@
import { ApiProperty } from '@nestjs/swagger';

export type SettingTypeDto = 'string' | 'number' | 'boolean' | 'array';
export type ConfigurationValueVariant =
| 'string'
| 'number'
| 'boolean'
| 'array';

export class SettingDto {
export type ConfigurationValueItemsTypeVariant = 'string' | 'number';

export class ConfigurationValueItemsDto {
@ApiProperty({
description: 'Allowed array types',
enum: ['string', 'number'],
required: true,
example: 'string',
})
type: ConfigurationValueItemsTypeVariant;
}

export class ConfigurationValueDto {
@ApiProperty({
description: 'Type of the setting',
enum: ['string', 'number', 'boolean', 'array'],
required: true,
example: 'string',
})
type: SettingTypeDto;
type: ConfigurationValueVariant;

@ApiProperty({
description: 'Default value for the setting',
required: true,
example: 'Some string',
example: 666,
oneOf: [
{ type: 'number' },
{
type: 'string',
},
{ type: 'boolean' },
{ type: 'array', items: { type: 'number' } },
{ type: 'array', items: { type: 'string' } },
],
})
default: any;
default: number | string | boolean | number[] | string[];

@ApiProperty({
description: 'Description of the setting',
Expand All @@ -27,10 +52,10 @@ export class SettingDto {

@ApiProperty({
description: 'Markdown description of the setting',
required: true,
required: false,
example: 'Description of the string setting',
})
markdownDescription: string;
markdownDescription?: string;

@ApiProperty({
description: 'Edit presentation style',
Expand All @@ -42,10 +67,10 @@ export class SettingDto {

@ApiProperty({
description: 'Order of the setting',
required: true,
required: false,
example: 1,
})
order: number;
order?: number;

@ApiProperty({
description: 'Enum values for string type settings',
Expand All @@ -55,13 +80,8 @@ export class SettingDto {
enum?: string[];

@ApiProperty({
description: 'Type of items for array settings',
description: 'Defines the type of items for array settings',
required: false,
example: {
type: 'string',
},
})
items?: {
type: SettingTypeDto;
};
items?: ConfigurationValueItemsDto;
}
8 changes: 4 additions & 4 deletions packages/api/src/reports/dto/report-manifest.dto.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ApiExtraModels, ApiProperty } from '@nestjs/swagger';
import { SettingDto } from './setting.dto';
import { ConfigurationValueDto } from './configuration-value.dto';

@ApiExtraModels(SettingDto)
@ApiExtraModels(ConfigurationValueDto)
export class ReportManifestDto {
@ApiProperty({
example:
Expand Down Expand Up @@ -93,8 +93,8 @@ export class ReportManifestDto {
required: true,
type: 'object',
additionalProperties: {
oneOf: [{ $ref: '#/components/schemas/SettingDto' }],
oneOf: [{ $ref: '#/components/schemas/ConfigurationValueDto' }],
},
})
configuration?: Record<string, SettingDto>;
configuration?: Record<string, ConfigurationValueDto>;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { components } from 'api-types';

export type ConfigurationValueDto =
components['schemas']['ConfigurationValueDto'];
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,32 @@ import { Button } from '@/components/ui/Button';
import { makeClient } from '../../../utils/axios';
import { ReportManifestDto } from '../../../model/report/dto/report-manifest.dto';
import { isResponseAxiosError } from '../../../model/api';
import { recoilPersist } from 'recoil-persist';
import { atom, useRecoilState } from 'recoil';

interface ReportConfigDialogProps {
const { persistAtom } = recoilPersist();

export const CustomReportUrl = atom<string>({
key: 'CustomReportUrl',
default: undefined,
effects: [persistAtom],
});

interface CustomReportDialogProps {
onClose(): void;
onRun(url: string, manifest: ReportManifestDto): void;
}

export const CustomReportDialog = ({
onClose,
onRun,
}: ReportConfigDialogProps): JSX.Element => {
const [url, setUrl] = React.useState('');
}: CustomReportDialogProps): JSX.Element => {
// Local state
const [error, setError] = React.useState('');

// Global state
const [url, setUrl] = useRecoilState(CustomReportUrl);

const handleUrlChange = (event): void => {
setUrl(event.target.value);
};
Expand Down Expand Up @@ -100,7 +113,7 @@ export const CustomReportDialog = ({
icon={faFileDownload}
size="1x"
/>
Run report
Load report
</Button>
</div>
</div>
Expand Down
Loading