made a reference book

This commit is contained in:
Daria Golova
2022-07-01 17:16:09 +03:00
parent 85897a8efe
commit 9703371f28
2 changed files with 35 additions and 7 deletions

View File

@@ -2,9 +2,37 @@ import { cryptography } from "@liskhq/lisk-client";
import { makeAutoObservable, reaction } from "mobx";
import { registrationStore } from './store';
const labelMap = {
first_name: 'First name',
second_name: 'Second name',
gender: "Gender",
birthdate: "Birthdate",
place_of_birth: "Place of birth",
nationality: "Nationality",
national_id: "National id",
national_doctype: "National doctype",
national_doc_id: "National doc id",
national_doc_issue_date: "National doc issue date",
national_doc_expiry_date: "National doc expiry date",
telephone: "Telephone",
twitter: "Twitter",
facebook: "Facebook",
instagram: "Instagram",
youtube: "Youtube",
wechat: "Wechat",
tiktok: "Tiktok",
linkedin: "Linkedin",
vk: "Vk",
github: "Github",
telegram: "Telegram",
qq: "Qq",
snapchat: "Snapchat",
reddit: "Reddit"
};
class UserDataStore{
_data = []
_data = [];
constructor() {
makeAutoObservable(this);
@@ -13,10 +41,10 @@ class UserDataStore{
})
}
get data(){
get decryptedData(){
return this._data.map((elem) => ({
...elem,
label: elem.label.charAt(0).toUpperCase()+elem.label.slice(1).split('_').join(' '),
label: labelMap[elem.label],
value: cryptography.decryptMessageWithPassphrase(elem.value, elem.value_nonce, registrationStore.passPhrase, registrationStore.pubKey).split(':')[1]
}))
}