@unnilouis.org/vs-chipdropdown 0.0.14 → 0.0.15-beta-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/README.md +2 -2
  2. package/bundles/unnilouis.org-vs-chipdropdown.umd.js +547 -0
  3. package/bundles/unnilouis.org-vs-chipdropdown.umd.js.map +1 -0
  4. package/bundles/unnilouis.org-vs-chipdropdown.umd.min.js +16 -0
  5. package/bundles/unnilouis.org-vs-chipdropdown.umd.min.js.map +1 -0
  6. package/esm2015/lib/vs-chipdd-cmp/vs-chipdd-cmp.component.js +233 -0
  7. package/esm2015/lib/vs-chipdropdown.component.js +19 -0
  8. package/esm2015/lib/vs-chipdropdown.module.js +24 -0
  9. package/esm2015/lib/vs-chipdropdown.service.js +49 -0
  10. package/esm2015/public-api.js +8 -0
  11. package/esm2015/unnilouis.org-vs-chipdropdown.js +5 -0
  12. package/esm5/lib/vs-chipdd-cmp/vs-chipdd-cmp.component.js +249 -0
  13. package/esm5/lib/vs-chipdropdown.component.js +17 -0
  14. package/esm5/lib/vs-chipdropdown.module.js +27 -0
  15. package/esm5/lib/vs-chipdropdown.service.js +52 -0
  16. package/esm5/public-api.js +8 -0
  17. package/esm5/unnilouis.org-vs-chipdropdown.js +5 -0
  18. package/fesm2015/unnilouis.org-vs-chipdropdown.js +319 -0
  19. package/fesm2015/unnilouis.org-vs-chipdropdown.js.map +1 -0
  20. package/fesm5/unnilouis.org-vs-chipdropdown.js +339 -0
  21. package/fesm5/unnilouis.org-vs-chipdropdown.js.map +1 -0
  22. package/lib/vs-chipdd-cmp/vs-chipdd-cmp.component.d.ts +0 -3
  23. package/lib/vs-chipdropdown.component.d.ts +4 -4
  24. package/lib/vs-chipdropdown.module.d.ts +0 -15
  25. package/lib/vs-chipdropdown.service.d.ts +0 -3
  26. package/package.json +15 -19
  27. package/{index.d.ts → unnilouis.org-vs-chipdropdown.d.ts} +0 -1
  28. package/unnilouis.org-vs-chipdropdown.metadata.json +1 -0
  29. package/esm2022/lib/vs-chipdd-cmp/vs-chipdd-cmp.component.mjs +0 -225
  30. package/esm2022/lib/vs-chipdropdown.component.mjs +0 -19
  31. package/esm2022/lib/vs-chipdropdown.module.mjs +0 -37
  32. package/esm2022/lib/vs-chipdropdown.service.mjs +0 -45
  33. package/esm2022/public-api.mjs +0 -8
  34. package/esm2022/unnilouis.org-vs-chipdropdown.mjs +0 -5
  35. package/fesm2022/unnilouis.org-vs-chipdropdown.mjs +0 -327
  36. package/fesm2022/unnilouis.org-vs-chipdropdown.mjs.map +0 -1
