diff --git a/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder 6.zip b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder 6.zip new file mode 100644 index 0000000..e2af805 Binary files /dev/null and b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder 6.zip differ diff --git a/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder 7.zip b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder 7.zip new file mode 100644 index 0000000..5c32550 Binary files /dev/null and b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder 7.zip differ diff --git a/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.component.html b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.component.html index e290068..2d13c89 100644 --- a/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.component.html +++ b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.component.html @@ -62,6 +62,9 @@ javacode + + Active @@ -107,6 +110,9 @@ style="cursor: pointer; align-items: center;"> + + + {{user. active }} @@ -377,6 +383,14 @@ placeholder="Textarea"> +
+ + +
+ @@ -497,6 +511,14 @@ +
+ + +
+ diff --git a/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.component.ts b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.component.ts index 1594779..95493e7 100644 --- a/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.component.ts +++ b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.component.ts @@ -10,6 +10,7 @@ import { UserInfoService } from 'src/app/services/user-info.service'; import { SiteTreeservice } from '../SiteBuilderGrid/SiteTree.service'; import { COMMON_CSS } from '../WireframesUi/common-css'; import { ActivatedRoute } from '@angular/router'; +import { Tagservice } from '../Tag/Tag.service'; declare var JsBarcode: any; @Component({ selector: 'app-Design_lbrary', @@ -44,6 +45,7 @@ export class Design_lbraryComponent implements OnInit { modaldelete = false; modalEdit = false; modalAdd = false; + selectTagdata; public entryForm: FormGroup; loading = false; product; @@ -61,6 +63,7 @@ export class Design_lbraryComponent implements OnInit { private _fb: FormBuilder, private siteTreeService: SiteTreeservice, private route: ActivatedRoute, + private tagService: Tagservice, ) { } // component button @@ -74,6 +77,7 @@ export class Design_lbraryComponent implements OnInit { } this.userrole = this.userInfoService.getRoles(); this.getData(); + this.getallTags(); this.entryForm = this._fb.group({ name: [null], @@ -82,6 +86,8 @@ export class Design_lbraryComponent implements OnInit { active: [false], htmljson: [null], + tag: [null], + css: [null], templatetype: [null], @@ -247,6 +253,14 @@ export class Design_lbraryComponent implements OnInit { this.rowSelected = row; this.rsModaljavacode = true; } + + + getallTags() { + this.tagService.getAll().subscribe(data => { + this.selectTagdata = data; + console.log('tag data ', data); + }, (error) => { console.log(error); }); + } // updateaction public htmlContent: string = ''; diff --git a/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.service.ts b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.service.ts index 1d632c4..2de3697 100644 --- a/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.service.ts +++ b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/Design_lbrary/Design_lbrary.service.ts @@ -31,15 +31,5 @@ export class Design_lbraryservice { } - - - - - - - - - - // updateaction } \ No newline at end of file diff --git a/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/SiteBuilderGrid/SiteTree.component.html b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/SiteBuilderGrid/SiteTree.component.html index d98104d..ec43aa0 100644 --- a/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/SiteBuilderGrid/SiteTree.component.html +++ b/visaproject-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/fnd/SiteTreeBuilder/SiteBuilderGrid/SiteTree.component.html @@ -15,11 +15,9 @@ - - - + @@ -29,7 +27,7 @@
{{error}}
- Name + Website Name @@ -49,7 +47,7 @@ - {{user. name }} + {{user.name }} - {{user. active }} + {{user.active }} @@ -98,6 +96,9 @@
+ + + - + + + +
+ + + +
@@ -224,179 +232,336 @@
-
+ + + - -
+
+
+
+
+ + + {{tech}} + +
+
+
+ + + +
+
- - +
- - --> + + + + + + - -
- - - - - - - -