Merge with Origin

This commit is contained in:
Rene V. Vergara A. 2022-07-20 11:03:18 -05:00
commit eea842d4e4
4 changed files with 47 additions and 51 deletions

View File

@ -51,27 +51,29 @@ img.icon{
}
.buttons-class {
background-color: #ff4722;
color: white;
font-weight: 700;
height: 25px !important;
width: 80px !important;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
margin: auto;
font-family: 'Spartan', sans-serif;
background-color: #ff4722;
color: white;
font-weight: 500;
height: 25px !important;
width: 80px !important;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
margin: auto;
}
.button-cancel-class {
font-weight: 700;
height: 25px !important;
width: 80px !important;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
margin: auto;
font-family: 'Spartan', sans-serif;
font-weight: 500;
height: 25px !important;
width: 80px !important;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
margin: auto;
}
.availableItems{

View File

@ -1,9 +1,9 @@
* {
font-family: Spartan;
font-family: 'Spartan', sans-serif;
}
.settings-title {
font-family: Spartan;
font-family: 'Spartan', sans-serif;
background: #ff4722;
color: white;
font-size: 30px;
@ -13,6 +13,9 @@
.settings_field {
width: 100%;
font-family: Spartan;
font-family: 'Spartan', sans-serif;
}
.mat-slide-toggle-content {
font-family: 'Spartan', sans-serif;
}

View File

@ -23,21 +23,16 @@
(change)="onChange($event)">
Use zatoshis?
</mat-slide-toggle>
<pre></pre>
<mat-slide-toggle formControlName="VkeyOn"
(change)="onChangeVKeyOn($event)">
Activate payment confirmation?
</mat-slide-toggle>
<pre></pre>
<mat-form-field [style.width.%]="100">
<mat-label>Viewing key</mat-label>
<input matInput placeholder="Your wallet viewing key"
formControlName="VKey"
[formControl]="viewkeyControl">
</mat-form-field>
<mat-slide-toggle formControlName="useVKey"
(change)="onChangeVKeyOn($event)">
Activate payment confirmation?
</mat-slide-toggle>
<pre></pre>
<mat-form-field [style.width.%]="100">
<mat-label>Viewing key</mat-label>
<input matInput placeholder="Your wallet viewing key"
formControlName="vKey">
</mat-form-field>
</mat-dialog-content>
@ -55,4 +50,4 @@
Save
</button>
</mat-dialog-actions>
</div>
</div>

View File

@ -36,8 +36,6 @@ export class SettingsComponent implements OnInit {
}
];
viewkeyControl = new FormControl({ value: null, disabled: false });
constructor(
private fb: UntypedFormBuilder,
private dialogRef: MatDialogRef<SettingsComponent>,
@ -49,15 +47,12 @@ export class SettingsComponent implements OnInit {
name: [data.name, Validators.required],
currency: [data.currency, Validators.required],
useZats: [data.zats, Validators.required],
VkeyOn: [data.payconf, Validators.required],
VKey: [{value:data.viewkey, disabled: !this.useVKey }]
useVKey: [data.payconf, Validators.required],
vKey: [data.viewkey]
});
/*
if ( data.payconf )
this.viewkeyControl.enable()
else
this.viewkeyControl.disable();
*/
if (data.payconf) {
this.settingsForm.get('vKey')!.enable();
}
this.owner = data;
@ -71,9 +66,11 @@ export class SettingsComponent implements OnInit {
}
save() {
console.log('Settings', this.settingsForm.value.vKey);
this.owner.name = this.settingsForm.value.name;
this.owner.currency = this.settingsForm.value.currency;
this.owner.zats = this.settingsForm.value.useZats;
this.owner.payconf = this.useVKey;
if ( this.useVKey ) {
this.owner.viewkey = this.settingsForm.value.VKey;
@ -81,6 +78,7 @@ export class SettingsComponent implements OnInit {
}
else
this.owner.viewkey = '';
this.dialogRef.close(this.owner);
}
@ -95,11 +93,9 @@ export class SettingsComponent implements OnInit {
this.useVKey = ob.checked;
if ( ob.checked )
this.viewkeyControl.enable()
this.settingsForm.get('vKey')!.enable();
else
{
this.viewkeyControl.disable();
}
this.settingsForm.get('vKey')!.disable();
}
}