@@ -0,0 +1,339 @@
1
+ import { __decorate, __values } from 'tslib';
2
+ import { ɵɵdefineInjectable, ɵɵinject, Injectable, Component, EventEmitter, Input, ViewChild, Output, NgModule } from '@angular/core';
3
+ import { HttpClient } from '@angular/common/http';
4
+ import { MatAutocompleteTrigger, MatAutocompleteModule } from '@angular/material/autocomplete';
5
+ import { map, takeUntil, debounceTime, distinctUntilChanged, tap, switchMap, finalize } from 'rxjs/operators';
6
+ import { fromEvent } from 'rxjs';
7
+ import { FormBuilder, FormsModule, ReactiveFormsModule } from '@angular/forms';
8
+ import { ENTER, COMMA } from '@angular/cdk/keycodes';
9
+ import { MatFormFieldModule } from '@angular/material/form-field';
10
+ import { MatInputModule } from '@angular/material/input';
11
+ import { MatSelectModule } from '@angular/material/select';
12
+ import { CommonModule } from '@angular/common';
13
+ import { MatGridListModule } from '@angular/material/grid-list';
14
+ import { MatChipsModule } from '@angular/material/chips';
15
+ import { MatIconModule } from '@angular/material/icon';
16
+
17
+ var VsChipdropdownService = /** @class */ (function () {
18
+ function VsChipdropdownService(http) {
19
+ this.http = http;
20
+ }
21
+ VsChipdropdownService.prototype.postApi = function (Apiurl, json, params) {
22
+ if (json === void 0) { json = {}; }
23
+ var getToken = localStorage.getItem("sessionData");
24
+ var tokenValue = JSON.parse(getToken);
25
+ var token = tokenValue.token;
26
+ console.log("params", params);
27
+ var paradata = '';
28
+ if (params !== undefined && params !== null && params !== '') {
29
+ paradata = params;
30
+ }
31
+ var headers = { Authorization: "Token " + token };
32
+ return this.http.post(Apiurl + paradata, json, {
33
+ headers: headers,
34
+ });
35
+ };
36
+ VsChipdropdownService.prototype.GetApi = function (Apiurl, params) {
37
+ if (params === void 0) { params = ''; }
38
+ var getToken = localStorage.getItem("sessionData");
39
+ var tokenValue = JSON.parse(getToken);
40
+ var token = tokenValue.token;
41
+ console.log("params", params);
42
+ var paradata = '';
43
+ if (params !== undefined && params !== null && params !== '') {
44
+ paradata = params;
45
+ }
46
+ var headers = { Authorization: "Token " + token };
47
+ return this.http.get(Apiurl + paradata, {
48
+ headers: headers,
49
+ });
50
+ };
51
+ VsChipdropdownService.ctorParameters = function () { return [
52
+ { type: HttpClient }
53
+ ]; };
54
+ VsChipdropdownService.ɵprov = ɵɵdefineInjectable({ factory: function VsChipdropdownService_Factory() { return new VsChipdropdownService(ɵɵinject(HttpClient)); }, token: VsChipdropdownService, providedIn: "root" });
55
+ VsChipdropdownService = __decorate([
56
+ Injectable({
57
+ providedIn: 'root'
58
+ })
59
+ ], VsChipdropdownService);
60
+ return VsChipdropdownService;
61
+ }());
62
+
63
+ var VsChipdropdownComponent = /** @class */ (function () {
64
+ function VsChipdropdownComponent() {
65
+ }
66
+ VsChipdropdownComponent.prototype.ngOnInit = function () {
67
+ };
68
+ VsChipdropdownComponent = __decorate([
69
+ Component({
70
+ selector: 'lib-vs-chipdropdown',
71
+ template: "\n <p>\n vs-chipdropdown works!\n </p>\n "
72
+ })
73
+ ], VsChipdropdownComponent);
74
+ return VsChipdropdownComponent;
75
+ }());
76
+
77
+ var VsChipddCmpComponent = /** @class */ (function () {
78
+ function VsChipddCmpComponent(service, fb) {
79
+ this.service = service;
80
+ this.fb = fb;
81
+ this.dataEvent = new EventEmitter();
82
+ this.separatorsKeysCodes = [ENTER, COMMA];
83
+ this.has_next = false;
84
+ this.currentpage = 1;
85
+ this.Dropdowndata = [];
86
+ this.has_previous = false;
87
+ this.chipSelectedId = [];
88
+ this.chipSelectedObj = [];
89
+ }
90
+ VsChipddCmpComponent.prototype.ngOnInit = function () {
91
+ var e_1, _a;
92
+ var _b, _c, _d, _e, _f;
93
+ this.DropdownForm = this.fb.group({
94
+ value: ''
95
+ });
96
+ if ((_b = this.InputFields) === null || _b === void 0 ? void 0 : _b.defaultvalue) {
97
+ this.DropdownForm.get("value").patchValue((_c = this.InputFields) === null || _c === void 0 ? void 0 : _c.defaultvalue);
98
+ this.chipSelectedObj = (_d = this.InputFields) === null || _d === void 0 ? void 0 : _d.defaultvalue;
99
+ if (this.chipSelectedObj.length > 0) {
100
+ try {
101
+ for (var _g = __values(this.chipSelectedObj), _h = _g.next(); !_h.done; _h = _g.next()) {
102
+ var foundemp = _h.value;
103
+ if ((_e = this.InputFields) === null || _e === void 0 ? void 0 : _e.Outputkey) {
104
+ this.chipSelectedId.push(foundemp[(_f = this.InputFields) === null || _f === void 0 ? void 0 : _f.Outputkey]);
105
+ }
106
+ else {
107
+ this.chipSelectedId.push(foundemp.id);
108
+ }
109
+ }
110
+ }
111
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
112
+ finally {
113
+ try {
114
+ if (_h && !_h.done && (_a = _g.return)) _a.call(_g);
115
+ }
116
+ finally { if (e_1) throw e_1.error; }
117
+ }
118
+ this.selected();
119
+ }
120
+ }
121
+ this.getdropdown('');
122
+ };
123
+ VsChipddCmpComponent.prototype.ngOnChanges = function (changes) {
124
+ console.log("changes.ResetForm", changes.ResetForm, changes.ResetForm.currentValue, changes.ResetForm && changes.ResetForm.currentValue);
125
+ if (changes.InputFields && changes.InputFields.currentValue) {
126
+ console.log("Summary Log Changes");
127
+ this.currentpage = 1;
128
+ this.getdropdown('');
129
+ }
130
+ if (changes.ResetForm && changes.ResetForm.currentValue) {
131
+ console.log("hitted");
132
+ this.DropdownForm.reset();
133
+ this.currentpage = 1;
134
+ this.getdropdown('');
135
+ this.chipSelectedId = [];
136
+ this.chipSelectedObj = [];
137
+ this.dataEvent.emit([]);
138
+ }
139
+ };
140
+ // public displaydevelopclient(clt: any, key: string) {
141
+ // return key[clt];
142
+ // }
143
+ VsChipddCmpComponent.prototype.autocompleteAppScroll = function () {
144
+ var _this = this;
145
+ setTimeout(function () {
146
+ if (_this.matAutocompleteApp &&
147
+ _this.autocompleteTrigger &&
148
+ _this.matAutocompleteApp.panel) {
149
+ fromEvent(_this.matAutocompleteApp.panel.nativeElement, 'scroll')
150
+ .pipe(map(function (x) { return _this.matAutocompleteApp.panel.nativeElement.scrollTop; }), takeUntil(_this.autocompleteTrigger.panelClosingActions))
151
+ .subscribe(function (x) {
152
+ var scrollTop = _this.matAutocompleteApp.panel.nativeElement.scrollTop;
153
+ var scrollHeight = _this.matAutocompleteApp.panel.nativeElement.scrollHeight;
154
+ var elementHeight = _this.matAutocompleteApp.panel.nativeElement.clientHeight;
155
+ var atBottom = scrollHeight - 1 <= scrollTop + elementHeight;
156
+ if (atBottom) {
157
+ if (_this.has_next === true) {
158
+ var value = _this.DropInput.nativeElement.value;
159
+ var params = _this.searchparams(value);
160
+ _this.currentpage = _this.currentpage + 1;
161
+ if (_this.currentpage > 1) {
162
+ _this.service.GetApi(_this.InputFields.url + "?page=" + _this.currentpage, params)
163
+ .subscribe(function (results) {
164
+ var datas = results["data"];
165
+ var datapagination = results["pagination"];
166
+ _this.Dropdowndata = _this.Dropdowndata.concat(datas);
167
+ console.log("this.Dropdowndata", _this.Dropdowndata);
168
+ if (_this.Dropdowndata.length >= 0) {
169
+ _this.has_next = datapagination.has_next;
170
+ _this.has_previous = datapagination.has_previous;
171
+ _this.currentpage = datapagination.index;
172
+ }
173
+ });
174
+ }
175
+ }
176
+ }
177
+ });
178
+ }
179
+ });
180
+ };
181
+ VsChipddCmpComponent.prototype.dropdownsearch = function () {
182
+ var _this = this;
183
+ this.DropdownForm.get("value").valueChanges.pipe(debounceTime(100), distinctUntilChanged(), tap(function () {
184
+ _this.DrodownLoading = true;
185
+ console.log("inside tap");
186
+ }), switchMap(function (value) {
187
+ var params = _this.searchparams(value);
188
+ _this.currentpage = 1;
189
+ return _this.service.GetApi(_this.InputFields.url + "?page=" + _this.currentpage, params).pipe(finalize(function () {
190
+ _this.DrodownLoading = false;
191
+ }));
192
+ })).subscribe(function (results) {
193
+ var datas = results["data"];
194
+ _this.Dropdowndata = datas;
195
+ });
196
+ };
197
+ VsChipddCmpComponent.prototype.getdropdown = function (value) {
198
+ var _this = this;
199
+ var params = this.searchparams(value);
200
+ this.service.GetApi(this.InputFields.url + "?page=" + this.currentpage, params)
201
+ .subscribe(function (results) {
202
+ var datas = results["data"];
203
+ var datapagination = results["pagination"];
204
+ _this.Dropdowndata = datas;
205
+ if (_this.Dropdowndata.length >= 0) {
206
+ _this.has_next = datapagination.has_next;
207
+ _this.has_previous = datapagination.has_previous;
208
+ _this.currentpage = datapagination.index;
209
+ }
210
+ });
211
+ };
212
+ VsChipddCmpComponent.prototype.selected = function () {
213
+ var _a, _b;
214
+ // let data = this.DropdownForm.value.value
215
+ if ((_a = this.InputFields) === null || _a === void 0 ? void 0 : _a.wholedata) {
216
+ this.dataEvent.emit(this.chipSelectedObj);
217
+ }
218
+ else {
219
+ if ((_b = this.InputFields) === null || _b === void 0 ? void 0 : _b.Outputkey) {
220
+ this.dataEvent.emit(this.chipSelectedId);
221
+ }
222
+ else {
223
+ this.dataEvent.emit(this.chipSelectedObj);
224
+ }
225
+ }
226
+ };
227
+ VsChipddCmpComponent.prototype.searchparams = function (value) {
228
+ var params = '';
229
+ if (this.InputFields.params) {
230
+ params = this.InputFields.params;
231
+ }
232
+ var inpValue = value;
233
+ inpValue ? params += '&' + this.InputFields.searchkey + '=' + inpValue : '';
234
+ return params;
235
+ };
236
+ VsChipddCmpComponent.prototype.removechip = function (obj) {
237
+ var index = this.chipSelectedObj.indexOf(obj);
238
+ if (index >= 0) {
239
+ this.chipSelectedObj.splice(index, 1);
240
+ console.log(this.chipSelectedObj);
241
+ this.chipSelectedId.splice(index, 1);
242
+ console.log(this.chipSelectedId);
243
+ this.DropInput.nativeElement.value = '';
244
+ this.selected();
245
+ }
246
+ };
247
+ VsChipddCmpComponent.prototype.venSelected = function (event) {
248
+ this.DropInput.nativeElement.value = '';
249
+ console.log('event.option.value', event.option.value);
250
+ this.selectvenByName(event.option.value[this.comparekey(event.option.value)]);
251
+ console.log('chipSelectedvenid', this.chipSelectedObj);
252
+ };
253
+ VsChipddCmpComponent.prototype.selectvenByName = function (ven) {
254
+ var _this = this;
255
+ var _a, _b;
256
+ var foundemp1 = this.chipSelectedObj.filter(function (e) { return e[_this.comparekey(e)] == ven; });
257
+ if (foundemp1.length) {
258
+ return;
259
+ }
260
+ var foundemp = this.Dropdowndata.filter(function (e) { return e[_this.comparekey(e)] == ven; });
261
+ if (foundemp.length) {
262
+ this.chipSelectedObj.push(foundemp[0]);
263
+ if ((_a = this.InputFields) === null || _a === void 0 ? void 0 : _a.Outputkey) {
264
+ this.chipSelectedId.push(foundemp[0][(_b = this.InputFields) === null || _b === void 0 ? void 0 : _b.Outputkey]);
265
+ }
266
+ else {
267
+ this.chipSelectedId.push(foundemp[0].id);
268
+ }
269
+ }
270
+ };
271
+ VsChipddCmpComponent.prototype.comparekey = function (e) {
272
+ var _a, _b;
273
+ if ((_a = this.InputFields) === null || _a === void 0 ? void 0 : _a.comparekey) {
274
+ return (_b = this.InputFields) === null || _b === void 0 ? void 0 : _b.comparekey;
275
+ }
276
+ else {
277
+ if (e === null || e === void 0 ? void 0 : e.id) {
278
+ return "id";
279
+ }
280
+ else {
281
+ return this.InputFields.displaykey;
282
+ }
283
+ }
284
+ };
285
+ VsChipddCmpComponent.ctorParameters = function () { return [
286
+ { type: VsChipdropdownService },
287
+ { type: FormBuilder }
288
+ ]; };
289
+ __decorate([
290
+ Input()
291
+ ], VsChipddCmpComponent.prototype, "InputFields", void 0);
292
+ __decorate([
293
+ Input()
294
+ ], VsChipddCmpComponent.prototype, "ResetForm", void 0);
295
+ __decorate([
296
+ ViewChild(MatAutocompleteTrigger)
297
+ ], VsChipddCmpComponent.prototype, "autocompleteTrigger", void 0);
298
+ __decorate([
299
+ ViewChild('scrolll')
300
+ ], VsChipddCmpComponent.prototype, "matAutocompleteApp", void 0);
301
+ __decorate([
302
+ Output()
303
+ ], VsChipddCmpComponent.prototype, "dataEvent", void 0);
304
+ __decorate([
305
+ ViewChild('DropInput')
306
+ ], VsChipddCmpComponent.prototype, "DropInput", void 0);
307
+ VsChipddCmpComponent = __decorate([
308
+ Component({
309
+ selector: 'lib-vs-chipdd-cmp',
310
+ template: "<div>\n <form [formGroup]=\"DropdownForm\">\n <mat-form-field class=\"mat-chipScroll\"\n appearance=\"outline\">\n <mat-label>{{InputFields.label}}</mat-label>\n <mat-chip-list multiple #chipListvendor class=\"chip-container\">\n <mat-chip *ngFor=\"let obj of chipSelectedObj\" [removable]=\"true\" (removed)=\"removechip(obj)\" class=\"mat-chipEx\">\n {{ obj[InputFields.displaykey] }}\n <mat-icon matChipRemove>cancel</mat-icon>\n </mat-chip>\n <input #DropInput [matAutocomplete]=\"scrolll\" class=\"matformfieldinputstyle\"\n (keydown)=\"dropdownsearch()\" [matChipInputFor]=\"chipListvendor\" [matChipInputSeparatorKeyCodes]=\"\n separatorsKeysCodes\n \" [matChipInputAddOnBlur]=\"true\" formControlName=\"value\" />\n </mat-chip-list>\n <mat-autocomplete #scrolll=\"matAutocomplete\" (optionSelected)=\"venSelected($event)\"\n (opened)=\"autocompleteAppScroll()\">\n <ng-container>\n <mat-option *ngFor=\"let dropvalues of Dropdowndata\" [value]=\"dropvalues\" (click)=\"selected()\">\n {{dropvalues[InputFields.displaykey]}}\n </mat-option>\n </ng-container>\n </mat-autocomplete>\n </mat-form-field>\n </form>\n</div>",
311
+ styles: [".mat-chipScroll{max-width:420px;width:100%}.mat-chipEx{text-align:left}.chip-container{overflow-y:scroll;max-height:80px}.chip-container::-webkit-scrollbar{width:6px;height:6px}.chip-container::-webkit-scrollbar-track{background:0 0}.chip-container::-webkit-scrollbar-thumb{border-radius:20px;background:#c3c3c3}.chip-container::-webkit-scrollbar-thumb:hover{background:#a6a6a6}"]
312
+ })
313
+ ], VsChipddCmpComponent);
314
+ return VsChipddCmpComponent;
315
+ }());
316
+
317
+ var VsChipdropdownModule = /** @class */ (function () {
318
+ function VsChipdropdownModule() {
319
+ }
320
+ VsChipdropdownModule = __decorate([
321
+ NgModule({
322
+ declarations: [VsChipdropdownComponent, VsChipddCmpComponent],
323
+ imports: [MatFormFieldModule, MatInputModule, MatSelectModule, MatAutocompleteModule, FormsModule, ReactiveFormsModule, CommonModule, MatGridListModule, MatChipsModule, MatIconModule],
324
+ exports: [VsChipddCmpComponent]
325
+ })
326
+ ], VsChipdropdownModule);
327
+ return VsChipdropdownModule;
328
+ }());
329
+
330
+ /*
331
+ * Public API Surface of vs-chipdropdown
332
+ */
333
+
334
+ /**
335
+ * Generated bundle index. Do not edit.
336
+ */
337
+
338
+ export { VsChipddCmpComponent, VsChipdropdownComponent, VsChipdropdownModule, VsChipdropdownService };
339
+ //# sourceMappingURL=unnilouis.org-vs-chipdropdown.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unnilouis.org-vs-chipdropdown.js","sources":["ng://@unnilouis.org/vs-chipdropdown/lib/vs-chipdropdown.service.ts","ng://@unnilouis.org/vs-chipdropdown/lib/vs-chipdropdown.component.ts","ng://@unnilouis.org/vs-chipdropdown/lib/vs-chipdd-cmp/vs-chipdd-cmp.component.ts","ng://@unnilouis.org/vs-chipdropdown/lib/vs-chipdropdown.module.ts","ng://@unnilouis.org/vs-chipdropdown/public-api.ts","ng://@unnilouis.org/vs-chipdropdown/unnilouis.org-vs-chipdropdown.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { HttpClient } from '@angular/common/http';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class VsChipdropdownService {\n\n constructor(private http: HttpClient) { }\n postApi(Apiurl,json={},params): Observable<any> {\n const getToken = localStorage.getItem(\"sessionData\");\n let tokenValue = JSON.parse(getToken);\n let token = tokenValue.token;\n console.log(\"params\",params)\n let paradata=''\n if(params!==undefined && params!==null && params!==''){\n paradata=params\n }\n const headers = { Authorization: \"Token \" + token };\n return this.http.post<any>(Apiurl+paradata,json ,{\n headers: headers,\n \n });\n }\n GetApi(Apiurl,params=''): Observable<any> {\n const getToken = localStorage.getItem(\"sessionData\");\n let tokenValue = JSON.parse(getToken);\n let token = tokenValue.token;\n console.log(\"params\",params)\n let paradata=''\n if(params!==undefined && params!==null && params!==''){\n paradata=params\n }\n const headers = { Authorization: \"Token \" + token };\n return this.http.get<any>(Apiurl+paradata,{\n headers: headers,\n });\n }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-vs-chipdropdown',\n template: `\n <p>\n vs-chipdropdown works!\n </p>\n `,\n styles: [\n ]\n})\nexport class VsChipdropdownComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","import { Component, EventEmitter, Input, Output, SimpleChanges, ViewChild } from '@angular/core';\nimport { MatAutocompleteSelectedEvent, MatAutocomplete, MatAutocompleteTrigger } from '@angular/material/autocomplete';\nimport {\n debounceTime,\n distinctUntilChanged,\n tap,\n filter,\n switchMap,\n finalize,\n takeUntil,\n map,\n} from \"rxjs/operators\";\nimport { from, Observable, fromEvent } from 'rxjs';\nimport { VsChipdropdownService } from '../vs-chipdropdown.service'\nimport { FormBuilder, FormControl, FormGroup } from '@angular/forms';\nimport { COMMA, ENTER } from '@angular/cdk/keycodes';\n@Component({\n selector: 'lib-vs-chipdd-cmp',\n templateUrl: './vs-chipdd-cmp.component.html',\n styleUrls: ['./vs-chipdd-cmp.component.scss']\n})\nexport class VsChipddCmpComponent {\n DrodownLoading: boolean;\n constructor(private service: VsChipdropdownService, private fb: FormBuilder) { }\n @Input() InputFields: any\n @Input() ResetForm: any\n\n @ViewChild(MatAutocompleteTrigger) autocompleteTrigger: MatAutocompleteTrigger;\n @ViewChild('scrolll') matAutocompleteApp: MatAutocomplete;\n @Output() dataEvent: EventEmitter<any> = new EventEmitter<any>();\n @ViewChild('DropInput') DropInput: any;\n readonly separatorsKeysCodes: number[] = [ENTER, COMMA];\n\n has_next: boolean = false;\n currentpage: number = 1;\n Dropdowndata: any = [];\n has_previous: boolean = false;\n DropdownForm: FormGroup\n chipSelectedId: any = [];\n chipSelectedObj: any = []\n\n ngOnInit() {\n this.DropdownForm = this.fb.group({\n value: ''\n })\n if(this.InputFields?.defaultvalue){\n this.DropdownForm.get(\"value\").patchValue(this.InputFields?.defaultvalue)\n this.chipSelectedObj=this.InputFields?.defaultvalue\n if(this.chipSelectedObj.length>0){\n for (let foundemp of this.chipSelectedObj){\n if (this.InputFields?.Outputkey) {\n this.chipSelectedId.push(foundemp[this.InputFields?.Outputkey])\n \n }\n else {\n this.chipSelectedId.push(foundemp.id)\n \n }\n }\n this.selected()\n }\n \n\n }\n this.getdropdown('')\n }\n ngOnChanges(changes: SimpleChanges): void {\n console.log(\"changes.ResetForm\", changes.ResetForm, changes.ResetForm.currentValue, changes.ResetForm && changes.ResetForm.currentValue)\n if (changes.InputFields && changes.InputFields.currentValue) {\n console.log(\"Summary Log Changes\")\n this.currentpage = 1\n this.getdropdown('');\n }\n if (changes.ResetForm && changes.ResetForm.currentValue) {\n console.log(\"hitted\")\n this.DropdownForm.reset()\n this.currentpage = 1\n this.getdropdown('');\n this.chipSelectedId = [];\n this.chipSelectedObj = []\n this.dataEvent.emit([]);\n\n\n }\n }\n // public displaydevelopclient(clt: any, key: string) {\n // return key[clt];\n // }\n autocompleteAppScroll() {\n setTimeout(() => {\n if (\n this.matAutocompleteApp &&\n this.autocompleteTrigger &&\n this.matAutocompleteApp.panel\n ) {\n fromEvent(this.matAutocompleteApp.panel.nativeElement, 'scroll')\n .pipe(\n map(x => this.matAutocompleteApp.panel.nativeElement.scrollTop),\n takeUntil(this.autocompleteTrigger.panelClosingActions as Observable<any>)\n )\n .subscribe(x => {\n const scrollTop = this.matAutocompleteApp.panel.nativeElement.scrollTop;\n const scrollHeight = this.matAutocompleteApp.panel.nativeElement.scrollHeight;\n const elementHeight = this.matAutocompleteApp.panel.nativeElement.clientHeight;\n const atBottom = scrollHeight - 1 <= scrollTop + elementHeight;\n if (atBottom) {\n if (this.has_next === true) {\n let value = this.DropInput.nativeElement.value\n let params = this.searchparams(value)\n this.currentpage = this.currentpage + 1\n if (this.currentpage > 1) {\n this.service.GetApi(this.InputFields.url + \"?page=\" + this.currentpage, params)\n .subscribe((results: any[]) => {\n let datas = results[\"data\"];\n let datapagination = results[\"pagination\"];\n this.Dropdowndata = this.Dropdowndata.concat(datas);\n console.log(\"this.Dropdowndata\", this.Dropdowndata)\n if (this.Dropdowndata.length >= 0) {\n this.has_next = datapagination.has_next;\n this.has_previous = datapagination.has_previous;\n this.currentpage = datapagination.index;\n }\n })\n }\n\n }\n }\n });\n }\n });\n }\n dropdownsearch() {\n this.DropdownForm.get(\"value\").valueChanges.pipe(\n debounceTime(100),\n distinctUntilChanged(),\n tap(() => {\n this.DrodownLoading = true;\n console.log(\"inside tap\");\n }),\n switchMap((value) => {\n let params = this.searchparams(value);\n this.currentpage = 1\n return this.service.GetApi(this.InputFields.url + \"?page=\" + this.currentpage, params).pipe(\n finalize(() => {\n this.DrodownLoading = false;\n })\n );\n })\n ).subscribe((results: any[]) => {\n let datas = results[\"data\"];\n this.Dropdowndata = datas;\n });\n }\n getdropdown(value) {\n let params = this.searchparams(value)\n this.service.GetApi(this.InputFields.url + \"?page=\" + this.currentpage, params)\n .subscribe((results: any[]) => {\n let datas = results[\"data\"];\n let datapagination = results[\"pagination\"];\n this.Dropdowndata = datas\n if (this.Dropdowndata.length >= 0) {\n this.has_next = datapagination.has_next;\n this.has_previous = datapagination.has_previous;\n this.currentpage = datapagination.index;\n }\n })\n }\n selected() {\n // let data = this.DropdownForm.value.value\n if (this.InputFields?.wholedata) {\n this.dataEvent.emit(this.chipSelectedObj);\n }\n else {\n if (this.InputFields?.Outputkey) {\n this.dataEvent.emit(this.chipSelectedId);\n }\n else {\n this.dataEvent.emit(this.chipSelectedObj);\n }\n\n }\n\n }\n searchparams(value) {\n let params = ''\n if (this.InputFields.params) {\n params = this.InputFields.params\n }\n let inpValue = value\n inpValue ? params += '&' + this.InputFields.searchkey + '=' + inpValue : ''\n return params\n }\n removechip(obj) {\n const index = this.chipSelectedObj.indexOf(obj);\n\n if (index >= 0) {\n\n this.chipSelectedObj.splice(index, 1);\n console.log(this.chipSelectedObj);\n this.chipSelectedId.splice(index, 1);\n console.log(this.chipSelectedId);\n this.DropInput.nativeElement.value = '';\n this.selected()\n }\n\n }\n public venSelected(event: MatAutocompleteSelectedEvent): void {\n this.DropInput.nativeElement.value = '';\n console.log('event.option.value', event.option.value)\n this.selectvenByName(event.option.value[this.comparekey(event.option.value)]);\n console.log('chipSelectedvenid', this.chipSelectedObj)\n }\n private selectvenByName(ven) {\n let foundemp1 = this.chipSelectedObj.filter(e => e[this.comparekey(e)] == ven);\n if (foundemp1.length) {\n return;\n }\n let foundemp = this.Dropdowndata.filter(e => e[this.comparekey(e)] == ven);\n if (foundemp.length) {\n this.chipSelectedObj.push(foundemp[0]);\n if (this.InputFields?.Outputkey) {\n this.chipSelectedId.push(foundemp[0][this.InputFields?.Outputkey])\n\n }\n else {\n this.chipSelectedId.push(foundemp[0].id)\n\n }\n }\n }\n comparekey(e) {\n if (this.InputFields?.comparekey) {\n return this.InputFields?.comparekey\n }\n else {\n if (e?.id) {\n return \"id\"\n }\n else {\n return this.InputFields.displaykey\n }\n }\n }\n}","import { NgModule } from '@angular/core';\nimport { VsChipdropdownComponent } from './vs-chipdropdown.component';\nimport { VsChipddCmpComponent } from './vs-chipdd-cmp/vs-chipdd-cmp.component';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatSelectModule } from '@angular/material/select';\nimport { MatAutocompleteModule } from '@angular/material/autocomplete';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { CommonModule } from '@angular/common';\nimport { MatGridListModule } from '@angular/material/grid-list';\nimport { MatChipsModule } from '@angular/material/chips';\nimport { MatIconModule } from '@angular/material/icon';\n\n\n\n@NgModule({\n declarations: [VsChipdropdownComponent, VsChipddCmpComponent],\n imports: [MatFormFieldModule,MatInputModule,MatSelectModule,MatAutocompleteModule,FormsModule,ReactiveFormsModule,CommonModule,MatGridListModule,MatChipsModule,MatIconModule],\n exports: [VsChipddCmpComponent]\n})\nexport class VsChipdropdownModule { }\n","/*\n * Public API Surface of vs-chipdropdown\n */\n\nexport * from './lib/vs-chipdropdown.service';\nexport * from './lib/vs-chipdropdown.component';\nexport * from './lib/vs-chipdropdown.module';\nexport * from './lib/vs-chipdd-cmp/vs-chipdd-cmp.component'\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -2,7 +2,6 @@ import { EventEmitter, SimpleChanges } from '@angular/core';
2
2
  import { MatAutocompleteSelectedEvent, MatAutocomplete, MatAutocompleteTrigger } from '@angular/material/autocomplete';
