From 9adfed5220851848d866e5b01e07b4232e0db754 Mon Sep 17 00:00:00 2001 From: risadmin_prod Date: Fri, 21 Mar 2025 06:32:20 +0000 Subject: [PATCH] build_app --- .../Builders/Services/BuilderService.java | 12 + .../basicp1/Controllers/ChildController.java | 83 ++ .../basicp1/Controllers/FormaController.java | 163 +++ .../basicp1/Controllers/FormbController.java | 171 +++ .../basicp1/Controllers/FormcController.java | 155 +++ .../Formc_ListFilter1Controller.java | 24 + .../com/realnet/basicp1/Entity/Child.java | 25 + .../com/realnet/basicp1/Entity/Forma.java | 70 ++ .../com/realnet/basicp1/Entity/Formb.java | 83 ++ .../com/realnet/basicp1/Entity/Formc.java | 73 ++ .../basicp1/Entity/Formc_ListFilter1.java | 14 + .../basicp1/Repository/ChildRepository.java | 26 + .../basicp1/Repository/FormaRepository.java | 46 + .../basicp1/Repository/FormbRepository.java | 48 + .../basicp1/Repository/FormcRepository.java | 44 + .../basicp1/Services/ChildService.java | 74 ++ .../basicp1/Services/FormaService.java | 174 +++ .../basicp1/Services/FormbService.java | 196 ++++ .../basicp1/Services/FormcService.java | 173 +++ .../Services/Formc_ListFilter1Service.java | 47 + .../authsec_mysql/mysql/wf_table/wf_table.sql | 8 + .../login/login-page/login_environment.ts | 18 +- .../basicp1/Child/Child.component.html | 314 +++++ .../basicp1/Child/Child.component.scss | 78 ++ .../basicp1/Child/Child.component.ts | 216 ++++ .../basicp1/Child/Child.service.ts | 35 + .../basicp1/Child/Child_cardvariable.ts | 4 + .../basicp1/Forma/Forma.component.html | 635 +++++++++++ .../basicp1/Forma/Forma.component.scss | 78 ++ .../basicp1/Forma/Forma.component.ts | 495 ++++++++ .../basicp1/Forma/Forma.service.ts | 55 + .../basicp1/Forma/Forma_cardvariable.ts | 4 + .../basicp1/Formb/Formb.component.html | 1006 +++++++++++++++++ .../basicp1/Formb/Formb.component.scss | 78 ++ .../basicp1/Formb/Formb.component.ts | 736 ++++++++++++ .../basicp1/Formb/Formb.service.ts | 109 ++ .../basicp1/Formb/Formb_cardvariable.ts | 4 + .../basicp1/Formc/Formc.component.html | 783 +++++++++++++ .../basicp1/Formc/Formc.component.scss | 78 ++ .../basicp1/Formc/Formc.component.ts | 668 +++++++++++ .../basicp1/Formc/Formc.service.ts | 56 + .../basicp1/Formc/Formc_cardvariable.ts | 4 + .../app/modules/main/main-routing.module.ts | 16 + .../src/app/modules/main/main.module.ts | 16 + .../src/assets/i18n/en.json | 44 +- 45 files changed, 7224 insertions(+), 15 deletions(-) create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/ChildController.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormaController.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormbController.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormcController.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Formc_ListFilter1Controller.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Child.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Forma.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formb.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formc.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formc_ListFilter1.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/ChildRepository.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormaRepository.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormbRepository.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormcRepository.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/ChildService.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormaService.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormbService.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormcService.java create mode 100644 testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Formc_ListFilter1Service.java create mode 100755 testnewangular-db-d/authsec_mysql/mysql/wf_table/wf_table.sql create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.html create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.scss create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.service.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child_cardvariable.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.html create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.scss create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.service.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma_cardvariable.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.html create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.scss create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.service.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb_cardvariable.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.html create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.scss create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.service.ts create mode 100644 testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc_cardvariable.ts diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java index 11edc5f..83f747b 100644 --- a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java @@ -69,6 +69,18 @@ public class BuilderService { executeDump(true); // ADD OTHER SERVICE +addCustomMenu( "Child", "Transcations"); + + +addCustomMenu( "Formc", "Transcations"); + + +addCustomMenu( "Formb", "Transcations"); + + +addCustomMenu( "Forma", "Transcations"); + + System.out.println("dashboard and menu inserted..."); diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/ChildController.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/ChildController.java new file mode 100644 index 0000000..439cb9c --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/ChildController.java @@ -0,0 +1,83 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.http.ResponseEntity; +import org.springframework.data.domain.Pageable; +import org.springframework.beans.factory.annotation.*; +import com.realnet.basicp1.Entity.Child; +import com.realnet.basicp1.Services.ChildService ; + + +@RequestMapping(value = "/Child") + @CrossOrigin("*") +@RestController +public class ChildController { + @Autowired + private ChildService Service; + +@Value("${projectPath}") + private String projectPath; + + + + @PostMapping("/Child") + public Child Savedata(@RequestBody Child data) { + Child save = Service.Savedata(data) ; + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Child/{id}") + public Child update(@RequestBody Child data,@PathVariable Integer id ) { + Child update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Child/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/Child") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Child") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Child/{id}") + public Child getdetailsbyId(@PathVariable Integer id ) { + Child get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Child/{id}") + public void delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + + } + + + +} \ No newline at end of file diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormaController.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormaController.java new file mode 100644 index 0000000..6f844cc --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormaController.java @@ -0,0 +1,163 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.http.ResponseEntity; +import org.springframework.data.domain.Pageable; +import org.springframework.beans.factory.annotation.*; +import com.realnet.basicp1.Entity.Forma; +import com.realnet.basicp1.Services.FormaService ; + + + + + + + + + + + + + + + + + + + + + + +@RequestMapping(value = "/Forma") + @CrossOrigin("*") +@RestController +public class FormaController { + @Autowired + private FormaService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + + + + + + + + + + + + + + + @PostMapping("/Forma") + public Forma Savedata(@RequestBody Forma data) { + Forma save = Service.Savedata(data) ; + + + + + + + + + + + + + + + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Forma/{id}") + public Forma update(@RequestBody Forma data,@PathVariable Integer id ) { + Forma update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Forma/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/Forma") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Forma") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Forma/{id}") + public Forma getdetailsbyId(@PathVariable Integer id ) { + Forma get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Forma/{id}") + public void delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + + } + + + + + + + + + + + + + + + + + + + + + + + +} \ No newline at end of file diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormbController.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormbController.java new file mode 100644 index 0000000..1fdc6c9 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormbController.java @@ -0,0 +1,171 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.http.ResponseEntity; +import org.springframework.data.domain.Pageable; +import org.springframework.beans.factory.annotation.*; +import com.realnet.basicp1.Entity.Formb; +import com.realnet.basicp1.Services.FormbService ; + + + + + + + + + + + + + + + + + + + + + + + + +@RequestMapping(value = "/Formb") + @CrossOrigin("*") +@RestController +public class FormbController { + @Autowired + private FormbService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + + + + + + + + + + + + + + + + + @PostMapping("/Formb") + public Formb Savedata(@RequestBody Formb data) { + Formb save = Service.Savedata(data) ; + + + + + + + + + + + + + + + + + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Formb/{id}") + public Formb update(@RequestBody Formb data,@PathVariable Integer id ) { + Formb update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Formb/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/Formb") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Formb") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Formb/{id}") + public Formb getdetailsbyId(@PathVariable Integer id ) { + Formb get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Formb/{id}") + public void delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + + } + + + + + + + + + + + + + + + + + + + + + + + + + +} \ No newline at end of file diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormcController.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormcController.java new file mode 100644 index 0000000..4cd4458 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/FormcController.java @@ -0,0 +1,155 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageRequest; +import org.springframework.http.ResponseEntity; +import org.springframework.data.domain.Pageable; +import org.springframework.beans.factory.annotation.*; +import com.realnet.basicp1.Entity.Formc; +import com.realnet.basicp1.Services.FormcService ; + + + + + + + + + + + + + + + + + + + + +@RequestMapping(value = "/Formc") + @CrossOrigin("*") +@RestController +public class FormcController { + @Autowired + private FormcService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + + + + + + + + + + + + + @PostMapping("/Formc") + public Formc Savedata(@RequestBody Formc data) { + Formc save = Service.Savedata(data) ; + + + + + + + + + + + + + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Formc/{id}") + public Formc update(@RequestBody Formc data,@PathVariable Integer id ) { + Formc update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Formc/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/Formc") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Formc") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Formc/{id}") + public Formc getdetailsbyId(@PathVariable Integer id ) { + Formc get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Formc/{id}") + public void delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + + } + + + + + + + + + + + + + + + + + + + + + +} \ No newline at end of file diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Formc_ListFilter1Controller.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Formc_ListFilter1Controller.java new file mode 100644 index 0000000..5fbde84 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Formc_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.Formc_ListFilter1; +import com.realnet.basicp1.Services.Formc_ListFilter1Service ; +@RequestMapping(value = "/Formc_ListFilter1") +@RestController +public class Formc_ListFilter1Controller { + + @Autowired + private Formc_ListFilter1Service Service; + + @GetMapping("/Formc_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/Formc_ListFilter11") + public List getlistwithparam( ) { + List get = Service.getlistbuilderparam( ); + return get; +} +} \ No newline at end of file diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Child.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Child.java new file mode 100644 index 0000000..8b98d14 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Child.java @@ -0,0 +1,25 @@ +package com.realnet.basicp1.Entity; + import lombok.*; +import com.realnet.WhoColumn.Entity.Extension; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + + + @Entity + @Data + public class Child extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String namem; + + +} diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Forma.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Forma.java new file mode 100644 index 0000000..0e8b33d --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Forma.java @@ -0,0 +1,70 @@ +package com.realnet.basicp1.Entity; + import lombok.*; +import com.realnet.WhoColumn.Entity.Extension; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + + + + + + + + + + + + + + + + + + + + + + + @Entity + @Data + public class Forma extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String text_field; + +private int number_field; + + private String phone_number; + + +@Column(length = 2000) +private String paragraph_field; + +private String password_field; +@Transient +private String confirmpassword_field; + +@Column(length = 2000) +private String textarea; + +private String date_field; + +private String datetime_field; + +private String email_field; + +private boolean toggle_switch; + +private String url_field; + + +} diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formb.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formb.java new file mode 100644 index 0000000..dd6ea18 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formb.java @@ -0,0 +1,83 @@ +package com.realnet.basicp1.Entity; + import lombok.*; +import com.realnet.WhoColumn.Entity.Extension; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + + + + + + + + + + + + + + + + + + + + + + + + + @Entity + @Data + public class Formb extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + + private double decimald; + +private int percentagef; + +private String recaptchaf; + +private String documentseq; + + private Long user_id; + private String user_name; + +private String selectst; + + private String radiod; + + + + +private boolean a; + + + +private boolean b; + + + +private String fileuploadjname; +private String fileuploadjpath ; + +private String imageuploadhname; +private String imageuploadhpath ; + +private String audiohname; +private String audiohpath ; + +private String videohname; +private String videohpath ; + + +} diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formc.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formc.java new file mode 100644 index 0000000..aa618c3 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formc.java @@ -0,0 +1,73 @@ +package com.realnet.basicp1.Entity; + import lombok.*; +import com.realnet.WhoColumn.Entity.Extension; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + + + + + + + + + + + + + + +import com.realnet.basicp1.Entity.Child; + + + + + + @Entity + @Data + public class Formc extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String currencys; + + + +private String qrcode; + +private String barcode; + +private int numbers; + +private int numbered; + +private String calculatedadd; + +@OneToOne( cascade=CascadeType.ALL) + private Child child; + + + + + +private String a; + + + + +private String b; + + + + + + +} diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formc_ListFilter1.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formc_ListFilter1.java new file mode 100644 index 0000000..4ed78dd --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Formc_ListFilter1.java @@ -0,0 +1,14 @@ +package com.realnet.basicp1.Entity; + import lombok.*; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + @Data + public class Formc_ListFilter1 { + + private Integer id; + + + private String numbers; +} diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/ChildRepository.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/ChildRepository.java new file mode 100644 index 0000000..8101d37 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/ChildRepository.java @@ -0,0 +1,26 @@ +package com.realnet.basicp1.Repository; + + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; + +import org.springframework.stereotype.Repository; +import java.util.*; + + + + + +import com.realnet.basicp1.Entity.Child; + +@Repository +public interface ChildRepository extends JpaRepository { + +@Query(value = "select * from child where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from child where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormaRepository.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormaRepository.java new file mode 100644 index 0000000..d9073fe --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormaRepository.java @@ -0,0 +1,46 @@ +package com.realnet.basicp1.Repository; + + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; + +import org.springframework.stereotype.Repository; +import java.util.*; + + + + + + + + + + + + + + + + + + + + + + + + + +import com.realnet.basicp1.Entity.Forma; + +@Repository +public interface FormaRepository extends JpaRepository { + +@Query(value = "select * from forma where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from forma where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormbRepository.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormbRepository.java new file mode 100644 index 0000000..15fe022 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormbRepository.java @@ -0,0 +1,48 @@ +package com.realnet.basicp1.Repository; + + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; + +import org.springframework.stereotype.Repository; +import java.util.*; + + + + + + + + + + + + + + + + + + + + + + + + + + + +import com.realnet.basicp1.Entity.Formb; + +@Repository +public interface FormbRepository extends JpaRepository { + +@Query(value = "select * from formb where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from formb where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormcRepository.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormcRepository.java new file mode 100644 index 0000000..bbaa894 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/FormcRepository.java @@ -0,0 +1,44 @@ +package com.realnet.basicp1.Repository; + + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; + +import org.springframework.stereotype.Repository; +import java.util.*; + + + + + + + + + + + + + + + + + + + + + + + +import com.realnet.basicp1.Entity.Formc; + +@Repository +public interface FormcRepository extends JpaRepository { + +@Query(value = "select * from formc where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from formc where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/ChildService.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/ChildService.java new file mode 100644 index 0000000..140f97f --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/ChildService.java @@ -0,0 +1,74 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.ChildRepository; +import com.realnet.basicp1.Entity.Child;import java.util.List; +import java.util.ArrayList; + +import org.springframework.beans.factory.annotation.Autowired; +import com.realnet.SequenceGenerator.Service.SequenceService; +import com.realnet.Notification.Entity.NotificationService; +import org.springframework.data.domain.Page; +import com.realnet.realm.Entity.Realm; +import com.realnet.realm.Services.RealmService;import org.springframework.data.domain.Pageable; +import org.springframework.http.ResponseEntity; +import com.realnet.users.service1.AppUserServiceImpl; +import org.springframework.http.HttpStatus; +import com.realnet.users.entity1.AppUser; + + + import org.springframework.stereotype.Service; + +@Service + public class ChildService { +@Autowired +private ChildRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + +public Child Savedata(Child data) { + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Child save = Repository.save(data); + return save; + } + + +// get all with pagination + public Page getAllWithPagination(Pageable page) { + return Repository.findAll(page, getUser().getUserId()); + } +public List getdetails() { + List realm = realmService.findByUserId(getUser().getUserId()); +List all = Repository.findAll(getUser().getUserId()); + + return all ; } + + +public Child getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Child update(Child data,Integer id) { + Child old = Repository.findById(id).get(); +old.setNamem(data.getNamem()); + +final Child test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormaService.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormaService.java new file mode 100644 index 0000000..d135cca --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormaService.java @@ -0,0 +1,174 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.FormaRepository; +import com.realnet.basicp1.Entity.Forma;import java.util.List; +import java.util.ArrayList; + +import org.springframework.beans.factory.annotation.Autowired; +import com.realnet.SequenceGenerator.Service.SequenceService; +import com.realnet.Notification.Entity.NotificationService; +import org.springframework.data.domain.Page; +import com.realnet.realm.Entity.Realm; +import com.realnet.realm.Services.RealmService;import org.springframework.data.domain.Pageable; +import org.springframework.http.ResponseEntity; +import com.realnet.users.service1.AppUserServiceImpl; +import org.springframework.http.HttpStatus; +import com.realnet.users.entity1.AppUser; + + + + + + + + + + + + + + + + + + + + + + + import org.springframework.stereotype.Service; + +@Service + public class FormaService { +@Autowired +private FormaRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + + + + + + + + + + + + + + + + + +public Forma Savedata(Forma data) { + + + + + + + + + + + + + + + + + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Forma save = Repository.save(data); + return save; + } + + +// get all with pagination + public Page getAllWithPagination(Pageable page) { + return Repository.findAll(page, getUser().getUserId()); + } +public List getdetails() { + List realm = realmService.findByUserId(getUser().getUserId()); +List all = Repository.findAll(getUser().getUserId()); + + return all ; } + + +public Forma getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Forma update(Forma data,Integer id) { + Forma old = Repository.findById(id).get(); +old.setText_field(data.getText_field()); + +old.setNumber_field(data.getNumber_field()); + +old.setPhone_number(data.getPhone_number()); + +old.setParagraph_field(data.getParagraph_field()); + +old.setPassword_field(data.getPassword_field()); + +old.setTextarea(data.getTextarea()); + +old.setDate_field(data.getDate_field()); + +old.setDatetime_field(data.getDatetime_field()); + +old.setEmail_field(data.getEmail_field()); + +old.setToggle_switch (data.isToggle_switch()); + +old.setUrl_field(data.getUrl_field()); + +final Forma test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + + + + + + + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormbService.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormbService.java new file mode 100644 index 0000000..7d43508 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormbService.java @@ -0,0 +1,196 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.FormbRepository; +import com.realnet.basicp1.Entity.Formb;import java.util.List; +import java.util.ArrayList; + +import org.springframework.beans.factory.annotation.Autowired; +import com.realnet.SequenceGenerator.Service.SequenceService; +import com.realnet.Notification.Entity.NotificationService; +import org.springframework.data.domain.Page; +import com.realnet.realm.Entity.Realm; +import com.realnet.realm.Services.RealmService;import org.springframework.data.domain.Pageable; +import org.springframework.http.ResponseEntity; +import com.realnet.users.service1.AppUserServiceImpl; +import org.springframework.http.HttpStatus; +import com.realnet.users.entity1.AppUser; + + + + + + + + + + + + + + + + + + + + + + + + + import org.springframework.stereotype.Service; + +@Service + public class FormbService { +@Autowired +private FormbRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + +@Autowired + private SequenceService documentseqsequenceService; + + + + + + + + + + + + + + + + + +public Formb Savedata(Formb data) { + + + + + + +data.setDocumentseq (documentseqsequenceService.GenerateSequence("hh")); + +data.setUser_id(getUser().getUserId()); + data.setUser_name(getUser().getFullName()); + + + + + + + + + + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Formb save = Repository.save(data); + return save; + } + + +// get all with pagination + public Page getAllWithPagination(Pageable page) { + return Repository.findAll(page, getUser().getUserId()); + } +public List getdetails() { + List realm = realmService.findByUserId(getUser().getUserId()); +List all = Repository.findAll(getUser().getUserId()); + + return all ; } + + +public Formb getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Formb update(Formb data,Integer id) { + Formb old = Repository.findById(id).get(); +old.setDecimald(data.getDecimald()); + +old.setPercentagef(data.getPercentagef()); + +old.setRecaptchaf(data.getRecaptchaf()); + +old.setDocumentseq(data.getDocumentseq()); + + + +old.setSelectst(data.getSelectst()); + +old.setRadiod(data.getRadiod()); + + + +old.setA(data.isA()); + + + +old.setB(data.isB()); + + + + + + + + + + + + + +final Formb test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + + + + + + + + + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormcService.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormcService.java new file mode 100644 index 0000000..566489a --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/FormcService.java @@ -0,0 +1,173 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.FormcRepository; +import com.realnet.basicp1.Entity.Formc;import java.util.List; +import java.util.ArrayList; + +import org.springframework.beans.factory.annotation.Autowired; +import com.realnet.SequenceGenerator.Service.SequenceService; +import com.realnet.Notification.Entity.NotificationService; +import org.springframework.data.domain.Page; +import com.realnet.realm.Entity.Realm; +import com.realnet.realm.Services.RealmService;import org.springframework.data.domain.Pageable; +import org.springframework.http.ResponseEntity; +import com.realnet.users.service1.AppUserServiceImpl; +import org.springframework.http.HttpStatus; +import com.realnet.users.entity1.AppUser; + + + + + + + + + + + + + + + + + + + + + import org.springframework.stereotype.Service; + +@Service + public class FormcService { +@Autowired +private FormcRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + + + + + + + + + + + + + + + +public Formc Savedata(Formc data) { + + + + + + + + + + + + + + + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Formc save = Repository.save(data); + return save; + } + + +// get all with pagination + public Page getAllWithPagination(Pageable page) { + return Repository.findAll(page, getUser().getUserId()); + } +public List getdetails() { + List realm = realmService.findByUserId(getUser().getUserId()); +List all = Repository.findAll(getUser().getUserId()); + + return all ; } + + +public Formc getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Formc update(Formc data,Integer id) { + Formc old = Repository.findById(id).get(); +old.setCurrencys(data.getCurrencys()); + + + +old.setQrcode(data.getQrcode()); + +old.setBarcode(data.getBarcode()); + +old.setNumbers(data.getNumbers()); + +old.setNumbered(data.getNumbered()); + +old.setCalculatedadd(data.getCalculatedadd()); + +old.setChild(data.getChild()); + + + +old.setA(data.getA()); + + + +old.setB(data.getB()); + + + + + + +final Formc test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + + + + + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Formc_ListFilter1Service.java b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Formc_ListFilter1Service.java new file mode 100644 index 0000000..10b2206 --- /dev/null +++ b/testnewangular-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Formc_ListFilter1Service.java @@ -0,0 +1,47 @@ +package com.realnet.basicp1.Services; +import java.util.*; +import com.realnet.basicp1.Repository.FormcRepository; +import com.realnet.basicp1.Entity.Formc; + +import com.realnet.basicp1.Entity.Formc_ListFilter1; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.stereotype.Service; + +@Service + public class Formc_ListFilter1Service { +@Autowired +private FormcRepository Repository; + + + + + public List getlistbuilder() { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (Formc data : list) { +{ +Formc_ListFilter1 dummy = new Formc_ListFilter1(); + dummy.setId(data.getId()); + dummy.setNumbers(data.getNumbers()); + l.add(dummy); +} +} +return l;} + + + + public List getlistbuilderparam( ) { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (Formc data : list) { +{ +Formc_ListFilter1 dummy = new Formc_ListFilter1(); + dummy.setId(data.getId()); + dummy.setNumbers(data.getNumbers()); + l.add(dummy); +} +} +return l;} +} \ No newline at end of file diff --git a/testnewangular-db-d/authsec_mysql/mysql/wf_table/wf_table.sql b/testnewangular-db-d/authsec_mysql/mysql/wf_table/wf_table.sql new file mode 100755 index 0000000..bd1b894 --- /dev/null +++ b/testnewangular-db-d/authsec_mysql/mysql/wf_table/wf_table.sql @@ -0,0 +1,8 @@ +CREATE TABLE db.Forma(id BIGINT NOT NULL AUTO_INCREMENT, paragraph_field VARCHAR(400), textarea VARCHAR(400), toggle_switch VARCHAR(400), number_field int, text_field VARCHAR(400), datetime_field VARCHAR(400), phone_number VARCHAR(400), password_field VARCHAR(400), date_field Date, email_field VARCHAR(400), url_field VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE db.Formb(id BIGINT NOT NULL AUTO_INCREMENT, a bit(1), b bit(1), recaptchaf VARCHAR(400), useridf VARCHAR(400), imageuploadh VARCHAR(400), percentagef int, fileuploadj VARCHAR(400), documentseq VARCHAR(400), audioh VARCHAR(400), selectst VARCHAR(400), radiod VARCHAR(400), decimald double, videoh VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE db.Formc(id BIGINT NOT NULL AUTO_INCREMENT, numbers int, numbered int, a VARCHAR(400), valuey VARCHAR(400), onetoone VARCHAR(400), b VARCHAR(400), qrcode VARCHAR(400), currencys VARCHAR(400), barcode VARCHAR(400), datagg VARCHAR(400), calculatedadd VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE db.Child(id BIGINT NOT NULL AUTO_INCREMENT, namem VARCHAR(400), PRIMARY KEY (id)); + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts index 231b3a1..fdff417 100644 --- a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts @@ -2,14 +2,14 @@ export const LoginEnvironment = { - "templateNo": "", - "loginHeading": "", - "loginHeading2": "", - "isSignup": "", - "loginSignup": " ", - "loginSignup2": "", - "loginForgotpass": "", - "loginImage": "", - "loginImageURL": "" + "templateNo": "Template 1", + "loginHeading": "Welcome to", + "loginHeading2": "io8.dev", + "isSignup": "true", + "loginSignup": "Use your ID to sign in OR ", + "loginSignup2": "create one now", + "loginForgotpass": "FORGOT PASSWORD?", + "loginImage": "[]", + "loginImageURL": "null" } diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.html b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.html new file mode 100644 index 0000000..904bc0f --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.html @@ -0,0 +1,314 @@ + +
+
+
+

Child

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Namem + + + + + + Action + + + + + +{{user. namem }} + + + + + + + +
Who Column
+
Account ID: {{user.accountId}}
+
Created At: {{user.createdAt| date}}
+
Created By: {{user.createdBy}}
+
Updated At: {{user.updatedAt | date}}
+
Updated By: {{user.updatedBy}}
+
+
+
+ + + + + + + +
+ + + Users per page + {{pagination.firstItem + 1}} - {{pagination.lastItem + 1}} + of {{pagination.totalItems}} users + + +
+ + + +
+
+
+
+
+
+ +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] }} + {{afterText(item.fieldtext)}} +
+ +
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] | date}} + {{afterText(item.fieldtext)}} +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ]}} + {{afterText(item.fieldtext)}} +
+ +
+
+
+ + +
+ +
+ +
File Preview
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.scss b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.scss @@ -0,0 +1,78 @@ +//@import "../../../../assets/scss/var"; +.s-info-bar { + display: flex; + flex-direction: row; + justify-content: space-between; + button { + outline: none; + } +} +.delete,.heading{ + text-align: center; + color: red; +} +.entry-pg { + width: 750px; +} + +.button1::after { + content: none; +} +.button1:hover::after { + content: "ADD ROWS"; +} + +.section { + background-color: #dddddd; + height: 40px; +} + +.section p { + //color: white; + padding: 10px; + font-size: 18px; +} + +.clr-input { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + padding: 0.75rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.clr-file { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + //padding: 0.6rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.center { + text-align: center; +} +select{ + width: 100%; + margin-top: 3px; + padding: 5px 5px; + border: 1px solid #ccc; + border-radius: 4px; +} +input[type=text],[type=date],[type=number],textarea { + width: 100%; + padding: 15px 15px; + background-color:rgb(255, 255, 255); + // margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} +.error_mess { + color: red; +} diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.ts new file mode 100644 index 0000000..6403514 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.component.ts @@ -0,0 +1,216 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Childservice} from './Child.service'; +import { AbstractControl, FormArray, FormBuilder, FormGroup, Validators, ValidationErrors } from '@angular/forms'; +import { ExtensionService } from 'src/app/services/fnd/extension.service'; +import { DashboardContentModel2 } from 'src/app/models/builder/dashboard'; +import { Childcardvariable } from './Child_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Child', + templateUrl: './Child.component.html', + styleUrls: ['./Child.component.scss'] +}) +export class ChildComponent implements OnInit { + cardButton = Childcardvariable.cardButton; + cardmodeldata = Childcardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Childcardvariable.cardButton; + cardmodal; changeView(){ + this.isCardview = !this.isCardview; + } + beforeText(fieldtext: string): string { // Extract the text before the first '<' + const index = fieldtext.indexOf('<'); + return index !== -1 ? fieldtext.substring(0, index) : fieldtext; + } + afterText(fieldtext: string): string { // Extract the text after the last '>' + const index = fieldtext.lastIndexOf('>'); + return index !== -1 ? fieldtext.substring(index + 1) : ''; + } + transform(fieldtext: string): string { + const match = fieldtext.match(/<([^>]*)>/); + return match ? match[1] : ''; // Extract the text between '<' and '>' + } + userrole; + rowSelected :any= {}; + modaldelete=false; + modalEdit=false; + modalAdd= false; + public entryForm: FormGroup; + loading = false; + product; + modalOpenedforNewLine = false; + newLine:any; + additionalFieldsFromBackend: any[] = []; + formcode = 'Child_formCode' +tableName = 'Child'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Childservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + ) { } +// component button + ngOnInit(): void { + if(this.cardmodeldata !== ''){ + this.cardmodal = JSON.parse(this.cardmodeldata); + this.dashboardArray = this.cardmodal.dashboard.slice(); + console.log(this.dashboardArray) + } + this.userrole=this.userInfoService.getRoles(); + this.getData(); + this.entryForm = this._fb.group({ +namem : [null], + + + + + }); // component_button200 + // form code start + this.extensionService.getJsonObjectsByFormCodeList(this.formcode).subscribe(data => { + console.log(data); + const jsonArray = data.map((str) => JSON.parse(str)); + this.additionalFieldsFromBackend = jsonArray; + this.checkFormCode = this.additionalFieldsFromBackend.some(field => field.formCode === "Child_formCode"); + console.log(this.checkFormCode); + console.log(this.additionalFieldsFromBackend); + if (this.additionalFieldsFromBackend && this.additionalFieldsFromBackend.length > 0) { + this.additionalFieldsFromBackend.forEach(field => { + if (field.formCode === this.formcode) { + if (!this.entryForm.contains(field.extValue)) { + // Add the control only if it doesn't exist in the form + this.entryForm.addControl(field.extValue, this._fb.control(field.fieldValue)); + } + } + }); + } + }); + console.log(this.entryForm.value); + // form code end + + + + } + + + error; + getData() { + this.mainService.getAll().subscribe((data) => { + console.log(data); + this.product = data; + if(this.product.length==0){ + this.error="No Data Available" + } + },(error) => { + console.log(error); + if(error){ + this.error="Server Error"; + } + }); + } + onEdit(row) { + this.rowSelected = row; + + + + this.modalEdit = true; + } + onDelete(row) { + this.rowSelected = row; + this.modaldelete=true; + } + delete(id) + { + this.modaldelete = false; + console.log("in delete "+id); + this.mainService.delete(id).subscribe( + (data) => { + console.log(data); + this.ngOnInit(); + if (data) { this.toastr.success('Deleted successfully'); } + }); + } + onUpdate(id) { + this.modalEdit = false; + + + //console.log("in update"); + console.log("id " + id); + console.log(this.rowSelected); + //console.log("out update"); + this.mainService.update(id, this.rowSelected).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Update Successfully"); + } + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("update Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Updated"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Updated"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } +onCreate() { + this.modalAdd=false; + + + this.mainService.create(this.entryForm.value).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Added Successfully"); + } + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("Added Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Added"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Added"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } + goToAdd(row) { +this.modalAdd = true; this.submitted = false; + + + } + submitted = false; +onSubmit() { + console.log(this.entryForm.value); + this.submitted = true; + if (this.entryForm.invalid) { + return; + }this.onCreate(); + +} + + +// updateaction +} + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.service.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.service.ts new file mode 100644 index 0000000..025ce9d --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child.service.ts @@ -0,0 +1,35 @@ +import { Injectable } from '@angular/core'; +import { Observable } from "rxjs"; +import { HttpClient, HttpHeaders, HttpParams, } from "@angular/common/http"; +import { ApiRequestService } from "src/app/services/api/api-request.service"; +import { environment } from 'src/environments/environment'; +@Injectable({ + providedIn: 'root' +}) +export class Childservice{ + private baseURL = "Child/Child" ; constructor( + private http: HttpClient, + private apiRequest: ApiRequestService, + ) { } + getAll(page?: number, size?: number): Observable { + return this.apiRequest.get(this.baseURL); + } + getById(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.get(_http); + } + create(data: any): Observable { + return this.apiRequest.post(this.baseURL, data); + } + update(id: number, data: any): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.put(_http, data); + } + delete(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.delete(_http); + } + + +// updateaction +} \ No newline at end of file diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child_cardvariable.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child_cardvariable.ts new file mode 100644 index 0000000..587aaf8 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Child/Child_cardvariable.ts @@ -0,0 +1,4 @@ +export const Childcardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.html b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.html new file mode 100644 index 0000000..3eafce2 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.html @@ -0,0 +1,635 @@ + +
+
+
+

