runlify 0.0.372 → 0.0.374
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/runlify +0 -0
- package/build/cli.js +68 -68
- package/build/commands/availableEnvironments.js +65 -65
- package/build/commands/generate.js +61 -61
- package/build/commands/init.js +183 -183
- package/build/commands/login.js +57 -57
- package/build/commands/logout.js +55 -55
- package/build/commands/pullEnvs.js +84 -84
- package/build/commands/readEnv.js +59 -59
- package/build/commands/regen.js +64 -64
- package/build/commands/runlify.js +50 -50
- package/build/commands/showToken.js +60 -60
- package/build/commands/start.js +128 -128
- package/build/commands/tryGetMeta.js +57 -57
- package/build/documentation/algorithm.js +2 -2
- package/build/documentation/algoritmToDoc.js +23 -23
- package/build/documentation/algoritmToDoc.spec.js +58 -58
- package/build/documentation/curlExampleToText.js +58 -58
- package/build/documentation/curlExampleToText.spec.js +61 -61
- package/build/documentation/doc.js +3 -3
- package/build/documentation/docToFlatDoc.js +53 -53
- package/build/documentation/docToFlatDoc.spec.js +221 -221
- package/build/documentation/flatDoc.js +3 -3
- package/build/documentation/flatDocToText.js +16 -16
- package/build/documentation/flatDocToText.spec.js +71 -71
- package/build/documentation/templateDoc.js +3 -3
- package/build/documentation/templateDocToDoc.js +8 -8
- package/build/extensions/auth.js +135 -135
- package/build/extensions/cli-extension.js +16 -16
- package/build/extensions/cloudEnv.js +154 -154
- package/build/extensions/cloudMeta.js +84 -84
- package/build/extensions/globalConfig.js +93 -93
- package/build/extensions/localConfig.js +57 -57
- package/build/extensions/preventRunningIfUpdateAvailable.js +62 -62
- package/build/index.js +23 -23
- package/build/log.js +37 -37
- package/build/projectsGeneration/args.js +101 -101
- package/build/projectsGeneration/builders/BaseBuilder.js +86 -86
- package/build/projectsGeneration/builders/BaseSavableEntityBuilder.js +290 -290
- package/build/projectsGeneration/builders/CatalogBuilder.js +81 -81
- package/build/projectsGeneration/builders/DeploymentBuilder.js +71 -71
- package/build/projectsGeneration/builders/DocumentBuilder.js +99 -99
- package/build/projectsGeneration/builders/InfoRegistryBuilder.js +233 -233
- package/build/projectsGeneration/builders/ReportBuilder.js +47 -47
- package/build/projectsGeneration/builders/RestApiBuilder.js +58 -58
- package/build/projectsGeneration/builders/RestApiMethodBuilder.js +70 -70
- package/build/projectsGeneration/builders/RoleBuilder.js +45 -45
- package/build/projectsGeneration/builders/SumRegistryBuilder.js +219 -219
- package/build/projectsGeneration/builders/SystemMetaBuilder.js +430 -430
- package/build/projectsGeneration/builders/TelegramBotBuilder.js +43 -43
- package/build/projectsGeneration/builders/buildedTypes.js +19 -19
- package/build/projectsGeneration/builders/curlTypes.js +2 -2
- package/build/projectsGeneration/builders/docs/DocumentationOfDocument.js +2 -2
- package/build/projectsGeneration/builders/docs/DocumentationOfDocumentBuilder.js +19 -19
- package/build/projectsGeneration/builders/fields/BaseFieldBuilder.js +235 -235
- package/build/projectsGeneration/builders/fields/IdFieldBuilder.js +98 -98
- package/build/projectsGeneration/builders/fields/LinkFieldBuilder.js +101 -101
- package/build/projectsGeneration/builders/fields/ScalarFieldBuilder.js +70 -70
- package/build/projectsGeneration/builders/fields/ViewLinkFieldBuilder.js +90 -90
- package/build/projectsGeneration/builders/index.js +19 -19
- package/build/projectsGeneration/builders/materialUiIcons.js +8881 -8881
- package/build/projectsGeneration/builders/tsFilterFields.js +38 -38
- package/build/projectsGeneration/builders/tsFilterFields.spec.js +28 -28
- package/build/projectsGeneration/builders/types.js +2 -2
- package/build/projectsGeneration/builders/ui/Forms.js +2 -2
- package/build/projectsGeneration/builders/ui/FormsBuilder.js +20 -20
- package/build/projectsGeneration/builders/ui/ListFormBuilder.js +20 -20
- package/build/projectsGeneration/builders/ui/ListFormFilterBuilder.js +28 -28
- package/build/projectsGeneration/builders/ui/ListFormFilterFieldBuilder.js +24 -24
- package/build/projectsGeneration/builders/utils/accessFunctions.js +11 -11
- package/build/projectsGeneration/builders/validation/baseValudationToYupAssertions.js +12 -12
- package/build/projectsGeneration/builders/validation/bigintValudationToYupAssertions.js +13 -13
- package/build/projectsGeneration/builders/validation/bigintValudationToYupAssertions.spec.js +22 -22
- package/build/projectsGeneration/builders/validation/floatValudationToYupAssertions.js +12 -12
- package/build/projectsGeneration/builders/validation/floatValudationToYupAssertions.spec.js +21 -21
- package/build/projectsGeneration/builders/validation/intValudationToYupAssertions.js +22 -22
- package/build/projectsGeneration/builders/validation/intValudationToYupAssertions.spec.js +24 -24
- package/build/projectsGeneration/builders/validation/numberValudationToYupAssertions.js +37 -37
- package/build/projectsGeneration/builders/validation/stringValudationToYupAssertions.js +14 -14
- package/build/projectsGeneration/builders/validation/stringValudationToYupAssertions.spec.js +21 -21
- package/build/projectsGeneration/builders/validation/types.js +17 -17
- package/build/projectsGeneration/commonEntities/addAggregateTrackings.js +48 -48
- package/build/projectsGeneration/commonEntities/addAuditLogs.js +160 -160
- package/build/projectsGeneration/commonEntities/addAutogeneration.js +158 -158
- package/build/projectsGeneration/commonEntities/addCommonCommands.js +20 -20
- package/build/projectsGeneration/commonEntities/addCommonEntities.js +31 -31
- package/build/projectsGeneration/commonEntities/addLanguages.js +18 -18
- package/build/projectsGeneration/commonEntities/addManagers.js +166 -166
- package/build/projectsGeneration/commonEntities/addRefreshTokens.js +50 -50
- package/build/projectsGeneration/commonEntities/addRoles.js +204 -204
- package/build/projectsGeneration/commonEntities/addTenants.js +30 -30
- package/build/projectsGeneration/commonEntities/addUsers.js +56 -56
- package/build/projectsGeneration/commonEntities/index.js +28 -28
- package/build/projectsGeneration/defaultCatalogs/addElasticSearch.js +60 -60
- package/build/projectsGeneration/defaultCatalogs/files.js +29 -28
- package/build/projectsGeneration/defaultCatalogs/index.js +18 -18
- package/build/projectsGeneration/genGraphSchemesByLocalGenerator.js +107 -107
- package/build/projectsGeneration/generateEntity.js +358 -358
- package/build/projectsGeneration/generateEnvironment.js +258 -258
- package/build/projectsGeneration/generateProject.js +803 -803
- package/build/projectsGeneration/generators/fieldTypeToTsType.js +25 -25
- package/build/projectsGeneration/generators/fileTemplates/back/Entities.js +18 -18
- package/build/projectsGeneration/generators/fileTemplates/back/devEnum.js +16 -16
- package/build/projectsGeneration/generators/fileTemplates/back/enum.js +16 -16
- package/build/projectsGeneration/generators/fileTemplates/back/environment/chart/Chart.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/back/environment/chart/templates/back.js +15 -15
- package/build/projectsGeneration/generators/fileTemplates/back/environment/chart/templates/ingress.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/back/environment/chart/values.js +19 -19
- package/build/projectsGeneration/generators/fileTemplates/back/environment/defaultEnv.js +35 -35
- package/build/projectsGeneration/generators/fileTemplates/back/environment/dockerfileTmplBack.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/back/environment/dockerfileTmplUI.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsConfiguration.js +26 -26
- package/build/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsEntity.js +8 -8
- package/build/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsRestApi.js +35 -35
- package/build/projectsGeneration/generators/fileTemplates/back/environment/gitlabCi.js +45 -45
- package/build/projectsGeneration/generators/fileTemplates/back/environment/src/clients/getPrisma.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/back/environment/src/clients/knex.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/back/environment/src/clients/queue/getQueue.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/back/environment/src/index.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/back/graph/additionalResolvers.js +5 -5
- package/build/projectsGeneration/generators/fileTemplates/back/graph/additionalTypes.js +5 -5
- package/build/projectsGeneration/generators/fileTemplates/back/graph/entityAdditionalPermissionToGraphqlTmpl.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/back/graph/entityBasePermissionToGraphql.js +13 -13
- package/build/projectsGeneration/generators/fileTemplates/back/graph/entityPermissionToGraphqlTmpl.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/back/graph/help/baseResolvers.js +4 -4
- package/build/projectsGeneration/generators/fileTemplates/back/graph/help/baseTypeDefs.js +7 -7
- package/build/projectsGeneration/generators/fileTemplates/back/graph/help/permissionsToGraphql.js +4 -4
- package/build/projectsGeneration/generators/fileTemplates/back/graph/meta/resolvers.js +5 -5
- package/build/projectsGeneration/generators/fileTemplates/back/graph/meta/typeDefs.js +5 -5
- package/build/projectsGeneration/generators/fileTemplates/back/graph/permissionsToGraphql.js +16 -16
- package/build/projectsGeneration/generators/fileTemplates/back/graph/resolvers.js +16 -16
- package/build/projectsGeneration/generators/fileTemplates/back/graph/types.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/back/initCommon.js +53 -53
- package/build/projectsGeneration/generators/fileTemplates/back/initDev.js +45 -45
- package/build/projectsGeneration/generators/fileTemplates/back/initEntities.js +16 -16
- package/build/projectsGeneration/generators/fileTemplates/back/root/config/index.js +34 -34
- package/build/projectsGeneration/generators/fileTemplates/back/root/restRouter.js +5 -5
- package/build/projectsGeneration/generators/fileTemplates/back/services/AdditionalServices.js +5 -5
- package/build/projectsGeneration/generators/fileTemplates/back/services/BaseServices.js +14 -14
- package/build/projectsGeneration/generators/fileTemplates/back/services/HelpService/HelpService.js +9 -9
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/additionalClass.js +9 -9
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/class.js +74 -74
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/config.js +82 -82
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnCreate.js +9 -9
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnDelete.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnUpdate.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterCreate.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterDelete.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterUpdate.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeCreate.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeDelete.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeUpdate.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeUpsert.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/changeListFilter.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/tenantIdRequiredHooks.js +17 -17
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/initBuiltInHooks.js +16 -16
- package/build/projectsGeneration/generators/fileTemplates/back/services/entity/initUserHooks.js +9 -9
- package/build/projectsGeneration/generators/fileTemplates/back/services/serviceConstrictors.js +14 -14
- package/build/projectsGeneration/generators/fileTemplates/ui/Dashboard.js +4 -4
- package/build/projectsGeneration/generators/fileTemplates/ui/MetaPage.js +7 -7
- package/build/projectsGeneration/generators/fileTemplates/ui/ResourcesPage.js +16 -16
- package/build/projectsGeneration/generators/fileTemplates/ui/additionalRoutes.js +5 -5
- package/build/projectsGeneration/generators/fileTemplates/ui/entityMapping.js +15 -15
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/chart/Chart.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/chart/templates/front.js +16 -16
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/chart/templates/ingress.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/chart/values.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/docs/adminAppDocsConfiguration.js +28 -28
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/gitlabCi.js +32 -32
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/App.js +13 -13
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/contexts/SpacesContext.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/dataProvider/index.js +16 -16
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/layout/AppBar.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/layout/Menu.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/ui/environment/src/routes.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/ui/functions/Functions.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/ui/getAdditionalMenu.js +5 -5
- package/build/projectsGeneration/generators/fileTemplates/ui/getDefaultMenu.js +22 -22
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangCatalogsTmpl.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangDocsTmpl.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangInfoRegistriesTmpl.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangReportsTmpl.js +9 -9
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangSumRegistriesTmpl.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiTranslationsForServicesOfSavablesTmpl.js +23 -23
- package/build/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiTranslationsLangTmpl.js +17 -17
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityCreate/DefaultEntityCreate.js +102 -102
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityCreate/index.js +9 -9
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityEdit/DefaultEntityEdit.js +152 -152
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityEdit/index.js +9 -9
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/DefaultEntityFilter.js +74 -74
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/DefaultEntityList.js +90 -90
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/EntityFilter.js +9 -9
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/index.js +9 -9
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultActions.js +23 -23
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultEntityShow.js +52 -52
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultMainTab.js +63 -63
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DependencyTab.js +79 -79
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/MainTab.js +5 -5
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/additionalTabs.js +7 -7
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/index.js +9 -9
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/Icon.js +11 -11
- package/build/projectsGeneration/generators/fileTemplates/ui/pages/getEntityValidation.js +68 -68
- package/build/projectsGeneration/generators/fileTemplates/ui/resources.js +10 -10
- package/build/projectsGeneration/generators/fileTemplates/ui/widgets/count/CountWidget.js +12 -12
- package/build/projectsGeneration/generators/fileTemplates/ui/widgets/list/ListWidget.js +19 -19
- package/build/projectsGeneration/generators/graph/fieldTypeToGraphScalar.js +29 -29
- package/build/projectsGeneration/generators/graph/fields/genGraphField.js +20 -20
- package/build/projectsGeneration/generators/graph/fields/genGraphIdField.js +15 -15
- package/build/projectsGeneration/generators/graph/fields/genGraphIdFieldType.js +19 -19
- package/build/projectsGeneration/generators/graph/fields/genGraphLinkField.js +34 -34
- package/build/projectsGeneration/generators/graph/fields/genGraphScalarField.js +27 -27
- package/build/projectsGeneration/generators/graph/filters/genGraphField.js +20 -20
- package/build/projectsGeneration/generators/graph/filters/genGraphIdFilter.js +24 -24
- package/build/projectsGeneration/generators/graph/filters/genGraphLinkFilter.js +17 -17
- package/build/projectsGeneration/generators/graph/filters/genGraphScalarFilter.js +41 -41
- package/build/projectsGeneration/generators/graph/genGraphCrudSchema.js +102 -102
- package/build/projectsGeneration/generators/graph/genGraphCrudSchema.spec.js +86 -86
- package/build/projectsGeneration/generators/graph/genGraphFilterType.js +28 -28
- package/build/projectsGeneration/generators/graph/genGraphFilterType.spec.js +34 -34
- package/build/projectsGeneration/generators/graph/genGraphType.js +26 -26
- package/build/projectsGeneration/generators/graph/genGraphType.spec.js +27 -27
- package/build/projectsGeneration/generators/graph/printGraphType.js +10 -10
- package/build/projectsGeneration/generators/graph/printGraphType.spec.js +17 -17
- package/build/projectsGeneration/generators/prisma/fieldIdTypeToPrismaType.js +16 -16
- package/build/projectsGeneration/generators/prisma/fieldTypeToPrismaType.js +27 -27
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaDefault.js +10 -10
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaDefault.spec.js +56 -56
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaField.js +21 -21
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaFieldFromExternalEntity.js +11 -11
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaFieldFromExternalEntity.spec.js +34 -34
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaIdField.js +20 -20
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaIdField.spec.js +44 -44
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaLinkFields.js +32 -32
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaLinkFields.spec.js +85 -85
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaScalarField.js +23 -23
- package/build/projectsGeneration/generators/prisma/scheme/fields/genPrismaScalarField.spec.js +116 -116
- package/build/projectsGeneration/generators/prisma/scheme/genPrismaEntity.js +56 -56
- package/build/projectsGeneration/generators/prisma/scheme/genPrismaEntity.spec.js +96 -96
- package/build/projectsGeneration/generators/prisma/scheme/genPrismaSchemaForEntities.js +14 -14
- package/build/projectsGeneration/generators/prisma/scheme/genPrismaSchemaForEntitiesWithClientAdnDb.js +15 -15
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNameToEditScalar.js +24 -24
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditField.js +20 -20
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditIdField.js +8 -8
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditLinkField.js +14 -14
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditLinkField.spec.js +23 -23
- package/build/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditScalarField.js +8 -8
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNameToShowScalar.js +28 -28
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowField.js +20 -20
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowIdField.js +8 -8
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowLinkField.js +16 -16
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowLinkField.spec.js +160 -160
- package/build/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowScalarField.js +8 -8
- package/build/projectsGeneration/generators/ui/componentNames/types.js +2 -2
- package/build/projectsGeneration/generators/ui/getLinkShowComponent.spec.js +41 -41
- package/build/projectsGeneration/generators/ui/getScalarShowComponent.spec.js +26 -26
- package/build/projectsGeneration/generators/ui/getShowComponent.js +44 -44
- package/build/projectsGeneration/index.js +27 -27
- package/build/projectsGeneration/links/getLinksFromExternalEntities.js +7 -7
- package/build/projectsGeneration/links/getLinksFromExternalEntities.spec.js +88 -88
- package/build/projectsGeneration/links/getLinksOfEntities.js +21 -21
- package/build/projectsGeneration/links/getLinksOfEntities.spec.js +203 -203
- package/build/projectsGeneration/links/getLinksToExternalEntities.js +7 -7
- package/build/projectsGeneration/links/getLinksToExternalEntities.spec.js +88 -88
- package/build/projectsGeneration/metaUtils.js +41 -41
- package/build/projectsGeneration/modelsGeneration.serialization.spec.js +95 -95
- package/build/projectsGeneration/modules/addEmailModuleEntities.js +204 -204
- package/build/projectsGeneration/modules/index.js +8 -8
- package/build/projectsGeneration/types.js +90 -90
- package/build/projectsGeneration/utils.js +86 -86
- package/build/refs/yup.spec.js +59 -59
- package/build/templates/model.ts.ejs +3 -0
- package/build/templates/runlify.developer.example.json.ejs +3 -0
- package/build/templates/runlify.json.ejs +6 -0
- package/build/types/cli.d.ts +1 -1
- package/build/types/commands/availableEnvironments.d.ts +1 -1
- package/build/types/commands/generate.d.ts +1 -1
- package/build/types/commands/init.d.ts +1 -1
- package/build/types/commands/login.d.ts +1 -1
- package/build/types/commands/logout.d.ts +1 -1
- package/build/types/commands/pullEnvs.d.ts +1 -1
- package/build/types/commands/readEnv.d.ts +1 -1
- package/build/types/commands/regen.d.ts +1 -1
- package/build/types/commands/runlify.d.ts +1 -1
- package/build/types/commands/showToken.d.ts +1 -1
- package/build/types/commands/start.d.ts +1 -1
- package/build/types/commands/tryGetMeta.d.ts +1 -1
- package/build/types/documentation/algorithm.d.ts +8 -8
- package/build/types/documentation/algoritmToDoc.d.ts +4 -4
- package/build/types/documentation/algoritmToDoc.spec.d.ts +1 -1
- package/build/types/documentation/curlExampleToText.d.ts +3 -3
- package/build/types/documentation/curlExampleToText.spec.d.ts +1 -1
- package/build/types/documentation/doc.d.ts +21 -21
- package/build/types/documentation/docToFlatDoc.d.ts +4 -4
- package/build/types/documentation/docToFlatDoc.spec.d.ts +1 -1
- package/build/types/documentation/flatDoc.d.ts +20 -20
- package/build/types/documentation/flatDocToText.d.ts +3 -3
- package/build/types/documentation/flatDocToText.spec.d.ts +1 -1
- package/build/types/documentation/templateDoc.d.ts +9 -9
- package/build/types/documentation/templateDocToDoc.d.ts +4 -4
- package/build/types/extensions/auth.d.ts +1 -1
- package/build/types/extensions/cli-extension.d.ts +1 -1
- package/build/types/extensions/cloudEnv.d.ts +1 -1
- package/build/types/extensions/cloudMeta.d.ts +1 -1
- package/build/types/extensions/globalConfig.d.ts +1 -1
- package/build/types/extensions/localConfig.d.ts +1 -1
- package/build/types/extensions/preventRunningIfUpdateAvailable.d.ts +1 -1
- package/build/types/index.d.ts +2 -2
- package/build/types/log.d.ts +3 -3
- package/build/types/projectsGeneration/args.d.ts +20 -20
- package/build/types/projectsGeneration/builders/BaseBuilder.d.ts +27 -27
- package/build/types/projectsGeneration/builders/BaseSavableEntityBuilder.d.ts +76 -76
- package/build/types/projectsGeneration/builders/CatalogBuilder.d.ts +14 -14
- package/build/types/projectsGeneration/builders/DeploymentBuilder.d.ts +13 -13
- package/build/types/projectsGeneration/builders/DocumentBuilder.d.ts +18 -18
- package/build/types/projectsGeneration/builders/InfoRegistryBuilder.d.ts +44 -44
- package/build/types/projectsGeneration/builders/ReportBuilder.d.ts +8 -8
- package/build/types/projectsGeneration/builders/RestApiBuilder.d.ts +12 -12
- package/build/types/projectsGeneration/builders/RestApiMethodBuilder.d.ts +20 -20
- package/build/types/projectsGeneration/builders/RoleBuilder.d.ts +8 -8
- package/build/types/projectsGeneration/builders/SumRegistryBuilder.d.ts +43 -43
- package/build/types/projectsGeneration/builders/SystemMetaBuilder.d.ts +80 -80
- package/build/types/projectsGeneration/builders/TelegramBotBuilder.d.ts +7 -7
- package/build/types/projectsGeneration/builders/buildedTypes.d.ts +264 -264
- package/build/types/projectsGeneration/builders/curlTypes.d.ts +24 -24
- package/build/types/projectsGeneration/builders/docs/DocumentationOfDocument.d.ts +10 -10
- package/build/types/projectsGeneration/builders/docs/DocumentationOfDocumentBuilder.d.ts +9 -9
- package/build/types/projectsGeneration/builders/fields/BaseFieldBuilder.d.ts +49 -49
- package/build/types/projectsGeneration/builders/fields/IdFieldBuilder.d.ts +12 -12
- package/build/types/projectsGeneration/builders/fields/LinkFieldBuilder.d.ts +15 -15
- package/build/types/projectsGeneration/builders/fields/ScalarFieldBuilder.d.ts +5 -5
- package/build/types/projectsGeneration/builders/fields/ViewLinkFieldBuilder.d.ts +13 -13
- package/build/types/projectsGeneration/builders/index.d.ts +3 -3
- package/build/types/projectsGeneration/builders/materialUiIcons.d.ts +2 -2
- package/build/types/projectsGeneration/builders/tsFilterFields.d.ts +2 -2
- package/build/types/projectsGeneration/builders/tsFilterFields.spec.d.ts +1 -1
- package/build/types/projectsGeneration/builders/types.d.ts +5 -5
- package/build/types/projectsGeneration/builders/ui/Forms.d.ts +14 -14
- package/build/types/projectsGeneration/builders/ui/FormsBuilder.d.ts +10 -10
- package/build/types/projectsGeneration/builders/ui/ListFormBuilder.d.ts +10 -10
- package/build/types/projectsGeneration/builders/ui/ListFormFilterBuilder.d.ts +10 -10
- package/build/types/projectsGeneration/builders/ui/ListFormFilterFieldBuilder.d.ts +11 -11
- package/build/types/projectsGeneration/builders/utils/accessFunctions.d.ts +2 -2
- package/build/types/projectsGeneration/builders/validation/baseValudationToYupAssertions.d.ts +4 -4
- package/build/types/projectsGeneration/builders/validation/bigintValudationToYupAssertions.d.ts +4 -4
- package/build/types/projectsGeneration/builders/validation/bigintValudationToYupAssertions.spec.d.ts +1 -1
- package/build/types/projectsGeneration/builders/validation/floatValudationToYupAssertions.d.ts +4 -4
- package/build/types/projectsGeneration/builders/validation/floatValudationToYupAssertions.spec.d.ts +1 -1
- package/build/types/projectsGeneration/builders/validation/intValudationToYupAssertions.d.ts +4 -4
- package/build/types/projectsGeneration/builders/validation/intValudationToYupAssertions.spec.d.ts +1 -1
- package/build/types/projectsGeneration/builders/validation/numberValudationToYupAssertions.d.ts +4 -4
- package/build/types/projectsGeneration/builders/validation/stringValudationToYupAssertions.d.ts +4 -4
- package/build/types/projectsGeneration/builders/validation/stringValudationToYupAssertions.spec.d.ts +1 -1
- package/build/types/projectsGeneration/builders/validation/types.d.ts +41 -41
- package/build/types/projectsGeneration/commonEntities/addAggregateTrackings.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/addAuditLogs.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/addAutogeneration.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/addCommonCommands.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/addCommonEntities.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/addLanguages.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/addManagers.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/addRefreshTokens.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/addRoles.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/addTenants.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/addUsers.d.ts +3 -3
- package/build/types/projectsGeneration/commonEntities/index.d.ts +11 -11
- package/build/types/projectsGeneration/defaultCatalogs/addElasticSearch.d.ts +2 -2
- package/build/types/projectsGeneration/defaultCatalogs/files.d.ts +4 -4
- package/build/types/projectsGeneration/defaultCatalogs/index.d.ts +2 -2
- package/build/types/projectsGeneration/genGraphSchemesByLocalGenerator.d.ts +2 -2
- package/build/types/projectsGeneration/generateEntity.d.ts +2 -2
- package/build/types/projectsGeneration/generateEnvironment.d.ts +2 -2
- package/build/types/projectsGeneration/generateProject.d.ts +34 -34
- package/build/types/projectsGeneration/generators/fieldTypeToTsType.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/Entities.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/devEnum.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/enum.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/chart/Chart.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/chart/templates/back.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/chart/templates/ingress.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/chart/values.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/defaultEnv.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/dockerfileTmplBack.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/dockerfileTmplUI.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsConfiguration.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsEntity.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/docs/backDocsRestApi.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/gitlabCi.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/src/clients/getPrisma.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/src/clients/knex.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/src/clients/queue/getQueue.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/environment/src/index.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/additionalResolvers.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/additionalTypes.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/entityAdditionalPermissionToGraphqlTmpl.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/entityBasePermissionToGraphql.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/entityPermissionToGraphqlTmpl.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/help/baseResolvers.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/help/baseTypeDefs.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/help/permissionsToGraphql.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/meta/resolvers.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/meta/typeDefs.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/permissionsToGraphql.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/resolvers.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/graph/types.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/initCommon.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/back/initDev.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/initEntities.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/root/config/index.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/root/restRouter.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/AdditionalServices.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/BaseServices.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/HelpService/HelpService.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/additionalClass.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/class.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/config.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnCreate.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnDelete.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/additionalOperationsOnUpdate.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterCreate.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterDelete.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/afterUpdate.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeCreate.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeDelete.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeUpdate.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/beforeUpsert.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/changeListFilter.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/hooks/tenantIdRequiredHooks.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/initBuiltInHooks.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/entity/initUserHooks.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/back/services/serviceConstrictors.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/ui/Dashboard.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/MetaPage.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/ui/ResourcesPage.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/additionalRoutes.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/ui/entityMapping.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/chart/Chart.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/chart/templates/front.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/chart/templates/ingress.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/chart/values.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/docs/adminAppDocsConfiguration.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/gitlabCi.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/App.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/contexts/SpacesContext.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/dataProvider/index.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/layout/AppBar.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/layout/Menu.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/environment/src/routes.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/ui/functions/Functions.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/getAdditionalMenu.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/ui/getDefaultMenu.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangCatalogsTmpl.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangDocsTmpl.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangInfoRegistriesTmpl.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangReportsTmpl.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiLangSumRegistriesTmpl.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiTranslationsForServicesOfSavablesTmpl.d.ts +4 -4
- package/build/types/projectsGeneration/generators/fileTemplates/ui/i18n/lang/uiTranslationsLangTmpl.d.ts +9 -9
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityCreate/DefaultEntityCreate.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityCreate/index.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityEdit/DefaultEntityEdit.d.ts +12 -12
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityEdit/index.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/DefaultEntityFilter.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/DefaultEntityList.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/EntityFilter.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityList/index.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultActions.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultEntityShow.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DefaultMainTab.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DependencyTab.d.ts +3 -3
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/MainTab.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/additionalTabs.d.ts +1 -1
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/index.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/Icon.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/pages/getEntityValidation.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/resources.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/widgets/count/CountWidget.d.ts +2 -2
- package/build/types/projectsGeneration/generators/fileTemplates/ui/widgets/list/ListWidget.d.ts +2 -2
- package/build/types/projectsGeneration/generators/graph/fieldTypeToGraphScalar.d.ts +2 -2
- package/build/types/projectsGeneration/generators/graph/fields/genGraphField.d.ts +7 -7
- package/build/types/projectsGeneration/generators/graph/fields/genGraphIdField.d.ts +8 -8
- package/build/types/projectsGeneration/generators/graph/fields/genGraphIdFieldType.d.ts +2 -2
- package/build/types/projectsGeneration/generators/graph/fields/genGraphLinkField.d.ts +8 -8
- package/build/types/projectsGeneration/generators/graph/fields/genGraphScalarField.d.ts +8 -8
- package/build/types/projectsGeneration/generators/graph/filters/genGraphField.d.ts +4 -4
- package/build/types/projectsGeneration/generators/graph/filters/genGraphIdFilter.d.ts +8 -8
- package/build/types/projectsGeneration/generators/graph/filters/genGraphLinkFilter.d.ts +5 -5
- package/build/types/projectsGeneration/generators/graph/filters/genGraphScalarFilter.d.ts +5 -5
- package/build/types/projectsGeneration/generators/graph/genGraphCrudSchema.d.ts +3 -3
- package/build/types/projectsGeneration/generators/graph/genGraphCrudSchema.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/graph/genGraphFilterType.d.ts +3 -3
- package/build/types/projectsGeneration/generators/graph/genGraphFilterType.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/graph/genGraphType.d.ts +3 -3
- package/build/types/projectsGeneration/generators/graph/genGraphType.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/graph/printGraphType.d.ts +2 -2
- package/build/types/projectsGeneration/generators/graph/printGraphType.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/prisma/fieldIdTypeToPrismaType.d.ts +2 -2
- package/build/types/projectsGeneration/generators/prisma/fieldTypeToPrismaType.d.ts +2 -2
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaDefault.d.ts +2 -2
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaDefault.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaField.d.ts +2 -2
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaFieldFromExternalEntity.d.ts +2 -2
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaFieldFromExternalEntity.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaIdField.d.ts +2 -2
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaIdField.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaLinkFields.d.ts +2 -2
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaLinkFields.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaScalarField.d.ts +3 -3
- package/build/types/projectsGeneration/generators/prisma/scheme/fields/genPrismaScalarField.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaEntity.d.ts +3 -3
- package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaEntity.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaSchemaForEntities.d.ts +3 -3
- package/build/types/projectsGeneration/generators/prisma/scheme/genPrismaSchemaForEntitiesWithClientAdnDb.d.ts +2 -2
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNameToEditScalar.d.ts +3 -3
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditField.d.ts +3 -3
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditIdField.d.ts +3 -3
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditLinkField.d.ts +3 -3
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditLinkField.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/ui/componentNames/edit/getCompNamesToEditScalarField.d.ts +3 -3
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNameToShowScalar.d.ts +3 -3
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowField.d.ts +3 -3
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowIdField.d.ts +3 -3
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowLinkField.d.ts +3 -3
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowLinkField.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/ui/componentNames/show/getCompNamesToShowScalarField.d.ts +3 -3
- package/build/types/projectsGeneration/generators/ui/componentNames/types.d.ts +4 -4
- package/build/types/projectsGeneration/generators/ui/getLinkShowComponent.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/ui/getScalarShowComponent.spec.d.ts +1 -1
- package/build/types/projectsGeneration/generators/ui/getShowComponent.d.ts +6 -6
- package/build/types/projectsGeneration/index.d.ts +6 -6
- package/build/types/projectsGeneration/links/getLinksFromExternalEntities.d.ts +3 -3
- package/build/types/projectsGeneration/links/getLinksFromExternalEntities.spec.d.ts +1 -1
- package/build/types/projectsGeneration/links/getLinksOfEntities.d.ts +3 -3
- package/build/types/projectsGeneration/links/getLinksOfEntities.spec.d.ts +1 -1
- package/build/types/projectsGeneration/links/getLinksToExternalEntities.d.ts +3 -3
- package/build/types/projectsGeneration/links/getLinksToExternalEntities.spec.d.ts +1 -1
- package/build/types/projectsGeneration/metaUtils.d.ts +9 -9
- package/build/types/projectsGeneration/modelsGeneration.serialization.spec.d.ts +1 -1
- package/build/types/projectsGeneration/modules/addEmailModuleEntities.d.ts +3 -3
- package/build/types/projectsGeneration/modules/index.d.ts +1 -1
- package/build/types/projectsGeneration/types.d.ts +100 -100
- package/build/types/projectsGeneration/utils.d.ts +15 -15
- package/build/types/refs/yup.spec.d.ts +1 -1
- package/build/types/types.d.ts +1 -1
- package/build/types/utils/TermSignals.d.ts +29 -29
- package/build/types/utils/cases.d.ts +9 -9
- package/build/types/utils/getPkgManager.d.ts +3 -3
- package/build/types.js +17 -17
- package/build/utils/TermSignals.js +116 -116
- package/build/utils/cases.js +32 -32
- package/build/utils/getPkgManager.js +28 -28
- package/package.json +3 -3
package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/DependencyTab.js
CHANGED
|
@@ -1,80 +1,80 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
26
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
27
|
-
if (ar || !(i in from)) {
|
|
28
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
29
|
-
ar[i] = from[i];
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
33
|
-
};
|
|
34
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35
|
-
exports.uiEntityShowDependencyTabTmpl = void 0;
|
|
36
|
-
var types_1 = require("../../../../../types");
|
|
37
|
-
var getCompNamesToShowField_1 = require("../../../../ui/componentNames/show/getCompNamesToShowField");
|
|
38
|
-
var R = __importStar(require("ramda"));
|
|
39
|
-
var cases_1 = require("../../../../../../utils/cases");
|
|
40
|
-
var getShowComponent_1 = require("../../../../ui/getShowComponent");
|
|
41
|
-
var utils_1 = require("../../../../../utils");
|
|
42
|
-
var metaUtils_1 = require("../../../../../metaUtils");
|
|
43
|
-
var uiEntityShowDependencyTabTmpl = function (allEntities, entity, toLink, options) {
|
|
44
|
-
if (options === void 0) { options = types_1.defaultBootstrapEntityOptions; }
|
|
45
|
-
var allEntitiesForImport = [
|
|
46
|
-
entity,
|
|
47
|
-
allEntities.get(toLink.entityOwnerName),
|
|
48
|
-
].filter(function (entity) { return entity; });
|
|
49
|
-
var fieldsToImport = R.flatten(allEntitiesForImport.map(function (entity) {
|
|
50
|
-
return R.flatten(entity.fields.filter(function (f) { return !f.hidden; })).filter(function (f) { return !(0, metaUtils_1.isMarkdownField)(f); });
|
|
51
|
-
}));
|
|
52
|
-
var dateFieldsToImport = fieldsToImport.filter(function (f) {
|
|
53
|
-
return ['datetime', 'date'].includes(f.type);
|
|
54
|
-
});
|
|
55
|
-
var notDateFieldsToImport = fieldsToImport.filter(function (f) { return !['datetime', 'date'].includes(f.type); });
|
|
56
|
-
var reactAdminImports = __spreadArray([
|
|
57
|
-
'TabProps',
|
|
58
|
-
'Tab'
|
|
59
|
-
], R.flatten(notDateFieldsToImport.map(function (f) { return (0, getCompNamesToShowField_1.getCompNamesToShowField)(f, allEntities); })), true);
|
|
60
|
-
reactAdminImports.push('ReferenceManyField');
|
|
61
|
-
reactAdminImports.push('Pagination');
|
|
62
|
-
reactAdminImports.push('Datagrid');
|
|
63
|
-
reactAdminImports.push('ShowButton');
|
|
64
|
-
var linkedEntity = allEntities.get(toLink.entityOwnerName);
|
|
65
|
-
if (!linkedEntity) {
|
|
66
|
-
throw new Error("There is no \"".concat(toLink.entityOwnerName, "\" entity"));
|
|
67
|
-
}
|
|
68
|
-
return "/* eslint-disable max-len */\nimport React, {FC} from 'react';\nimport {\n ".concat(R.uniq(reactAdminImports).map(utils_1.addComma).join("\n "), "\n} from 'react-admin';").concat(dateFieldsToImport.some(function (f) { return ['date', 'datetime'].includes(f.type); })
|
|
69
|
-
? "\nimport DateField from '../../../../../uiLib/DateField';"
|
|
70
|
-
: '', "\n").concat(options.skipWarningThisIsGenerated
|
|
71
|
-
? ''
|
|
72
|
-
: "\n// ".concat(utils_1.generatedWarning, "\n"), "\nconst ").concat((0, cases_1.pascal)(entity.name)).concat((0, cases_1.pascal)(toLink.fromField.name), "Tab: FC<Omit<TabProps, 'children'>> = (props) => {\n return (<Tab {...props}>\n <ReferenceManyField\n label={false}\n reference='").concat(toLink.entityOwnerName, "'\n target='").concat(toLink.fromField.name, "'\n pagination={<Pagination />}\n >\n <Datagrid\n bulkActionButtons={false}\n rowClick='show'\n >\n").concat(linkedEntity.fields
|
|
73
|
-
.filter(function (f) { return !f.hidden; })
|
|
74
|
-
.filter(function (f) { return !(0, metaUtils_1.isMarkdownField)(f); })
|
|
75
|
-
.map(function (f) { return (0, getShowComponent_1.getShowComponent)(entity, allEntities, f); })
|
|
76
|
-
.map(utils_1.pad4)
|
|
77
|
-
.join('\n'), "\n <ShowButton />\n </Datagrid>\n </ReferenceManyField>\n </Tab>);\n};\n\nexport default ").concat((0, cases_1.pascal)(entity.name)).concat((0, cases_1.pascal)(toLink.fromField.name), "Tab;\n");
|
|
78
|
-
};
|
|
79
|
-
exports.uiEntityShowDependencyTabTmpl = uiEntityShowDependencyTabTmpl;
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
26
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
27
|
+
if (ar || !(i in from)) {
|
|
28
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
29
|
+
ar[i] = from[i];
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
33
|
+
};
|
|
34
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35
|
+
exports.uiEntityShowDependencyTabTmpl = void 0;
|
|
36
|
+
var types_1 = require("../../../../../types");
|
|
37
|
+
var getCompNamesToShowField_1 = require("../../../../ui/componentNames/show/getCompNamesToShowField");
|
|
38
|
+
var R = __importStar(require("ramda"));
|
|
39
|
+
var cases_1 = require("../../../../../../utils/cases");
|
|
40
|
+
var getShowComponent_1 = require("../../../../ui/getShowComponent");
|
|
41
|
+
var utils_1 = require("../../../../../utils");
|
|
42
|
+
var metaUtils_1 = require("../../../../../metaUtils");
|
|
43
|
+
var uiEntityShowDependencyTabTmpl = function (allEntities, entity, toLink, options) {
|
|
44
|
+
if (options === void 0) { options = types_1.defaultBootstrapEntityOptions; }
|
|
45
|
+
var allEntitiesForImport = [
|
|
46
|
+
entity,
|
|
47
|
+
allEntities.get(toLink.entityOwnerName),
|
|
48
|
+
].filter(function (entity) { return entity; });
|
|
49
|
+
var fieldsToImport = R.flatten(allEntitiesForImport.map(function (entity) {
|
|
50
|
+
return R.flatten(entity.fields.filter(function (f) { return !f.hidden; })).filter(function (f) { return !(0, metaUtils_1.isMarkdownField)(f); });
|
|
51
|
+
}));
|
|
52
|
+
var dateFieldsToImport = fieldsToImport.filter(function (f) {
|
|
53
|
+
return ['datetime', 'date'].includes(f.type);
|
|
54
|
+
});
|
|
55
|
+
var notDateFieldsToImport = fieldsToImport.filter(function (f) { return !['datetime', 'date'].includes(f.type); });
|
|
56
|
+
var reactAdminImports = __spreadArray([
|
|
57
|
+
'TabProps',
|
|
58
|
+
'Tab'
|
|
59
|
+
], R.flatten(notDateFieldsToImport.map(function (f) { return (0, getCompNamesToShowField_1.getCompNamesToShowField)(f, allEntities); })), true);
|
|
60
|
+
reactAdminImports.push('ReferenceManyField');
|
|
61
|
+
reactAdminImports.push('Pagination');
|
|
62
|
+
reactAdminImports.push('Datagrid');
|
|
63
|
+
reactAdminImports.push('ShowButton');
|
|
64
|
+
var linkedEntity = allEntities.get(toLink.entityOwnerName);
|
|
65
|
+
if (!linkedEntity) {
|
|
66
|
+
throw new Error("There is no \"".concat(toLink.entityOwnerName, "\" entity"));
|
|
67
|
+
}
|
|
68
|
+
return "/* eslint-disable max-len */\nimport React, {FC} from 'react';\nimport {\n ".concat(R.uniq(reactAdminImports).map(utils_1.addComma).join("\n "), "\n} from 'react-admin';").concat(dateFieldsToImport.some(function (f) { return ['date', 'datetime'].includes(f.type); })
|
|
69
|
+
? "\nimport DateField from '../../../../../uiLib/DateField';"
|
|
70
|
+
: '', "\n").concat(options.skipWarningThisIsGenerated
|
|
71
|
+
? ''
|
|
72
|
+
: "\n// ".concat(utils_1.generatedWarning, "\n"), "\nconst ").concat((0, cases_1.pascal)(entity.name)).concat((0, cases_1.pascal)(toLink.fromField.name), "Tab: FC<Omit<TabProps, 'children'>> = (props) => {\n return (<Tab {...props}>\n <ReferenceManyField\n label={false}\n reference='").concat(toLink.entityOwnerName, "'\n target='").concat(toLink.fromField.name, "'\n pagination={<Pagination />}\n >\n <Datagrid\n bulkActionButtons={false}\n rowClick='show'\n >\n").concat(linkedEntity.fields
|
|
73
|
+
.filter(function (f) { return !f.hidden; })
|
|
74
|
+
.filter(function (f) { return !(0, metaUtils_1.isMarkdownField)(f); })
|
|
75
|
+
.map(function (f) { return (0, getShowComponent_1.getShowComponent)(entity, allEntities, f); })
|
|
76
|
+
.map(utils_1.pad4)
|
|
77
|
+
.join('\n'), "\n <ShowButton />\n </Datagrid>\n </ReferenceManyField>\n </Tab>);\n};\n\nexport default ").concat((0, cases_1.pascal)(entity.name)).concat((0, cases_1.pascal)(toLink.fromField.name), "Tab;\n");
|
|
78
|
+
};
|
|
79
|
+
exports.uiEntityShowDependencyTabTmpl = uiEntityShowDependencyTabTmpl;
|
|
80
80
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRGVwZW5kZW5jeVRhYi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9wcm9qZWN0c0dlbmVyYXRpb24vZ2VuZXJhdG9ycy9maWxlVGVtcGxhdGVzL3VpL3BhZ2VzL0VudGl0eVNob3cvRGVwZW5kZW5jeVRhYi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLDhDQUk2QjtBQUM3QixzR0FBb0c7QUFDcEcsdUNBQTBCO0FBQzFCLHVEQUFzRDtBQUN0RCxvRUFBa0U7QUFFbEUsOENBQXVFO0FBQ3ZFLHNEQUF3RDtBQUVqRCxJQUFNLDZCQUE2QixHQUFHLFVBQzNDLFdBQWdDLEVBQ2hDLE1BQWMsRUFDZCxNQUFzQixFQUN0QixPQUErRDtJQUEvRCx3QkFBQSxFQUFBLFVBQWtDLHFDQUE2QjtJQUUvRCxJQUFNLG9CQUFvQixHQUFhO1FBQ3JDLE1BQU07UUFDTixXQUFXLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxlQUFlLENBQUM7S0FDeEMsQ0FBQyxNQUFNLENBQUMsVUFBQyxNQUFNLElBQUssT0FBQSxNQUFNLEVBQU4sQ0FBTSxDQUFhLENBQUE7SUFFeEMsSUFBTSxjQUFjLEdBQUcsQ0FBQyxDQUFDLE9BQU8sQ0FDOUIsb0JBQW9CLENBQUMsR0FBRyxDQUFDLFVBQUMsTUFBTTtRQUM5QixPQUFBLENBQUMsQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsVUFBQyxDQUFDLElBQUssT0FBQSxDQUFDLENBQUMsQ0FBQyxNQUFNLEVBQVQsQ0FBUyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsVUFBQSxDQUFDLElBQUksT0FBQSxDQUFDLElBQUEsMkJBQWUsRUFBQyxDQUFDLENBQUMsRUFBbkIsQ0FBbUIsQ0FBQztJQUFsRixDQUFrRixDQUNuRixDQUNGLENBQUE7SUFDRCxJQUFNLGtCQUFrQixHQUFHLGNBQWMsQ0FBQyxNQUFNLENBQUMsVUFBQyxDQUFDO1FBQ2pELE9BQUEsQ0FBQyxVQUFVLEVBQUUsTUFBTSxDQUFDLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7SUFBckMsQ0FBcUMsQ0FDdEMsQ0FBQTtJQUNELElBQU0scUJBQXFCLEdBQUcsY0FBYyxDQUFDLE1BQU0sQ0FDakQsVUFBQyxDQUFDLElBQUssT0FBQSxDQUFDLENBQUMsVUFBVSxFQUFFLE1BQU0sQ0FBQyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEVBQXRDLENBQXNDLENBQzlDLENBQUE7SUFDRCxJQUFNLGlCQUFpQjtRQUNyQixVQUFVO1FBQ1YsS0FBSztPQUVGLENBQUMsQ0FBQyxPQUFPLENBQ1YscUJBQXFCLENBQUMsR0FBRyxDQUFDLFVBQUMsQ0FBQyxJQUFLLE9BQUEsSUFBQSxpREFBdUIsRUFBQyxDQUFDLEVBQUUsV0FBVyxDQUFDLEVBQXZDLENBQXVDLENBQUMsQ0FDMUUsT0FDRixDQUFBO0lBRUQsaUJBQWlCLENBQUMsSUFBSSxDQUFDLG9CQUFvQixDQUFDLENBQUE7SUFDNUMsaUJBQWlCLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFBO0lBQ3BDLGlCQUFpQixDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQTtJQUNsQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUE7SUFFcEMsSUFBTSxZQUFZLEdBQUcsV0FBVyxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsZUFBZSxDQUFDLENBQUE7SUFFNUQsSUFBSSxDQUFDLFlBQVksRUFBRTtRQUNqQixNQUFNLElBQUksS0FBSyxDQUFDLHdCQUFnQixNQUFNLENBQUMsZUFBZSxjQUFVLENBQUMsQ0FBQTtLQUNsRTtJQUVELE9BQU8sc0ZBR0wsQ0FBQyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxnQkFBUSxDQUFDLENBQUMsSUFBSSxDQUFDLE1BQzlDLENBQUMsb0NBRUEsa0JBQWtCLENBQUMsSUFBSSxDQUFDLFVBQUMsQ0FBQyxJQUFLLE9BQUEsQ0FBQyxNQUFNLEVBQUUsVUFBVSxDQUFDLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsRUFBckMsQ0FBcUMsQ0FBQztRQUNuRSxDQUFDLENBQUMsMkRBQ2dEO1FBQ2xELENBQUMsQ0FBQyxFQUFFLGVBR1IsT0FBTyxDQUFDLDBCQUEwQjtRQUNoQyxDQUFDLENBQUMsRUFBRTtRQUNKLENBQUMsQ0FBQyxlQUNELHdCQUFnQixPQUNwQixxQkFFTyxJQUFBLGNBQU0sRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFNBQUcsSUFBQSxjQUFNLEVBQ2hDLE1BQU0sQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUN0Qiw0SkFJZ0IsTUFBTSxDQUFDLGVBQWUsOEJBQ3pCLE1BQU0sQ0FBQyxTQUFTLENBQUMsSUFBSSxnSkFPbkMsWUFBWSxDQUFDLE1BQU07U0FDbEIsTUFBTSxDQUFDLFVBQUMsQ0FBQyxJQUFLLE9BQUEsQ0FBQyxDQUFDLENBQUMsTUFBTSxFQUFULENBQVMsQ0FBQztTQUN4QixNQUFNLENBQUMsVUFBQyxDQUFDLElBQUssT0FBQSxDQUFDLElBQUEsMkJBQWUsRUFBQyxDQUFDLENBQUMsRUFBbkIsQ0FBbUIsQ0FBQztTQUNsQyxHQUFHLENBQUMsVUFBQyxDQUFDLElBQUssT0FBQSxJQUFBLG1DQUFnQixFQUFDLE1BQU0sRUFBRSxXQUFXLEVBQUUsQ0FBQyxDQUFDLEVBQXhDLENBQXdDLENBQUM7U0FDcEQsR0FBRyxDQUFDLFlBQUksQ0FBQztTQUNULElBQUksQ0FBQyxJQUFJLENBQUMsc0hBT0ksSUFBQSxjQUFNLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxTQUFHLElBQUEsY0FBTSxFQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFdBQ25FLENBQUE7QUFDRCxDQUFDLENBQUE7QUF4RlksUUFBQSw2QkFBNkIsaUNBd0Z6QyJ9
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uiEntityShowMainTabTmpl = void 0;
|
|
4
|
-
var uiEntityShowMainTabTmpl = function () { return "export {default} from './DefaultMainTab';\n"; };
|
|
5
|
-
exports.uiEntityShowMainTabTmpl = uiEntityShowMainTabTmpl;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uiEntityShowMainTabTmpl = void 0;
|
|
4
|
+
var uiEntityShowMainTabTmpl = function () { return "export {default} from './DefaultMainTab';\n"; };
|
|
5
|
+
exports.uiEntityShowMainTabTmpl = uiEntityShowMainTabTmpl;
|
|
6
6
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTWFpblRhYi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9wcm9qZWN0c0dlbmVyYXRpb24vZ2VuZXJhdG9ycy9maWxlVGVtcGxhdGVzL3VpL3BhZ2VzL0VudGl0eVNob3cvTWFpblRhYi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBTyxJQUFNLHVCQUF1QixHQUNsQyxjQUFNLE9BQUEsNkNBQ1AsRUFETyxDQUNQLENBQUE7QUFGWSxRQUFBLHVCQUF1QiwyQkFFbkMifQ==
|
package/build/projectsGeneration/generators/fileTemplates/ui/pages/EntityShow/additionalTabs.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uiAdditionalTabsTmpl = void 0;
|
|
4
|
-
var uiAdditionalTabsTmpl = function () {
|
|
5
|
-
return "import {FC} from 'react';\nimport {TabProps} from 'react-admin';\n\nexport const additionalTabs: Array<{Tab: FC<Omit<TabProps, 'children'>>, label: string}> = [];\n";
|
|
6
|
-
};
|
|
7
|
-
exports.uiAdditionalTabsTmpl = uiAdditionalTabsTmpl;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uiAdditionalTabsTmpl = void 0;
|
|
4
|
+
var uiAdditionalTabsTmpl = function () {
|
|
5
|
+
return "import {FC} from 'react';\nimport {TabProps} from 'react-admin';\n\nexport const additionalTabs: Array<{Tab: FC<Omit<TabProps, 'children'>>, label: string}> = [];\n";
|
|
6
|
+
};
|
|
7
|
+
exports.uiAdditionalTabsTmpl = uiAdditionalTabsTmpl;
|
|
8
8
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRkaXRpb25hbFRhYnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvcHJvamVjdHNHZW5lcmF0aW9uL2dlbmVyYXRvcnMvZmlsZVRlbXBsYXRlcy91aS9wYWdlcy9FbnRpdHlTaG93L2FkZGl0aW9uYWxUYWJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFPLElBQU0sb0JBQW9CLEdBQUc7SUFDbEMsT0FBTyxzS0FJUixDQUFBO0FBQ0QsQ0FBQyxDQUFBO0FBTlksUUFBQSxvQkFBb0Isd0JBTWhDIn0=
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uiEntityShowIndexTmpl = void 0;
|
|
4
|
-
var cases_1 = require("../../../../../../utils/cases");
|
|
5
|
-
var uiEntityShowIndexTmpl = function (_a) {
|
|
6
|
-
var entity = _a.entity;
|
|
7
|
-
return "/* eslint-disable max-len */\nimport React, {FC} from 'react';\nimport {\n ShowProps,\n} from 'react-admin';\nimport Default".concat((0, cases_1.pascalSingular)(entity.name), "Show from './Default").concat((0, cases_1.pascalSingular)(entity.name), "Show';\n\nconst ").concat((0, cases_1.pascalSingular)(entity.name), "Show: FC<ShowProps> = (props: ShowProps) => (\n <Default").concat((0, cases_1.pascalSingular)(entity.name), "Show {...props} />\n);\n\nexport default ").concat((0, cases_1.pascalSingular)(entity.name), "Show;\n");
|
|
8
|
-
};
|
|
9
|
-
exports.uiEntityShowIndexTmpl = uiEntityShowIndexTmpl;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uiEntityShowIndexTmpl = void 0;
|
|
4
|
+
var cases_1 = require("../../../../../../utils/cases");
|
|
5
|
+
var uiEntityShowIndexTmpl = function (_a) {
|
|
6
|
+
var entity = _a.entity;
|
|
7
|
+
return "/* eslint-disable max-len */\nimport React, {FC} from 'react';\nimport {\n ShowProps,\n} from 'react-admin';\nimport Default".concat((0, cases_1.pascalSingular)(entity.name), "Show from './Default").concat((0, cases_1.pascalSingular)(entity.name), "Show';\n\nconst ").concat((0, cases_1.pascalSingular)(entity.name), "Show: FC<ShowProps> = (props: ShowProps) => (\n <Default").concat((0, cases_1.pascalSingular)(entity.name), "Show {...props} />\n);\n\nexport default ").concat((0, cases_1.pascalSingular)(entity.name), "Show;\n");
|
|
8
|
+
};
|
|
9
|
+
exports.uiEntityShowIndexTmpl = uiEntityShowIndexTmpl;
|
|
10
10
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvcHJvamVjdHNHZW5lcmF0aW9uL2dlbmVyYXRvcnMvZmlsZVRlbXBsYXRlcy91aS9wYWdlcy9FbnRpdHlTaG93L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLHVEQUE4RDtBQUd2RCxJQUFNLHFCQUFxQixHQUFHLFVBQUMsRUFBb0M7UUFBbEMsTUFBTSxZQUFBO0lBQzVDLE9BQU8sdUlBS08sSUFBQSxzQkFBYyxFQUMxQixNQUFNLENBQUMsSUFBSSxDQUNaLGlDQUF1QixJQUFBLHNCQUFjLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyw2QkFFN0MsSUFBQSxzQkFBYyxFQUNsQixNQUFNLENBQUMsSUFBSSxDQUNaLHNFQUNTLElBQUEsc0JBQWMsRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLHNEQUd0QixJQUFBLHNCQUFjLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxZQUMzQyxDQUFBO0FBQ0QsQ0FBQyxDQUFBO0FBbEJZLFFBQUEscUJBQXFCLHlCQWtCakMifQ==
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uiEntityIconTmpl = void 0;
|
|
4
|
-
var utils_1 = require("../../../../utils");
|
|
5
|
-
var uiEntityIconTmpl = function (_a) {
|
|
6
|
-
var options = _a.options, entity = _a.entity;
|
|
7
|
-
return "export {default} from '@mui/icons-material/".concat(entity.materialUiIcon, "';\n").concat(options.skipWarningThisIsGenerated
|
|
8
|
-
? ''
|
|
9
|
-
: "\n// ".concat(utils_1.generatedWarning, "\n"));
|
|
10
|
-
};
|
|
11
|
-
exports.uiEntityIconTmpl = uiEntityIconTmpl;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uiEntityIconTmpl = void 0;
|
|
4
|
+
var utils_1 = require("../../../../utils");
|
|
5
|
+
var uiEntityIconTmpl = function (_a) {
|
|
6
|
+
var options = _a.options, entity = _a.entity;
|
|
7
|
+
return "export {default} from '@mui/icons-material/".concat(entity.materialUiIcon, "';\n").concat(options.skipWarningThisIsGenerated
|
|
8
|
+
? ''
|
|
9
|
+
: "\n// ".concat(utils_1.generatedWarning, "\n"));
|
|
10
|
+
};
|
|
11
|
+
exports.uiEntityIconTmpl = uiEntityIconTmpl;
|
|
12
12
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSWNvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9wcm9qZWN0c0dlbmVyYXRpb24vZ2VuZXJhdG9ycy9maWxlVGVtcGxhdGVzL3VpL3BhZ2VzL0ljb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQ0EsMkNBQW9EO0FBRTdDLElBQU0sZ0JBQWdCLEdBQUcsVUFBQyxFQUdOO1FBRnpCLE9BQU8sYUFBQSxFQUNQLE1BQU0sWUFBQTtJQUN3QixPQUFBLHFEQUM5QixNQUFNLENBQUMsY0FBYyxpQkFHckIsT0FBTyxDQUFDLDBCQUEwQjtRQUNoQyxDQUFDLENBQUMsRUFBRTtRQUNKLENBQUMsQ0FBQyxlQUNELHdCQUFnQixPQUNwQixDQUNDO0FBVDhCLENBUzlCLENBQUE7QUFaVyxRQUFBLGdCQUFnQixvQkFZM0IifQ==
|
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uiGetEntityValidationTmpl = void 0;
|
|
4
|
-
/* eslint-disable max-len */
|
|
5
|
-
var cases_1 = require("../../../../../utils/cases");
|
|
6
|
-
var utils_1 = require("../../../../utils");
|
|
7
|
-
// import {fieldTypeToTsType} from '../../../fieldTypeToTsType';
|
|
8
|
-
var getFieldValidation = function (field) {
|
|
9
|
-
if (field.requiredOnInput) {
|
|
10
|
-
switch (field.type) {
|
|
11
|
-
case 'string':
|
|
12
|
-
return "Yup.string().required(t('validation.required')).typeError(t('validation.required'))";
|
|
13
|
-
case 'date':
|
|
14
|
-
return "Yup.string().required(t('validation.required')).typeError(t('validation.required'))";
|
|
15
|
-
case 'datetime':
|
|
16
|
-
return "Yup.date().required(t('validation.required')).typeError(t('validation.required'))";
|
|
17
|
-
case 'int':
|
|
18
|
-
if (field.category === 'scalar') {
|
|
19
|
-
return "Yup\n .number()\n .required(t('validation.required'))\n .integer(t('validation.onlyIntegers'))\n .max(2147483647, t('validation.maxValue', {max: 2147483647}))\n .typeError(t('validation.required'))";
|
|
20
|
-
}
|
|
21
|
-
else {
|
|
22
|
-
return "Yup\n .number()\n .required(t('validation.required'))\n .typeError(t('validation.required'))";
|
|
23
|
-
}
|
|
24
|
-
case 'float':
|
|
25
|
-
case 'bigint':
|
|
26
|
-
return "Yup.number().required(t('validation.required')).typeError(t('validation.required'))";
|
|
27
|
-
default:
|
|
28
|
-
return null;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
else {
|
|
32
|
-
switch (field.type) {
|
|
33
|
-
case 'int':
|
|
34
|
-
if (field.category === 'scalar') {
|
|
35
|
-
return "Yup\n .number()\n .integer(t('validation.onlyIntegers'))\n .max(2147483647, t('validation.maxValue', {max: 2147483647}))\n .nullable()";
|
|
36
|
-
}
|
|
37
|
-
else {
|
|
38
|
-
return null;
|
|
39
|
-
}
|
|
40
|
-
default:
|
|
41
|
-
return null;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
};
|
|
45
|
-
var uiGetEntityValidationTmpl = function (_a) {
|
|
46
|
-
var options = _a.options, entity = _a.entity;
|
|
47
|
-
var validations = entity.fields
|
|
48
|
-
// .filter((f) => f.requiredOnInput)
|
|
49
|
-
.map(function (field) { return ({ field: field, validation: getFieldValidation(field) }); })
|
|
50
|
-
.filter(function (_a) {
|
|
51
|
-
var validation = _a.validation;
|
|
52
|
-
return validation;
|
|
53
|
-
});
|
|
54
|
-
var hasValidations = validations.length > 0;
|
|
55
|
-
return "import * as Yup from 'yup';\nimport GetValidation from '../../../types/GetValidation';".concat(hasValidations
|
|
56
|
-
? "\nimport {Translate} from 'react-admin';"
|
|
57
|
-
: '', "\n").concat(options.skipWarningThisIsGenerated
|
|
58
|
-
? ''
|
|
59
|
-
: "\n// ".concat(utils_1.generatedWarning, "\n"), "\nconst get").concat((0, cases_1.pascalSingular)(entity.name), "Validation: GetValidation = ").concat(hasValidations ? '(t: Translate)' : '()', " => ").concat(hasValidations
|
|
60
|
-
? "Yup.object({\n".concat(validations
|
|
61
|
-
.map(function (_a) {
|
|
62
|
-
var field = _a.field, validation = _a.validation;
|
|
63
|
-
return " ".concat(field.name, ": ").concat(validation, ",");
|
|
64
|
-
})
|
|
65
|
-
.join('\n'), "\n});")
|
|
66
|
-
: 'Yup.object({});', "\n\nexport default get").concat((0, cases_1.pascalSingular)(entity.name), "Validation;\n");
|
|
67
|
-
};
|
|
68
|
-
exports.uiGetEntityValidationTmpl = uiGetEntityValidationTmpl;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uiGetEntityValidationTmpl = void 0;
|
|
4
|
+
/* eslint-disable max-len */
|
|
5
|
+
var cases_1 = require("../../../../../utils/cases");
|
|
6
|
+
var utils_1 = require("../../../../utils");
|
|
7
|
+
// import {fieldTypeToTsType} from '../../../fieldTypeToTsType';
|
|
8
|
+
var getFieldValidation = function (field) {
|
|
9
|
+
if (field.requiredOnInput) {
|
|
10
|
+
switch (field.type) {
|
|
11
|
+
case 'string':
|
|
12
|
+
return "Yup.string().required(t('validation.required')).typeError(t('validation.required'))";
|
|
13
|
+
case 'date':
|
|
14
|
+
return "Yup.string().required(t('validation.required')).typeError(t('validation.required'))";
|
|
15
|
+
case 'datetime':
|
|
16
|
+
return "Yup.date().required(t('validation.required')).typeError(t('validation.required'))";
|
|
17
|
+
case 'int':
|
|
18
|
+
if (field.category === 'scalar') {
|
|
19
|
+
return "Yup\n .number()\n .required(t('validation.required'))\n .integer(t('validation.onlyIntegers'))\n .max(2147483647, t('validation.maxValue', {max: 2147483647}))\n .typeError(t('validation.required'))";
|
|
20
|
+
}
|
|
21
|
+
else {
|
|
22
|
+
return "Yup\n .number()\n .required(t('validation.required'))\n .typeError(t('validation.required'))";
|
|
23
|
+
}
|
|
24
|
+
case 'float':
|
|
25
|
+
case 'bigint':
|
|
26
|
+
return "Yup.number().required(t('validation.required')).typeError(t('validation.required'))";
|
|
27
|
+
default:
|
|
28
|
+
return null;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
else {
|
|
32
|
+
switch (field.type) {
|
|
33
|
+
case 'int':
|
|
34
|
+
if (field.category === 'scalar') {
|
|
35
|
+
return "Yup\n .number()\n .integer(t('validation.onlyIntegers'))\n .max(2147483647, t('validation.maxValue', {max: 2147483647}))\n .nullable()";
|
|
36
|
+
}
|
|
37
|
+
else {
|
|
38
|
+
return null;
|
|
39
|
+
}
|
|
40
|
+
default:
|
|
41
|
+
return null;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
var uiGetEntityValidationTmpl = function (_a) {
|
|
46
|
+
var options = _a.options, entity = _a.entity;
|
|
47
|
+
var validations = entity.fields
|
|
48
|
+
// .filter((f) => f.requiredOnInput)
|
|
49
|
+
.map(function (field) { return ({ field: field, validation: getFieldValidation(field) }); })
|
|
50
|
+
.filter(function (_a) {
|
|
51
|
+
var validation = _a.validation;
|
|
52
|
+
return validation;
|
|
53
|
+
});
|
|
54
|
+
var hasValidations = validations.length > 0;
|
|
55
|
+
return "import * as Yup from 'yup';\nimport GetValidation from '../../../types/GetValidation';".concat(hasValidations
|
|
56
|
+
? "\nimport {Translate} from 'react-admin';"
|
|
57
|
+
: '', "\n").concat(options.skipWarningThisIsGenerated
|
|
58
|
+
? ''
|
|
59
|
+
: "\n// ".concat(utils_1.generatedWarning, "\n"), "\nconst get").concat((0, cases_1.pascalSingular)(entity.name), "Validation: GetValidation = ").concat(hasValidations ? '(t: Translate)' : '()', " => ").concat(hasValidations
|
|
60
|
+
? "Yup.object({\n".concat(validations
|
|
61
|
+
.map(function (_a) {
|
|
62
|
+
var field = _a.field, validation = _a.validation;
|
|
63
|
+
return " ".concat(field.name, ": ").concat(validation, ",");
|
|
64
|
+
})
|
|
65
|
+
.join('\n'), "\n});")
|
|
66
|
+
: 'Yup.object({});', "\n\nexport default get").concat((0, cases_1.pascalSingular)(entity.name), "Validation;\n");
|
|
67
|
+
};
|
|
68
|
+
exports.uiGetEntityValidationTmpl = uiGetEntityValidationTmpl;
|
|
69
69
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0RW50aXR5VmFsaWRhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9wcm9qZWN0c0dlbmVyYXRpb24vZ2VuZXJhdG9ycy9maWxlVGVtcGxhdGVzL3VpL3BhZ2VzL2dldEVudGl0eVZhbGlkYXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsNEJBQTRCO0FBQzVCLG9EQUEyRDtBQUczRCwyQ0FBb0Q7QUFFcEQsZ0VBQWdFO0FBRWhFLElBQU0sa0JBQWtCLEdBQUcsVUFBQyxLQUFZO0lBQ3RDLElBQUksS0FBSyxDQUFDLGVBQWUsRUFBRTtRQUN6QixRQUFRLEtBQUssQ0FBQyxJQUFJLEVBQUU7WUFDbEIsS0FBSyxRQUFRO2dCQUNYLE9BQU8scUZBQXFGLENBQUE7WUFDOUYsS0FBSyxNQUFNO2dCQUNULE9BQU8scUZBQXFGLENBQUE7WUFDOUYsS0FBSyxVQUFVO2dCQUNiLE9BQU8sbUZBQW1GLENBQUE7WUFDNUYsS0FBSyxLQUFLO2dCQUNSLElBQUksS0FBSyxDQUFDLFFBQVEsS0FBSyxRQUFRLEVBQUU7b0JBQy9CLE9BQU8sc05BS3dCLENBQUE7aUJBQ2hDO3FCQUFNO29CQUNMLE9BQU8sdUdBR3dCLENBQUE7aUJBQ2hDO1lBQ0gsS0FBSyxPQUFPLENBQUM7WUFDYixLQUFLLFFBQVE7Z0JBQ1gsT0FBTyxxRkFBcUYsQ0FBQTtZQUM5RjtnQkFDRSxPQUFPLElBQUksQ0FBQTtTQUNkO0tBQ0Y7U0FBTTtRQUNMLFFBQVEsS0FBSyxDQUFDLElBQUksRUFBRTtZQUNsQixLQUFLLEtBQUs7Z0JBQ1IsSUFBSSxLQUFLLENBQUMsUUFBUSxLQUFLLFFBQVEsRUFBRTtvQkFDL0IsT0FBTyxvSkFJRCxDQUFBO2lCQUNQO3FCQUFNO29CQUNMLE9BQU8sSUFBSSxDQUFBO2lCQUNaO1lBQ0g7Z0JBQ0UsT0FBTyxJQUFJLENBQUE7U0FDZDtLQUNGO0FBQ0gsQ0FBQyxDQUFBO0FBRU0sSUFBTSx5QkFBeUIsR0FBRyxVQUFDLEVBR2Y7UUFGekIsT0FBTyxhQUFBLEVBQ1AsTUFBTSxZQUFBO0lBRU4sSUFBTSxXQUFXLEdBQUcsTUFBTSxDQUFDLE1BQU07UUFDL0Isb0NBQW9DO1NBQ25DLEdBQUcsQ0FBQyxVQUFDLEtBQUssSUFBSyxPQUFBLENBQUMsRUFBRSxLQUFLLE9BQUEsRUFBRSxVQUFVLEVBQUUsa0JBQWtCLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxFQUFsRCxDQUFrRCxDQUFDO1NBQ2xFLE1BQU0sQ0FBQyxVQUFDLEVBQWM7WUFBWixVQUFVLGdCQUFBO1FBQU8sT0FBQSxVQUFVO0lBQVYsQ0FBVSxDQUFDLENBQUE7SUFDekMsSUFBTSxjQUFjLEdBQUcsV0FBVyxDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUE7SUFFN0MsT0FBTyxnR0FFTCxjQUFjO1FBQ1osQ0FBQyxDQUFDLDBDQUMrQjtRQUNqQyxDQUFDLENBQUMsRUFBRSxlQUdSLE9BQU8sQ0FBQywwQkFBMEI7UUFDaEMsQ0FBQyxDQUFDLEVBQUU7UUFDSixDQUFDLENBQUMsZUFDRCx3QkFBZ0IsT0FDcEIsd0JBRVUsSUFBQSxzQkFBYyxFQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMseUNBQ2xDLGNBQWMsQ0FBQyxDQUFDLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLElBQUksaUJBRXhDLGNBQWM7UUFDWixDQUFDLENBQUMsd0JBQ04sV0FBVzthQUNWLEdBQUcsQ0FBQyxVQUFDLEVBQXFCO2dCQUFuQixLQUFLLFdBQUEsRUFBRSxVQUFVLGdCQUFBO1lBQU8sT0FBQSxZQUFLLEtBQUssQ0FBQyxJQUFJLGVBQUssVUFBVSxNQUFHO1FBQWpDLENBQWlDLENBQUM7YUFDakUsSUFBSSxDQUFDLElBQUksQ0FBQyxVQUNUO1FBQ0UsQ0FBQyxDQUFDLGlCQUFpQixtQ0FHTCxJQUFBLHNCQUFjLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxrQkFDOUMsQ0FBQTtBQUNELENBQUMsQ0FBQTtBQXRDWSxRQUFBLHlCQUF5Qiw2QkFzQ3JDIn0=
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uiResourcesTmpl = void 0;
|
|
4
|
-
var pluralize_1 = require("pluralize");
|
|
5
|
-
var cases_1 = require("../../../../utils/cases");
|
|
6
|
-
var uiResourcesTmpl = function (_a) {
|
|
7
|
-
var entities = _a.entities;
|
|
8
|
-
return "/* eslint-disable max-len */\nimport * as React from 'react';\nimport {Resource, Translate} from 'react-admin';\nimport Loadable from '../shared/Loadable';\nimport {hasPermission} from '../utils/permissions';\n\n".concat(entities.map(function (m) { return "const Loadable".concat((0, cases_1.pascalSingular)(m.name), "Show = Loadable({\n loader: () => import('./pages/").concat(m.name, "/").concat((0, cases_1.pascalSingular)(m.name), "Show'),\n});\nconst Loadable").concat((0, cases_1.pascalSingular)(m.name), "Edit = Loadable({\n loader: () => import('./pages/").concat(m.name, "/").concat((0, cases_1.pascalSingular)(m.name), "Edit'),\n});\nconst Loadable").concat((0, cases_1.pascalSingular)(m.name), "Create = Loadable({\n loader: () => import('./pages/").concat(m.name, "/").concat((0, cases_1.pascalSingular)(m.name), "Create'),\n});\nconst Loadable").concat((0, cases_1.pascalSingular)(m.name), "List = Loadable({\n loader: () => import('./pages/").concat(m.name, "/").concat((0, cases_1.pascalSingular)(m.name), "List'),\n});"); }).join("\n"), "\n\nexport const getResources = (translate: Translate, permissions: string[]) => (\n permissions ?\n [\n").concat(entities.map(function (entity) { return " <Resource\n key='".concat(entity.name, "'\n name='").concat(entity.name, "'\n show={hasPermission(permissions, '").concat(entity.name, ".get') ? Loadable").concat((0, cases_1.pascalSingular)(entity.name), "Show : undefined}\n edit={hasPermission(permissions, '").concat(entity.name, ".update') ? Loadable").concat((0, cases_1.pascalSingular)(entity.name), "Edit : undefined}\n create={hasPermission(permissions, '").concat(entity.name, ".create') ? Loadable").concat((0, cases_1.pascalSingular)(entity.name), "Create : undefined}\n list={hasPermission(permissions, '").concat(entity.name, ".all') ? Loadable").concat((0, cases_1.pascalSingular)(entity.name), "List : undefined}\n options={{label: translate('").concat((0, pluralize_1.plural)(entity.type), ".").concat(entity.name, ".title.singular')}}\n recordRepresentation='").concat(entity.titleField, "'\n />,"); }).join("\n"), "\n ] :\n []\n);\n");
|
|
9
|
-
};
|
|
10
|
-
exports.uiResourcesTmpl = uiResourcesTmpl;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uiResourcesTmpl = void 0;
|
|
4
|
+
var pluralize_1 = require("pluralize");
|
|
5
|
+
var cases_1 = require("../../../../utils/cases");
|
|
6
|
+
var uiResourcesTmpl = function (_a) {
|
|
7
|
+
var entities = _a.entities;
|
|
8
|
+
return "/* eslint-disable max-len */\nimport * as React from 'react';\nimport {Resource, Translate} from 'react-admin';\nimport Loadable from '../shared/Loadable';\nimport {hasPermission} from '../utils/permissions';\n\n".concat(entities.map(function (m) { return "const Loadable".concat((0, cases_1.pascalSingular)(m.name), "Show = Loadable({\n loader: () => import('./pages/").concat(m.name, "/").concat((0, cases_1.pascalSingular)(m.name), "Show'),\n});\nconst Loadable").concat((0, cases_1.pascalSingular)(m.name), "Edit = Loadable({\n loader: () => import('./pages/").concat(m.name, "/").concat((0, cases_1.pascalSingular)(m.name), "Edit'),\n});\nconst Loadable").concat((0, cases_1.pascalSingular)(m.name), "Create = Loadable({\n loader: () => import('./pages/").concat(m.name, "/").concat((0, cases_1.pascalSingular)(m.name), "Create'),\n});\nconst Loadable").concat((0, cases_1.pascalSingular)(m.name), "List = Loadable({\n loader: () => import('./pages/").concat(m.name, "/").concat((0, cases_1.pascalSingular)(m.name), "List'),\n});"); }).join("\n"), "\n\nexport const getResources = (translate: Translate, permissions: string[]) => (\n permissions ?\n [\n").concat(entities.map(function (entity) { return " <Resource\n key='".concat(entity.name, "'\n name='").concat(entity.name, "'\n show={hasPermission(permissions, '").concat(entity.name, ".get') ? Loadable").concat((0, cases_1.pascalSingular)(entity.name), "Show : undefined}\n edit={hasPermission(permissions, '").concat(entity.name, ".update') ? Loadable").concat((0, cases_1.pascalSingular)(entity.name), "Edit : undefined}\n create={hasPermission(permissions, '").concat(entity.name, ".create') ? Loadable").concat((0, cases_1.pascalSingular)(entity.name), "Create : undefined}\n list={hasPermission(permissions, '").concat(entity.name, ".all') ? Loadable").concat((0, cases_1.pascalSingular)(entity.name), "List : undefined}\n options={{label: translate('").concat((0, pluralize_1.plural)(entity.type), ".").concat(entity.name, ".title.singular')}}\n recordRepresentation='").concat(entity.titleField, "'\n />,"); }).join("\n"), "\n ] :\n []\n);\n");
|
|
9
|
+
};
|
|
10
|
+
exports.uiResourcesTmpl = uiResourcesTmpl;
|
|
11
11
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVzb3VyY2VzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL3Byb2plY3RzR2VuZXJhdGlvbi9nZW5lcmF0b3JzL2ZpbGVUZW1wbGF0ZXMvdWkvcmVzb3VyY2VzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLHVDQUFrQztBQUNsQyxpREFBd0Q7QUFHakQsSUFBTSxlQUFlLEdBQUcsVUFBQyxFQUVKO1FBRDFCLFFBQVEsY0FBQTtJQUN1QixPQUFBLDhOQU0vQixRQUFRLENBQUMsR0FBRyxDQUNaLFVBQUMsQ0FBQyxJQUFLLE9BQUEsd0JBQWlCLElBQUEsc0JBQWMsRUFBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGdFQUNkLENBQUMsQ0FBQyxJQUFJLGNBQUksSUFBQSxzQkFBYyxFQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMseUNBRWxELElBQUEsc0JBQWMsRUFBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGdFQUNKLENBQUMsQ0FBQyxJQUFJLGNBQUksSUFBQSxzQkFBYyxFQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMseUNBRWxELElBQUEsc0JBQWMsRUFBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGtFQUNKLENBQUMsQ0FBQyxJQUFJLGNBQUksSUFBQSxzQkFBYyxFQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsMkNBRWxELElBQUEsc0JBQWMsRUFBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGdFQUNKLENBQUMsQ0FBQyxJQUFJLGNBQUksSUFBQSxzQkFBYyxFQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsaUJBQzlELEVBWEssQ0FXTCxDQUNILENBQUMsSUFBSSxDQUFDLElBQ04sQ0FBQyx5SEFLQSxRQUFRLENBQUMsR0FBRyxDQUNaLFVBQUMsTUFBTSxJQUFLLE9BQUEsd0NBQ0MsTUFBTSxDQUFDLElBQUksOEJBQ1YsTUFBTSxDQUFDLElBQUksMERBRWpCLE1BQU0sQ0FBQyxJQUFJLDhCQUNPLElBQUEsc0JBQWMsRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLDBFQUU3QyxNQUFNLENBQUMsSUFBSSxpQ0FDVSxJQUFBLHNCQUFjLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyw0RUFFaEQsTUFBTSxDQUFDLElBQUksaUNBQ1UsSUFBQSxzQkFBYyxFQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsNEVBRWhELE1BQU0sQ0FBQyxJQUFJLDhCQUNPLElBQUEsc0JBQWMsRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLG9FQUNqQixJQUFBLGtCQUFNLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxjQUNyRCxNQUFNLENBQUMsSUFBSSxnRUFFaUIsTUFBTSxDQUFDLFVBQVUsaUJBQ3ZDLEVBbkJJLENBbUJKLENBQ1QsQ0FBQyxJQUFJLENBQUMsSUFDTixDQUFDLDRCQUlEO0FBbkRnQyxDQW1EaEMsQ0FBQTtBQXJEWSxRQUFBLGVBQWUsbUJBcUQzQiJ9
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uiCountWidgetTmpl = void 0;
|
|
4
|
-
var cases_1 = require("../../../../../../utils/cases");
|
|
5
|
-
var utils_1 = require("../../../../../utils");
|
|
6
|
-
var uiCountWidgetTmpl = function (_a) {
|
|
7
|
-
var entity = _a.entity, options = _a.options;
|
|
8
|
-
return "/* eslint-disable max-len */\nimport React, {\n FC,\n} from 'react';\nimport NumberWiget, {\n NumberWigetProps,\n} from '../../../widgets/NumberWiget';\nimport {\n gql,\n} from '@apollo/client';\nimport {".concat((0, cases_1.pascalSingular)(entity.name), "Filter} from '../../../generated/graphql';\n").concat(options.skipWarningThisIsGenerated
|
|
9
|
-
? ''
|
|
10
|
-
: "\n// ".concat(utils_1.generatedWarning, "\n"), "\ninterface Count").concat((0, cases_1.pascal)(entity.name), "WidgetProps extends\nOmit<NumberWigetProps, 'request' | 'resultToValue'> {\n filter?: ").concat((0, cases_1.pascalSingular)(entity.name), "Filter;\n}\n\nconst Count").concat((0, cases_1.pascal)(entity.name), "Widget: FC<Count").concat((0, cases_1.pascal)(entity.name), "WidgetProps> = ({\n filter,\n ...rest\n}) => {\n return (\n <NumberWiget\n measuring='\u0448\u0442'\n {...rest}\n options={{\n variables: {\n filter,\n },\n }}\n request={gql`\n query ($filter: ").concat((0, cases_1.pascalSingular)(entity.name), "Filter) {\n _all").concat((0, cases_1.pascal)(entity.name), "Meta(filter: $filter) {\n count\n }\n }\n `}\n resultToValue={result => result?._all").concat((0, cases_1.pascal)(entity.name), "Meta?.count?.toLocaleString()}\n />\n );\n};\n\nexport default Count").concat((0, cases_1.pascal)(entity.name), "Widget;\n");
|
|
11
|
-
};
|
|
12
|
-
exports.uiCountWidgetTmpl = uiCountWidgetTmpl;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uiCountWidgetTmpl = void 0;
|
|
4
|
+
var cases_1 = require("../../../../../../utils/cases");
|
|
5
|
+
var utils_1 = require("../../../../../utils");
|
|
6
|
+
var uiCountWidgetTmpl = function (_a) {
|
|
7
|
+
var entity = _a.entity, options = _a.options;
|
|
8
|
+
return "/* eslint-disable max-len */\nimport React, {\n FC,\n} from 'react';\nimport NumberWiget, {\n NumberWigetProps,\n} from '../../../widgets/NumberWiget';\nimport {\n gql,\n} from '@apollo/client';\nimport {".concat((0, cases_1.pascalSingular)(entity.name), "Filter} from '../../../generated/graphql';\n").concat(options.skipWarningThisIsGenerated
|
|
9
|
+
? ''
|
|
10
|
+
: "\n// ".concat(utils_1.generatedWarning, "\n"), "\ninterface Count").concat((0, cases_1.pascal)(entity.name), "WidgetProps extends\nOmit<NumberWigetProps, 'request' | 'resultToValue'> {\n filter?: ").concat((0, cases_1.pascalSingular)(entity.name), "Filter;\n}\n\nconst Count").concat((0, cases_1.pascal)(entity.name), "Widget: FC<Count").concat((0, cases_1.pascal)(entity.name), "WidgetProps> = ({\n filter,\n ...rest\n}) => {\n return (\n <NumberWiget\n measuring='\u0448\u0442'\n {...rest}\n options={{\n variables: {\n filter,\n },\n }}\n request={gql`\n query ($filter: ").concat((0, cases_1.pascalSingular)(entity.name), "Filter) {\n _all").concat((0, cases_1.pascal)(entity.name), "Meta(filter: $filter) {\n count\n }\n }\n `}\n resultToValue={result => result?._all").concat((0, cases_1.pascal)(entity.name), "Meta?.count?.toLocaleString()}\n />\n );\n};\n\nexport default Count").concat((0, cases_1.pascal)(entity.name), "Widget;\n");
|
|
11
|
+
};
|
|
12
|
+
exports.uiCountWidgetTmpl = uiCountWidgetTmpl;
|
|
13
13
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQ291bnRXaWRnZXQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvcHJvamVjdHNHZW5lcmF0aW9uL2dlbmVyYXRvcnMvZmlsZVRlbXBsYXRlcy91aS93aWRnZXRzL2NvdW50L0NvdW50V2lkZ2V0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLHVEQUFzRTtBQUV0RSw4Q0FBdUQ7QUFFaEQsSUFBTSxpQkFBaUIsR0FBRyxVQUFDLEVBR1A7UUFGekIsTUFBTSxZQUFBLEVBQ04sT0FBTyxhQUFBO0lBQ3VCLE9BQUEseU5BVXRCLElBQUEsc0JBQWMsRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLHlEQUVuQyxPQUFPLENBQUMsMEJBQTBCO1FBQ2hDLENBQUMsQ0FBQyxFQUFFO1FBQ0osQ0FBQyxDQUFDLGVBQ0Qsd0JBQWdCLE9BQ3BCLDhCQUVnQixJQUFBLGNBQU0sRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLG9HQUV2QixJQUFBLHNCQUFjLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxzQ0FHM0IsSUFBQSxjQUFNLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyw2QkFBbUIsSUFBQSxjQUFNLEVBQ3ZELE1BQU0sQ0FBQyxJQUFJLENBQ1osNFFBY3lCLElBQUEsc0JBQWMsRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLHNDQUNyQyxJQUFBLGNBQU0sRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLHNJQUtVLElBQUEsY0FBTSxFQUMzQyxNQUFNLENBQUMsSUFBSSxDQUNaLHFGQUtlLElBQUEsY0FBTSxFQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsY0FDeEM7QUFyRCtCLENBcUQvQixDQUFBO0FBeERZLFFBQUEsaUJBQWlCLHFCQXdEN0IifQ==
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uiListWidgetTmpl = void 0;
|
|
4
|
-
var cases_1 = require("../../../../../../utils/cases");
|
|
5
|
-
var utils_1 = require("../../../../../utils");
|
|
6
|
-
// import { isMarkdownField } from '../../../../../metaUtils'
|
|
7
|
-
var uiListWidgetTmpl = function (_a) {
|
|
8
|
-
var entity = _a.entity, options = _a.options;
|
|
9
|
-
var fields = entity.fields
|
|
10
|
-
.filter(function (f) { return !f.hidden; })
|
|
11
|
-
.filter(function (f) { return f.showInList; })
|
|
12
|
-
.map(function (f) { return "<div>\n {`".concat((0, cases_1.sentence)(f.name), ": ${props.").concat(f.name, "}`}\n</div>"); });
|
|
13
|
-
return "/* eslint-disable max-len */\nimport React, {\n FC,\n} from 'react';\nimport {\n gql,\n} from '@apollo/client';\nimport {\n Link,\n} from 'react-router-dom';\nimport {ListItem, ListItemText} from '@mui/material';\nimport ListWiget, {\n ListWigetProps,\n} from '../../../widgets/ListWiget';\nimport {\n ".concat((0, cases_1.pascalSingular)(entity.name), ",\n QueryAll").concat((0, cases_1.pascal)(entity.name), "Args,\n} from '../../../generated/graphql';\n").concat(options.skipWarningThisIsGenerated
|
|
14
|
-
? ''
|
|
15
|
-
: "\n// ".concat(utils_1.generatedWarning, "\n"), "\ninterface List").concat((0, cases_1.pascal)(entity.name), "WidgetProps extends\nOmit<ListWigetProps<").concat((0, cases_1.pascalSingular)(entity.name), ">, 'request' | 'resultToValue'| 'children' | 'source'>,\nQueryAll").concat((0, cases_1.pascal)(entity.name), "Args {\n children?: FC<").concat((0, cases_1.pascalSingular)(entity.name), ">,\n}\n\nexport const List").concat((0, cases_1.pascal)(entity.name), "Item: FC<").concat((0, cases_1.pascalSingular)(entity.name), "> = (props) => {\n return (\n <ListItem\n button\n component={Link}\n key={props.id}\n to={`/").concat(entity.name, "/${props.id}/show`}\n >\n <ListItemText\n primary={\n").concat(fields.length > 1
|
|
16
|
-
? (0, utils_1.pad5)("<>\n".concat(fields.map(utils_1.pad1).join('\n'), "\n</>"))
|
|
17
|
-
: fields.map(utils_1.pad5).join('\n'), "\n }\n />\n </ListItem>\n );\n};\n\nconst List").concat((0, cases_1.pascal)(entity.name), "Widget: FC<List").concat((0, cases_1.pascal)(entity.name), "WidgetProps> = ({\n page = 0,\n perPage = 5,\n sortField,\n sortOrder,\n filter,\n children = List").concat((0, cases_1.pascal)(entity.name), "Item,\n ...rest\n}) => {\n return (\n <ListWiget<").concat((0, cases_1.pascalSingular)(entity.name), ">\n {...rest}\n source='").concat(entity.name, "'\n options={{\n variables: {\n page,\n perPage,\n sortField,\n sortOrder,\n filter,\n },\n }}\n request={gql`\n query (\n $page: Int,\n $perPage: Int,\n $sortField: String,\n $sortOrder: String,\n $filter: ").concat((0, cases_1.pascalSingular)(entity.name), "Filter,\n ) {\n all").concat((0, cases_1.pascal)(entity.name), "(\n page: $page,\n perPage: $perPage,\n sortField: $sortField,\n sortOrder: $sortOrder,\n filter: $filter\n ) {\n ").concat(entity.fields.filter(function (f) { return !f.hidden; }).map(function (f) { return f.name; }).join("\n "), "\n }\n }\n `}\n resultToValue={result => result?.all").concat((0, cases_1.pascal)(entity.name), "}\n >\n {(record) => children(record)}\n </ListWiget>\n );\n};\n\nexport default List").concat((0, cases_1.pascal)(entity.name), "Widget;\n");
|
|
18
|
-
};
|
|
19
|
-
exports.uiListWidgetTmpl = uiListWidgetTmpl;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.uiListWidgetTmpl = void 0;
|
|
4
|
+
var cases_1 = require("../../../../../../utils/cases");
|
|
5
|
+
var utils_1 = require("../../../../../utils");
|
|
6
|
+
// import { isMarkdownField } from '../../../../../metaUtils'
|
|
7
|
+
var uiListWidgetTmpl = function (_a) {
|
|
8
|
+
var entity = _a.entity, options = _a.options;
|
|
9
|
+
var fields = entity.fields
|
|
10
|
+
.filter(function (f) { return !f.hidden; })
|
|
11
|
+
.filter(function (f) { return f.showInList; })
|
|
12
|
+
.map(function (f) { return "<div>\n {`".concat((0, cases_1.sentence)(f.name), ": ${props.").concat(f.name, "}`}\n</div>"); });
|
|
13
|
+
return "/* eslint-disable max-len */\nimport React, {\n FC,\n} from 'react';\nimport {\n gql,\n} from '@apollo/client';\nimport {\n Link,\n} from 'react-router-dom';\nimport {ListItem, ListItemText} from '@mui/material';\nimport ListWiget, {\n ListWigetProps,\n} from '../../../widgets/ListWiget';\nimport {\n ".concat((0, cases_1.pascalSingular)(entity.name), ",\n QueryAll").concat((0, cases_1.pascal)(entity.name), "Args,\n} from '../../../generated/graphql';\n").concat(options.skipWarningThisIsGenerated
|
|
14
|
+
? ''
|
|
15
|
+
: "\n// ".concat(utils_1.generatedWarning, "\n"), "\ninterface List").concat((0, cases_1.pascal)(entity.name), "WidgetProps extends\nOmit<ListWigetProps<").concat((0, cases_1.pascalSingular)(entity.name), ">, 'request' | 'resultToValue'| 'children' | 'source'>,\nQueryAll").concat((0, cases_1.pascal)(entity.name), "Args {\n children?: FC<").concat((0, cases_1.pascalSingular)(entity.name), ">,\n}\n\nexport const List").concat((0, cases_1.pascal)(entity.name), "Item: FC<").concat((0, cases_1.pascalSingular)(entity.name), "> = (props) => {\n return (\n <ListItem\n button\n component={Link}\n key={props.id}\n to={`/").concat(entity.name, "/${props.id}/show`}\n >\n <ListItemText\n primary={\n").concat(fields.length > 1
|
|
16
|
+
? (0, utils_1.pad5)("<>\n".concat(fields.map(utils_1.pad1).join('\n'), "\n</>"))
|
|
17
|
+
: fields.map(utils_1.pad5).join('\n'), "\n }\n />\n </ListItem>\n );\n};\n\nconst List").concat((0, cases_1.pascal)(entity.name), "Widget: FC<List").concat((0, cases_1.pascal)(entity.name), "WidgetProps> = ({\n page = 0,\n perPage = 5,\n sortField,\n sortOrder,\n filter,\n children = List").concat((0, cases_1.pascal)(entity.name), "Item,\n ...rest\n}) => {\n return (\n <ListWiget<").concat((0, cases_1.pascalSingular)(entity.name), ">\n {...rest}\n source='").concat(entity.name, "'\n options={{\n variables: {\n page,\n perPage,\n sortField,\n sortOrder,\n filter,\n },\n }}\n request={gql`\n query (\n $page: Int,\n $perPage: Int,\n $sortField: String,\n $sortOrder: String,\n $filter: ").concat((0, cases_1.pascalSingular)(entity.name), "Filter,\n ) {\n all").concat((0, cases_1.pascal)(entity.name), "(\n page: $page,\n perPage: $perPage,\n sortField: $sortField,\n sortOrder: $sortOrder,\n filter: $filter\n ) {\n ").concat(entity.fields.filter(function (f) { return !f.hidden; }).map(function (f) { return f.name; }).join("\n "), "\n }\n }\n `}\n resultToValue={result => result?.all").concat((0, cases_1.pascal)(entity.name), "}\n >\n {(record) => children(record)}\n </ListWiget>\n );\n};\n\nexport default List").concat((0, cases_1.pascal)(entity.name), "Widget;\n");
|
|
18
|
+
};
|
|
19
|
+
exports.uiListWidgetTmpl = uiListWidgetTmpl;
|
|
20
20
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiTGlzdFdpZGdldC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9wcm9qZWN0c0dlbmVyYXRpb24vZ2VuZXJhdG9ycy9maWxlVGVtcGxhdGVzL3VpL3dpZGdldHMvbGlzdC9MaXN0V2lkZ2V0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLHVEQUFnRjtBQUVoRiw4Q0FBbUU7QUFDbkUsNkRBQTZEO0FBRXRELElBQU0sZ0JBQWdCLEdBQUcsVUFBQyxFQUdOO1FBRnpCLE1BQU0sWUFBQSxFQUNOLE9BQU8sYUFBQTtJQUVQLElBQU0sTUFBTSxHQUFHLE1BQU0sQ0FBQyxNQUFNO1NBQ3pCLE1BQU0sQ0FBQyxVQUFDLENBQUMsSUFBSyxPQUFBLENBQUMsQ0FBQyxDQUFDLE1BQU0sRUFBVCxDQUFTLENBQUM7U0FDeEIsTUFBTSxDQUFDLFVBQUEsQ0FBQyxJQUFJLE9BQUEsQ0FBQyxDQUFDLFVBQVUsRUFBWixDQUFZLENBQUM7U0FDekIsR0FBRyxDQUNGLFVBQUMsQ0FBQyxJQUFLLE9BQUEscUJBQ04sSUFBQSxnQkFBUSxFQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsdUJBQWMsQ0FBQyxDQUFDLElBQUksZ0JBQ3BDLEVBRk0sQ0FFTixDQUNGLENBQUE7SUFFSCxPQUFPLDZUQWVMLElBQUEsc0JBQWMsRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLDBCQUNuQixJQUFBLGNBQU0sRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLDBEQUc3QixPQUFPLENBQUMsMEJBQTBCO1FBQ2hDLENBQUMsQ0FBQyxFQUFFO1FBQ0osQ0FBQyxDQUFDLGVBQ0Qsd0JBQWdCLE9BQ3BCLDZCQUVlLElBQUEsY0FBTSxFQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsc0RBQ2IsSUFBQSxzQkFBYyxFQUNoQyxNQUFNLENBQUMsSUFBSSxDQUNaLDhFQUNPLElBQUEsY0FBTSxFQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMscUNBQ1gsSUFBQSxzQkFBYyxFQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsdUNBRzFCLElBQUEsY0FBTSxFQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsc0JBQVksSUFBQSxzQkFBYyxFQUM1RCxNQUFNLENBQUMsSUFBSSxDQUNaLGtJQU1ZLE1BQU0sQ0FBQyxJQUFJLGlGQUt4QixNQUFNLENBQUMsTUFBTSxHQUFHLENBQUM7UUFDZixDQUFDLENBQUMsSUFBQSxZQUFJLEVBQUMsY0FDVCxNQUFNLENBQUMsR0FBRyxDQUFDLFlBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsVUFDekIsQ0FBQztRQUNELENBQUMsQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLFlBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsMkVBUXJCLElBQUEsY0FBTSxFQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsNEJBQWtCLElBQUEsY0FBTSxFQUNuRCxNQUFNLENBQUMsSUFBSSxDQUNaLHFIQU1nQixJQUFBLGNBQU0sRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLG1FQUlyQixJQUFBLHNCQUFjLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQywrQ0FFNUIsTUFBTSxDQUFDLElBQUksMFZBZ0JOLElBQUEsc0JBQWMsRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLGdEQUVqQyxJQUFBLGNBQU0sRUFBQyxNQUFNLENBQUMsSUFBSSxDQUFDLDBNQU9wQixNQUFNLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxVQUFDLENBQUMsSUFBSyxPQUFBLENBQUMsQ0FBQyxDQUFDLE1BQU0sRUFBVCxDQUFTLENBQUMsQ0FBQyxHQUFHLENBQUMsVUFBQyxDQUFDLElBQUssT0FBQSxDQUFDLENBQUMsSUFBSSxFQUFOLENBQU0sQ0FBQyxDQUFDLElBQUksQ0FBQyxnQkFDaEUsQ0FBQywyRkFJOEIsSUFBQSxjQUFNLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyw4R0FPMUMsSUFBQSxjQUFNLEVBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxjQUN2QyxDQUFBO0FBQ0QsQ0FBQyxDQUFBO0FBNUhZLFFBQUEsZ0JBQWdCLG9CQTRINUIifQ==
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.fieldTypeToGraphScalar = void 0;
|
|
4
|
-
var graphql_1 = require("graphql");
|
|
5
|
-
var graphql_scalars_1 = require("graphql-scalars");
|
|
6
|
-
var fieldTypeToGraphScalar = function (field) {
|
|
7
|
-
switch (field.type) {
|
|
8
|
-
case 'int':
|
|
9
|
-
return graphql_1.GraphQLInt;
|
|
10
|
-
case 'bigint':
|
|
11
|
-
return graphql_scalars_1.GraphQLBigInt;
|
|
12
|
-
case 'float':
|
|
13
|
-
return graphql_1.GraphQLFloat;
|
|
14
|
-
case 'string':
|
|
15
|
-
if ('stringType' in field && field.stringType == 'json') {
|
|
16
|
-
return graphql_scalars_1.GraphQLJSON;
|
|
17
|
-
}
|
|
18
|
-
return graphql_1.GraphQLString;
|
|
19
|
-
case 'bool':
|
|
20
|
-
return graphql_1.GraphQLBoolean;
|
|
21
|
-
case 'datetime':
|
|
22
|
-
return graphql_scalars_1.GraphQLDateTime;
|
|
23
|
-
case 'date':
|
|
24
|
-
return graphql_scalars_1.GraphQLDate;
|
|
25
|
-
default:
|
|
26
|
-
throw new Error("Unexpected \"".concat(field.type, "\" type"));
|
|
27
|
-
}
|
|
28
|
-
};
|
|
29
|
-
exports.fieldTypeToGraphScalar = fieldTypeToGraphScalar;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.fieldTypeToGraphScalar = void 0;
|
|
4
|
+
var graphql_1 = require("graphql");
|
|
5
|
+
var graphql_scalars_1 = require("graphql-scalars");
|
|
6
|
+
var fieldTypeToGraphScalar = function (field) {
|
|
7
|
+
switch (field.type) {
|
|
8
|
+
case 'int':
|
|
9
|
+
return graphql_1.GraphQLInt;
|
|
10
|
+
case 'bigint':
|
|
11
|
+
return graphql_scalars_1.GraphQLBigInt;
|
|
12
|
+
case 'float':
|
|
13
|
+
return graphql_1.GraphQLFloat;
|
|
14
|
+
case 'string':
|
|
15
|
+
if ('stringType' in field && field.stringType == 'json') {
|
|
16
|
+
return graphql_scalars_1.GraphQLJSON;
|
|
17
|
+
}
|
|
18
|
+
return graphql_1.GraphQLString;
|
|
19
|
+
case 'bool':
|
|
20
|
+
return graphql_1.GraphQLBoolean;
|
|
21
|
+
case 'datetime':
|
|
22
|
+
return graphql_scalars_1.GraphQLDateTime;
|
|
23
|
+
case 'date':
|
|
24
|
+
return graphql_scalars_1.GraphQLDate;
|
|
25
|
+
default:
|
|
26
|
+
throw new Error("Unexpected \"".concat(field.type, "\" type"));
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
exports.fieldTypeToGraphScalar = fieldTypeToGraphScalar;
|
|
30
30
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmllbGRUeXBlVG9HcmFwaFNjYWxhci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9wcm9qZWN0c0dlbmVyYXRpb24vZ2VuZXJhdG9ycy9ncmFwaC9maWVsZFR5cGVUb0dyYXBoU2NhbGFyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLG1DQUtnQjtBQUNoQixtREFBMEY7QUFHbkYsSUFBTSxzQkFBc0IsR0FBRyxVQUFDLEtBQVk7SUFDakQsUUFBUSxLQUFLLENBQUMsSUFBSSxFQUFFO1FBQ2xCLEtBQUssS0FBSztZQUNSLE9BQU8sb0JBQVUsQ0FBQTtRQUNuQixLQUFLLFFBQVE7WUFDWCxPQUFPLCtCQUFhLENBQUE7UUFDdEIsS0FBSyxPQUFPO1lBQ1YsT0FBTyxzQkFBWSxDQUFBO1FBQ3JCLEtBQUssUUFBUTtZQUNYLElBQUksWUFBWSxJQUFJLEtBQUssSUFBSSxLQUFLLENBQUMsVUFBVSxJQUFJLE1BQU0sRUFBRTtnQkFDdkQsT0FBTyw2QkFBVyxDQUFBO2FBQ25CO1lBQ0QsT0FBTyx1QkFBYSxDQUFBO1FBQ3RCLEtBQUssTUFBTTtZQUNULE9BQU8sd0JBQWMsQ0FBQTtRQUN2QixLQUFLLFVBQVU7WUFDYixPQUFPLGlDQUFlLENBQUE7UUFDeEIsS0FBSyxNQUFNO1lBQ1QsT0FBTyw2QkFBVyxDQUFBO1FBQ3BCO1lBQ0UsTUFBTSxJQUFJLEtBQUssQ0FBQyx1QkFBZ0IsS0FBYSxDQUFDLElBQUksWUFBUSxDQUFDLENBQUE7S0FDOUQ7QUFDSCxDQUFDLENBQUE7QUF0QlksUUFBQSxzQkFBc0IsMEJBc0JsQyJ9
|