3
3
  import { VsChipdropdownService } from '../vs-chipdropdown.service';
4
4
  import { FormBuilder, FormGroup } from '@angular/forms';
5
- import * as i0 from "@angular/core";
6
5
  export declare class VsChipddCmpComponent {
7
6
  private service;
8
7
  private fb;
@@ -33,6 +32,4 @@ export declare class VsChipddCmpComponent {
33
32
  venSelected(event: MatAutocompleteSelectedEvent): void;
34
33
  private selectvenByName;
35
34
  comparekey(e: any): any;
36
- static ɵfac: i0.ɵɵFactoryDeclaration<VsChipddCmpComponent, never>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<VsChipddCmpComponent, "lib-vs-chipdd-cmp", never, { "InputFields": { "alias": "InputFields"; "required": false; }; "ResetForm": { "alias": "ResetForm"; "required": false; }; }, { "dataEvent": "dataEvent"; }, never, never, false, never>;
38
35
  }
@@ -1,5 +1,5 @@
1
- import * as i0 from "@angular/core";
2
- export declare class VsChipdropdownComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<VsChipdropdownComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<VsChipdropdownComponent, "lib-vs-chipdropdown", never, {}, {}, never, never, false, never>;
1
+ import { OnInit } from '@angular/core';
2
+ export declare class VsChipdropdownComponent implements OnInit {
3
+ constructor();
4
+ ngOnInit(): void;
5
5
  }
@@ -1,17 +1,2 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./vs-chipdropdown.component";
3
- import * as i2 from "./vs-chipdd-cmp/vs-chipdd-cmp.component";
4
- import * as i3 from "@angular/material/form-field";
5
- import * as i4 from "@angular/common";
6
- import * as i5 from "@angular/material/input";
7
- import * as i6 from "@angular/material/select";
8
- import * as i7 from "@angular/material/autocomplete";
9
- import * as i8 from "@angular/forms";
10
- import * as i9 from "@angular/material/grid-list";
11
- import * as i10 from "@angular/material/chips";
12
- import * as i11 from "@angular/material/icon";
13
1
  export declare class VsChipdropdownModule {
14
- static ɵfac: i0.ɵɵFactoryDeclaration<VsChipdropdownModule, never>;
15
- static ɵmod: i0.ɵɵNgModuleDeclaration<VsChipdropdownModule, [typeof i1.VsChipdropdownComponent, typeof i2.VsChipddCmpComponent], [typeof i3.MatFormFieldModule, typeof i4.CommonModule, typeof i5.MatInputModule, typeof i6.MatSelectModule, typeof i7.MatAutocompleteModule, typeof i8.FormsModule, typeof i8.ReactiveFormsModule, typeof i9.MatGridListModule, typeof i10.MatChipsModule, typeof i11.MatIconModule], [typeof i2.VsChipddCmpComponent]>;
16
- static ɵinj: i0.ɵɵInjectorDeclaration<VsChipdropdownModule>;
17
2
  }
@@ -1,11 +1,8 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { HttpClient } from '@angular/common/http';
3
- import * as i0 from "@angular/core";
4
3
  export declare class VsChipdropdownService {
5
4
  private http;
6
5
  constructor(http: HttpClient);
7
6
  postApi(Apiurl: any, json: {}, params: any): Observable<any>;
8
7
  GetApi(Apiurl: any, params?: string): Observable<any>;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<VsChipdropdownService, never>;
10
- static ɵprov: i0.ɵɵInjectableDeclaration<VsChipdropdownService>;
11
8
  }
package/package.json CHANGED
@@ -1,25 +1,21 @@
1
1
  {
2
2
  "name": "@unnilouis.org/vs-chipdropdown",
3
- "version": "0.0.14",
3
+ "version": "0.0.15-beta-2",
4
4
  "peerDependencies": {
5
- "@angular/common": "^16.2.0",
6
- "@angular/core": "^16.2.0"
5
+ "@angular/common": "^9.1.13",
6
+ "@angular/core": "^9.1.13"
7
7
  },
8
8
  "dependencies": {
9
- "tslib": "^2.3.0"
9
+ "tslib": "^1.10.0"
10
10
  },
11
- "sideEffects": false,
12
- "module": "fesm2022/unnilouis.org-vs-chipdropdown.mjs",
13
- "typings": "index.d.ts",
14
- "exports": {
15
- "./package.json": {
16
- "default": "./package.json"
17
- },
18
- ".": {
19
- "types": "./index.d.ts",
20
- "esm2022": "./esm2022/unnilouis.org-vs-chipdropdown.mjs",
21
- "esm": "./esm2022/unnilouis.org-vs-chipdropdown.mjs",
22
- "default": "./fesm2022/unnilouis.org-vs-chipdropdown.mjs"
23
- }
24
- }
25
- }
11
+ "main": "bundles/unnilouis.org-vs-chipdropdown.umd.js",
12
+ "module": "fesm5/unnilouis.org-vs-chipdropdown.js",
13
+ "es2015": "fesm2015/unnilouis.org-vs-chipdropdown.js",
14
+ "esm5": "esm5/unnilouis.org-vs-chipdropdown.js",
15
+ "esm2015": "esm2015/unnilouis.org-vs-chipdropdown.js",
16
+ "fesm5": "fesm5/unnilouis.org-vs-chipdropdown.js",
17
+ "fesm2015": "fesm2015/unnilouis.org-vs-chipdropdown.js",
18
+ "typings": "unnilouis.org-vs-chipdropdown.d.ts",
19
+ "metadata": "unnilouis.org-vs-chipdropdown.metadata.json",
20
+ "sideEffects": false
21
+ }
@@ -1,5 +1,4 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
- /// <amd-module name="@unnilouis.org/vs-chipdropdown" />
5
4
  export * from './public-api';