Forma

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Text Field + + + + Number Field + + + + Phone Number + + + + Paragraph Field + + + + Password Field + + + + Textarea + + + + Date Field + + + + Datetime Field + + + + Email Field + + + + Toggle Switch + + + + Url Field + + + + + + Action + + + + + +{{user. text_field }} + + +{{user. number_field }} + + +{{user. phone_number }} + + + + + +{{user. password_field }} + + + + + + +{{user. date_field }} + + +{{user. datetime_field }} + + +{{user. email_field }} + + +{{user. toggle_switch }} + + +{{user.url_field}} + + + + + + + +
Who Column
+
Account ID: {{user.accountId}}
+
Created At: {{user.createdAt| date}}
+
Created By: {{user.createdBy}}
+
Updated At: {{user.updatedAt | date}}
+
Updated By: {{user.updatedBy}}
+
+
+
+ + + + + + + +
+ + + Users per page + {{pagination.firstItem + 1}} - {{pagination.lastItem + 1}} + of {{pagination.totalItems}} users + + +
+ + + +
+
+
+
+
+
+ +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] }} + {{afterText(item.fieldtext)}} +
+ +
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] | date}} + {{afterText(item.fieldtext)}} +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ]}} + {{afterText(item.fieldtext)}} +
+ +
+
+
+ + +
+ +
+ +
File Preview
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.scss b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.scss @@ -0,0 +1,78 @@ +//@import "../../../../assets/scss/var"; +.s-info-bar { + display: flex; + flex-direction: row; + justify-content: space-between; + button { + outline: none; + } +} +.delete,.heading{ + text-align: center; + color: red; +} +.entry-pg { + width: 750px; +} + +.button1::after { + content: none; +} +.button1:hover::after { + content: "ADD ROWS"; +} + +.section { + background-color: #dddddd; + height: 40px; +} + +.section p { + //color: white; + padding: 10px; + font-size: 18px; +} + +.clr-input { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + padding: 0.75rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.clr-file { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + //padding: 0.6rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.center { + text-align: center; +} +select{ + width: 100%; + margin-top: 3px; + padding: 5px 5px; + border: 1px solid #ccc; + border-radius: 4px; +} +input[type=text],[type=date],[type=number],textarea { + width: 100%; + padding: 15px 15px; + background-color:rgb(255, 255, 255); + // margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} +.error_mess { + color: red; +} diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.ts new file mode 100644 index 0000000..48fd380 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.component.ts @@ -0,0 +1,495 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Formaservice} from './Forma.service'; +import { AbstractControl, FormArray, FormBuilder, FormGroup, Validators, ValidationErrors } from '@angular/forms'; +import { ExtensionService } from 'src/app/services/fnd/extension.service'; +import { DashboardContentModel2 } from 'src/app/models/builder/dashboard'; +import { Formacardvariable } from './Forma_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Forma', + templateUrl: './Forma.component.html', + styleUrls: ['./Forma.component.scss'] +}) +export class FormaComponent implements OnInit { + cardButton = Formacardvariable.cardButton; + cardmodeldata = Formacardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Formacardvariable.cardButton; + cardmodal; changeView(){ + this.isCardview = !this.isCardview; + } + beforeText(fieldtext: string): string { // Extract the text before the first '<' + const index = fieldtext.indexOf('<'); + return index !== -1 ? fieldtext.substring(0, index) : fieldtext; + } + afterText(fieldtext: string): string { // Extract the text after the last '>' + const index = fieldtext.lastIndexOf('>'); + return index !== -1 ? fieldtext.substring(index + 1) : ''; + } + transform(fieldtext: string): string { + const match = fieldtext.match(/<([^>]*)>/); + return match ? match[1] : ''; // Extract the text between '<' and '>' + } + userrole; + rowSelected :any= {}; + modaldelete=false; + modalEdit=false; + modalAdd= false; + public entryForm: FormGroup; + loading = false; + product; + modalOpenedforNewLine = false; + newLine:any; + additionalFieldsFromBackend: any[] = []; + formcode = 'Forma_formCode' +tableName = 'Forma'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Formaservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + ) { } +// component button + ngOnInit(): void { + if(this.cardmodeldata !== ''){ + this.cardmodal = JSON.parse(this.cardmodeldata); + this.dashboardArray = this.cardmodal.dashboard.slice(); + console.log(this.dashboardArray) + } + this.userrole=this.userInfoService.getRoles(); + this.getData(); + this.entryForm = this._fb.group({ +text_field : [null], + +number_field : [null,[Validators.required]], + +phone_number: ['+91'], + +paragraph_field : [null], + +password_field : [null], +confirmpassword_field : [null], + +textarea : [null], + +date_field : [null], + +datetime_field : [null], + +email_field : [null], + +toggle_switch : [false], + +url_field : [null], + + + + + + + + + + + }, { + validator: Confirmedpassword_fieldValidator('password_field', 'confirmpassword_field') + + + + + + + + + + + + + + }); // component_button200 + // form code start + this.extensionService.getJsonObjectsByFormCodeList(this.formcode).subscribe(data => { + console.log(data); + const jsonArray = data.map((str) => JSON.parse(str)); + this.additionalFieldsFromBackend = jsonArray; + this.checkFormCode = this.additionalFieldsFromBackend.some(field => field.formCode === "Forma_formCode"); + console.log(this.checkFormCode); + console.log(this.additionalFieldsFromBackend); + if (this.additionalFieldsFromBackend && this.additionalFieldsFromBackend.length > 0) { + this.additionalFieldsFromBackend.forEach(field => { + if (field.formCode === this.formcode) { + if (!this.entryForm.contains(field.extValue)) { + // Add the control only if it doesn't exist in the form + this.entryForm.addControl(field.extValue, this._fb.control(field.fieldValue)); + } + } + }); + } + }); + console.log(this.entryForm.value); + // form code end + + + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + + + + + + + + + error; + getData() { + this.mainService.getAll().subscribe((data) => { + console.log(data); + this.product = data; + if(this.product.length==0){ + this.error="No Data Available" + } + },(error) => { + console.log(error); + if(error){ + this.error="Server Error"; + } + }); + } + onEdit(row) { + this.rowSelected = row; + + + + + + + + + + + + + + + + + + + + + + + + this.modalEdit = true; + } + onDelete(row) { + this.rowSelected = row; + this.modaldelete=true; + } + delete(id) + { + this.modaldelete = false; + console.log("in delete "+id); + this.mainService.delete(id).subscribe( + (data) => { + console.log(data); + this.ngOnInit(); + if (data) { this.toastr.success('Deleted successfully'); } + }); + } + onUpdate(id) { + this.modalEdit = false; + + + + + + + + + + + + + + + + + + + + + + + //console.log("in update"); + console.log("id " + id); + console.log(this.rowSelected); + //console.log("out update"); + this.mainService.update(id, this.rowSelected).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Update Successfully"); + } + + + + + + + + + + + + + + + + + + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("update Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Updated"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Updated"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } +onCreate() { + this.modalAdd=false; + + + + + + + + + + + + + + + + + + + + + + + this.mainService.create(this.entryForm.value).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Added Successfully"); + } + + + + + + + + + + + + + + + + + + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("Added Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Added"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Added"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } + goToAdd(row) { +this.modalAdd = true; this.submitted = false; + + + + + + + + + + + + + + + + + + + + + + + } + submitted = false; +onSubmit() { + console.log(this.entryForm.value); + this.submitted = true; + if (this.entryForm.invalid) { + return; + }this.onCreate(); + +} + + + + +isValidPhone_number(phone: string): boolean { + const phonePattern = /^(\+[1-9][0-9]{0,2})?[1-9][0-9]{9}$/; + return phonePattern.test(phone); +} + +rsModalparagraph_field = false; + goToReplaceStringparagraph_field (row){ + this.rowSelected = row; this.rsModalparagraph_field =true; } + +newpHidepassword_field: boolean = true; + newIconpassword_field: string = "eye"; +newShapeChangerpassword_field() { +this.newpHidepassword_field = !this.newpHidepassword_field; + if(this.newpHidepassword_field){ +this.newIconpassword_field = 'eye' } else { this.newIconpassword_field = 'eye-hide' } +} + + newaddpHidepassword_field: boolean = true; + newaddIconpassword_field: string = "eye"; +newaddChangerpassword_field() { this.newaddpHidepassword_field = !this.newaddpHidepassword_field; + if(this.newaddpHidepassword_field){ this.newaddIconpassword_field = 'eye' } else { + this.newaddIconpassword_field = 'eye-hide' } } + +rsModaltextarea = false; +goToReplaceStringtextarea(row){ +this.rowSelected = row; this.rsModaltextarea =true; } + + + + + +isValidemail_field(email: string): boolean { + const emailPattern = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; + return emailPattern.test(email); } + + + +isValidurl_field(url: string): boolean { + return /^(https?|ftp):\/\/[^\s/$.?#].[^\s]*$/.test(url); } + goTourl_fieldUrl(val){ window.open(val) } + +// updateaction +} + + + + + + + +export function Confirmedpassword_fieldValidator(controlName: string, matchingControlName: string){ + return (formGroup: FormGroup) => { + const control = formGroup.controls[controlName]; + const matchingControl = formGroup.controls[matchingControlName]; + if (matchingControl.errors && !matchingControl.errors.confirmedpassword_fieldValidator) { + return; + } + if (control.value !== matchingControl.value) { + matchingControl.setErrors({ confirmedpassword_fieldValidator: true }); + } else { + matchingControl.setErrors(null); + } + } +} + + + + + + + + + + + + + + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.service.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.service.ts new file mode 100644 index 0000000..cafa9a9 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma.service.ts @@ -0,0 +1,55 @@ +import { Injectable } from '@angular/core'; +import { Observable } from "rxjs"; +import { HttpClient, HttpHeaders, HttpParams, } from "@angular/common/http"; +import { ApiRequestService } from "src/app/services/api/api-request.service"; +import { environment } from 'src/environments/environment'; +@Injectable({ + providedIn: 'root' +}) +export class Formaservice{ + private baseURL = "Forma/Forma" ; constructor( + private http: HttpClient, + private apiRequest: ApiRequestService, + ) { } + getAll(page?: number, size?: number): Observable { + return this.apiRequest.get(this.baseURL); + } + getById(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.get(_http); + } + create(data: any): Observable { + return this.apiRequest.post(this.baseURL, data); + } + update(id: number, data: any): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.put(_http, data); + } + delete(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.delete(_http); + } + + + + + + + + + + + + + + + + + + + + + + +// updateaction +} \ No newline at end of file diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma_cardvariable.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma_cardvariable.ts new file mode 100644 index 0000000..03f6526 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Forma/Forma_cardvariable.ts @@ -0,0 +1,4 @@ +export const Formacardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.html b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.html new file mode 100644 index 0000000..59bf2d8 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.html @@ -0,0 +1,1006 @@ + +
+
+
+

