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(ui-service-gen): hide draftEnabled for abap cds views #3041

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,24 @@ import {
import { type Logger } from '@sap-ux/logger';
import type { ConfirmQuestion, ExpandQuestion } from 'inquirer';
import { t } from '../../i18n';
import type { ServiceConfigQuestion, UiServiceAnswers } from '../../types';
import { createAbapTarget, getServiceNameChoices, getValidationErrorLink } from '../prompt-helper';
import { type ServiceConfigOptions, type ServiceConfigQuestion, type UiServiceAnswers } from '../../types';
import {
createAbapTarget,
defaultOrShowAppGenLaunchQuestion,
defaultOrShowDraftQuestion,
getServiceNameChoices,
getValidationErrorLink
} from '../prompt-helper';
import { PromptState } from '../prompt-state';

/**
* Get the configuration questions.
*
* @param logger - logger instance to use for logging
* @param options - configuration options for prompts
* @returns the configuration questions
*/
export function getConfigQuestions(logger: Logger): ServiceConfigQuestion[] {
export function getConfigQuestions(logger: Logger, options?: ServiceConfigOptions): ServiceConfigQuestion[] {
PromptState.resetServiceConfig();
let draftEnabled = true;
const abapTarget = createAbapTarget(
Expand Down Expand Up @@ -67,7 +74,9 @@ export function getConfigQuestions(logger: Logger): ServiceConfigQuestion[] {
PromptState.serviceConfig.content =
(await PromptState.systemSelection.objectGenerator?.getContent(packageValue)) ?? '';
const content = JSON.parse(PromptState.serviceConfig?.content);
content.businessObject.projectionBehavior.withDraft = true;
if (defaultOrShowDraftQuestion(options?.useDraftEnabled)) {
content.businessObject.projectionBehavior.withDraft = true;
}
PromptState.serviceConfig.content = JSON.stringify(content);
PromptState.serviceConfig.serviceName =
content.businessService.serviceBinding.serviceBindingName;
Expand Down Expand Up @@ -102,6 +111,7 @@ export function getConfigQuestions(logger: Logger): ServiceConfigQuestion[] {
}
} as ExpandQuestion<UiServiceAnswers>,
{
when: (): boolean => defaultOrShowDraftQuestion(options?.useDraftEnabled),
name: 'draftEnabled',
type: 'confirm',
message: t('prompts.draftEnabled'),
Expand Down Expand Up @@ -132,6 +142,7 @@ export function getConfigQuestions(logger: Logger): ServiceConfigQuestion[] {
}
} as ConfirmQuestion<UiServiceAnswers>,
{
when: (): boolean => defaultOrShowAppGenLaunchQuestion(options?.useLaunchGen),
name: 'launchAppGen',
type: 'confirm',
message: t('prompts.launchAppGen'),
Expand Down
20 changes: 20 additions & 0 deletions packages/ui-service-inquirer/src/prompts/prompt-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,23 @@ export async function getValidationErrorLink(): Promise<ValidationLink> {
t('error.validatingContent')
);
}

/**
* Determines if the draft enabled prompt is shown.
*
* @param useDraftEnabled - the use draft enabled
* @returns the boolean
*/
export function defaultOrShowDraftQuestion(useDraftEnabled?: boolean): boolean {
return useDraftEnabled ?? true;
}

/**
* Determines if the app gen launch prompt is shown.
*
* @param useLaunchGen - the use launch gen
* @returns the boolean
*/
export function defaultOrShowAppGenLaunchQuestion(useLaunchGen?: boolean): boolean {
return useLaunchGen ?? true;
}
12 changes: 10 additions & 2 deletions packages/ui-service-inquirer/src/prompts/prompts.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
import type { Logger } from '@sap-ux/logger';
import type { Question } from 'inquirer';
import LoggerHelper from '../logger-helper';
import type { ServiceConfig, ServiceConfigQuestion, SystemSelectionAnswers, UiServiceAnswers } from '../types';
import type {
ServiceConfig,
ServiceConfigOptions,
ServiceConfigQuestion,
SystemSelectionAnswers,
UiServiceAnswers
} from '../types';
import { getConfigQuestions } from './configuration/questions';
import { PromptState } from './prompt-state';
import { getSystemQuestions } from './system-selection/questions';
Expand Down Expand Up @@ -35,11 +41,13 @@ export async function getSystemSelectionPrompts(
* Get the configuration prompts.
*
* @param systemSelectionAnswers - the system selection answers to use if system selection prompting was skipped
* @param options - configuration options for prompts
* @param logger - optional logger instance to use for logging
* @returns the configuration prompts
*/
export function getConfigPrompts(
systemSelectionAnswers: SystemSelectionAnswers,
options?: ServiceConfigOptions,
logger?: Logger
): { prompts: ServiceConfigQuestion[]; answers: Partial<ServiceConfig> } {
if (logger) {
Expand All @@ -49,7 +57,7 @@ export function getConfigPrompts(
Object.assign(PromptState.systemSelection, systemSelectionAnswers);
}
return {
prompts: getConfigQuestions(LoggerHelper.logger),
prompts: getConfigQuestions(LoggerHelper.logger, options),
answers: PromptState.serviceConfig
};
}
5 changes: 5 additions & 0 deletions packages/ui-service-inquirer/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,8 @@ export enum ObjectType {
BUSINESS_OBJECT = 'BusinessObject',
CDS_VIEW = 'CDSView'
}

export interface ServiceConfigOptions {
useDraftEnabled?: boolean;
useLaunchGen?: boolean;
}
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ exports[`getSystemQuestions getServiceConfigQuestions 1`] = `
"name": "draftEnabled",
"type": "confirm",
"validate": [Function],
"when": [Function],
},
{
"additionalMessages": [Function],
Expand All @@ -127,6 +128,7 @@ exports[`getSystemQuestions getServiceConfigQuestions 1`] = `
"message": "prompts.launchAppGen",
"name": "launchAppGen",
"type": "confirm",
"when": [Function],
},
]
`;
Expand Down
7 changes: 6 additions & 1 deletion packages/ui-service-sub-generator/src/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { YeomanEnvironment } from '@sap-ux/fiori-generator-shared';
import { sendTelemetry, TelemetryHelper } from '@sap-ux/fiori-generator-shared';
import { type Logger } from '@sap-ux/logger';
import type { ServiceConfig, SystemSelectionAnswers, UiServiceAnswers } from '@sap-ux/ui-service-inquirer';
import { getConfigPrompts, getSystemSelectionPrompts } from '@sap-ux/ui-service-inquirer';
import { getConfigPrompts, getSystemSelectionPrompts, ObjectType } from '@sap-ux/ui-service-inquirer';
import Generator from 'yeoman-generator';
import { boUri, cdsUri, initI18n, prompts, SERVICE_GENERATION_SUCCESS, t, UI_SERVICE_CACHE } from '../utils';
import UiServiceGenLogger from '../utils/logger';
Expand Down Expand Up @@ -153,6 +153,11 @@ export default class extends Generator {
// prompt service configuration
const configPrompts = await getConfigPrompts(
this.systemSelectionAnswers,
{
useDraftEnabled: !(
this.answers.objectType === ObjectType.CDS_VIEW || this.options.data?.type === BAS_OBJECT.CDS
)
},
UiServiceGenLogger.logger as unknown as Logger
);

Expand Down