@@ -0,0 +1 @@
1
+ {"__symbolic":"module","version":4,"metadata":{"VsChipdropdownService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":4,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/common/http","name":"HttpClient","line":9,"character":28}]}],"postApi":[{"__symbolic":"method"}],"GetApi":[{"__symbolic":"method"}]},"statics":{"ɵprov":{}}},"VsChipdropdownComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":2,"character":1},"arguments":[{"selector":"lib-vs-chipdropdown","template":"\n <p>\n vs-chipdropdown works!\n </p>\n ","styles":[]}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}],"ngOnInit":[{"__symbolic":"method"}]}},"VsChipdropdownModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":15,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"VsChipdropdownComponent"},{"__symbolic":"reference","name":"VsChipddCmpComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/material/form-field","name":"MatFormFieldModule","line":17,"character":12},{"__symbolic":"reference","module":"@angular/material/input","name":"MatInputModule","line":17,"character":31},{"__symbolic":"reference","module":"@angular/material/select","name":"MatSelectModule","line":17,"character":46},{"__symbolic":"reference","module":"@angular/material/autocomplete","name":"MatAutocompleteModule","line":17,"character":62},{"__symbolic":"reference","module":"@angular/forms","name":"FormsModule","line":17,"character":84},{"__symbolic":"reference","module":"@angular/forms","name":"ReactiveFormsModule","line":17,"character":96},{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":17,"character":116},{"__symbolic":"reference","module":"@angular/material/grid-list","name":"MatGridListModule","line":17,"character":129},{"__symbolic":"reference","module":"@angular/material/chips","name":"MatChipsModule","line":17,"character":147},{"__symbolic":"reference","module":"@angular/material/icon","name":"MatIconModule","line":17,"character":162}],"exports":[{"__symbolic":"reference","name":"VsChipddCmpComponent"}]}]}],"members":{}},"VsChipddCmpComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":16,"character":1},"arguments":[{"selector":"lib-vs-chipdd-cmp","template":"<div>\n <form [formGroup]=\"DropdownForm\">\n <mat-form-field class=\"mat-chipScroll\"\n appearance=\"outline\">\n <mat-label>{{InputFields.label}}</mat-label>\n <mat-chip-list multiple #chipListvendor class=\"chip-container\">\n <mat-chip *ngFor=\"let obj of chipSelectedObj\" [removable]=\"true\" (removed)=\"removechip(obj)\" class=\"mat-chipEx\">\n {{ obj[InputFields.displaykey] }}\n <mat-icon matChipRemove>cancel</mat-icon>\n </mat-chip>\n <input #DropInput [matAutocomplete]=\"scrolll\" class=\"matformfieldinputstyle\"\n (keydown)=\"dropdownsearch()\" [matChipInputFor]=\"chipListvendor\" [matChipInputSeparatorKeyCodes]=\"\n separatorsKeysCodes\n \" [matChipInputAddOnBlur]=\"true\" formControlName=\"value\" />\n </mat-chip-list>\n <mat-autocomplete #scrolll=\"matAutocomplete\" (optionSelected)=\"venSelected($event)\"\n (opened)=\"autocompleteAppScroll()\">\n <ng-container>\n <mat-option *ngFor=\"let dropvalues of Dropdowndata\" [value]=\"dropvalues\" (click)=\"selected()\">\n {{dropvalues[InputFields.displaykey]}}\n </mat-option>\n </ng-container>\n </mat-autocomplete>\n </mat-form-field>\n </form>\n</div>","styles":[".mat-chipScroll{max-width:420px;width:100%}.mat-chipEx{text-align:left}.chip-container{overflow-y:scroll;max-height:80px}.chip-container::-webkit-scrollbar{width:6px;height:6px}.chip-container::-webkit-scrollbar-track{background:0 0}.chip-container::-webkit-scrollbar-thumb{border-radius:20px;background:#c3c3c3}.chip-container::-webkit-scrollbar-thumb:hover{background:#a6a6a6}"]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"VsChipdropdownService"},{"__symbolic":"reference","module":"@angular/forms","name":"FormBuilder","line":23,"character":66}]}],"InputFields":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":24,"character":3}}]}],"ResetForm":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":25,"character":3}}]}],"autocompleteTrigger":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":27,"character":3},"arguments":[{"__symbolic":"reference","module":"@angular/material/autocomplete","name":"MatAutocompleteTrigger","line":27,"character":13}]}]}],"matAutocompleteApp":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":28,"character":3},"arguments":["scrolll"]}]}],"dataEvent":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":29,"character":3}}]}],"DropInput":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":30,"character":3},"arguments":["DropInput"]}]}],"ngOnInit":[{"__symbolic":"method"}],"ngOnChanges":[{"__symbolic":"method"}],"autocompleteAppScroll":[{"__symbolic":"method"}],"dropdownsearch":[{"__symbolic":"method"}],"getdropdown":[{"__symbolic":"method"}],"selected":[{"__symbolic":"method"}],"searchparams":[{"__symbolic":"method"}],"removechip":[{"__symbolic":"method"}],"venSelected":[{"__symbolic":"method"}],"selectvenByName":[{"__symbolic":"method"}],"comparekey":[{"__symbolic":"method"}]}}},"origins":{"VsChipdropdownService":"./lib/vs-chipdropdown.service","VsChipdropdownComponent":"./lib/vs-chipdropdown.component","VsChipdropdownModule":"./lib/vs-chipdropdown.module","VsChipddCmpComponent":"./lib/vs-chipdd-cmp/vs-chipdd-cmp.component"},"importAs":"@unnilouis.org/vs-chipdropdown"}