Formb

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Decimald + + + + Percentagef + + + + recaptchaf + + + + documentseq + + + + + + selectst + + + + Radiod + + + + + + a + + + + + b + + + + + + + + + + + + + + + + + Action + + + + + +{{user. decimald }} + + +{{user. percentagef }} + + +{{user. recaptchaf }} + + +{{user. documentseq }} + + + + +{{user. selectst }} + + +{{user. radiod }} + + + + +{{user. a}} + + + +{{user. b}} + + + + + + + + + + + + + + + + + + +
Who Column
+
Account ID: {{user.accountId}}
+
Created At: {{user.createdAt| date}}
+
Created By: {{user.createdBy}}
+
Updated At: {{user.updatedAt | date}}
+
Updated By: {{user.updatedBy}}
+
+
+
+ + + + + + + +
+ + + Users per page + {{pagination.firstItem + 1}} - {{pagination.lastItem + 1}} + of {{pagination.totalItems}} users + + +
+ + + +
+
+
+
+
+
+ +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] }} + {{afterText(item.fieldtext)}} +
+ +
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] | date}} + {{afterText(item.fieldtext)}} +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ]}} + {{afterText(item.fieldtext)}} +
+ +
+
+
+ + +
+ +
+ +
File Preview
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.scss b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.scss @@ -0,0 +1,78 @@ +//@import "../../../../assets/scss/var"; +.s-info-bar { + display: flex; + flex-direction: row; + justify-content: space-between; + button { + outline: none; + } +} +.delete,.heading{ + text-align: center; + color: red; +} +.entry-pg { + width: 750px; +} + +.button1::after { + content: none; +} +.button1:hover::after { + content: "ADD ROWS"; +} + +.section { + background-color: #dddddd; + height: 40px; +} + +.section p { + //color: white; + padding: 10px; + font-size: 18px; +} + +.clr-input { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + padding: 0.75rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.clr-file { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + //padding: 0.6rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.center { + text-align: center; +} +select{ + width: 100%; + margin-top: 3px; + padding: 5px 5px; + border: 1px solid #ccc; + border-radius: 4px; +} +input[type=text],[type=date],[type=number],textarea { + width: 100%; + padding: 15px 15px; + background-color:rgb(255, 255, 255); + // margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} +.error_mess { + color: red; +} diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.ts new file mode 100644 index 0000000..7ac720e --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.component.ts @@ -0,0 +1,736 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Formbservice} from './Formb.service'; +import { AbstractControl, FormArray, FormBuilder, FormGroup, Validators, ValidationErrors } from '@angular/forms'; +import { ExtensionService } from 'src/app/services/fnd/extension.service'; +import { DashboardContentModel2 } from 'src/app/models/builder/dashboard'; +import { Formbcardvariable } from './Formb_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Formb', + templateUrl: './Formb.component.html', + styleUrls: ['./Formb.component.scss'] +}) +export class FormbComponent implements OnInit { + cardButton = Formbcardvariable.cardButton; + cardmodeldata = Formbcardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Formbcardvariable.cardButton; + cardmodal; changeView(){ + this.isCardview = !this.isCardview; + } + beforeText(fieldtext: string): string { // Extract the text before the first '<' + const index = fieldtext.indexOf('<'); + return index !== -1 ? fieldtext.substring(0, index) : fieldtext; + } + afterText(fieldtext: string): string { // Extract the text after the last '>' + const index = fieldtext.lastIndexOf('>'); + return index !== -1 ? fieldtext.substring(index + 1) : ''; + } + transform(fieldtext: string): string { + const match = fieldtext.match(/<([^>]*)>/); + return match ? match[1] : ''; // Extract the text between '<' and '>' + } + userrole; + rowSelected :any= {}; + modaldelete=false; + modalEdit=false; + modalAdd= false; + public entryForm: FormGroup; + loading = false; + product; + modalOpenedforNewLine = false; + newLine:any; + additionalFieldsFromBackend: any[] = []; + formcode = 'Formb_formCode' +tableName = 'Formb'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Formbservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + ) { } +// component button + ngOnInit(): void { + if(this.cardmodeldata !== ''){ + this.cardmodal = JSON.parse(this.cardmodeldata); + this.dashboardArray = this.cardmodal.dashboard.slice(); + console.log(this.dashboardArray) + } + this.userrole=this.userInfoService.getRoles(); + this.getData(); + this.entryForm = this._fb.group({ +decimald : [null,[Validators.required]], + +percentagef : [null,[Validators.required]], + +recaptchaf : [null, [Validators.required,this.checkrecaptchaf.bind(this)]], + +documentseq : [null], + + + +selectst : [null], + +radiod : [null], + + + +a:[false], + + + +b:[false], + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + }); // component_button200 + // form code start + this.extensionService.getJsonObjectsByFormCodeList(this.formcode).subscribe(data => { + console.log(data); + const jsonArray = data.map((str) => JSON.parse(str)); + this.additionalFieldsFromBackend = jsonArray; + this.checkFormCode = this.additionalFieldsFromBackend.some(field => field.formCode === "Formb_formCode"); + console.log(this.checkFormCode); + console.log(this.additionalFieldsFromBackend); + if (this.additionalFieldsFromBackend && this.additionalFieldsFromBackend.length > 0) { + this.additionalFieldsFromBackend.forEach(field => { + if (field.formCode === this.formcode) { + if (!this.entryForm.contains(field.extValue)) { + // Add the control only if it doesn't exist in the form + this.entryForm.addControl(field.extValue, this._fb.control(field.fieldValue)); + } + } + }); + } + }); + console.log(this.entryForm.value); + // form code end + + + + +this.generaterecaptchaf() + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + + + + +FileDataImageuploadh: any[]; + selectedImageuploadh: any[]; + +FileDataAudioh: any[]; + selectedAudioh: any[]; + +FileDataVideoh: any[]; + selectedVideoh: any[]; + + + error; + getData() { + this.mainService.getAll().subscribe((data) => { + console.log(data); + this.product = data; + if(this.product.length==0){ + this.error="No Data Available" + } + },(error) => { + console.log(error); + if(error){ + this.error="Server Error"; + } + }); + } + onEdit(row) { + this.rowSelected = row; + + + + + + + + + + + + + + + + + this.selectedfileuploadj = []; + this.mainService.uploadfilegetByIdfileuploadj(row.id,this.tableName).subscribe(uploaddata =>{ + console.log(uploaddata); + this.FileDatafileuploadj = uploaddata; + + }) + + this.selectedimageuploadh = []; + this.mainService.uploadImageuploadhgetById(row.id,this.tableName).subscribe(uploaddata =>{ + console.log(uploaddata); + this.FileDataimageuploadh = uploaddata; + + }) + + this.selectedaudioh = []; + this.mainService.uploadAudiohgetById(row.id,this.tableName).subscribe(uploaddata =>{ + console.log(uploaddata); + this.FileDataaudioh = uploaddata; + + }) + + this.selectedvideoh = []; + this.mainService.uploadVideohgetById(row.id,this.tableName).subscribe(uploaddata =>{ + console.log(uploaddata); + this.FileDatavideoh = uploaddata; + + }) + + + this.modalEdit = true; + } + onDelete(row) { + this.rowSelected = row; + this.modaldelete=true; + } + delete(id) + { + this.modaldelete = false; + console.log("in delete "+id); + this.mainService.delete(id).subscribe( + (data) => { + console.log(data); + this.ngOnInit(); + if (data) { this.toastr.success('Deleted successfully'); } + }); + } + onUpdate(id) { + this.modalEdit = false; + + + + + + + + + + + + + + + + + + + + + + + + + //console.log("in update"); + console.log("id " + id); + console.log(this.rowSelected); + //console.log("out update"); + this.mainService.update(id, this.rowSelected).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Update Successfully"); + } + + + + + + + + + + + + + + + + + +for (let i = 0; i < this.selectedfileuploadj.length; i++){ + + this.mainService.uploadfilefileuploadj(data.id,this.tableName,this.selectedfileuploadj[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + +for (let i = 0; i < this.selectedimageuploadh.length; i++){ + + this.mainService.uploadImageuploadh(data.id,this.tableName,this.selectedimageuploadh[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + +for (let i = 0; i < this.selectedaudioh.length; i++){ + + this.mainService.uploadAudioh(data.id,this.tableName,this.selectedaudioh[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + +for (let i = 0; i < this.selectedvideoh.length; i++){ + + this.mainService.uploadVideoh(data.id,this.tableName,this.selectedvideoh[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("update Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Updated"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Updated"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } +onCreate() { + this.modalAdd=false; + + + + + + + + + + + + + + + + + + + + + + + + + this.mainService.create(this.entryForm.value).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Added Successfully"); + } + + + + + + + + + + + + + + + + +for (let i = 0; i < this.selectedfileuploadj.length; i++){ + + this.mainService.uploadfilefileuploadj(data.id,this.tableName,this.selectedfileuploadj[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + +for (let i = 0; i < this.selectedimageuploadh.length; i++){ + + this.mainService.uploadImageuploadh(data.id,this.tableName,this.selectedimageuploadh[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + +for (let i = 0; i < this.selectedaudioh.length; i++){ + + this.mainService.uploadAudioh(data.id,this.tableName,this.selectedaudioh[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + +for (let i = 0; i < this.selectedvideoh.length; i++){ + + this.mainService.uploadVideoh(data.id,this.tableName,this.selectedvideoh[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("Added Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Added"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Added"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } + goToAdd(row) { +this.modalAdd = true; this.submitted = false; + + + + + + + + + + + + + + + +this.FileDatafileuploadj = []; +this.selectedfileuploadj =[]; + +this.FileDataImageuploadh = []; +this.selectedImageuploadh =[]; + +this.FileDataAudioh = []; +this.selectedAudioh =[]; + +this.FileDataVideoh = []; +this.selectedVideoh =[]; + + + } + submitted = false; +onSubmit() { + console.log(this.entryForm.value); + this.submitted = true; + if (this.entryForm.invalid) { + return; + }this.onCreate(); + +} + + + + +recaptchafCode = ''; +generaterecaptchaf (): void { + const possibleCharacters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; + const codeLength = 6; // Change to desired length + + let recaptchaf= ''; + for (let i = 0; i < codeLength; i++) { + const randomIndex = Math.floor(Math.random() * possibleCharacters.length); + recaptchaf += possibleCharacters.charAt(randomIndex); + } + this.recaptchafCode = recaptchaf; +} + +checkrecaptchaf(control: AbstractControl): ValidationErrors | null { + if (control.value !== this.recaptchafCode) { + return { recaptchafMismatch: true }; + } + return null; +} + +recaptchafMismatch = false; + +checkrecaptchafEdit(): void { + if (this.rowSelected.recaptchaf !== this. recaptchafCode) { + this. recaptchafMismatch = true; } else { this.recaptchafMismatch = false; } } + + + + + + + +updateradiod (radiod : string): void { + this.entryForm.get('radiod').setValue(radiod); } + +updateradiodEdit(radiod : string): void { this.rowSelected.radiod = radiod } + ; + + + +filePreviewfileuploadj: string | ArrayBuffer | null = null; +FileDatafileuploadj: {uploadedfile_name?:any, filePreview: string | ArrayBuffer | null }[] = []; // Initialize the array +selectedfileuploadj: File[]=[]; +public onFileChangedfileuploadj(event, index) { + const files = event.target.files; + for (let i = 0; i < files.length; i++) { + const file = files[i]; + this.FileDatafileuploadj[index].uploadedfile_name = files[i].name; + this.selectedfileuploadj.push(files[i]); + if (file.type.startsWith('file/')) { + const reader = new FileReader(); + reader.onload = (e) => { + // Set the file preview source + const filePreview = e.target?.result as string; + this.FileDatafileuploadj[index] = { + ...this.FileDatafileuploadj[index], // Preserve existing properties + filePreview: filePreview // Update only the filePreview property + }; + }; + reader.readAsDataURL(file); + } + } +} + onAddLinesfileuploadj(){ + this.FileDatafileuploadj.push({ + uploadedfile_name: "", + filePreview: "", + // f3: "", + }); + } + deleteRowfileuploadj(index,id) { + this.FileDatafileuploadj.splice(index, 1); + + if(id){ + this.mainService.uploadfiledeletefileuploadj(id).subscribe(data =>{ + console.log(data); + }) + } + } + +filePreviewimageuploadh: string | ArrayBuffer | null = null; +FileDataimageuploadh: {uploadedfile_name?:any, filePreview: string | ArrayBuffer | null }[] = []; // Initialize the array +selectedimageuploadh: File[]=[]; +public onFileChangedimageuploadh(event, index) { + const files = event.target.files; + for (let i = 0; i < files.length; i++) { + const file = files[i]; + this.FileDataimageuploadh[index].uploadedfile_name = files[i].name; + this.selectedimageuploadh.push(files[i]); + if (file.type.startsWith('image/')) { + const reader = new FileReader(); + reader.onload = (e) => { + // Set the file preview source + const filePreview = e.target?.result as string; + this.FileDataimageuploadh[index] = { + ...this.FileDataimageuploadh[index], // Preserve existing properties + filePreview: filePreview // Update only the filePreview property + }; + }; + reader.readAsDataURL(file); + } + } +} + onAddLinesimageuploadh(){ + this.FileDataimageuploadh.push({ + uploadedfile_name: "", + filePreview: "", + // f3: "", + }); + } + deleteRowimageuploadh(index,id) { + this.FileDataimageuploadh.splice(index, 1); + + if(id){ + this.mainService.uploadImageuploadhdelete(id).subscribe(data =>{ + console.log(data); + }) + } + } + +filePreviewaudioh: string | ArrayBuffer | null = null; +FileDataaudioh: {uploadedfile_name?:any, filePreview: string | ArrayBuffer | null }[] = []; // Initialize the array +selectedaudioh: File[]=[]; +public onFileChangedaudioh(event, index) { + const files = event.target.files; + for (let i = 0; i < files.length; i++) { + const file = files[i]; + this.FileDataaudioh[index].uploadedfile_name = files[i].name; + this.selectedaudioh.push(files[i]); + if (file.type.startsWith('audio/')) { + const reader = new FileReader(); + reader.onload = (e) => { + // Set the file preview source + const filePreview = e.target?.result as string; + this.FileDataaudioh[index] = { + ...this.FileDataaudioh[index], // Preserve existing properties + filePreview: filePreview // Update only the filePreview property + }; + }; + reader.readAsDataURL(file); + } + } +} + onAddLinesaudioh(){ + this.FileDataaudioh.push({ + uploadedfile_name: "", + filePreview: "", + // f3: "", + }); + } + deleteRowaudioh(index,id) { + this.FileDataaudioh.splice(index, 1); + + if(id){ + this.mainService.uploadAudiohdelete(id).subscribe(data =>{ + console.log(data); + }) + } + } + +filePreviewvideoh: string | ArrayBuffer | null = null; +FileDatavideoh: {uploadedfile_name?:any, filePreview: string | ArrayBuffer | null }[] = []; // Initialize the array +selectedvideoh: File[]=[]; +public onFileChangedvideoh(event, index) { + const files = event.target.files; + for (let i = 0; i < files.length; i++) { + const file = files[i]; + this.FileDatavideoh[index].uploadedfile_name = files[i].name; + this.selectedvideoh.push(files[i]); + if (file.type.startsWith('video/')) { + const reader = new FileReader(); + reader.onload = (e) => { + // Set the file preview source + const filePreview = e.target?.result as string; + this.FileDatavideoh[index] = { + ...this.FileDatavideoh[index], // Preserve existing properties + filePreview: filePreview // Update only the filePreview property + }; + }; + reader.readAsDataURL(file); + } + } +} + onAddLinesvideoh(){ + this.FileDatavideoh.push({ + uploadedfile_name: "", + filePreview: "", + // f3: "", + }); + } + deleteRowvideoh(index,id) { + this.FileDatavideoh.splice(index, 1); + + if(id){ + this.mainService.uploadVideohdelete(id).subscribe(data =>{ + console.log(data); + }) + } + } + +// updateaction +} + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.service.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.service.ts new file mode 100644 index 0000000..04ae43b --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb.service.ts @@ -0,0 +1,109 @@ +import { Injectable } from '@angular/core'; +import { Observable } from "rxjs"; +import { HttpClient, HttpHeaders, HttpParams, } from "@angular/common/http"; +import { ApiRequestService } from "src/app/services/api/api-request.service"; +import { environment } from 'src/environments/environment'; +@Injectable({ + providedIn: 'root' +}) +export class Formbservice{ + private baseURL = "Formb/Formb" ; constructor( + private http: HttpClient, + private apiRequest: ApiRequestService, + ) { } + getAll(page?: number, size?: number): Observable { + return this.apiRequest.get(this.baseURL); + } + getById(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.get(_http); + } + create(data: any): Observable { + return this.apiRequest.post(this.baseURL, data); + } + update(id: number, data: any): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.put(_http, data); + } + delete(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.delete(_http); + } + + + + + + + + + + + + + + + + + uploadfilefileuploadj(ref:any, Formb:any, file:any): Observable{ + const formData = new FormData(); + formData.append('file', file); + return this.apiRequest.postFormData(`FileUpload/Uploadeddocs/${ref}/${Formb}`, formData); + } + + uploadfilegetByIdfileuploadj(ref:any, Formb:any,): Observable { + return this.apiRequest.get(`FileUpload/Uploadeddocs/${ref}/${Formb}`); + } + + + uploadfiledeletefileuploadj(id: number): Observable { + return this.apiRequest.delete(`FileUpload/Uploadeddocs/${id}`); + } + + uploadImageuploadh(ref:any, Formb:any, file:any): Observable{ + const formData = new FormData(); + formData.append('file', file); + return this.apiRequest.postFormData(`FileUpload/Uploadeddocs/${ref}/${Formb}`, formData); + } + + uploadImageuploadhgetById(ref:any, Formb:any,): Observable { + return this.apiRequest.get(`FileUpload/Uploadeddocs/${ref}/${Formb}`); + } + + + uploadImageuploadhdelete(id: number): Observable { + return this.apiRequest.delete(`FileUpload/Uploadeddocs/${id}`); + } + + uploadAudioh(ref:any, Formb:any, file:any): Observable{ + const formData = new FormData(); + formData.append('file', file); + return this.apiRequest.postFormData(`FileUpload/Uploadeddocs/${ref}/${Formb}`, formData); + } + + uploadAudiohgetById(ref:any, Formb:any,): Observable { + return this.apiRequest.get(`FileUpload/Uploadeddocs/${ref}/${Formb}`); + } + + + uploadAudiohdelete(id: number): Observable { + return this.apiRequest.delete(`FileUpload/Uploadeddocs/${id}`); + } + + uploadVideoh(ref:any, Formb:any, file:any): Observable{ + const formData = new FormData(); + formData.append('file', file); + return this.apiRequest.postFormData(`FileUpload/Uploadeddocs/${ref}/${Formb}`, formData); + } + + uploadVideohgetById(ref:any, Formb:any,): Observable { + return this.apiRequest.get(`FileUpload/Uploadeddocs/${ref}/${Formb}`); + } + + + uploadVideohdelete(id: number): Observable { + return this.apiRequest.delete(`FileUpload/Uploadeddocs/${id}`); + } + +// updateaction +} \ No newline at end of file diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb_cardvariable.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb_cardvariable.ts new file mode 100644 index 0000000..07a4ca7 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formb/Formb_cardvariable.ts @@ -0,0 +1,4 @@ +export const Formbcardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.html b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.html new file mode 100644 index 0000000..5f434b0 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.html @@ -0,0 +1,783 @@ + +
+
+
+

Formc

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Currencys + + + + + + Qrcode + + + + Barcode + + + + Numbers + + + + Numbered + + + + + + + + namem + + + + + + + a + + + + + b + + + + + + + + + + + Action + + + + + +{{user. currencys }} + + + + +{{user. qrcode }} + + +{{user. barcode }} + + +{{user. numbers }} + + +{{user. numbered }} + + + + + + +{{user.child.namem}} + + + + + + +{{user. a}} + + + +{{user. b}} + + + + + + + + + + + + +
Who Column
+
Account ID: {{user.accountId}}
+
Created At: {{user.createdAt| date}}
+
Created By: {{user.createdBy}}
+
Updated At: {{user.updatedAt | date}}
+
Updated By: {{user.updatedBy}}
+
+
+
+ + + + + + + +
+ + + Users per page + {{pagination.firstItem + 1}} - {{pagination.lastItem + 1}} + of {{pagination.totalItems}} users + + +
+ + + +
+
+
+
+
+
+ +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] }} + {{afterText(item.fieldtext)}} +
+ +
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] | date}} + {{afterText(item.fieldtext)}} +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ]}} + {{afterText(item.fieldtext)}} +
+ +
+
+
+ + +
+ +
+ +
File Preview
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.scss b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.scss @@ -0,0 +1,78 @@ +//@import "../../../../assets/scss/var"; +.s-info-bar { + display: flex; + flex-direction: row; + justify-content: space-between; + button { + outline: none; + } +} +.delete,.heading{ + text-align: center; + color: red; +} +.entry-pg { + width: 750px; +} + +.button1::after { + content: none; +} +.button1:hover::after { + content: "ADD ROWS"; +} + +.section { + background-color: #dddddd; + height: 40px; +} + +.section p { + //color: white; + padding: 10px; + font-size: 18px; +} + +.clr-input { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + padding: 0.75rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.clr-file { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + //padding: 0.6rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.center { + text-align: center; +} +select{ + width: 100%; + margin-top: 3px; + padding: 5px 5px; + border: 1px solid #ccc; + border-radius: 4px; +} +input[type=text],[type=date],[type=number],textarea { + width: 100%; + padding: 15px 15px; + background-color:rgb(255, 255, 255); + // margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} +.error_mess { + color: red; +} diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.ts new file mode 100644 index 0000000..ed91d7d --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.component.ts @@ -0,0 +1,668 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Formcservice} from './Formc.service'; +import { AbstractControl, FormArray, FormBuilder, FormGroup, Validators, ValidationErrors } from '@angular/forms'; +import { ExtensionService } from 'src/app/services/fnd/extension.service'; +import { DashboardContentModel2 } from 'src/app/models/builder/dashboard'; +import { Formccardvariable } from './Formc_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Formc', + templateUrl: './Formc.component.html', + styleUrls: ['./Formc.component.scss'] +}) +export class FormcComponent implements OnInit { + cardButton = Formccardvariable.cardButton; + cardmodeldata = Formccardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Formccardvariable.cardButton; + cardmodal; changeView(){ + this.isCardview = !this.isCardview; + } + beforeText(fieldtext: string): string { // Extract the text before the first '<' + const index = fieldtext.indexOf('<'); + return index !== -1 ? fieldtext.substring(0, index) : fieldtext; + } + afterText(fieldtext: string): string { // Extract the text after the last '>' + const index = fieldtext.lastIndexOf('>'); + return index !== -1 ? fieldtext.substring(index + 1) : ''; + } + transform(fieldtext: string): string { + const match = fieldtext.match(/<([^>]*)>/); + return match ? match[1] : ''; // Extract the text between '<' and '>' + } + userrole; + rowSelected :any= {}; + modaldelete=false; + modalEdit=false; + modalAdd= false; + public entryForm: FormGroup; + loading = false; + product; + modalOpenedforNewLine = false; + newLine:any; + additionalFieldsFromBackend: any[] = []; + formcode = 'Formc_formCode' +tableName = 'Formc'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Formcservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + ) { } +// component button + ngOnInit(): void { + if(this.cardmodeldata !== ''){ + this.cardmodal = JSON.parse(this.cardmodeldata); + this.dashboardArray = this.cardmodal.dashboard.slice(); + console.log(this.dashboardArray) + } + this.userrole=this.userInfoService.getRoles(); + this.getData(); + this.entryForm = this._fb.group({ +currencys : [null, { updateOn: 'blur' }], + + + +qrcode : [null], + +barcode : [null], + +numbers : [null,[Validators.required]], + +numbered : [null,[Validators.required]], + + + +child: this.initLinesForm(), + + + +a:[null], + + + +b:[null], + + + + + + + + + + + + + + + + + + + + + + + + + + + }); // component_button200 + // form code start + this.extensionService.getJsonObjectsByFormCodeList(this.formcode).subscribe(data => { + console.log(data); + const jsonArray = data.map((str) => JSON.parse(str)); + this.additionalFieldsFromBackend = jsonArray; + this.checkFormCode = this.additionalFieldsFromBackend.some(field => field.formCode === "Formc_formCode"); + console.log(this.checkFormCode); + console.log(this.additionalFieldsFromBackend); + if (this.additionalFieldsFromBackend && this.additionalFieldsFromBackend.length > 0) { + this.additionalFieldsFromBackend.forEach(field => { + if (field.formCode === this.formcode) { + if (!this.entryForm.contains(field.extValue)) { + // Add the control only if it doesn't exist in the form + this.entryForm.addControl(field.extValue, this._fb.control(field.fieldValue)); + } + } + }); + } + }); + console.log(this.entryForm.value); + // form code end + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + +initLinesForm() { return this._fb.group({ + + + namem: [null], + + + +}); } + + + + + + + error; + getData() { + this.mainService.getAll().subscribe((data) => { + console.log(data); + this.product = data; + if(this.product.length==0){ + this.error="No Data Available" + } + },(error) => { + console.log(error); + if(error){ + this.error="Server Error"; + } + }); + } + onEdit(row) { + this.rowSelected = row; + + + + + + + // bar code field start + setTimeout(function(){ + JsBarcode("#barcodebarcode", row?.barcode); + }, 500); + // bar code field start + + + + + +//calculated field start + + + this. numbers= row.numbers; + + + + this. numbered= row.numbered; + + +//calculated field end + + + + + + + + + this.modalEdit = true; + } + onDelete(row) { + this.rowSelected = row; + this.modaldelete=true; + } + delete(id) + { + this.modaldelete = false; + console.log("in delete "+id); + this.mainService.delete(id).subscribe( + (data) => { + console.log(data); + this.ngOnInit(); + if (data) { this.toastr.success('Deleted successfully'); } + }); + } + onUpdate(id) { + this.modalEdit = false; + + + + + + + + + + + + +//calculated field start + + +this.rowSelected. numbers= this. numbers; + + + +this.rowSelected. numbered= this. numbered; + + +this.onInputChangecalculatedadd (); + //calculated field end + + + + + + + + //console.log("in update"); + console.log("id " + id); + console.log(this.rowSelected); + //console.log("out update"); + this.mainService.update(id, this.rowSelected).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Update Successfully"); + } + + + + + + + + + + + + + + + + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("update Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Updated"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Updated"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } +onCreate() { + this.modalAdd=false; + + + + + + + + + + + + +//calculated field start + + +this.entryForm.value. numbers = this.numbers ; + + + +this.entryForm.value. numbered = this.numbered ; + + +//calculated field end + + + + + + + + this.mainService.create(this.entryForm.value).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Added Successfully"); + } + + + + + + + + + + + + + + + + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("Added Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Added"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Added"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } + goToAdd(row) { +this.modalAdd = true; this.submitted = false; + + + + + + + + + + + + //calculated field start + + + + this. numbers = ''; + + + + this. numbered = ''; + + + + + this.total = ''; + + //calculated field end + + + + + + this.getdataggData(); + + + } + submitted = false; +onSubmit() { + console.log(this.entryForm.value); + this.submitted = true; + if (this.entryForm.invalid) { + return; + }this.onCreate(); + +} +//currency field start + formatCurrencycurrencys () { + // Format the currency with two decimal places + this.rowSelected.currencys = Number(this.rowSelected.currencys ).toFixed(2); + // Remove commas from the formatted currency + this.rowSelected.currencys = this.rowSelected.currencys?.replace(/,/g, ''); } + //currency field end + +//Value List field start +valuelistMode; +searchcusttextvaluey :any; + valueListModalvaluey :boolean=false; + openvalueListvaluey(mode){ + this.valueListModalvaluey=!this.valueListModalvaluey ; + this.valuelistMode = mode; } + customerdatavaluey ; +cutomererror; + clickedID:number; + +getcustvalueyID(id:number){ + this.clickedID=id; + console.log("clicked by id"+ id); + this.mainService.getById(id).subscribe((data) => { console.log(data); + if(this.valuelistMode == "ADD"){ + + + + this.entryForm.get('numbers').setValue(data.numbers); + + + + }else if(this.valuelistMode == "EDIT"){ + + + + this.rowSelected.numbers= data. numbers + + + + } }); this.valueListModalvaluey =false; + } //value List field end + + + +//bar code field start + generateBarcodebarcode(value) { + const barcodeValue = value; + const barcodeElement = document.getElementById("barcodebarcode"); + if (barcodeElement) { if (barcodeValue) { + JsBarcode(barcodeElement, barcodeValue, { format: "CODE128" + }); } else { + // Clear the barcode if the input is empty + barcodeElement.innerHTML = ''; } } } + // bar code field end + + + + + + // calculated field code start + + + numbers; + + + + numbered; + + + total ; + calculateOperators = "Addition" +onInputChangecalculatedadd() { +const lastObj = 0 +const lastObjstring = '' + + + + const numbers= this.numbers|| ''; + + const numbersValue = parseFloat(this.numbers) || 0; + + + + + + const numbered= this.numbered|| ''; + + const numberedValue = parseFloat(this.numbered) || 0; + + + +if (this.calculateOperators =="Addition") { + this.total = ( + + + numbersValue + + + + + numberedValue + + + lastObj).toString(); +} +if (this.calculateOperators == "Subtraction") { + this.total = ( + + + numbersValue - + + + + numberedValue - + + + lastObj).toString(); +} +if (this.calculateOperators =="Multiplication") { + this.total = ( + + + + numbersValue * + + + + numberedValue * + + +lastObj).toString(); +} +if (this.calculateOperators =="Division") { + + this.total = ( + + +numbersValue / + + + +numberedValue / + + +lastObj).toString(); + +} +if (this.calculateOperators =="Concatination") { + this.total = + + +numbers+ ' '+ + + + +numbered+ ' '+ + + lastObjstring +} +} + + + + + +//datagrid datagg filed start +productdatagg; + rowsdatagg :any[]; + getHeadersdatagg () { + this.rowsdatagg = this.productdatagg; + let headers: string[] = []; + if(this.rowsdatagg ) { +this.rowsdatagg.forEach((value) => { + Object.keys(value).forEach((key) => { + if(!headers.find((header) => header == key)){ + headers.push(key) + } + }) + }) +} + + return headers; + } + //datagrid datagg filed end + +getdataggData() { + this.mainService.getdataggAll().subscribe((data) => { + console.log(data); this.productdatagg = data; + }); +} + +// updateaction +} + + + + + + + + + + + + + + + + + + + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.service.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.service.ts new file mode 100644 index 0000000..2be23f4 --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc.service.ts @@ -0,0 +1,56 @@ +import { Injectable } from '@angular/core'; +import { Observable } from "rxjs"; +import { HttpClient, HttpHeaders, HttpParams, } from "@angular/common/http"; +import { ApiRequestService } from "src/app/services/api/api-request.service"; +import { environment } from 'src/environments/environment'; +@Injectable({ + providedIn: 'root' +}) +export class Formcservice{ + private baseURL = "Formc/Formc" ; constructor( + private http: HttpClient, + private apiRequest: ApiRequestService, + ) { } + getAll(page?: number, size?: number): Observable { + return this.apiRequest.get(this.baseURL); + } + getById(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.get(_http); + } + create(data: any): Observable { + return this.apiRequest.post(this.baseURL, data); + } + update(id: number, data: any): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.put(_http, data); + } + delete(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.delete(_http); + } + + + + + + + + + + + + + + + + + + +getdataggAll(page?: number, size?: number): Observable { + return this.apiRequest.get("Formc_ListFilter1/Formc_ListFilter1"); + + } + +// updateaction +} \ No newline at end of file diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc_cardvariable.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc_cardvariable.ts new file mode 100644 index 0000000..760ec8b --- /dev/null +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Formc/Formc_cardvariable.ts @@ -0,0 +1,4 @@ +export const Formccardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts index fb9e70c..6e74202 100644 --- a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts @@ -1,3 +1,7 @@ +import { ChildComponent } from './BuilderComponents/basicp1/Child/Child.component'; +import { FormcComponent } from './BuilderComponents/basicp1/Formc/Formc.component'; +import { FormbComponent } from './BuilderComponents/basicp1/Formb/Formb.component'; +import { FormaComponent } from './BuilderComponents/basicp1/Forma/Forma.component'; import { SequencegenaratorComponent } from './fnd/sequencegenarator/sequencegenarator.component'; import { Component, NgModule } from '@angular/core'; @@ -241,6 +245,18 @@ const routes: Routes = [ // buildercomponents +{path:'Child',component:ChildComponent}, + + +{path:'Formc',component:FormcComponent}, + + +{path:'Formb',component:FormbComponent}, + + +{path:'Forma',component:FormaComponent}, + + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts index cccc926..d6aaab8 100644 --- a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts @@ -1,3 +1,7 @@ +import { ChildComponent } from './BuilderComponents/basicp1/Child/Child.component'; +import { FormcComponent } from './BuilderComponents/basicp1/Formc/Formc.component'; +import { FormbComponent } from './BuilderComponents/basicp1/Formb/Formb.component'; +import { FormaComponent } from './BuilderComponents/basicp1/Forma/Forma.component'; import { SequencegenaratorComponent } from './fnd/sequencegenarator/sequencegenarator.component'; @@ -142,6 +146,18 @@ import { MappingruleeditComponent } from './datamanagement/mappingrule/mappingru // buildercomponents +ChildComponent, + + +FormcComponent, + + +FormbComponent, + + +FormaComponent, + + diff --git a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json index ae5b788..ddec144 100644 --- a/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json +++ b/testnewangular-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json @@ -226,10 +226,42 @@ "MENU_ACTION_LINK": "Menu Action Link", "STATUS": "Status", "SUB_MENU": "Sub Menu", - "Stt": "Stt", - "OneToManyExtension": "OneToManyExtension", - "studentname": "studentname", - "description": "description", - "Studenthigh": "Studenthigh", - "Name": "Name" + "Valuey": "Valuey", + "Qrcode": "Qrcode", + "Currencys": "Currencys", + "Text_Field": "Text_Field", + "Datetime_Field": "Datetime_Field", + "Phone_Number": "Phone_Number", + "Numbers": "Numbers", + "OneToOne": "OneToOne", + "Textarea": "Textarea", + "Imageuploadh": "Imageuploadh", + "documentseq": "documentseq", + "selectst": "selectst", + "Radiod": "Radiod", + "Namem": "Namem", + "Date_Field": "Date_Field", + "Decimald": "Decimald", + "Child": "Child", + "videoh": "videoh", + "a": "a", + "Numbered": "Numbered", + "b": "b", + "Toggle_Switch": "Toggle_Switch", + "Number_Field": "Number_Field", + "recaptchaf": "recaptchaf", + "Email_Field": "Email_Field", + "calculatedadd": "calculatedadd", + "Url_Field": "Url_Field", + "Formb": "Formb", + "Formc": "Formc", + "Forma": "Forma", + "UserIdf": "UserIdf", + "Paragraph_Field": "Paragraph_Field", + "Percentagef": "Percentagef", + "Fileuploadj": "Fileuploadj", + "Barcode": "Barcode", + "audioh": "audioh", + "datagg": "datagg", + "Password_Field": "Password_Field" } \ No newline at end of file