forked from trent_larson/crowd-funder-for-time-pwa
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf4375164f | ||
|
|
bdb9da2b87 | ||
|
|
6fc070b45d | ||
|
|
55ba4f0154 | ||
|
|
38d04566a4 | ||
|
|
4b8466fb04 | ||
|
|
f45a528f43 | ||
|
|
d25f8f45bd | ||
|
|
fee0c08f76 |
@@ -15,6 +15,5 @@ module.exports = {
|
|||||||
rules: {
|
rules: {
|
||||||
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||||
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||||
"@typescript-eslint/no-unnecessary-type-constraint": "off",
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
187
README.md
187
README.md
@@ -20,190 +20,5 @@ npm run build
|
|||||||
npm run lint
|
npm run lint
|
||||||
```
|
```
|
||||||
|
|
||||||
### Test key contents
|
### Customize configuration
|
||||||
|
|
||||||
See [this page](openssl_signing_console.rst)
|
|
||||||
|
|
||||||
### Register new user on test server
|
|
||||||
|
|
||||||
New users require registration. This can be done with a claim payload like this
|
|
||||||
by an existing user:
|
|
||||||
|
|
||||||
```
|
|
||||||
const vcClaim = {
|
|
||||||
"@context": "https://schema.org",
|
|
||||||
"@type": "RegisterAction",
|
|
||||||
agent: { identifier: identity0.did },
|
|
||||||
object: SERVICE_ID,
|
|
||||||
participant: { identifier: newIdentity.did },
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
On the test server, User #0 has rights to register others, so you can start
|
|
||||||
playing one of two ways:
|
|
||||||
|
|
||||||
- Import the keys for the test User `did:ethr:0x000Ee5654b9742f6Fe18ea970e32b97ee2247B51` by importing this seed phrase:
|
|
||||||
`seminar accuse mystery assist delay law thing deal image undo guard initial shallow wrestle list fragile borrow velvet tomorrow awake explain test offer control`
|
|
||||||
(Other test users are found [here](https://github.com/trentlarson/endorser-ch/blob/master/test/util.js).)
|
|
||||||
|
|
||||||
- Alternatively, register someone else under User #0 automatically:
|
|
||||||
|
|
||||||
* In the `src/views/AccountViewView.vue` file, uncomment the lines referring to "testServerRegisterUser".
|
|
||||||
|
|
||||||
* Visit the `/account` page.
|
|
||||||
|
|
||||||
### Create multiple identifiers
|
|
||||||
|
|
||||||
Go to /start and create or import a new one. Then switch identifiers on the bottom of the Your Identity page.
|
|
||||||
|
|
||||||
### Create keys with alternate tools
|
|
||||||
|
|
||||||
See [this page](openssl_signing_console.rst)
|
|
||||||
|
|
||||||
### Customize Vue configuration
|
|
||||||
See [Configuration Reference](https://cli.vuejs.org/config/).
|
See [Configuration Reference](https://cli.vuejs.org/config/).
|
||||||
|
|
||||||
|
|
||||||
## Scenarios
|
|
||||||
|
|
||||||
- Create a new identity as prompted. Go to "Your Identity" screen and copy the ID to the clipboard.
|
|
||||||
|
|
||||||
- Go back to /start and import test User `did:ethr:0x000Ee5654b9742f6Fe18ea970e32b97ee2247B51` with this this seed phrase:
|
|
||||||
`seminar accuse mystery assist delay law thing deal image undo guard initial shallow wrestle list fragile borrow velvet tomorrow awake explain test offer control`
|
|
||||||
(Other test users are found [here](https://github.com/trentlarson/endorser-ch/blob/master/test/util.js).)
|
|
||||||
|
|
||||||
- Go to "Your Contacts" screen and add the ID you copied to the clipboard, and hit "+" to add them.
|
|
||||||
|
|
||||||
- Click on the "Registration Unknown" button and register that person to be able to make claims as them.
|
|
||||||
|
|
||||||
### Clear data & restart
|
|
||||||
|
|
||||||
Clear cache for localhost, then go to http://localhost:8080/start
|
|
||||||
(because it'll generate a new one automatically if you start on the `/account` page).
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Dependencies
|
|
||||||
|
|
||||||
See https://tea.xyz
|
|
||||||
|
|
||||||
| Project | Version |
|
|
||||||
| ---------- | --------- |
|
|
||||||
| nodejs.org | ^16.0.0 |
|
|
||||||
| npmjs.com | ^8.0.0 |
|
|
||||||
|
|
||||||
## Other
|
|
||||||
|
|
||||||
### Reference Material
|
|
||||||
|
|
||||||
```
|
|
||||||
// reference material from https://github.com/trentlarson/endorser-mobile/blob/8dc8e0353e0cc80ffa7ed89ded15c8b0da92726b/src/utility/idUtility.ts#L83
|
|
||||||
|
|
||||||
// Import an existing ID
|
|
||||||
export const importAndStoreIdentifier = async (mnemonic: string, mnemonicPassword: string, toLowercase: boolean, previousIdentifiers: Array<IIdentifier>) => {
|
|
||||||
|
|
||||||
// just to get rid of variability that might cause an error
|
|
||||||
mnemonic = mnemonic.trim().toLowerCase()
|
|
||||||
|
|
||||||
/**
|
|
||||||
// an approach I pieced together
|
|
||||||
// requires: yarn add elliptic
|
|
||||||
// ... plus:
|
|
||||||
// const EC = require('elliptic').ec
|
|
||||||
// const secp256k1 = new EC('secp256k1')
|
|
||||||
//
|
|
||||||
const keyHex: string = bip39.mnemonicToEntropy(mnemonic)
|
|
||||||
// returns a KeyPair from the elliptic.ec library
|
|
||||||
const keyPair = secp256k1.keyFromPrivate(keyHex, 'hex')
|
|
||||||
// this code is from did-provider-eth createIdentifier
|
|
||||||
const privateHex = keyPair.getPrivate('hex')
|
|
||||||
const publicHex = keyPair.getPublic('hex')
|
|
||||||
const address = didJwt.toEthereumAddress(publicHex)
|
|
||||||
**/
|
|
||||||
|
|
||||||
/**
|
|
||||||
// from https://github.com/uport-project/veramo/discussions/346#discussioncomment-302234
|
|
||||||
// ... which almost works but the didJwt.toEthereumAddress is wrong
|
|
||||||
// requires: yarn add bip32
|
|
||||||
// ... plus: import * as bip32 from 'bip32'
|
|
||||||
//
|
|
||||||
const seed: Buffer = await bip39.mnemonicToSeed(mnemonic)
|
|
||||||
const root = bip32.fromSeed(seed)
|
|
||||||
const node = root.derivePath(UPORT_ROOT_DERIVATION_PATH)
|
|
||||||
const privateHex = node.privateKey.toString("hex")
|
|
||||||
const publicHex = node.publicKey.toString("hex")
|
|
||||||
const address = didJwt.toEthereumAddress('0x' + publicHex)
|
|
||||||
**/
|
|
||||||
|
|
||||||
/**
|
|
||||||
// from https://github.com/uport-project/veramo/discussions/346#discussioncomment-302234
|
|
||||||
// requires: yarn add @ethersproject/hdnode
|
|
||||||
// ... plus: import { HDNode } from '@ethersproject/hdnode'
|
|
||||||
**/
|
|
||||||
const hdnode: HDNode = HDNode.fromMnemonic(mnemonic)
|
|
||||||
const rootNode: HDNode = hdnode.derivePath(UPORT_ROOT_DERIVATION_PATH)
|
|
||||||
const privateHex = rootNode.privateKey.substring(2) // original starts with '0x'
|
|
||||||
const publicHex = rootNode.publicKey.substring(2) // original starts with '0x'
|
|
||||||
let address = rootNode.address
|
|
||||||
|
|
||||||
const prevIds = previousIdentifiers || [];
|
|
||||||
|
|
||||||
if (toLowercase) {
|
|
||||||
const foundEqual = R.find(
|
|
||||||
(id) => utility.rawAddressOfDid(id.did) === address,
|
|
||||||
prevIds
|
|
||||||
)
|
|
||||||
if (foundEqual) {
|
|
||||||
// They're trying to create a lowercase version of one that exists in normal case.
|
|
||||||
// (We really should notify the user.)
|
|
||||||
appStore.dispatch(appSlice.actions.addLog({log: true, msg: "Will create a normal-case version of the DID since a regular version exists."}))
|
|
||||||
} else {
|
|
||||||
address = address.toLowerCase()
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// They're not trying to convert to lowercase.
|
|
||||||
const foundLower = R.find((id) =>
|
|
||||||
utility.rawAddressOfDid(id.did) === address.toLowerCase(),
|
|
||||||
prevIds
|
|
||||||
)
|
|
||||||
if (foundLower) {
|
|
||||||
// They're trying to create a normal case version of one that exists in lowercase.
|
|
||||||
// (We really should notify the user.)
|
|
||||||
appStore.dispatch(appSlice.actions.addLog({log: true, msg: "Will create a lowercase version of the DID since a lowercase version exists."}))
|
|
||||||
address = address.toLowerCase()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
appStore.dispatch(appSlice.actions.addLog({log: false, msg: "... derived keys and address..."}))
|
|
||||||
|
|
||||||
const newId = newIdentifier(address, publicHex, privateHex, UPORT_ROOT_DERIVATION_PATH)
|
|
||||||
appStore.dispatch(appSlice.actions.addLog({log: false, msg: "... created new ID..."}))
|
|
||||||
|
|
||||||
// awaiting because otherwise the UI may not see that a mnemonic was created
|
|
||||||
const savedId = await storeIdentifier(newId, mnemonic, mnemonicPassword)
|
|
||||||
appStore.dispatch(appSlice.actions.addLog({log: false, msg: "... stored new ID..."}))
|
|
||||||
return savedId
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create a totally new ID
|
|
||||||
export const createAndStoreIdentifier = async (mnemonicPassword) => {
|
|
||||||
|
|
||||||
// This doesn't give us the entropy/seed.
|
|
||||||
//const id = await agent.didManagerCreate()
|
|
||||||
|
|
||||||
const entropy = crypto.randomBytes(32)
|
|
||||||
const mnemonic = bip39.entropyToMnemonic(entropy)
|
|
||||||
appStore.dispatch(appSlice.actions.addLog({log: false, msg: "... generated mnemonic..."}))
|
|
||||||
|
|
||||||
return importAndStoreIdentifier(mnemonic, mnemonicPassword, false, [])
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Kudos
|
|
||||||
|
|
||||||
Gifts make the world go 'round!
|
|
||||||
|
|
||||||
* [Máximo Fernández](https://medium.com/@maxfarenas) for the 3D [code](https://github.com/maxfer03/vue-three-ns) and [explanatory post](https://medium.com/nicasource/building-an-interactive-web-portfolio-with-vue-three-js-part-three-implementing-three-js-452cb375ef80)
|
|
||||||
* [Many tools & libraries]() such as Nodejs.org, IntelliJ Idea, Veramo.io, Vuejs.org, threejs.org
|
|
||||||
* [Bush 3D model](https://sketchfab.com/3d-models/lupine-plant-bf30f1110c174d4baedda0ed63778439)
|
|
||||||
* [Forest floor image](https://www.goodfreephotos.com/albums/textures/leafy-autumn-forest-floor.jpg)
|
|
||||||
|
|||||||
@@ -1,45 +0,0 @@
|
|||||||
You can create a JWT using a library or by encoding the header and payload base64Url and signing it with a secret using a ES256K algorithm. Here is an example of how you can create a JWT using the jq and openssl command line utilities:
|
|
||||||
|
|
||||||
Here is an example of how you can use openssl to sign a JWT with the ES256K algorithm:
|
|
||||||
|
|
||||||
Generate an ECDSA key pair using the secp256k1 curve:
|
|
||||||
|
|
||||||
openssl ecparam -name secp256k1 -genkey -noout -out private.pem
|
|
||||||
openssl ec -in private.pem -pubout -out public.pem
|
|
||||||
|
|
||||||
First, create a header object as a JSON object containing the alg (algorithm) and typ (type) fields. For example:
|
|
||||||
|
|
||||||
header='{"alg":"ES256K", "issuer": "", "typ":"JWT"}'
|
|
||||||
|
|
||||||
Next, create a payload object as a JSON object containing the claims you want to include in the JWT. For example schema.org :
|
|
||||||
|
|
||||||
payload='{"@context": "http://schema.org", "@type": "PlanAction", "identifier": "did:ethr:0xb86913f83A867b5Ef04902419614A6FF67466c12", "name": "Test", "description": "Me"}'
|
|
||||||
|
|
||||||
Encode the header and payload objects as base64Url strings. You can use the jq command line utility to do this:
|
|
||||||
|
|
||||||
header_b64=$(echo -n "$header" | jq -c -M . | tr -d '\n')
|
|
||||||
payload_b64=$(echo -n "$payload" | jq -c -M . | tr -d '\n')
|
|
||||||
|
|
||||||
Concatenate the encoded header, payload, and a secret to create the signing input:
|
|
||||||
|
|
||||||
signing_input="$header_b64.$payload_b64"
|
|
||||||
|
|
||||||
Create the signature by signing the signing input with a ES256K algorithm and your secret. You can use the openssl command line utility to do this:
|
|
||||||
|
|
||||||
signature=$(echo -n "$signing_input" | openssl dgst -sha256 -sign private.pem)
|
|
||||||
|
|
||||||
Finally, encode the signature as a base64Url string and concatenate it with the signing input to create the JWT:
|
|
||||||
|
|
||||||
signature_b64=$(echo -n "$signature" | base64 | tr -d '=' | tr '+' '-' | tr '/' '_')
|
|
||||||
jwt="$signing_input.$signature_b64"
|
|
||||||
|
|
||||||
This JWT can then be passed in the Authorization header of a HTTP request as a bearer token, for example:
|
|
||||||
|
|
||||||
Authorization: Bearer $jwt
|
|
||||||
|
|
||||||
To verify the JWT, you can use the openssl utility with the public key:
|
|
||||||
|
|
||||||
openssl dgst -sha256 -verify public.pem -signature <(echo -n "$signature") "$signing_input"
|
|
||||||
|
|
||||||
This will verify the signature and output Verified OK if the signature is valid. If the signature is not valid, it will output an error.
|
|
||||||
|
|
||||||
16778
package-lock.json
generated
16778
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
79
package.json
79
package.json
@@ -8,58 +8,19 @@
|
|||||||
"lint": "vue-cli-service lint"
|
"lint": "vue-cli-service lint"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ethersproject/hdnode": "^5.7.0",
|
"@fortawesome/fontawesome-svg-core": "^6.2.1",
|
||||||
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
"@fortawesome/free-solid-svg-icons": "^6.2.1",
|
||||||
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
"@fortawesome/vue-fontawesome": "^3.0.2",
|
||||||
"@fortawesome/vue-fontawesome": "^3.0.3",
|
"core-js": "^3.26.1",
|
||||||
"@pvermeer/dexie-encrypted-addon": "^3.0.0",
|
|
||||||
"@tweenjs/tween.js": "^21.0.0",
|
|
||||||
"@veramo/core": "^5.2.0",
|
|
||||||
"@veramo/credential-w3c": "^5.2.0",
|
|
||||||
"@veramo/data-store": "^5.2.0",
|
|
||||||
"@veramo/did-manager": "^5.1.2",
|
|
||||||
"@veramo/did-provider-ethr": "^5.1.2",
|
|
||||||
"@veramo/did-resolver": "^5.2.0",
|
|
||||||
"@veramo/key-manager": "^5.1.2",
|
|
||||||
"@vueuse/core": "^10.2.1",
|
|
||||||
"@zxing/text-encoding": "^0.9.0",
|
|
||||||
"axios": "^1.4.0",
|
|
||||||
"buffer": "^6.0.3",
|
|
||||||
"class-transformer": "^0.5.1",
|
|
||||||
"core-js": "^3.31.1",
|
|
||||||
"dexie": "^3.2.4",
|
|
||||||
"dexie-export-import": "^4.0.7",
|
|
||||||
"did-jwt": "^7.2.4",
|
|
||||||
"ethereum-cryptography": "^2.0.0",
|
|
||||||
"ethereumjs-util": "^7.1.5",
|
|
||||||
"ethr-did-resolver": "^8.0.0",
|
|
||||||
"js-generate-password": "^0.1.9",
|
|
||||||
"localstorage-slim": "^2.4.0",
|
|
||||||
"luxon": "^3.3.0",
|
|
||||||
"merkletreejs": "^0.3.10",
|
|
||||||
"moment": "^2.29.4",
|
|
||||||
"notiwind": "^2.0.2",
|
|
||||||
"papaparse": "^5.4.1",
|
|
||||||
"pina": "^0.20.2204228",
|
|
||||||
"pinia-plugin-persistedstate": "^3.1.0",
|
|
||||||
"qr-code-generator-vue3": "^1.4.21",
|
|
||||||
"ramda": "^0.29.0",
|
|
||||||
"readable-stream": "^4.4.2",
|
|
||||||
"reflect-metadata": "^0.1.13",
|
|
||||||
"register-service-worker": "^1.7.2",
|
"register-service-worker": "^1.7.2",
|
||||||
"three": "^0.154.0",
|
"vue": "^3.2.45",
|
||||||
"vue": "^3.3.4",
|
"vue-class-component": "^8.0.0-0",
|
||||||
"vue-axios": "^3.5.2",
|
"vue-router": "^4.1.6",
|
||||||
"vue-facing-decorator": "^2.1.20",
|
"vuex": "^4.1.0"
|
||||||
"vue-property-decorator": "^9.1.2",
|
|
||||||
"vue-router": "^4.2.3",
|
|
||||||
"web-did-resolver": "^2.0.27"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/ramda": "^0.29.3",
|
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
||||||
"@types/three": "^0.152.1",
|
"@typescript-eslint/parser": "^5.44.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.61.0",
|
|
||||||
"@typescript-eslint/parser": "^5.61.0",
|
|
||||||
"@vue/cli-plugin-babel": "~5.0.8",
|
"@vue/cli-plugin-babel": "~5.0.8",
|
||||||
"@vue/cli-plugin-eslint": "~5.0.8",
|
"@vue/cli-plugin-eslint": "~5.0.8",
|
||||||
"@vue/cli-plugin-pwa": "~5.0.8",
|
"@vue/cli-plugin-pwa": "~5.0.8",
|
||||||
@@ -67,15 +28,15 @@
|
|||||||
"@vue/cli-plugin-typescript": "~5.0.8",
|
"@vue/cli-plugin-typescript": "~5.0.8",
|
||||||
"@vue/cli-plugin-vuex": "~5.0.8",
|
"@vue/cli-plugin-vuex": "~5.0.8",
|
||||||
"@vue/cli-service": "~5.0.8",
|
"@vue/cli-service": "~5.0.8",
|
||||||
"@vue/eslint-config-typescript": "^11.0.3",
|
"@vue/eslint-config-typescript": "^11.0.2",
|
||||||
"autoprefixer": "^10.4.14",
|
"autoprefixer": "^10.4.13",
|
||||||
"eslint": "^8.44.0",
|
"eslint": "^8.28.0",
|
||||||
"eslint-config-prettier": "^8.8.0",
|
"eslint-config-prettier": "^8.5.0",
|
||||||
"eslint-plugin-prettier": "^5.0.0-alpha.1",
|
"eslint-plugin-prettier": "^4.2.1",
|
||||||
"eslint-plugin-vue": "^9.15.1",
|
"eslint-plugin-vue": "^9.8.0",
|
||||||
"postcss": "^8.4.24",
|
"postcss": "^8.4.19",
|
||||||
"prettier": "^3.0.0",
|
"prettier": "^2.8.0",
|
||||||
"tailwindcss": "^3.3.2",
|
"tailwindcss": "^3.2.4",
|
||||||
"typescript": "~5.1.6"
|
"typescript": "~4.9.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,103 +0,0 @@
|
|||||||
|
|
||||||
tasks:
|
|
||||||
- 01 add a location for a project via map pin
|
|
||||||
- 04 search by a bounding box for local projects (see API by clicking on "Nearby")
|
|
||||||
- 01 Replace Gifted/Give in ContactsView with GiftedDialog assignee:jose
|
|
||||||
- 02 Fix images on projectview - allow choice of image from a pallete of images or a url image.
|
|
||||||
|
|
||||||
- 08 Scan QR code to import into contacts.
|
|
||||||
|
|
||||||
- 40 notifications :
|
|
||||||
- push, where we trigger a ServiceWorker(?) in the app to reach out and check for new data
|
|
||||||
|
|
||||||
- refactor UI :
|
|
||||||
- .5 Alerts show at the top and can be missed if you've scrolled down on the page, eg. account data download
|
|
||||||
- .2 Make alerts at the top more visible (because they're currently a similar color and sometimes aren't seen)
|
|
||||||
|
|
||||||
- Show pop-up or some message confirming that settings & contacts download has been initiated/finished
|
|
||||||
|
|
||||||
- Ensure each action sent to the server has a confirmation - eg registration
|
|
||||||
|
|
||||||
- Home Feed & Quick Give screen :
|
|
||||||
- 01 save the feed-viewed status in settings storage ("afterQuery")
|
|
||||||
- 01 quick action - send action, maybe choose via canvas tool https://github.com/konvajs/vue-konva
|
|
||||||
|
|
||||||
- 24 Move to Vite
|
|
||||||
|
|
||||||
- .5 add link to further project / people when a project pays ahead
|
|
||||||
- .5 add project ID to the URL, to make a project publicly-accessible
|
|
||||||
- .5 remove edit from project page for projects owned by others
|
|
||||||
- .5 fix where user 0 sees no txns from user 1 on contacts page but sees them on list page
|
|
||||||
- .2 there are three dots at the top of ProjectViewView that refreshes the page but doesn't do anything else
|
|
||||||
- 01 fix images on project page, on discovery page
|
|
||||||
- .2 on ProjectViewView, show different messages for "to" and "from" sections if none exist
|
|
||||||
- .2 fix static icon to the right on project page (Matthew - I've made "Rotary" into issuer?)
|
|
||||||
- .2 fix rate limit verbiage (with the new one-per-day allowance) assignee:trent
|
|
||||||
|
|
||||||
- Discuss whether the remaining tasks are worthwhile before MVP release.
|
|
||||||
|
|
||||||
- contacts v+ :
|
|
||||||
- 01 Import all the non-sensitive data (ie. contacts & settings).
|
|
||||||
- .2 show error to user when adding a duplicate contact
|
|
||||||
- 01 parse input more robustly (with CSV lib and not commas)
|
|
||||||
|
|
||||||
- stats v1 :
|
|
||||||
- 01 show numeric stats
|
|
||||||
- 01 link to world for specific stats
|
|
||||||
- .5 don't load another instance of a bush if it already exists
|
|
||||||
- maybe - allow type annotations in World.js & landmarks.js (since we get this error - "Types are not supported by current JavaScript version")
|
|
||||||
- 08 convert to cleaner implementation (maybe Drie -- https://github.com/janvorisek/drie)
|
|
||||||
|
|
||||||
- .5 on ProjectView page, show immediate feedback when a gift is given (on list?) -- and consider the same for Home & Contacts pages
|
|
||||||
- .5 customize favicon
|
|
||||||
- 04 allow user to download claims, mine + ones I can see about me from others
|
|
||||||
- Do we want to combine first name & last name?
|
|
||||||
- Show a warning if both giver and recipient are the same (but still allow?)
|
|
||||||
|
|
||||||
- Release Minimum Viable Product :
|
|
||||||
- 08 thorough testing for errors & edge cases
|
|
||||||
- Turn off stats-world or ensure it's usable (eg. cannot zoom out too far and lose world, cannot screenshot).
|
|
||||||
- Add disclaimers.
|
|
||||||
- Rename DB to TimeSafari.
|
|
||||||
- Switch default server to the public server.
|
|
||||||
- Deploy to a server.
|
|
||||||
- Ensure public server has limits that work for group adoption.
|
|
||||||
- Test PWA features on Android and iOS.
|
|
||||||
blocks: ref:https://raw.githubusercontent.com/trentlarson/lives-of-gifts/master/project.yaml#kickstarter%20for%20time
|
|
||||||
|
|
||||||
- linking between projects or plans :
|
|
||||||
- show total time given to & from a project
|
|
||||||
- terminology:
|
|
||||||
- for subtasks: fulfills (is it really the same?), feeds, contributes to, supplies, boosts, advances
|
|
||||||
- for blocking: blocks, precedes, comes before, is sought by -- vs follows, seeks, builds on ("contributes to" isn't specific enough, "succeeds" has different, possibly confusing meaning)
|
|
||||||
|
|
||||||
- Stats :
|
|
||||||
- 01 point out user's location on the world
|
|
||||||
- 01 present a credential selected from the stats
|
|
||||||
- 04 show gives spreading to other places
|
|
||||||
- badge for most gives/receives/confirms per day/week/month
|
|
||||||
- badge for amount given/offered to your project
|
|
||||||
- set a goal of given/offers
|
|
||||||
|
|
||||||
- automated tests, eg. cypress
|
|
||||||
|
|
||||||
- Notifications (wake on the phone, push notifications)
|
|
||||||
|
|
||||||
- Connect with phone contacts
|
|
||||||
|
|
||||||
- Multiple identities
|
|
||||||
|
|
||||||
- Peer DID
|
|
||||||
|
|
||||||
- DIDComm
|
|
||||||
|
|
||||||
- Write to or read from a different ledger (eg. private ACDC, attest.sh)
|
|
||||||
|
|
||||||
- Do we want split first name & last name?
|
|
||||||
|
|
||||||
- 40 notifications v+ :
|
|
||||||
- pull, w/ scheduled runs
|
|
||||||
|
|
||||||
log:
|
|
||||||
- videos for multiple identities https://youtu.be/p8L87AeD76w and for adding time to contacts https://youtu.be/7Yylczevp10 done:2023-03-29
|
|
||||||
- project lists, contact totals & actions, multiple identifiers, stats-world, activity feed, rename of this project file (use "--follow --") milestone:2 done:2023-06-27
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 705 KiB |
@@ -1,11 +0,0 @@
|
|||||||
Model Information:
|
|
||||||
* title: Lupine Plant
|
|
||||||
* source: https://sketchfab.com/3d-models/lupine-plant-bf30f1110c174d4baedda0ed63778439
|
|
||||||
* author: rufusrockwell (https://sketchfab.com/rufusrockwell)
|
|
||||||
|
|
||||||
Model License:
|
|
||||||
* license type: CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)
|
|
||||||
* requirements: Author must be credited. Commercial use is allowed.
|
|
||||||
|
|
||||||
If you use this 3D model in your project be sure to copy paste this credit wherever you share it:
|
|
||||||
This work is based on "Lupine Plant" (https://sketchfab.com/3d-models/lupine-plant-bf30f1110c174d4baedda0ed63778439) by rufusrockwell (https://sketchfab.com/rufusrockwell) licensed under CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)
|
|
||||||
Binary file not shown.
@@ -1,229 +0,0 @@
|
|||||||
{
|
|
||||||
"accessors": [
|
|
||||||
{
|
|
||||||
"bufferView": 2,
|
|
||||||
"componentType": 5126,
|
|
||||||
"count": 2759,
|
|
||||||
"max": [
|
|
||||||
41.3074951171875,
|
|
||||||
40.37548828125,
|
|
||||||
87.85917663574219
|
|
||||||
],
|
|
||||||
"min": [
|
|
||||||
-35.245540618896484,
|
|
||||||
-36.895416259765625,
|
|
||||||
-0.9094290137290955
|
|
||||||
],
|
|
||||||
"type": "VEC3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bufferView": 2,
|
|
||||||
"byteOffset": 33108,
|
|
||||||
"componentType": 5126,
|
|
||||||
"count": 2759,
|
|
||||||
"max": [
|
|
||||||
0.9999382495880127,
|
|
||||||
0.9986748695373535,
|
|
||||||
0.9985831379890442
|
|
||||||
],
|
|
||||||
"min": [
|
|
||||||
-0.9998949766159058,
|
|
||||||
-0.9975876212120056,
|
|
||||||
-0.411094069480896
|
|
||||||
],
|
|
||||||
"type": "VEC3"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bufferView": 3,
|
|
||||||
"componentType": 5126,
|
|
||||||
"count": 2759,
|
|
||||||
"max": [
|
|
||||||
0.9987699389457703,
|
|
||||||
0.9998998045921326,
|
|
||||||
0.9577858448028564,
|
|
||||||
1.0
|
|
||||||
],
|
|
||||||
"min": [
|
|
||||||
-0.9987726807594299,
|
|
||||||
-0.9990445971488953,
|
|
||||||
-0.999801516532898,
|
|
||||||
1.0
|
|
||||||
],
|
|
||||||
"type": "VEC4"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bufferView": 1,
|
|
||||||
"componentType": 5126,
|
|
||||||
"count": 2759,
|
|
||||||
"max": [
|
|
||||||
1.0061479806900024,
|
|
||||||
0.9993550181388855
|
|
||||||
],
|
|
||||||
"min": [
|
|
||||||
0.00279300007969141,
|
|
||||||
0.0011620000004768372
|
|
||||||
],
|
|
||||||
"type": "VEC2"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"bufferView": 0,
|
|
||||||
"componentType": 5125,
|
|
||||||
"count": 6378,
|
|
||||||
"type": "SCALAR"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"asset": {
|
|
||||||
"extras": {
|
|
||||||
"author": "rufusrockwell (https://sketchfab.com/rufusrockwell)",
|
|
||||||
"license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)",
|
|
||||||
"source": "https://sketchfab.com/3d-models/lupine-plant-bf30f1110c174d4baedda0ed63778439",
|
|
||||||
"title": "Lupine Plant"
|
|
||||||
},
|
|
||||||
"generator": "Sketchfab-12.68.0",
|
|
||||||
"version": "2.0"
|
|
||||||
},
|
|
||||||
"bufferViews": [
|
|
||||||
{
|
|
||||||
"buffer": 0,
|
|
||||||
"byteLength": 25512,
|
|
||||||
"name": "floatBufferViews",
|
|
||||||
"target": 34963
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"buffer": 0,
|
|
||||||
"byteLength": 22072,
|
|
||||||
"byteOffset": 25512,
|
|
||||||
"byteStride": 8,
|
|
||||||
"name": "floatBufferViews",
|
|
||||||
"target": 34962
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"buffer": 0,
|
|
||||||
"byteLength": 66216,
|
|
||||||
"byteOffset": 47584,
|
|
||||||
"byteStride": 12,
|
|
||||||
"name": "floatBufferViews",
|
|
||||||
"target": 34962
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"buffer": 0,
|
|
||||||
"byteLength": 44144,
|
|
||||||
"byteOffset": 113800,
|
|
||||||
"byteStride": 16,
|
|
||||||
"name": "floatBufferViews",
|
|
||||||
"target": 34962
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"buffers": [
|
|
||||||
{
|
|
||||||
"byteLength": 157944,
|
|
||||||
"uri": "scene.bin"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"images": [
|
|
||||||
{
|
|
||||||
"uri": "textures/lambert2SG_baseColor.png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uri": "textures/lambert2SG_normal.png"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"materials": [
|
|
||||||
{
|
|
||||||
"alphaCutoff": 0.2,
|
|
||||||
"alphaMode": "MASK",
|
|
||||||
"doubleSided": true,
|
|
||||||
"name": "lambert2SG",
|
|
||||||
"normalTexture": {
|
|
||||||
"index": 1
|
|
||||||
},
|
|
||||||
"pbrMetallicRoughness": {
|
|
||||||
"baseColorTexture": {
|
|
||||||
"index": 0
|
|
||||||
},
|
|
||||||
"metallicFactor": 0.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"meshes": [
|
|
||||||
{
|
|
||||||
"name": "Object_0",
|
|
||||||
"primitives": [
|
|
||||||
{
|
|
||||||
"attributes": {
|
|
||||||
"NORMAL": 1,
|
|
||||||
"POSITION": 0,
|
|
||||||
"TANGENT": 2,
|
|
||||||
"TEXCOORD_0": 3
|
|
||||||
},
|
|
||||||
"indices": 4,
|
|
||||||
"material": 0,
|
|
||||||
"mode": 4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"nodes": [
|
|
||||||
{
|
|
||||||
"children": [
|
|
||||||
1
|
|
||||||
],
|
|
||||||
"matrix": [
|
|
||||||
1.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
2.220446049250313e-16,
|
|
||||||
-1.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
1.0,
|
|
||||||
2.220446049250313e-16,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
0.0,
|
|
||||||
1.0
|
|
||||||
],
|
|
||||||
"name": "Sketchfab_model"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"children": [
|
|
||||||
2
|
|
||||||
],
|
|
||||||
"name": "LupineSF.obj.cleaner.materialmerger.gles"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"mesh": 0,
|
|
||||||
"name": "Object_2"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"samplers": [
|
|
||||||
{
|
|
||||||
"magFilter": 9729,
|
|
||||||
"minFilter": 9987,
|
|
||||||
"wrapS": 10497,
|
|
||||||
"wrapT": 10497
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"scene": 0,
|
|
||||||
"scenes": [
|
|
||||||
{
|
|
||||||
"name": "Sketchfab_Scene",
|
|
||||||
"nodes": [
|
|
||||||
0
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"textures": [
|
|
||||||
{
|
|
||||||
"sampler": 0,
|
|
||||||
"source": 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"sampler": 0,
|
|
||||||
"source": 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.6 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.7 MiB |
129
src/App.vue
129
src/App.vue
@@ -1,134 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<router-view />
|
<router-view />
|
||||||
|
|
||||||
<NotificationGroup group="alert">
|
|
||||||
<div
|
|
||||||
class="fixed top-4 right-4 w-full max-w-sm flex flex-col items-start justify-end"
|
|
||||||
>
|
|
||||||
<Notification
|
|
||||||
v-slot="{ notifications, close }"
|
|
||||||
enter="transform ease-out duration-300 transition"
|
|
||||||
enter-from="translate-y-2 opacity-0 sm:translate-y-0 sm:translate-x-4"
|
|
||||||
enter-to="translate-y-0 opacity-100 sm:translate-x-0"
|
|
||||||
leave="transition ease-in duration-500"
|
|
||||||
leave-from="opacity-100"
|
|
||||||
leave-to="opacity-0"
|
|
||||||
move="transition duration-500"
|
|
||||||
move-delay="delay-300"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
v-for="notification in notifications"
|
|
||||||
:key="notification.id"
|
|
||||||
class="w-full"
|
|
||||||
role="alert"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
v-if="notification.type === 'toast'"
|
|
||||||
class="w-full max-w-sm mx-auto mb-3 overflow-hidden bg-slate-900/90 text-white rounded-lg shadow-md"
|
|
||||||
>
|
|
||||||
<div class="w-full px-4 py-3">
|
|
||||||
<span class="font-semibold">{{ notification.title }}</span>
|
|
||||||
<p class="text-sm">{{ notification.text }}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
v-if="notification.type === 'info'"
|
|
||||||
class="flex w-full max-w-sm mx-auto mb-3 overflow-hidden bg-slate-100 rounded-lg shadow-md"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="flex items-center justify-center w-12 bg-slate-600 text-slate-100"
|
|
||||||
>
|
|
||||||
<fa icon="circle-info" class="fa-fw fa-xl"></fa>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="relative w-full pl-4 pr-8 py-2 text-slate-900">
|
|
||||||
<span class="font-semibold">{{ notification.title }}</span>
|
|
||||||
<p class="text-sm">{{ notification.text }}</p>
|
|
||||||
|
|
||||||
<button
|
|
||||||
@click="close(notification.id)"
|
|
||||||
class="absolute top-2 right-2 px-0.5 py-0 rounded-full bg-slate-200 text-slate-600"
|
|
||||||
>
|
|
||||||
<fa icon="xmark" class="fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
v-if="notification.type === 'success'"
|
|
||||||
class="flex w-full max-w-sm mx-auto mb-3 overflow-hidden bg-emerald-100 rounded-lg shadow-md"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="flex items-center justify-center w-12 bg-emerald-600 text-emerald-100"
|
|
||||||
>
|
|
||||||
<fa icon="circle-info" class="fa-fw fa-xl"></fa>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="relative w-full pl-4 pr-8 py-2 text-emerald-900">
|
|
||||||
<span class="font-semibold">{{ notification.title }}</span>
|
|
||||||
<p class="text-sm">{{ notification.text }}</p>
|
|
||||||
|
|
||||||
<button
|
|
||||||
@click="close(notification.id)"
|
|
||||||
class="absolute top-2 right-2 px-0.5 py-0 rounded-full bg-emerald-200 text-emerald-600"
|
|
||||||
>
|
|
||||||
<fa icon="xmark" class="fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
v-if="notification.type === 'warning'"
|
|
||||||
class="flex w-full max-w-sm mx-auto mb-3 overflow-hidden bg-amber-100 rounded-lg shadow-md"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="flex items-center justify-center w-12 bg-amber-600 text-amber-100"
|
|
||||||
>
|
|
||||||
<fa icon="triangle-exclamation" class="fa-fw fa-xl"></fa>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="relative w-full pl-4 pr-8 py-2 text-amber-900">
|
|
||||||
<span class="font-semibold">{{ notification.title }}</span>
|
|
||||||
<p class="text-sm">{{ notification.text }}</p>
|
|
||||||
|
|
||||||
<button
|
|
||||||
@click="close(notification.id)"
|
|
||||||
class="absolute top-2 right-2 px-0.5 py-0 rounded-full bg-amber-200 text-amber-600"
|
|
||||||
>
|
|
||||||
<fa icon="xmark" class="fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
v-if="notification.type === 'danger'"
|
|
||||||
class="flex w-full max-w-sm mx-auto mb-3 overflow-hidden bg-rose-100 rounded-lg shadow-md"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="flex items-center justify-center w-12 bg-rose-600 text-rose-100"
|
|
||||||
>
|
|
||||||
<fa icon="triangle-exclamation" class="fa-fw fa-xl"></fa>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="relative w-full pl-4 pr-8 py-2 text-rose-900">
|
|
||||||
<span class="font-semibold">{{ notification.title }}</span>
|
|
||||||
<p class="text-sm">{{ notification.text }}</p>
|
|
||||||
|
|
||||||
<button
|
|
||||||
@click="close(notification.id)"
|
|
||||||
class="absolute top-2 right-2 px-0.5 py-0 rounded-full bg-rose-200 text-rose-600"
|
|
||||||
>
|
|
||||||
<fa icon="xmark" class="fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Notification>
|
|
||||||
</div>
|
|
||||||
</NotificationGroup>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style></style>
|
<style></style>
|
||||||
|
|
||||||
<script lang="ts"></script>
|
|
||||||
|
|||||||
@@ -9,10 +9,3 @@
|
|||||||
font-family: 'Work Sans', ui-sans-serif, system-ui, sans-serif !important;
|
font-family: 'Work Sans', ui-sans-serif, system-ui, sans-serif !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@layer components {
|
|
||||||
input:checked ~ .dot {
|
|
||||||
transform: translateX(100%);
|
|
||||||
background-color: #FFF !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div v-bind:class="computedAlertClassNames()">
|
|
||||||
<button
|
|
||||||
class="close-button bg-amber-400 w-8 leading-loose rounded-full absolute top-2 right-2"
|
|
||||||
@click="onClickClose()"
|
|
||||||
>
|
|
||||||
<fa icon="xmark"></fa>
|
|
||||||
</button>
|
|
||||||
<h4 class="font-bold pr-5">{{ alertTitle }}</h4>
|
|
||||||
<p>{{ alertMessage }}</p>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { Component, Prop, Vue } from "vue-facing-decorator";
|
|
||||||
|
|
||||||
@Component
|
|
||||||
export default class AlertMessage extends Vue {
|
|
||||||
@Prop alertTitle = "";
|
|
||||||
@Prop alertMessage = "";
|
|
||||||
isAlertVisible = this.alertMessage;
|
|
||||||
|
|
||||||
public onClickClose() {
|
|
||||||
this.isAlertVisible = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public computedAlertClassNames() {
|
|
||||||
return {
|
|
||||||
hidden: !this.isAlertVisible,
|
|
||||||
"dismissable-alert": true,
|
|
||||||
"bg-amber-200": true,
|
|
||||||
"p-5": true,
|
|
||||||
rounded: true,
|
|
||||||
"drop-shadow-lg": true,
|
|
||||||
fixed: true,
|
|
||||||
"top-3": true,
|
|
||||||
"inset-x-3": true,
|
|
||||||
"transition-transform": true,
|
|
||||||
"ease-in": true,
|
|
||||||
"duration-300": true,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
||||||
<style scoped></style>
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div v-if="visible" class="dialog-overlay">
|
|
||||||
<div class="dialog">
|
|
||||||
<h1 class="text-xl font-bold text-center mb-4">
|
|
||||||
{{ message }} {{ giver?.name || "somebody not specified" }}
|
|
||||||
</h1>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
class="block w-full rounded border border-slate-400 mb-2 px-3 py-2"
|
|
||||||
placeholder="What was received"
|
|
||||||
v-model="description"
|
|
||||||
/>
|
|
||||||
<div class="flex flex-row mb-6">
|
|
||||||
<span
|
|
||||||
class="rounded-l border border-r-0 border-slate-400 bg-slate-200 w-1/3 text-center px-2 py-2"
|
|
||||||
>Hours</span
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="border border-r-0 border-slate-400 bg-slate-200 px-4 py-2"
|
|
||||||
@click="decrement()"
|
|
||||||
>
|
|
||||||
<fa icon="chevron-left" />
|
|
||||||
</div>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
class="w-full border border-r-0 border-slate-400 px-2 py-2 text-center"
|
|
||||||
v-model="hours"
|
|
||||||
/>
|
|
||||||
<div
|
|
||||||
class="rounded-r border border-slate-400 bg-slate-200 px-4 py-2"
|
|
||||||
@click="increment()"
|
|
||||||
>
|
|
||||||
<fa icon="chevron-right" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p class="text-center mb-2 italic">Sign & Send to publish to the world</p>
|
|
||||||
<button
|
|
||||||
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
|
||||||
@click="confirm"
|
|
||||||
>
|
|
||||||
Sign & Send
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
|
||||||
@click="cancel"
|
|
||||||
>
|
|
||||||
Cancel
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { Vue, Component, Prop, Emit } from "vue-facing-decorator";
|
|
||||||
|
|
||||||
@Component
|
|
||||||
export default class GiftedDialog extends Vue {
|
|
||||||
@Prop message = "";
|
|
||||||
|
|
||||||
giver = null;
|
|
||||||
description = "";
|
|
||||||
hours = "0";
|
|
||||||
visible = false;
|
|
||||||
|
|
||||||
open(giver) {
|
|
||||||
// giver: GiverInputInfo
|
|
||||||
this.giver = giver;
|
|
||||||
this.visible = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
close() {
|
|
||||||
this.visible = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
increment() {
|
|
||||||
this.hours = `${(parseFloat(this.hours) || 0) + 1}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
decrement() {
|
|
||||||
this.hours = `${Math.max(0, (parseFloat(this.hours) || 1) - 1)}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Emit("dialog-result")
|
|
||||||
confirm() {
|
|
||||||
const result = {
|
|
||||||
action: "confirm",
|
|
||||||
giver: this.giver,
|
|
||||||
hours: parseFloat(this.hours),
|
|
||||||
description: this.description,
|
|
||||||
};
|
|
||||||
this.close();
|
|
||||||
this.description = "";
|
|
||||||
this.giver = null;
|
|
||||||
this.hours = "0";
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Emit("dialog-result")
|
|
||||||
cancel() {
|
|
||||||
const result = { action: "cancel" };
|
|
||||||
this.close();
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.dialog-overlay {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
padding: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dialog {
|
|
||||||
background-color: white;
|
|
||||||
padding: 1rem;
|
|
||||||
border-radius: 0.5rem;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 500px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
150
src/components/HelloWorld.vue
Normal file
150
src/components/HelloWorld.vue
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
<template>
|
||||||
|
<div class="hello">
|
||||||
|
<h1>{{ msg }}</h1>
|
||||||
|
<p>
|
||||||
|
For a guide and recipes on how to configure / customize this project,<br />
|
||||||
|
check out the
|
||||||
|
<a href="https://cli.vuejs.org" target="_blank" rel="noopener"
|
||||||
|
>vue-cli documentation</a
|
||||||
|
>.
|
||||||
|
</p>
|
||||||
|
<h3>Installed CLI Plugins</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>babel</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-pwa"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>pwa</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-router"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>router</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-vuex"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>vuex</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>eslint</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-typescript"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>typescript</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Essential Links</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://vuejs.org" target="_blank" rel="noopener">Core Docs</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://forum.vuejs.org" target="_blank" rel="noopener"
|
||||||
|
>Forum</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://chat.vuejs.org" target="_blank" rel="noopener"
|
||||||
|
>Community Chat</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://twitter.com/vuejs" target="_blank" rel="noopener"
|
||||||
|
>Twitter</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://news.vuejs.org" target="_blank" rel="noopener">News</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Ecosystem</h3>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://router.vuejs.org" target="_blank" rel="noopener"
|
||||||
|
>vue-router</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://vuex.vuejs.org" target="_blank" rel="noopener">vuex</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://github.com/vuejs/vue-devtools#vue-devtools"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>vue-devtools</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://vue-loader.vuejs.org" target="_blank" rel="noopener"
|
||||||
|
>vue-loader</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://github.com/vuejs/awesome-vue"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener"
|
||||||
|
>awesome-vue</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
props: {
|
||||||
|
msg: String,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export default class HelloWorld extends Vue {
|
||||||
|
msg!: string;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||||
|
<style scoped>
|
||||||
|
h3 {
|
||||||
|
margin: 40px 0 0;
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0 10px;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #42b983;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div ref="scrollContainer">
|
|
||||||
<slot />
|
|
||||||
<div ref="sentinel" style="height: 1px"></div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { Component, Emit, Prop, Vue } from "vue-facing-decorator";
|
|
||||||
|
|
||||||
@Component
|
|
||||||
export default class InfiniteScroll extends Vue {
|
|
||||||
@Prop({ default: 200 })
|
|
||||||
readonly distance!: number;
|
|
||||||
private observer!: IntersectionObserver;
|
|
||||||
private isInitialRender = true;
|
|
||||||
|
|
||||||
updated() {
|
|
||||||
if (!this.observer) {
|
|
||||||
const options = {
|
|
||||||
root: null,
|
|
||||||
rootMargin: `0px 0px ${this.distance}px 0px`,
|
|
||||||
threshold: 1.0,
|
|
||||||
};
|
|
||||||
this.observer = new IntersectionObserver(
|
|
||||||
this.handleIntersection,
|
|
||||||
options,
|
|
||||||
);
|
|
||||||
this.observer.observe(this.$refs.sentinel as HTMLElement);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 'beforeUnmount' hook runs before unmounting the component
|
|
||||||
beforeUnmount() {
|
|
||||||
if (this.observer) {
|
|
||||||
this.observer.disconnect();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Emit("reached-bottom")
|
|
||||||
handleIntersection(entries: IntersectionObserverEntry[]) {
|
|
||||||
const entry = entries[0];
|
|
||||||
if (entry.isIntersecting) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
||||||
<style scoped></style>
|
|
||||||
@@ -1,93 +0,0 @@
|
|||||||
<template>
|
|
||||||
<!-- QUICK NAV -->
|
|
||||||
<nav id="QuickNav" class="fixed bottom-0 left-0 right-0 bg-slate-200 z-50">
|
|
||||||
<ul class="flex text-2xl p-2 gap-2">
|
|
||||||
<!-- Home Feed -->
|
|
||||||
<li
|
|
||||||
:class="{
|
|
||||||
'basis-1/5': true,
|
|
||||||
'rounded-md': true,
|
|
||||||
'bg-slate-400 text-white': selected === 'Home',
|
|
||||||
'text-slate-500': selected !== 'Home',
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
<router-link :to="{ name: 'home' }" class="block text-center py-3 px-1">
|
|
||||||
<fa icon="house-chimney" class="fa-fw"></fa>
|
|
||||||
</router-link>
|
|
||||||
</li>
|
|
||||||
<!-- Search -->
|
|
||||||
<li
|
|
||||||
:class="{
|
|
||||||
'basis-1/5': true,
|
|
||||||
'rounded-md': true,
|
|
||||||
'bg-slate-400 text-white': selected === 'Discover',
|
|
||||||
'text-slate-500': selected !== 'Discover',
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'discover' }"
|
|
||||||
class="block text-center py-3 px-1"
|
|
||||||
>
|
|
||||||
<fa icon="magnifying-glass" class="fa-fw"></fa>
|
|
||||||
</router-link>
|
|
||||||
</li>
|
|
||||||
<!-- Projects -->
|
|
||||||
<li
|
|
||||||
:class="{
|
|
||||||
'basis-1/5': true,
|
|
||||||
'rounded-md': true,
|
|
||||||
'bg-slate-400 text-white': selected === 'Projects',
|
|
||||||
'text-slate-500': selected !== 'Projects',
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'projects' }"
|
|
||||||
class="block text-center py-3 px-1"
|
|
||||||
>
|
|
||||||
<fa icon="folder-open" class="fa-fw"></fa>
|
|
||||||
</router-link>
|
|
||||||
</li>
|
|
||||||
<!-- Contacts -->
|
|
||||||
<li
|
|
||||||
:class="{
|
|
||||||
'basis-1/5': true,
|
|
||||||
'rounded-md': true,
|
|
||||||
'bg-slate-400 text-white': selected === 'Contacts',
|
|
||||||
'text-slate-500': selected !== 'Contacts',
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'contacts' }"
|
|
||||||
class="block text-center py-3 px-1"
|
|
||||||
>
|
|
||||||
<fa icon="users" class="fa-fw"></fa>
|
|
||||||
</router-link>
|
|
||||||
</li>
|
|
||||||
<!-- Profile -->
|
|
||||||
<li
|
|
||||||
:class="{
|
|
||||||
'basis-1/5': true,
|
|
||||||
'rounded-md': true,
|
|
||||||
'bg-slate-400 text-white': selected === 'Profile',
|
|
||||||
'text-slate-500': selected !== 'Profile',
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'account' }"
|
|
||||||
class="block text-center py-3 px-1"
|
|
||||||
>
|
|
||||||
<fa icon="circle-user" class="fa-fw"></fa>
|
|
||||||
</router-link>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { Component, Vue, Prop } from "vue-facing-decorator";
|
|
||||||
|
|
||||||
@Component
|
|
||||||
export default class QuickNav extends Vue {
|
|
||||||
@Prop selected = "";
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,110 +0,0 @@
|
|||||||
// from https://medium.com/nicasource/building-an-interactive-web-portfolio-with-vue-three-js-part-three-implementing-three-js-452cb375ef80
|
|
||||||
|
|
||||||
import * as TWEEN from "@tweenjs/tween.js";
|
|
||||||
import * as THREE from "three";
|
|
||||||
|
|
||||||
import { createCamera } from "./components/camera.js";
|
|
||||||
import { createLights } from "./components/lights.js";
|
|
||||||
import { createScene } from "./components/scene.js";
|
|
||||||
import { loadLandmarks } from "./components/objects/landmarks.js";
|
|
||||||
import { createTerrain } from "./components/objects/terrain.js";
|
|
||||||
import { Loop } from "./systems/Loop.js";
|
|
||||||
import { Resizer } from "./systems/Resizer.js";
|
|
||||||
import { createControls } from "./systems/controls.js";
|
|
||||||
import { createRenderer } from "./systems/renderer.js";
|
|
||||||
|
|
||||||
const COLOR1 = "#dddddd";
|
|
||||||
const COLOR2 = "#0055aa";
|
|
||||||
|
|
||||||
class World {
|
|
||||||
constructor(container, vue) {
|
|
||||||
this.PLATFORM_BORDER = 5;
|
|
||||||
this.PLATFORM_EDGE_FOR_UNKNOWNS = 10;
|
|
||||||
this.PLATFORM_SIZE = 100; // note that the loadLandmarks calculations may still assume 100
|
|
||||||
|
|
||||||
this.update = this.update.bind(this);
|
|
||||||
|
|
||||||
this.vue = vue;
|
|
||||||
|
|
||||||
// Instances of camera, scene, and renderer
|
|
||||||
this.camera = createCamera();
|
|
||||||
this.scene = createScene(COLOR2);
|
|
||||||
this.renderer = createRenderer();
|
|
||||||
|
|
||||||
// necessary for models, says https://threejs.org/docs/index.html#examples/en/loaders/GLTFLoader
|
|
||||||
this.renderer.outputColorSpace = THREE.SRGBColorSpace;
|
|
||||||
|
|
||||||
this.light = null;
|
|
||||||
this.lights = [];
|
|
||||||
this.bushes = [];
|
|
||||||
|
|
||||||
// Initialize Loop
|
|
||||||
this.loop = new Loop(this.camera, this.scene, this.renderer);
|
|
||||||
|
|
||||||
container.append(this.renderer.domElement);
|
|
||||||
|
|
||||||
// Orbit Controls
|
|
||||||
const controls = createControls(this.camera, this.renderer.domElement);
|
|
||||||
|
|
||||||
// Light Instance, with optional light helper
|
|
||||||
const { light } = createLights(COLOR1);
|
|
||||||
|
|
||||||
// Terrain Instance
|
|
||||||
const terrain = createTerrain({
|
|
||||||
color: COLOR1,
|
|
||||||
height: this.PLATFORM_SIZE + this.PLATFORM_BORDER * 2,
|
|
||||||
width:
|
|
||||||
this.PLATFORM_SIZE +
|
|
||||||
this.PLATFORM_BORDER * 2 +
|
|
||||||
this.PLATFORM_EDGE_FOR_UNKNOWNS * 2,
|
|
||||||
});
|
|
||||||
|
|
||||||
this.loop.updatables.push(controls);
|
|
||||||
this.loop.updatables.push(light);
|
|
||||||
this.loop.updatables.push(terrain);
|
|
||||||
|
|
||||||
this.scene.add(light, terrain);
|
|
||||||
|
|
||||||
loadLandmarks(vue, this, this.scene, this.loop);
|
|
||||||
|
|
||||||
requestAnimationFrame(this.update);
|
|
||||||
|
|
||||||
// Responsive handler
|
|
||||||
const resizer = new Resizer(container, this.camera, this.renderer);
|
|
||||||
resizer.onResize = () => {
|
|
||||||
this.render();
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
update(time) {
|
|
||||||
TWEEN.update(time);
|
|
||||||
this.lights.forEach((light) => {
|
|
||||||
light.updateMatrixWorld();
|
|
||||||
light.target.updateMatrixWorld();
|
|
||||||
});
|
|
||||||
this.lights.forEach((bush) => {
|
|
||||||
bush.updateMatrixWorld();
|
|
||||||
});
|
|
||||||
requestAnimationFrame(this.update);
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
|
||||||
// draw a single frame
|
|
||||||
this.renderer.render(this.scene, this.camera);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Animation handlers
|
|
||||||
start() {
|
|
||||||
this.loop.start();
|
|
||||||
}
|
|
||||||
|
|
||||||
stop() {
|
|
||||||
this.loop.stop();
|
|
||||||
}
|
|
||||||
|
|
||||||
setExposedWorldProperties(key, value) {
|
|
||||||
this.vue.setWorldProperty(key, value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export { World };
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
import { PerspectiveCamera } from "three";
|
|
||||||
|
|
||||||
function createCamera() {
|
|
||||||
const camera = new PerspectiveCamera(
|
|
||||||
35, // fov = Field Of View
|
|
||||||
1, // aspect ratio (dummy value)
|
|
||||||
0.1, // near clipping plane
|
|
||||||
350, // far clipping plane
|
|
||||||
);
|
|
||||||
|
|
||||||
// move the camera back so we can view the scene
|
|
||||||
camera.position.set(0, 100, 200);
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
||||||
camera.tick = () => {};
|
|
||||||
|
|
||||||
return camera;
|
|
||||||
}
|
|
||||||
|
|
||||||
export { createCamera };
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
import { DirectionalLight, DirectionalLightHelper } from "three";
|
|
||||||
|
|
||||||
function createLights(color) {
|
|
||||||
const light = new DirectionalLight(color, 4);
|
|
||||||
const lightHelper = new DirectionalLightHelper(light, 0);
|
|
||||||
light.position.set(60, 100, 30);
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
||||||
light.tick = () => {};
|
|
||||||
|
|
||||||
return { light, lightHelper };
|
|
||||||
}
|
|
||||||
|
|
||||||
export { createLights };
|
|
||||||
@@ -1,254 +0,0 @@
|
|||||||
import axios from "axios";
|
|
||||||
import * as R from "ramda";
|
|
||||||
import * as THREE from "three";
|
|
||||||
import { GLTFLoader } from "three/addons/loaders/GLTFLoader";
|
|
||||||
import * as SkeletonUtils from "three/addons/utils/SkeletonUtils";
|
|
||||||
import * as TWEEN from "@tweenjs/tween.js";
|
|
||||||
import { accountsDB, db } from "@/db";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import { accessToken } from "@/libs/crypto";
|
|
||||||
|
|
||||||
const ANIMATION_DURATION_SECS = 10;
|
|
||||||
const ENDORSER_ENTITY_PREFIX = "https://endorser.ch/entity/";
|
|
||||||
|
|
||||||
export async function loadLandmarks(vue, world, scene, loop) {
|
|
||||||
vue.setWorldProperty("animationDurationSeconds", ANIMATION_DURATION_SECS);
|
|
||||||
|
|
||||||
try {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
const activeDid = settings?.activeDid || "";
|
|
||||||
const apiServer = settings?.apiServer;
|
|
||||||
await accountsDB.open();
|
|
||||||
const accounts = await accountsDB.accounts.toArray();
|
|
||||||
const account = R.find((acc) => acc.did === activeDid, accounts);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
};
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
if (identity) {
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
headers["Authorization"] = "Bearer " + token;
|
|
||||||
}
|
|
||||||
|
|
||||||
const url = apiServer + "/api/v2/report/claims?claimType=GiveAction";
|
|
||||||
const resp = await axios.get(url, { headers: headers });
|
|
||||||
if (resp.status === 200) {
|
|
||||||
const landmarks = resp.data.data;
|
|
||||||
|
|
||||||
const minDate = landmarks[landmarks.length - 1].issuedAt;
|
|
||||||
const maxDate = landmarks[0].issuedAt;
|
|
||||||
|
|
||||||
world.setExposedWorldProperties("startTime", minDate.replace("T", " "));
|
|
||||||
world.setExposedWorldProperties("endTime", maxDate.replace("T", " "));
|
|
||||||
|
|
||||||
const minTimeMillis = new Date(minDate).getTime();
|
|
||||||
const fullTimeMillis =
|
|
||||||
maxDate > minDate ? new Date(maxDate).getTime() - minTimeMillis : 1; // avoid divide by zero
|
|
||||||
// ratio of animation time to real time
|
|
||||||
const fakeRealRatio = (ANIMATION_DURATION_SECS * 1000) / fullTimeMillis;
|
|
||||||
|
|
||||||
// load plant model first because it takes a second
|
|
||||||
const loader = new GLTFLoader();
|
|
||||||
// choose the right plant
|
|
||||||
const modelLoc = "/models/lupine_plant/scene.gltf", // push with pokies
|
|
||||||
modScale = 0.1;
|
|
||||||
//const modelLoc = "/models/round_bush/scene.gltf", // green & pink
|
|
||||||
// modScale = 1;
|
|
||||||
//const modelLoc = "/models/coreopsis-flower.glb", // 3 flowers
|
|
||||||
// modScale = 2;
|
|
||||||
//const modelLoc = "/models/a_bush/scene.gltf", // purple leaves
|
|
||||||
// modScale = 15;
|
|
||||||
|
|
||||||
// calculate positions for each claim, especially because some are random
|
|
||||||
const locations = landmarks.map((claim) =>
|
|
||||||
locForGive(
|
|
||||||
claim,
|
|
||||||
world.PLATFORM_SIZE,
|
|
||||||
world.PLATFORM_EDGE_FOR_UNKNOWNS,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
||||||
loader.load(
|
|
||||||
modelLoc,
|
|
||||||
function (gltf) {
|
|
||||||
gltf.scene.scale.set(0, 0, 0);
|
|
||||||
for (let i = 0; i < landmarks.length; i++) {
|
|
||||||
// claim is a GiveServerRecord (see endorserServer.ts)
|
|
||||||
const claim = landmarks[i];
|
|
||||||
const newPlant = SkeletonUtils.clone(gltf.scene);
|
|
||||||
|
|
||||||
const loc = locations[i];
|
|
||||||
newPlant.position.set(loc.x, 0, loc.z);
|
|
||||||
|
|
||||||
world.scene.add(newPlant);
|
|
||||||
const timeDelayMillis =
|
|
||||||
fakeRealRatio *
|
|
||||||
(new Date(claim.issuedAt).getTime() - minTimeMillis);
|
|
||||||
new TWEEN.Tween(newPlant.scale)
|
|
||||||
.delay(timeDelayMillis)
|
|
||||||
.to({ x: modScale, y: modScale, z: modScale }, 5000)
|
|
||||||
.start();
|
|
||||||
world.bushes = [...world.bushes, newPlant];
|
|
||||||
}
|
|
||||||
},
|
|
||||||
undefined,
|
|
||||||
function (error) {
|
|
||||||
console.error(error);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// calculate when lights shine on appearing claim area
|
|
||||||
for (let i = 0; i < landmarks.length; i++) {
|
|
||||||
// claim is a GiveServerRecord (see endorserServer.ts)
|
|
||||||
const claim = landmarks[i];
|
|
||||||
|
|
||||||
const loc = locations[i];
|
|
||||||
const light = createLight();
|
|
||||||
light.position.set(loc.x, 20, loc.z);
|
|
||||||
light.target.position.set(loc.x, 0, loc.z);
|
|
||||||
loop.updatables.push(light);
|
|
||||||
scene.add(light);
|
|
||||||
scene.add(light.target);
|
|
||||||
|
|
||||||
// now figure out the timing and shine a light
|
|
||||||
const timeDelayMillis =
|
|
||||||
fakeRealRatio * (new Date(claim.issuedAt).getTime() - minTimeMillis);
|
|
||||||
new TWEEN.Tween(light)
|
|
||||||
.delay(timeDelayMillis)
|
|
||||||
.to({ intensity: 100 }, 10)
|
|
||||||
.chain(
|
|
||||||
new TWEEN.Tween(light.position)
|
|
||||||
.to({ y: 5 }, 5000)
|
|
||||||
.onComplete(() => {
|
|
||||||
scene.remove(light);
|
|
||||||
light.dispose();
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
.start();
|
|
||||||
world.lights = [...world.lights, light];
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.error(
|
|
||||||
"Got bad server response status & data of",
|
|
||||||
resp.status,
|
|
||||||
resp.data,
|
|
||||||
);
|
|
||||||
vue.setAlert(
|
|
||||||
"Error With Server",
|
|
||||||
"There was an error retrieving your claims from the server.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Got exception contacting server:", error);
|
|
||||||
vue.setAlert(
|
|
||||||
"Error With Server",
|
|
||||||
"There was a problem retrieving your claims from the server.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param giveClaim
|
|
||||||
* @returns {x:float, z:float} where -50 <= x & z < 50
|
|
||||||
*/
|
|
||||||
function locForGive(giveClaim, platformWidth, borderWidth) {
|
|
||||||
let loc;
|
|
||||||
if (giveClaim?.claim?.recipient?.identifier) {
|
|
||||||
// this is directly to a person
|
|
||||||
loc = locForEthrDid(giveClaim.claim.recipient.identifier);
|
|
||||||
loc = { x: loc.x - platformWidth / 2, z: loc.z - platformWidth / 2 };
|
|
||||||
} else if (giveClaim?.object?.isPartOf?.identifier) {
|
|
||||||
// this is probably to a project
|
|
||||||
const objId = giveClaim.object.isPartOf.identifier;
|
|
||||||
if (objId.startsWith(ENDORSER_ENTITY_PREFIX)) {
|
|
||||||
loc = locForUlid(objId.substring(ENDORSER_ENTITY_PREFIX.length));
|
|
||||||
loc = { x: loc.x - platformWidth / 2, z: loc.z - platformWidth / 2 };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!loc) {
|
|
||||||
// it must be outside our known addresses so let's put it somewhere random on the side
|
|
||||||
const leftSide = Math.random() < 0.5;
|
|
||||||
loc = {
|
|
||||||
x: leftSide
|
|
||||||
? -platformWidth / 2 - borderWidth / 2
|
|
||||||
: platformWidth / 2 + borderWidth / 2,
|
|
||||||
z: Math.random() * platformWidth - platformWidth / 2,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
return loc;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate a deterministic x & z location based on the randomness of an ID.
|
|
||||||
*
|
|
||||||
* We'd like the location to fully map back to the original ID.
|
|
||||||
* This typically means we use half the ID for the x and half for the z.
|
|
||||||
*
|
|
||||||
* ... in this case: a ULID.
|
|
||||||
* We'll use the first half (13 characters) for the x coordinate and next 13 for the z.
|
|
||||||
* We recognize that this is only 3 characters = 15 bits = 32768 unique values
|
|
||||||
* for the random part for the first half. We also recognize that those random
|
|
||||||
* bits may be shared with previous ULIDs if they were generated in the same
|
|
||||||
* millisecond, and therefore much of the evenness of the distribution depends
|
|
||||||
* on the other dimension.
|
|
||||||
*
|
|
||||||
* Also: since the first 10 characters are time-based, we're going to reverse
|
|
||||||
* the order of the characters to make the randomness more evenly distributed.
|
|
||||||
* This is reversing the order of the 5-bit characters, not each of the bits.
|
|
||||||
* Also wik: the first characters of the second half might be the same as
|
|
||||||
* previous ULIDs if they were generated in the same millisecond. So it's
|
|
||||||
* best to have that last character be the most significant bit so that there
|
|
||||||
* is a more even distribution in that dimension.
|
|
||||||
*
|
|
||||||
* @param ulid
|
|
||||||
* @returns {x: float, z: float} where 0 <= x & z < 100
|
|
||||||
*/
|
|
||||||
function locForUlid(ulid) {
|
|
||||||
const xChars = ulid.substring(0, 13).split("").reverse().join("");
|
|
||||||
const zChars = ulid.substring(13, 26).split("").reverse().join("");
|
|
||||||
|
|
||||||
// from https://github.com/ulid/javascript/blob/5e9727b527aec5b841737c395a20085c4361e971/lib/index.ts#L21
|
|
||||||
const BASE32 = "0123456789ABCDEFGHJKMNPQRSTVWXYZ"; // Crockford's Base32
|
|
||||||
|
|
||||||
// We're currently only using 1024 possible x and z values
|
|
||||||
// because the display is pretty low-fidelity at this point.
|
|
||||||
const rawX = BASE32.indexOf(xChars[1]) * 32 + BASE32.indexOf(xChars[0]);
|
|
||||||
const rawZ = BASE32.indexOf(zChars[1]) * 32 + BASE32.indexOf(zChars[0]);
|
|
||||||
|
|
||||||
const x = (100 * rawX) / 1024;
|
|
||||||
const z = (100 * rawZ) / 1024;
|
|
||||||
return { x, z };
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* See locForUlid. Similar, but for ethr DIDs.
|
|
||||||
* @param did
|
|
||||||
* @returns {x: float, z: float} where 0 <= x & z < 100
|
|
||||||
*/
|
|
||||||
function locForEthrDid(did) {
|
|
||||||
// "did:ethr:0x..."
|
|
||||||
if (did.length < 51) {
|
|
||||||
return { x: 0, z: 0 };
|
|
||||||
} else {
|
|
||||||
const randomness = did.substring("did:ethr:0x".length);
|
|
||||||
// We'll use all the randomness for fully unique x & z values.
|
|
||||||
// But we'll only calculate this view with the first byte since our rendering resolution is low.
|
|
||||||
const xOff = parseInt(Number("0x" + randomness.substring(0, 2)), 10);
|
|
||||||
const x = (xOff * 100) / 256;
|
|
||||||
// ... and since we're reserving 20 bytes total for x, start z with character 20,
|
|
||||||
// again with one byte.
|
|
||||||
const zOff = parseInt(Number("0x" + randomness.substring(20, 22)), 10);
|
|
||||||
const z = (zOff * 100) / 256;
|
|
||||||
return { x, z };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function createLight() {
|
|
||||||
const light = new THREE.SpotLight(0xffffff, 0, 0, Math.PI / 8, 0.5, 0);
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
||||||
light.tick = () => {};
|
|
||||||
return light;
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
import { PlaneGeometry, MeshLambertMaterial, Mesh, TextureLoader } from "three";
|
|
||||||
|
|
||||||
export function createTerrain(props) {
|
|
||||||
const loader = new TextureLoader();
|
|
||||||
const height = loader.load("img/textures/leafy-autumn-forest-floor.jpg");
|
|
||||||
// w h
|
|
||||||
const geometry = new PlaneGeometry(props.width, props.height, 64, 64);
|
|
||||||
|
|
||||||
const material = new MeshLambertMaterial({
|
|
||||||
color: props.color,
|
|
||||||
flatShading: true,
|
|
||||||
map: height,
|
|
||||||
//displacementMap: height,
|
|
||||||
//displacementScale: 5,
|
|
||||||
});
|
|
||||||
|
|
||||||
const plane = new Mesh(geometry, material);
|
|
||||||
plane.position.set(0, 0, 0);
|
|
||||||
plane.rotation.x -= Math.PI * 0.5;
|
|
||||||
|
|
||||||
//Storing our original vertices position on a new attribute
|
|
||||||
plane.geometry.attributes.position.originalPosition =
|
|
||||||
plane.geometry.attributes.position.array;
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
||||||
plane.tick = () => {};
|
|
||||||
|
|
||||||
return plane;
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
import { Color, Scene } from "three";
|
|
||||||
|
|
||||||
function createScene(color) {
|
|
||||||
const scene = new Scene();
|
|
||||||
|
|
||||||
scene.background = new Color(color);
|
|
||||||
//scene.fog = new Fog(color, 60, 90);
|
|
||||||
return scene;
|
|
||||||
}
|
|
||||||
|
|
||||||
export { createScene };
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
import { Clock } from "three";
|
|
||||||
|
|
||||||
const clock = new Clock();
|
|
||||||
|
|
||||||
class Loop {
|
|
||||||
constructor(camera, scene, renderer) {
|
|
||||||
this.camera = camera;
|
|
||||||
this.scene = scene;
|
|
||||||
this.renderer = renderer;
|
|
||||||
this.updatables = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
start() {
|
|
||||||
this.renderer.setAnimationLoop(() => {
|
|
||||||
this.tick();
|
|
||||||
// render a frame
|
|
||||||
this.renderer.render(this.scene, this.camera);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
stop() {
|
|
||||||
this.renderer.setAnimationLoop(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
tick() {
|
|
||||||
const delta = clock.getDelta();
|
|
||||||
for (const object of this.updatables) {
|
|
||||||
object.tick(delta);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export { Loop };
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
const setSize = (container, camera, renderer) => {
|
|
||||||
// These are great for full-screen, which adjusts to a window.
|
|
||||||
const height = window.innerHeight;
|
|
||||||
const width = window.innerWidth - 50;
|
|
||||||
// These are better for fitting in a container, which stays that size.
|
|
||||||
//const height = container.scrollHeight;
|
|
||||||
//const width = container.scrollWidth;
|
|
||||||
|
|
||||||
camera.aspect = width / height;
|
|
||||||
camera.updateProjectionMatrix();
|
|
||||||
|
|
||||||
renderer.setSize(width, height);
|
|
||||||
renderer.setPixelRatio(window.devicePixelRatio);
|
|
||||||
};
|
|
||||||
|
|
||||||
class Resizer {
|
|
||||||
constructor(container, camera, renderer) {
|
|
||||||
// set initial size on load
|
|
||||||
setSize(container, camera, renderer);
|
|
||||||
|
|
||||||
window.addEventListener("resize", () => {
|
|
||||||
// set the size again if a resize occurs
|
|
||||||
setSize(container, camera, renderer);
|
|
||||||
// perform any custom actions
|
|
||||||
this.onResize();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
||||||
onResize() {}
|
|
||||||
}
|
|
||||||
|
|
||||||
export { Resizer };
|
|
||||||
38
src/components/World/systems/controls.js
vendored
38
src/components/World/systems/controls.js
vendored
@@ -1,38 +0,0 @@
|
|||||||
import { OrbitControls } from "three/examples/jsm/controls/OrbitControls.js";
|
|
||||||
import { MathUtils } from "three";
|
|
||||||
|
|
||||||
function createControls(camera, canvas) {
|
|
||||||
const controls = new OrbitControls(camera, canvas);
|
|
||||||
|
|
||||||
//enable controls?
|
|
||||||
controls.enabled = true;
|
|
||||||
controls.autoRotate = false;
|
|
||||||
//controls.autoRotateSpeed = 0.2;
|
|
||||||
|
|
||||||
// control limits
|
|
||||||
// It's recommended to set some control boundaries,
|
|
||||||
// to prevent the user from clipping with the objects.
|
|
||||||
|
|
||||||
// y axis
|
|
||||||
controls.minPolarAngle = MathUtils.degToRad(40); // default
|
|
||||||
controls.maxPolarAngle = MathUtils.degToRad(75);
|
|
||||||
|
|
||||||
// x axis
|
|
||||||
// controls.minAzimuthAngle = ...
|
|
||||||
// controls.maxAzimuthAngle = ...
|
|
||||||
|
|
||||||
//smooth camera:
|
|
||||||
// remember to add to loop updatables to work
|
|
||||||
controls.enableDamping = true;
|
|
||||||
|
|
||||||
//controls.enableZoom = false;
|
|
||||||
controls.maxDistance = 250;
|
|
||||||
|
|
||||||
//controls.enablePan = false;
|
|
||||||
|
|
||||||
controls.tick = () => controls.update();
|
|
||||||
|
|
||||||
return controls;
|
|
||||||
}
|
|
||||||
|
|
||||||
export { createControls };
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
import { WebGLRenderer } from "three";
|
|
||||||
|
|
||||||
function createRenderer() {
|
|
||||||
const renderer = new WebGLRenderer({ antialias: true });
|
|
||||||
|
|
||||||
// turn on the physically correct lighting model
|
|
||||||
// (The browser complains: "THREE.WebGLRenderer: the property .physicallyCorrectLights has been removed. Set renderer.useLegacyLights instead." However, that changes the lighting in a way that doesn't look better.)
|
|
||||||
renderer.physicallyCorrectLights = true;
|
|
||||||
|
|
||||||
return renderer;
|
|
||||||
}
|
|
||||||
|
|
||||||
export { createRenderer };
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
/**
|
|
||||||
* Generic strings that could be used throughout the app.
|
|
||||||
*/
|
|
||||||
export enum AppString {
|
|
||||||
APP_NAME = "Kick-Start with Time",
|
|
||||||
|
|
||||||
PROD_ENDORSER_API_SERVER = "https://endorser.ch:3000",
|
|
||||||
TEST_ENDORSER_API_SERVER = "https://test.endorser.ch:8000",
|
|
||||||
LOCAL_ENDORSER_API_SERVER = "http://localhost:3000",
|
|
||||||
|
|
||||||
DEFAULT_ENDORSER_API_SERVER = TEST_ENDORSER_API_SERVER,
|
|
||||||
}
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
import BaseDexie, { Table } from "dexie";
|
|
||||||
import { encrypted, Encryption } from "@pvermeer/dexie-encrypted-addon";
|
|
||||||
import { Account, AccountsSchema } from "./tables/accounts";
|
|
||||||
import { Contact, ContactsSchema } from "./tables/contacts";
|
|
||||||
import {
|
|
||||||
MASTER_SETTINGS_KEY,
|
|
||||||
Settings,
|
|
||||||
SettingsSchema,
|
|
||||||
} from "./tables/settings";
|
|
||||||
import { AppString } from "@/constants/app";
|
|
||||||
|
|
||||||
// a separate DB because the seed is super-sensitive data
|
|
||||||
type SensitiveTables = {
|
|
||||||
accounts: Table<Account>;
|
|
||||||
};
|
|
||||||
|
|
||||||
type NonsensitiveTables = {
|
|
||||||
contacts: Table<Contact>;
|
|
||||||
settings: Table<Settings>;
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* In order to make the next line be acceptable, the program needs to have its linter suppress a rule:
|
|
||||||
* https://typescript-eslint.io/rules/no-unnecessary-type-constraint/
|
|
||||||
*
|
|
||||||
* and change *any* to *unknown*
|
|
||||||
*
|
|
||||||
* https://9to5answer.com/how-to-bypass-warning-unexpected-any-specify-a-different-type-typescript-eslint-no-explicit-any
|
|
||||||
*/
|
|
||||||
export type SensitiveDexie<T extends unknown = SensitiveTables> = BaseDexie & T;
|
|
||||||
export const accountsDB = new BaseDexie("KickStartAccounts") as SensitiveDexie;
|
|
||||||
const SensitiveSchemas = Object.assign({}, AccountsSchema);
|
|
||||||
|
|
||||||
export type NonsensitiveDexie<T extends unknown = NonsensitiveTables> =
|
|
||||||
BaseDexie & T;
|
|
||||||
export const db = new BaseDexie("KickStart") as NonsensitiveDexie;
|
|
||||||
const NonsensitiveSchemas = Object.assign({}, ContactsSchema, SettingsSchema);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Needed to enable a special webpack setting to allow *await* below:
|
|
||||||
* https://stackoverflow.com/questions/72474803/error-the-top-level-await-experiment-is-not-enabled-set-experiments-toplevelaw
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create password and place password in localStorage.
|
|
||||||
*
|
|
||||||
* It's good practice to keep the data encrypted at rest, so we'll do that even
|
|
||||||
* if the secret is stored right next to the app.
|
|
||||||
*/
|
|
||||||
const secret =
|
|
||||||
localStorage.getItem("secret") || Encryption.createRandomEncryptionKey();
|
|
||||||
|
|
||||||
if (localStorage.getItem("secret") == null) {
|
|
||||||
localStorage.setItem("secret", secret);
|
|
||||||
}
|
|
||||||
|
|
||||||
encrypted(accountsDB, { secretKey: secret });
|
|
||||||
accountsDB.version(1).stores(SensitiveSchemas);
|
|
||||||
|
|
||||||
db.version(1).stores(NonsensitiveSchemas);
|
|
||||||
|
|
||||||
// initialize, a la https://dexie.org/docs/Tutorial/Design#the-populate-event
|
|
||||||
db.on("populate", function () {
|
|
||||||
// ensure there's an initial entry for settings
|
|
||||||
db.settings.add({
|
|
||||||
id: MASTER_SETTINGS_KEY,
|
|
||||||
apiServer: AppString.DEFAULT_ENDORSER_API_SERVER,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
export type Account = {
|
|
||||||
id?: number; // auto-generated by Dexie
|
|
||||||
dateCreated: string;
|
|
||||||
derivationPath: string;
|
|
||||||
did: string;
|
|
||||||
// stringified JSON containing underlying key material of type IIdentifier
|
|
||||||
// https://github.com/uport-project/veramo/blob/next/packages/core-types/src/types/IIdentifier.ts
|
|
||||||
identity: string;
|
|
||||||
publicKeyHex: string;
|
|
||||||
mnemonic: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
// mark encrypted field by starting with a $ character
|
|
||||||
// see https://github.com/PVermeer/dexie-addon-suite-monorepo/tree/master/packages/dexie-encrypted-addon
|
|
||||||
export const AccountsSchema = {
|
|
||||||
accounts:
|
|
||||||
"++id, dateCreated, derivationPath, did, $identity, $mnemonic, publicKeyHex",
|
|
||||||
};
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
export interface Contact {
|
|
||||||
did: string;
|
|
||||||
name?: string;
|
|
||||||
publicKeyBase64?: string;
|
|
||||||
seesMe?: boolean;
|
|
||||||
registered?: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const ContactsSchema = {
|
|
||||||
contacts: "++did, name, publicKeyBase64, registered, seesMe",
|
|
||||||
};
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
// a singleton
|
|
||||||
export type Settings = {
|
|
||||||
id: number; // there's only one entry: MASTER_SETTINGS_KEY
|
|
||||||
|
|
||||||
activeDid?: string;
|
|
||||||
apiServer?: string;
|
|
||||||
firstName?: string;
|
|
||||||
lastName?: string;
|
|
||||||
lastViewedClaimId?: string;
|
|
||||||
showContactGivesInline?: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const SettingsSchema = {
|
|
||||||
settings: "id",
|
|
||||||
};
|
|
||||||
|
|
||||||
export const MASTER_SETTINGS_KEY = 1;
|
|
||||||
@@ -1,150 +0,0 @@
|
|||||||
import { IIdentifier } from "@veramo/core";
|
|
||||||
import { DEFAULT_DID_PROVIDER_NAME } from "../veramo/setup";
|
|
||||||
import { getRandomBytesSync } from "ethereum-cryptography/random";
|
|
||||||
import { entropyToMnemonic } from "ethereum-cryptography/bip39";
|
|
||||||
import { wordlist } from "ethereum-cryptography/bip39/wordlists/english";
|
|
||||||
import { HDNode } from "@ethersproject/hdnode";
|
|
||||||
import * as didJwt from "did-jwt";
|
|
||||||
import * as u8a from "uint8arrays";
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param {string} address
|
|
||||||
* @param {string} publicHex
|
|
||||||
* @param {string} privateHex
|
|
||||||
* @param {string} derivationPath
|
|
||||||
* @return {*} {Omit<IIdentifier, 'provider'>}
|
|
||||||
*/
|
|
||||||
export const newIdentifier = (
|
|
||||||
address: string,
|
|
||||||
publicHex: string,
|
|
||||||
privateHex: string,
|
|
||||||
derivationPath: string,
|
|
||||||
): Omit<IIdentifier, keyof "provider"> => {
|
|
||||||
return {
|
|
||||||
did: DEFAULT_DID_PROVIDER_NAME + ":" + address,
|
|
||||||
keys: [
|
|
||||||
{
|
|
||||||
kid: publicHex,
|
|
||||||
kms: "local",
|
|
||||||
meta: { derivationPath: derivationPath },
|
|
||||||
privateKeyHex: privateHex,
|
|
||||||
publicKeyHex: publicHex,
|
|
||||||
type: "Secp256k1",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
provider: DEFAULT_DID_PROVIDER_NAME,
|
|
||||||
services: [],
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @param {string} mnemonic
|
|
||||||
* @return {*} {[string, string, string, string]}
|
|
||||||
*/
|
|
||||||
export const deriveAddress = (
|
|
||||||
mnemonic: string,
|
|
||||||
): [string, string, string, string] => {
|
|
||||||
const UPORT_ROOT_DERIVATION_PATH = "m/7696500'/0'/0'/0'";
|
|
||||||
mnemonic = mnemonic.trim().toLowerCase();
|
|
||||||
|
|
||||||
const hdnode: HDNode = HDNode.fromMnemonic(mnemonic);
|
|
||||||
const rootNode: HDNode = hdnode.derivePath(UPORT_ROOT_DERIVATION_PATH);
|
|
||||||
const privateHex = rootNode.privateKey.substring(2); // original starts with '0x'
|
|
||||||
const publicHex = rootNode.publicKey.substring(2); // original starts with '0x'
|
|
||||||
const address = rootNode.address;
|
|
||||||
|
|
||||||
return [address, privateHex, publicHex, UPORT_ROOT_DERIVATION_PATH];
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @return {*} {string}
|
|
||||||
*/
|
|
||||||
export const generateSeed = (): string => {
|
|
||||||
const entropy: Uint8Array = getRandomBytesSync(32);
|
|
||||||
const mnemonic = entropyToMnemonic(entropy, wordlist);
|
|
||||||
|
|
||||||
return mnemonic;
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retreive an access token
|
|
||||||
*
|
|
||||||
* @param {IIdentifier} identifier
|
|
||||||
* @return {*}
|
|
||||||
*/
|
|
||||||
export const accessToken = async (identifier: IIdentifier) => {
|
|
||||||
const did: string = identifier.did;
|
|
||||||
const privateKeyHex: string = identifier.keys[0].privateKeyHex as string;
|
|
||||||
|
|
||||||
const signer = SimpleSigner(privateKeyHex);
|
|
||||||
|
|
||||||
const nowEpoch = Math.floor(Date.now() / 1000);
|
|
||||||
const endEpoch = nowEpoch + 60; // add one minute
|
|
||||||
|
|
||||||
const tokenPayload = { exp: endEpoch, iat: nowEpoch, iss: did };
|
|
||||||
const alg = undefined; // defaults to 'ES256K', more standardized but harder to verify vs ES256K-R
|
|
||||||
const jwt: string = await didJwt.createJWT(tokenPayload, {
|
|
||||||
alg,
|
|
||||||
issuer: did,
|
|
||||||
signer,
|
|
||||||
});
|
|
||||||
return jwt;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const sign = async (privateKeyHex: string) => {
|
|
||||||
const signer = SimpleSigner(privateKeyHex);
|
|
||||||
|
|
||||||
return signer;
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Copied out of did-jwt since it's deprecated in that library.
|
|
||||||
*
|
|
||||||
* The SimpleSigner returns a configured function for signing data.
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* const signer = SimpleSigner(process.env.PRIVATE_KEY)
|
|
||||||
* signer(data, (err, signature) => {
|
|
||||||
* ...
|
|
||||||
* })
|
|
||||||
*
|
|
||||||
* @param {String} hexPrivateKey a hex encoded private key
|
|
||||||
* @return {Function} a configured signer function
|
|
||||||
*/
|
|
||||||
export function SimpleSigner(hexPrivateKey: string): didJwt.Signer {
|
|
||||||
const signer = didJwt.ES256KSigner(didJwt.hexToBytes(hexPrivateKey), true);
|
|
||||||
return async (data) => {
|
|
||||||
const signature = (await signer(data)) as string;
|
|
||||||
return fromJose(signature);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// from did-jwt/util; see SimpleSigner above
|
|
||||||
export function fromJose(signature: string): {
|
|
||||||
r: string;
|
|
||||||
s: string;
|
|
||||||
recoveryParam?: number;
|
|
||||||
} {
|
|
||||||
const signatureBytes: Uint8Array = didJwt.base64ToBytes(signature);
|
|
||||||
if (signatureBytes.length < 64 || signatureBytes.length > 65) {
|
|
||||||
throw new TypeError(
|
|
||||||
`Wrong size for signature. Expected 64 or 65 bytes, but got ${signatureBytes.length}`,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
const r = bytesToHex(signatureBytes.slice(0, 32));
|
|
||||||
const s = bytesToHex(signatureBytes.slice(32, 64));
|
|
||||||
const recoveryParam =
|
|
||||||
signatureBytes.length === 65 ? signatureBytes[64] : undefined;
|
|
||||||
return { r, s, recoveryParam };
|
|
||||||
}
|
|
||||||
|
|
||||||
// from did-jwt/util; see SimpleSigner above
|
|
||||||
export function bytesToHex(b: Uint8Array): string {
|
|
||||||
return u8a.toString(b, "base16");
|
|
||||||
}
|
|
||||||
@@ -1,251 +0,0 @@
|
|||||||
import * as R from "ramda";
|
|
||||||
import { IIdentifier } from "@veramo/core";
|
|
||||||
import { accessToken, SimpleSigner } from "@/libs/crypto";
|
|
||||||
import * as didJwt from "did-jwt";
|
|
||||||
import { Axios, AxiosResponse } from "axios";
|
|
||||||
import { Contact } from "@/db/tables/contacts";
|
|
||||||
|
|
||||||
export const SCHEMA_ORG_CONTEXT = "https://schema.org";
|
|
||||||
export const SERVICE_ID = "endorser.ch";
|
|
||||||
|
|
||||||
export interface AgreeVerifiableCredential {
|
|
||||||
"@context": string;
|
|
||||||
"@type": string;
|
|
||||||
// "any" because arbitrary objects can be subject of agreement
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
||||||
object: Record<any, any>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface GiverInputInfo {
|
|
||||||
did?: string;
|
|
||||||
name?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ClaimResult {
|
|
||||||
success: { claimId: string; handleId: string };
|
|
||||||
error: { code: string; message: string };
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface GenericClaim {
|
|
||||||
"@context": string;
|
|
||||||
"@type": string;
|
|
||||||
issuedAt: string;
|
|
||||||
// "any" because arbitrary objects can be subject of agreement
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
||||||
claim: Record<any, any>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface GiveServerRecord {
|
|
||||||
agentDid: string;
|
|
||||||
amount: number;
|
|
||||||
amountConfirmed: number;
|
|
||||||
description: string;
|
|
||||||
fullClaim: GiveVerifiableCredential;
|
|
||||||
handleId: string;
|
|
||||||
issuedAt: string;
|
|
||||||
recipientDid: string;
|
|
||||||
unit: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface GiveVerifiableCredential {
|
|
||||||
"@context"?: string; // optional when embedded, eg. in an Agree
|
|
||||||
"@type": string;
|
|
||||||
agent?: { identifier: string };
|
|
||||||
description?: string;
|
|
||||||
fulfills?: { "@type": string; identifier: string };
|
|
||||||
identifier?: string;
|
|
||||||
object?: { amountOfThisGood: number; unitCode: string };
|
|
||||||
recipient: { identifier: string };
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface RegisterVerifiableCredential {
|
|
||||||
"@context": string;
|
|
||||||
"@type": string;
|
|
||||||
agent: { identifier: string };
|
|
||||||
object: string;
|
|
||||||
recipient: { identifier: string };
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface InternalError {
|
|
||||||
error: string; // for system logging
|
|
||||||
userMessage?: string; // for user display
|
|
||||||
}
|
|
||||||
|
|
||||||
// This is used to check for hidden info.
|
|
||||||
// See https://github.com/trentlarson/endorser-ch/blob/0cb626f803028e7d9c67f095858a9fc8542e3dbd/server/api/services/util.js#L6
|
|
||||||
const HIDDEN_DID = "did:none:HIDDEN";
|
|
||||||
|
|
||||||
export function isHiddenDid(did) {
|
|
||||||
return did === HIDDEN_DID;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
always returns text, maybe UNNAMED_VISIBLE or UNKNOWN_ENTITY
|
|
||||||
**/
|
|
||||||
export function didInfo(
|
|
||||||
did: string,
|
|
||||||
activeDid: string,
|
|
||||||
allMyDids: Array<string>,
|
|
||||||
contacts: Array<Contact>,
|
|
||||||
): string {
|
|
||||||
const myId: string | undefined = R.find(R.equals(did), allMyDids, did);
|
|
||||||
if (myId) {
|
|
||||||
return "You" + (myId !== activeDid ? " (Alt ID)" : "");
|
|
||||||
} else {
|
|
||||||
const contact: Contact | undefined = R.find((c) => c.did === did, contacts);
|
|
||||||
if (contact) {
|
|
||||||
return contact.name || "Someone Unnamed in Contacts";
|
|
||||||
} else if (!did) {
|
|
||||||
return "Unspecified Person";
|
|
||||||
} else if (isHiddenDid(did)) {
|
|
||||||
return "Someone Not In Network";
|
|
||||||
} else {
|
|
||||||
return "Someone Not In Contacts";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* For result, see https://endorser.ch:3000/api-docs/#/claims/post_api_v2_claim
|
|
||||||
*
|
|
||||||
* @param identity
|
|
||||||
* @param fromDid may be null
|
|
||||||
* @param toDid
|
|
||||||
* @param description may be null; should have this or hours
|
|
||||||
* @param hours may be null; should have this or description
|
|
||||||
*/
|
|
||||||
export async function createAndSubmitGive(
|
|
||||||
axios: Axios,
|
|
||||||
apiServer: string,
|
|
||||||
identity: IIdentifier,
|
|
||||||
fromDid: string,
|
|
||||||
toDid: string,
|
|
||||||
description: string,
|
|
||||||
hours: number,
|
|
||||||
fulfillsProjectHandleId?: string,
|
|
||||||
): Promise<AxiosResponse<ClaimResult> | InternalError> {
|
|
||||||
// Make a claim
|
|
||||||
const vcClaim: GiveVerifiableCredential = {
|
|
||||||
"@context": "https://schema.org",
|
|
||||||
"@type": "GiveAction",
|
|
||||||
recipient: { identifier: toDid },
|
|
||||||
};
|
|
||||||
if (fromDid) {
|
|
||||||
vcClaim.agent = { identifier: fromDid };
|
|
||||||
}
|
|
||||||
if (description) {
|
|
||||||
vcClaim.description = description;
|
|
||||||
}
|
|
||||||
if (hours) {
|
|
||||||
vcClaim.object = { amountOfThisGood: hours, unitCode: "HUR" };
|
|
||||||
}
|
|
||||||
if (fulfillsProjectHandleId) {
|
|
||||||
vcClaim.fulfills = {
|
|
||||||
"@type": "PlanAction",
|
|
||||||
identifier: fulfillsProjectHandleId,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
// Make a payload for the claim
|
|
||||||
const vcPayload = {
|
|
||||||
vc: {
|
|
||||||
"@context": ["https://www.w3.org/2018/credentials/v1"],
|
|
||||||
type: ["VerifiableCredential"],
|
|
||||||
credentialSubject: vcClaim,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
// Create a signature using private key of identity
|
|
||||||
if (identity.keys[0].privateKeyHex == null) {
|
|
||||||
return new Promise<InternalError>((resolve, reject) => {
|
|
||||||
reject({
|
|
||||||
error: "No private key",
|
|
||||||
message:
|
|
||||||
"Your identifier " +
|
|
||||||
identity.did +
|
|
||||||
" is not configured correctly. Use a different identifier.",
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
||||||
const privateKeyHex: string = identity.keys[0].privateKeyHex!;
|
|
||||||
const signer = await SimpleSigner(privateKeyHex);
|
|
||||||
const alg = undefined;
|
|
||||||
// Create a JWT for the request
|
|
||||||
const vcJwt: string = await didJwt.createJWT(vcPayload, {
|
|
||||||
alg: alg,
|
|
||||||
issuer: identity.did,
|
|
||||||
signer: signer,
|
|
||||||
});
|
|
||||||
|
|
||||||
// Make the xhr request payload
|
|
||||||
|
|
||||||
const payload = JSON.stringify({ jwtEncoded: vcJwt });
|
|
||||||
const url = apiServer + "/api/v2/claim";
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
|
|
||||||
return axios.post(url, payload, { headers });
|
|
||||||
}
|
|
||||||
|
|
||||||
// from https://stackoverflow.com/a/175787/845494
|
|
||||||
//
|
|
||||||
export function isNumeric(str: string): boolean {
|
|
||||||
return !isNaN(+str);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function numberOrZero(str: string): number {
|
|
||||||
return isNumeric(str) ? +str : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ErrorResponse {
|
|
||||||
error?: {
|
|
||||||
message?: string;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface RateLimits {
|
|
||||||
doneClaimsThisWeek: string;
|
|
||||||
doneRegistrationsThisMonth: string;
|
|
||||||
maxClaimsPerWeek: string;
|
|
||||||
maxRegistrationsPerMonth: string;
|
|
||||||
nextMonthBeginDateTime: string;
|
|
||||||
nextWeekBeginDateTime: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Represents data about a project
|
|
||||||
**/
|
|
||||||
export interface ProjectData {
|
|
||||||
/**
|
|
||||||
* Name of the project
|
|
||||||
**/
|
|
||||||
name: string;
|
|
||||||
/**
|
|
||||||
* Description of the project
|
|
||||||
**/
|
|
||||||
description: string;
|
|
||||||
/**
|
|
||||||
* URL referencing information about the project
|
|
||||||
**/
|
|
||||||
handleId: string;
|
|
||||||
/**
|
|
||||||
* The Identier of the project
|
|
||||||
**/
|
|
||||||
rowid: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface VerifiableCredential {
|
|
||||||
"@context": string;
|
|
||||||
"@type": string;
|
|
||||||
name: string;
|
|
||||||
description: string;
|
|
||||||
identifier?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface WorldProperties {
|
|
||||||
startTime?: string;
|
|
||||||
endTime?: string;
|
|
||||||
}
|
|
||||||
@@ -1,151 +0,0 @@
|
|||||||
// Created from the setup in https://veramo.io/docs/guides/react_native
|
|
||||||
|
|
||||||
// Core interfaces
|
|
||||||
/* import {
|
|
||||||
createAgent,
|
|
||||||
IDIDManager,
|
|
||||||
IResolver,
|
|
||||||
IDataStore,
|
|
||||||
IKeyManager,
|
|
||||||
} from "@veramo/core";
|
|
||||||
*/
|
|
||||||
// Core identity manager plugin
|
|
||||||
//import { DIDManager } from "@veramo/did-manager";
|
|
||||||
|
|
||||||
// Ethr did identity provider
|
|
||||||
//import { EthrDIDProvider } from "@veramo/did-provider-ethr";
|
|
||||||
|
|
||||||
// Core key manager plugin
|
|
||||||
//import { KeyManager } from "@veramo/key-manager";
|
|
||||||
|
|
||||||
// Custom key management system for RN
|
|
||||||
//import { KeyManagementSystem } from '@veramo/kms-local-react-native'
|
|
||||||
|
|
||||||
// Custom resolver
|
|
||||||
// Custom resolvers
|
|
||||||
//import { DIDResolverPlugin } from "@veramo/did-resolver";
|
|
||||||
/* import { Resolver } from "did-resolver";
|
|
||||||
import { getResolver as ethrDidResolver } from "ethr-did-resolver";
|
|
||||||
import { getResolver as webDidResolver } from "web-did-resolver";
|
|
||||||
*/
|
|
||||||
// for VCs and VPs https://veramo.io/docs/api/credential-w3c
|
|
||||||
//import { CredentialIssuer } from '@veramo/credential-w3c'
|
|
||||||
|
|
||||||
// Storage plugin using TypeOrm
|
|
||||||
/* import {
|
|
||||||
Entities,
|
|
||||||
KeyStore,
|
|
||||||
DIDStore,
|
|
||||||
IDataStoreORM,
|
|
||||||
} from "@veramo/data-store";
|
|
||||||
*/
|
|
||||||
// TypeORM is installed with @veramo/typeorm
|
|
||||||
//import { createConnection } from 'typeorm'
|
|
||||||
|
|
||||||
//import * as R from "ramda";
|
|
||||||
|
|
||||||
/*
|
|
||||||
import { Contact } from '../entity/contact'
|
|
||||||
import { Settings } from '../entity/settings'
|
|
||||||
import { PrivateData } from '../entity/privateData'
|
|
||||||
|
|
||||||
import { Initial1616938713828 } from '../migration/1616938713828-initial'
|
|
||||||
import { SettingsContacts1616967972293 } from '../migration/1616967972293-settings-contacts'
|
|
||||||
import { EncryptedSeed1637856484788 } from '../migration/1637856484788-EncryptedSeed'
|
|
||||||
import { HomeScreenConfig1639947962124 } from '../migration/1639947962124-HomeScreenConfig'
|
|
||||||
import { HandlePublicKeys1652142819353 } from '../migration/1652142819353-HandlePublicKeys'
|
|
||||||
import { LastClaimsSeen1656811846836 } from '../migration/1656811846836-LastClaimsSeen'
|
|
||||||
import { ContactRegistered1662256903367 }from '../migration/1662256903367-ContactRegistered'
|
|
||||||
import { PrivateData1663080623479 } from '../migration/1663080623479-PrivateData'
|
|
||||||
|
|
||||||
const ALL_ENTITIES = Entities.concat([Contact, Settings, PrivateData])
|
|
||||||
|
|
||||||
// Create react native DB connection configured by ormconfig.js
|
|
||||||
|
|
||||||
export const dbConnection = createConnection({
|
|
||||||
database: 'endorser-mobile.sqlite',
|
|
||||||
entities: ALL_ENTITIES,
|
|
||||||
location: 'default',
|
|
||||||
logging: ['error', 'info', 'warn'],
|
|
||||||
migrations: [ Initial1616938713828, SettingsContacts1616967972293, EncryptedSeed1637856484788, HomeScreenConfig1639947962124, HandlePublicKeys1652142819353, LastClaimsSeen1656811846836, ContactRegistered1662256903367, PrivateData1663080623479 ],
|
|
||||||
migrationsRun: true,
|
|
||||||
type: 'react-native',
|
|
||||||
})
|
|
||||||
*/
|
|
||||||
function didProviderName(netName: string) {
|
|
||||||
return "did:ethr" + (netName === "mainnet" ? "" : ":" + netName);
|
|
||||||
}
|
|
||||||
|
|
||||||
//const NETWORK_NAMES = ["mainnet", "rinkeby"];
|
|
||||||
|
|
||||||
const DEFAULT_DID_PROVIDER_NETWORK_NAME = "mainnet";
|
|
||||||
|
|
||||||
export const DEFAULT_DID_PROVIDER_NAME = didProviderName(
|
|
||||||
DEFAULT_DID_PROVIDER_NETWORK_NAME,
|
|
||||||
);
|
|
||||||
|
|
||||||
export const HANDY_APP = false;
|
|
||||||
|
|
||||||
// this is used as the object in RegisterAction claims
|
|
||||||
export const SERVICE_ID = "endorser.ch";
|
|
||||||
|
|
||||||
//const INFURA_PROJECT_ID = "INFURA_PROJECT_ID";
|
|
||||||
/*
|
|
||||||
const providers = {}
|
|
||||||
NETWORK_NAMES.forEach((networkName) => {
|
|
||||||
providers[didProviderName(networkName)] = new EthrDIDProvider({
|
|
||||||
defaultKms: 'local',
|
|
||||||
network: networkName,
|
|
||||||
rpcUrl: 'https://' + networkName + '.infura.io/v3/' + INFURA_PROJECT_ID,
|
|
||||||
gas: 1000001,
|
|
||||||
ttl: 60 * 60 * 24 * 30 * 12 + 1,
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
const didManager = new DIDManager({
|
|
||||||
store: new DIDStore(dbConnection),
|
|
||||||
defaultProvider: DEFAULT_DID_PROVIDER_NAME,
|
|
||||||
providers: providers,
|
|
||||||
})
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* const basicDidResolvers = NETWORK_NAMES.map((networkName) => [
|
|
||||||
networkName,
|
|
||||||
new Resolver({
|
|
||||||
ethr: ethrDidResolver({
|
|
||||||
networks: [
|
|
||||||
{
|
|
||||||
name: networkName,
|
|
||||||
rpcUrl:
|
|
||||||
"https://" + networkName + ".infura.io/v3/" + INFURA_PROJECT_ID,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}).ethr,
|
|
||||||
web: webDidResolver().web,
|
|
||||||
}),
|
|
||||||
]);
|
|
||||||
|
|
||||||
const basicResolverMap = R.fromPairs(basicDidResolvers)
|
|
||||||
|
|
||||||
export const DEFAULT_BASIC_RESOLVER = basicResolverMap[DEFAULT_DID_PROVIDER_NETWORK_NAME]
|
|
||||||
|
|
||||||
const agentDidResolvers = NETWORK_NAMES.map((networkName) => {
|
|
||||||
return new DIDResolverPlugin({
|
|
||||||
resolver: basicResolverMap[networkName],
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
let allPlugins = [
|
|
||||||
new CredentialIssuer(),
|
|
||||||
new KeyManager({
|
|
||||||
store: new KeyStore(dbConnection),
|
|
||||||
kms: {
|
|
||||||
local: new KeyManagementSystem(),
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
didManager,
|
|
||||||
].concat(agentDidResolvers)
|
|
||||||
*/
|
|
||||||
|
|
||||||
//export const agent = createAgent<IDIDManager & IKeyManager & IDataStore & IDataStoreORM & IResolver>({ plugins: allPlugins })
|
|
||||||
101
src/main.ts
101
src/main.ts
@@ -1,107 +1,54 @@
|
|||||||
import { createPinia } from "pinia";
|
|
||||||
import { createApp } from "vue";
|
import { createApp } from "vue";
|
||||||
import App from "./App.vue";
|
import App from "./App.vue";
|
||||||
import "./registerServiceWorker";
|
import "./registerServiceWorker";
|
||||||
import router from "./router";
|
import router from "./router";
|
||||||
import axios from "axios";
|
import store from "./store";
|
||||||
import VueAxios from "vue-axios";
|
|
||||||
import Notifications from "notiwind";
|
|
||||||
|
|
||||||
import "./assets/styles/tailwind.css";
|
import "./assets/styles/tailwind.css";
|
||||||
|
|
||||||
import { library } from "@fortawesome/fontawesome-svg-core";
|
import { library } from "@fortawesome/fontawesome-svg-core";
|
||||||
import {
|
import {
|
||||||
faBurst,
|
|
||||||
faCalendar,
|
|
||||||
faChevronLeft,
|
faChevronLeft,
|
||||||
faChevronRight,
|
|
||||||
faCircle,
|
|
||||||
faCircleCheck,
|
|
||||||
faCircleInfo,
|
|
||||||
faCircleQuestion,
|
|
||||||
faCircleUser,
|
|
||||||
faClock,
|
|
||||||
faCoins,
|
|
||||||
faComment,
|
|
||||||
faCopy,
|
|
||||||
faEllipsisVertical,
|
|
||||||
faEye,
|
|
||||||
faEyeSlash,
|
|
||||||
faFileLines,
|
|
||||||
faFloppyDisk,
|
|
||||||
faFolderOpen,
|
|
||||||
faGift,
|
|
||||||
faHand,
|
|
||||||
faHouseChimney,
|
faHouseChimney,
|
||||||
faLongArrowAltLeft,
|
|
||||||
faLongArrowAltRight,
|
|
||||||
faMagnifyingGlass,
|
faMagnifyingGlass,
|
||||||
faPen,
|
faFolderOpen,
|
||||||
faPersonCircleCheck,
|
faHand,
|
||||||
faPersonCircleQuestion,
|
faCircleUser,
|
||||||
faPlus,
|
faCopy,
|
||||||
faQrcode,
|
|
||||||
faRotate,
|
|
||||||
faShareNodes,
|
faShareNodes,
|
||||||
faSpinner,
|
faQrcode,
|
||||||
faSquareCaretDown,
|
|
||||||
faSquareCaretUp,
|
|
||||||
faTrashCan,
|
|
||||||
faTriangleExclamation,
|
|
||||||
faUser,
|
faUser,
|
||||||
faUsers,
|
faPen,
|
||||||
faXmark,
|
faTrashCan,
|
||||||
|
faCalendar,
|
||||||
|
faEllipsisVertical,
|
||||||
|
faSpinner,
|
||||||
|
faCircleCheck,
|
||||||
} from "@fortawesome/free-solid-svg-icons";
|
} from "@fortawesome/free-solid-svg-icons";
|
||||||
|
|
||||||
library.add(
|
library.add(
|
||||||
faBurst,
|
|
||||||
faCalendar,
|
|
||||||
faChevronLeft,
|
faChevronLeft,
|
||||||
faChevronRight,
|
|
||||||
faCircle,
|
|
||||||
faCircleCheck,
|
|
||||||
faCircleInfo,
|
|
||||||
faCircleQuestion,
|
|
||||||
faCircleUser,
|
|
||||||
faClock,
|
|
||||||
faCoins,
|
|
||||||
faComment,
|
|
||||||
faCopy,
|
|
||||||
faEllipsisVertical,
|
|
||||||
faEye,
|
|
||||||
faEyeSlash,
|
|
||||||
faFileLines,
|
|
||||||
faFloppyDisk,
|
|
||||||
faFolderOpen,
|
|
||||||
faGift,
|
|
||||||
faHand,
|
|
||||||
faHouseChimney,
|
faHouseChimney,
|
||||||
faLongArrowAltLeft,
|
|
||||||
faLongArrowAltRight,
|
|
||||||
faMagnifyingGlass,
|
faMagnifyingGlass,
|
||||||
faPen,
|
faFolderOpen,
|
||||||
faPersonCircleCheck,
|
faHand,
|
||||||
faPersonCircleQuestion,
|
faCircleUser,
|
||||||
faPlus,
|
faCopy,
|
||||||
faQrcode,
|
|
||||||
faRotate,
|
|
||||||
faShareNodes,
|
faShareNodes,
|
||||||
faSpinner,
|
faQrcode,
|
||||||
faSquareCaretDown,
|
|
||||||
faSquareCaretUp,
|
|
||||||
faTrashCan,
|
|
||||||
faTriangleExclamation,
|
|
||||||
faUser,
|
faUser,
|
||||||
faUsers,
|
faPen,
|
||||||
faXmark,
|
faTrashCan,
|
||||||
|
faCalendar,
|
||||||
|
faEllipsisVertical,
|
||||||
|
faSpinner,
|
||||||
|
faCircleCheck
|
||||||
);
|
);
|
||||||
|
|
||||||
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
|
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
|
||||||
|
|
||||||
createApp(App)
|
createApp(App)
|
||||||
.component("fa", FontAwesomeIcon)
|
.component("fa", FontAwesomeIcon)
|
||||||
.use(createPinia())
|
.use(store)
|
||||||
.use(VueAxios, axios)
|
|
||||||
.use(router)
|
.use(router)
|
||||||
.use(Notifications)
|
|
||||||
.mount("#app");
|
.mount("#app");
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ if (process.env.NODE_ENV === "production") {
|
|||||||
ready() {
|
ready() {
|
||||||
console.log(
|
console.log(
|
||||||
"App is being served from cache by a service worker.\n" +
|
"App is being served from cache by a service worker.\n" +
|
||||||
"For more details, visit https://goo.gl/AFskqB",
|
"For more details, visit https://goo.gl/AFskqB"
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
registered() {
|
registered() {
|
||||||
@@ -24,7 +24,7 @@ if (process.env.NODE_ENV === "production") {
|
|||||||
},
|
},
|
||||||
offline() {
|
offline() {
|
||||||
console.log(
|
console.log(
|
||||||
"No internet connection found. App is running in offline mode.",
|
"No internet connection found. App is running in offline mode."
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
error(error) {
|
error(error) {
|
||||||
|
|||||||
@@ -1,36 +1,32 @@
|
|||||||
import { createRouter, createWebHistory, RouteRecordRaw } from "vue-router";
|
import { createRouter, createWebHistory, RouteRecordRaw } from "vue-router";
|
||||||
import { accountsDB } from "@/db";
|
import HomeView from "../views/HomeView.vue";
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param to :RouteLocationNormalized
|
|
||||||
* @param from :RouteLocationNormalized
|
|
||||||
* @param next :NavigationGuardNext
|
|
||||||
*/
|
|
||||||
const enterOrStart = async (to, from, next) => {
|
|
||||||
await accountsDB.open();
|
|
||||||
const num_accounts = await accountsDB.accounts.count();
|
|
||||||
if (num_accounts > 0) {
|
|
||||||
next();
|
|
||||||
} else {
|
|
||||||
next({ name: "start" });
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const routes: Array<RouteRecordRaw> = [
|
const routes: Array<RouteRecordRaw> = [
|
||||||
{
|
{
|
||||||
path: "/",
|
path: "/",
|
||||||
name: "home",
|
name: "home",
|
||||||
|
component: HomeView,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "/about",
|
||||||
|
name: "about",
|
||||||
|
// route level code-splitting
|
||||||
|
// this generates a separate chunk (about.[hash].js) for this route
|
||||||
|
// which is lazy-loaded when the route is visited.
|
||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "home" */ "../views/HomeView.vue"),
|
import(/* webpackChunkName: "about" */ "../views/AboutView.vue"),
|
||||||
beforeEnter: enterOrStart,
|
},
|
||||||
|
{
|
||||||
|
path: "/start",
|
||||||
|
name: "start",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "start" */ "../views/StartView.vue"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/account",
|
path: "/account",
|
||||||
name: "account",
|
name: "account",
|
||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "account" */ "../views/AccountViewView.vue"),
|
import(/* webpackChunkName: "account" */ "../views/AccountViewView.vue"),
|
||||||
beforeEnter: enterOrStart,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/confirm-contact",
|
path: "/confirm-contact",
|
||||||
@@ -40,29 +36,6 @@ const routes: Array<RouteRecordRaw> = [
|
|||||||
/* webpackChunkName: "confirm-contact" */ "../views/ConfirmContactView.vue"
|
/* webpackChunkName: "confirm-contact" */ "../views/ConfirmContactView.vue"
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "/contact-amounts",
|
|
||||||
name: "contact-amounts",
|
|
||||||
component: () =>
|
|
||||||
import(
|
|
||||||
/* webpackChunkName: "contact-amounts" */ "../views/ContactAmountsView.vue"
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/contact-qr",
|
|
||||||
name: "contact-qr",
|
|
||||||
component: () =>
|
|
||||||
import(
|
|
||||||
/* webpackChunkName: "contact-qr" */ "../views/ContactQRScanShowView.vue"
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/contacts",
|
|
||||||
name: "contacts",
|
|
||||||
component: () =>
|
|
||||||
import(/* webpackChunkName: "contacts" */ "../views/ContactsView.vue"),
|
|
||||||
beforeEnter: enterOrStart,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: "/scan-contact",
|
path: "/scan-contact",
|
||||||
name: "scan-contact",
|
name: "scan-contact",
|
||||||
@@ -77,12 +50,6 @@ const routes: Array<RouteRecordRaw> = [
|
|||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "discover" */ "../views/DiscoverView.vue"),
|
import(/* webpackChunkName: "discover" */ "../views/DiscoverView.vue"),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "/help",
|
|
||||||
name: "help",
|
|
||||||
component: () =>
|
|
||||||
import(/* webpackChunkName: "help" */ "../views/HelpView.vue"),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: "/import-account",
|
path: "/import-account",
|
||||||
name: "import-account",
|
name: "import-account",
|
||||||
@@ -115,81 +82,17 @@ const routes: Array<RouteRecordRaw> = [
|
|||||||
/* webpackChunkName: "new-edit-project" */ "../views/NewEditProjectView.vue"
|
/* webpackChunkName: "new-edit-project" */ "../views/NewEditProjectView.vue"
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "/new-identifier",
|
|
||||||
name: "new-identifier",
|
|
||||||
component: () =>
|
|
||||||
import(
|
|
||||||
/* webpackChunkName: "new-identifier" */ "../views/NewIdentifierView.vue"
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/identity-switcher",
|
|
||||||
name: "identity-switcher",
|
|
||||||
component: () =>
|
|
||||||
import(
|
|
||||||
/* webpackChunkName: "identity-switcher" */ "../views/IdentitySwitcherView.vue"
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: "/project",
|
path: "/project",
|
||||||
name: "project",
|
name: "project",
|
||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "project" */ "../views/ProjectViewView.vue"),
|
import(/* webpackChunkName: "project" */ "../views/ProjectViewView.vue"),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "/projects",
|
|
||||||
name: "projects",
|
|
||||||
component: () =>
|
|
||||||
import(/* webpackChunkName: "projects" */ "../views/ProjectsView.vue"),
|
|
||||||
beforeEnter: enterOrStart,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/seed-backup",
|
|
||||||
name: "seed-backup",
|
|
||||||
component: () =>
|
|
||||||
import(
|
|
||||||
/* webpackChunkName: "seed-backup" */ "../views/SeedBackupView.vue"
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/start",
|
|
||||||
name: "start",
|
|
||||||
component: () =>
|
|
||||||
import(/* webpackChunkName: "start" */ "../views/StartView.vue"),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/statistics",
|
|
||||||
name: "statistics",
|
|
||||||
component: () =>
|
|
||||||
import(
|
|
||||||
/* webpackChunkName: "statistics" */ "../views/StatisticsView.vue"
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/contact-gives",
|
|
||||||
name: "contact-gives",
|
|
||||||
component: () =>
|
|
||||||
import(
|
|
||||||
/* webpackChunkName: "statistics" */ "../views/ContactGiftingView.vue"
|
|
||||||
),
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
/** @type {*} */
|
|
||||||
const router = createRouter({
|
const router = createRouter({
|
||||||
history: createWebHistory(process.env.BASE_URL),
|
history: createWebHistory(process.env.BASE_URL),
|
||||||
routes,
|
routes,
|
||||||
});
|
});
|
||||||
|
|
||||||
const errorHandler = (error, to, from) => {
|
|
||||||
// Handle the error here
|
|
||||||
console.error(error, to, from);
|
|
||||||
console.log("XXXXX");
|
|
||||||
|
|
||||||
// You can also perform additional actions, such as displaying an error message or redirecting the user to a specific page
|
|
||||||
};
|
|
||||||
|
|
||||||
router.onError(errorHandler); // Assign the error handler to the router instance
|
|
||||||
|
|
||||||
export default router;
|
export default router;
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
// @ts-check
|
|
||||||
import { defineStore } from "pinia";
|
|
||||||
|
|
||||||
export const useAppStore = defineStore({
|
|
||||||
id: "app",
|
|
||||||
state: () => ({
|
|
||||||
_projectId:
|
|
||||||
typeof localStorage.getItem("projectId") === "undefined"
|
|
||||||
? ""
|
|
||||||
: localStorage.getItem("projectId"),
|
|
||||||
}),
|
|
||||||
getters: {
|
|
||||||
projectId: (state): string => state._projectId as string,
|
|
||||||
},
|
|
||||||
actions: {
|
|
||||||
async setProjectId(newProjectId: string) {
|
|
||||||
localStorage.setItem("projectId", newProjectId);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
9
src/store/index.ts
Normal file
9
src/store/index.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import { createStore } from "vuex";
|
||||||
|
|
||||||
|
export default createStore({
|
||||||
|
state: {},
|
||||||
|
getters: {},
|
||||||
|
mutations: {},
|
||||||
|
actions: {},
|
||||||
|
modules: {},
|
||||||
|
});
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
import axios from "axios";
|
|
||||||
import * as didJwt from "did-jwt";
|
|
||||||
import { AppString } from "@/constants/app";
|
|
||||||
import { db } from "../db";
|
|
||||||
import { SERVICE_ID } from "../libs/veramo/setup";
|
|
||||||
import { deriveAddress, newIdentifier } from "../libs/crypto";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
|
|
||||||
export async function testServerRegisterUser() {
|
|
||||||
const testUser0Mnem =
|
|
||||||
"seminar accuse mystery assist delay law thing deal image undo guard initial shallow wrestle list fragile borrow velvet tomorrow awake explain test offer control";
|
|
||||||
|
|
||||||
const [addr, privateHex, publicHex, deriPath] = deriveAddress(testUser0Mnem);
|
|
||||||
|
|
||||||
const identity0 = newIdentifier(addr, publicHex, privateHex, deriPath);
|
|
||||||
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
|
|
||||||
// Make a claim
|
|
||||||
const vcClaim = {
|
|
||||||
"@context": "https://schema.org",
|
|
||||||
"@type": "RegisterAction",
|
|
||||||
agent: { did: identity0.did },
|
|
||||||
object: SERVICE_ID,
|
|
||||||
participant: { did: settings?.activeDid },
|
|
||||||
};
|
|
||||||
// Make a payload for the claim
|
|
||||||
const vcPayload = {
|
|
||||||
sub: "RegisterAction",
|
|
||||||
vc: {
|
|
||||||
"@context": ["https://www.w3.org/2018/credentials/v1"],
|
|
||||||
type: ["VerifiableCredential"],
|
|
||||||
credentialSubject: vcClaim,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
// create a signature using private key of identity
|
|
||||||
// eslint-disable-next-line
|
|
||||||
const privateKeyHex: string = identity0.keys[0].privateKeyHex!;
|
|
||||||
const signer = await didJwt.SimpleSigner(privateKeyHex);
|
|
||||||
const alg = undefined;
|
|
||||||
// create a JWT for the request
|
|
||||||
const vcJwt: string = await didJwt.createJWT(vcPayload, {
|
|
||||||
alg: alg,
|
|
||||||
issuer: identity0.did,
|
|
||||||
signer: signer,
|
|
||||||
});
|
|
||||||
|
|
||||||
// Make the xhr request payload
|
|
||||||
|
|
||||||
const payload = JSON.stringify({ jwtEncoded: vcJwt });
|
|
||||||
const endorserApiServer =
|
|
||||||
settings?.apiServer || AppString.TEST_ENDORSER_API_SERVER;
|
|
||||||
const url = endorserApiServer + "/api/claim";
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
};
|
|
||||||
|
|
||||||
const resp = await axios.post(url, payload, { headers });
|
|
||||||
console.log("User registration result:", resp);
|
|
||||||
}
|
|
||||||
14
src/views/AboutView.vue
Normal file
14
src/views/AboutView.vue
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<template>
|
||||||
|
<div class="about">
|
||||||
|
<h1>This is an about page</h1>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
@Options({
|
||||||
|
components: {},
|
||||||
|
})
|
||||||
|
export default class AboutView extends Vue {}
|
||||||
|
</script>
|
||||||
@@ -1,152 +1,140 @@
|
|||||||
<template>
|
<template>
|
||||||
<QuickNav selected="Profile"></QuickNav>
|
<!-- QUICK NAV -->
|
||||||
|
<nav id="QuickNav" class="fixed bottom-0 left-0 right-0 bg-slate-200">
|
||||||
|
<ul class="flex text-2xl p-2 gap-2">
|
||||||
|
<!-- Home Feed -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="house-chimney" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Search -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="search.html" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="magnifying-glass" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Projects -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="folder-open" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Commitments -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="hand" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Profile -->
|
||||||
|
<li class="basis-1/5 rounded-md bg-slate-400 text-white">
|
||||||
|
<a href="account-view.html" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="circle-user" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<!-- CONTENT -->
|
<!-- CONTENT -->
|
||||||
<section id="Content" class="p-6 pb-24">
|
<section id="Content" class="p-6 pb-24">
|
||||||
<!-- Heading -->
|
<!-- Heading -->
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-4">
|
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
||||||
Your Identity
|
Your Identity
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<div class="flex justify-between">
|
<!-- Friend referral requirement notice -->
|
||||||
<span />
|
|
||||||
<span class="whitespace-nowrap">
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'contact-qr' }"
|
|
||||||
class="text-xs uppercase bg-slate-500 text-white px-1.5 py-1 rounded-md"
|
|
||||||
>
|
|
||||||
<fa icon="qrcode" class="fa-fw"></fa>
|
|
||||||
</router-link>
|
|
||||||
</span>
|
|
||||||
<span />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex justify-between py-2">
|
|
||||||
<span />
|
|
||||||
<span>
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'help' }"
|
|
||||||
class="text-xs uppercase bg-blue-500 text-white px-1.5 py-1 rounded-md ml-1"
|
|
||||||
>
|
|
||||||
Help
|
|
||||||
</router-link>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Registration notice -->
|
|
||||||
<!-- We won't show any loading indicator; we'll just pop the message in once we know they need it. -->
|
|
||||||
<div
|
<div
|
||||||
v-if="!loadingLimits && !limits?.nextWeekBeginDateTime"
|
|
||||||
class="bg-amber-200 text-amber-900 border-amber-500 border-dashed border text-center rounded-md overflow-hidden px-4 py-3 mb-4"
|
class="bg-amber-200 text-amber-900 border-amber-500 border-dashed border text-center rounded-md overflow-hidden px-4 py-3 mb-4"
|
||||||
>
|
>
|
||||||
<p class="mb-4">
|
<p class="mb-4">
|
||||||
<b>Note:</b> Before you can publicly announce a new project or time
|
<b>Important:</b> before you can create a new project or commit time to
|
||||||
commitment, a friend needs to register you.
|
one, you need a friend to register you.
|
||||||
</p>
|
</p>
|
||||||
<router-link
|
<button
|
||||||
:to="{ name: 'contact-qr' }"
|
id="btnShowQR"
|
||||||
class="inline-block text-md uppercase bg-amber-600 text-white px-4 py-2 rounded-md"
|
class="inline-block text-md uppercase bg-amber-600 text-white px-4 py-2 rounded-md"
|
||||||
>
|
>
|
||||||
Share Your Info
|
Share Your ID
|
||||||
</router-link>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Identity Details -->
|
<!-- Identity Details -->
|
||||||
<div class="bg-slate-100 rounded-md overflow-hidden px-4 py-3 mb-4">
|
<div class="bg-slate-100 rounded-md overflow-hidden px-4 py-3 mb-4">
|
||||||
<h2 class="text-xl font-semibold mb-2">{{ firstName }} {{ lastName }}</h2>
|
<h2 class="text-xl font-semibold mb-2">Firstname Lastname</h2>
|
||||||
|
|
||||||
<div class="text-slate-500 text-sm font-bold">ID</div>
|
<div class="text-slate-500 text-sm font-bold">ID</div>
|
||||||
<div class="text-sm text-slate-500 flex justify-start items-center mb-1">
|
<div
|
||||||
<code class="truncate">{{ activeDid }}</code>
|
class="text-sm text-slate-500 flex justify-between items-center mb-1"
|
||||||
<button
|
|
||||||
@click="
|
|
||||||
doCopyTwoSecRedo(activeDid, () => (showDidCopy = !showDidCopy))
|
|
||||||
"
|
|
||||||
class="ml-2"
|
|
||||||
>
|
>
|
||||||
<fa icon="copy" class="text-slate-400 fa-fw"></fa>
|
<span
|
||||||
|
><code>did:peer:kl45kj41lk451kl3</code>
|
||||||
|
<fa icon="copy" class="text-slate-400 fa-fw ml-1"></fa
|
||||||
|
></span>
|
||||||
|
<span>
|
||||||
|
<button
|
||||||
|
class="text-xs uppercase bg-slate-500 text-white px-1.5 py-1 rounded-md"
|
||||||
|
>
|
||||||
|
<fa icon="share-nodes" class="fa-fw"></fa>
|
||||||
</button>
|
</button>
|
||||||
<span v-show="showDidCopy">Copied!</span>
|
<button
|
||||||
|
class="text-xs uppercase bg-slate-500 text-white px-1.5 py-1 rounded-md ml-1"
|
||||||
|
>
|
||||||
|
<fa icon="qrcode" class="fa-fw"></fa>
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="text-slate-500 text-sm font-bold">Public Key (base 64)</div>
|
<div class="text-slate-500 text-sm font-bold">Public Key</div>
|
||||||
<div class="text-sm text-slate-500 flex justify-start items-center mb-1">
|
<div class="text-sm text-slate-500 mb-1">
|
||||||
<code class="truncate">{{ publicBase64 }}</code>
|
<span
|
||||||
<button
|
><code>dyIgKepL19trfrFu5jzkoNhI</code>
|
||||||
@click="
|
<fa icon="copy" class="text-slate-400 fa-fw ml-1"></fa
|
||||||
doCopyTwoSecRedo(publicBase64, () => (showB64Copy = !showB64Copy))
|
></span>
|
||||||
"
|
|
||||||
class="ml-2"
|
|
||||||
>
|
|
||||||
<fa icon="copy" class="text-slate-400 fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
<span v-show="showB64Copy">Copied!</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="text-slate-500 text-sm font-bold">Public Key (hex)</div>
|
|
||||||
<div class="text-sm text-slate-500 flex justify-start items-center mb-1">
|
|
||||||
<code class="truncate">{{ publicHex }}</code>
|
|
||||||
<button
|
|
||||||
@click="
|
|
||||||
doCopyTwoSecRedo(publicHex, () => (showPubCopy = !showPubCopy))
|
|
||||||
"
|
|
||||||
class="ml-2"
|
|
||||||
>
|
|
||||||
<fa icon="copy" class="text-slate-400 fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
<span v-show="showPubCopy">Copied!</span>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="text-slate-500 text-sm font-bold">Derivation Path</div>
|
<div class="text-slate-500 text-sm font-bold">Derivation Path</div>
|
||||||
<div class="text-sm text-slate-500 flex justify-start items-center mb-1">
|
<div class="text-sm text-slate-500 mb-1">
|
||||||
<code class="truncate">{{ derivationPath }}</code>
|
<span
|
||||||
<button
|
><code>m/44'/0'/0'/0/0</code>
|
||||||
@click="
|
<fa icon="copy" class="text-slate-400 fa-fw ml-1"></fa
|
||||||
doCopyTwoSecRedo(derivationPath, () => (showDerCopy = !showDerCopy))
|
></span>
|
||||||
"
|
|
||||||
class="ml-2"
|
|
||||||
>
|
|
||||||
<fa icon="copy" class="text-slate-400 fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
<span v-show="showDerCopy">Copied!</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<router-link
|
<a
|
||||||
:to="{ name: 'new-edit-account' }"
|
href="account-edit.html"
|
||||||
class="block text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
class="block text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-8"
|
||||||
|
>Edit Identity</a
|
||||||
>
|
>
|
||||||
Edit Identity
|
|
||||||
</router-link>
|
<h3 class="text-sm uppercase font-semibold mb-3">Contact Actions</h3>
|
||||||
<router-link
|
|
||||||
:to="{ name: 'identity-switcher' }"
|
<a
|
||||||
class="block text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-8"
|
href="contact-scan.html"
|
||||||
|
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-6"
|
||||||
|
>Scan New Contact</a
|
||||||
>
|
>
|
||||||
Switch Identity / No Identity
|
|
||||||
</router-link>
|
|
||||||
|
|
||||||
<h3 class="text-sm uppercase font-semibold mb-3">Data</h3>
|
<h3 class="text-sm uppercase font-semibold mb-3">Identity Actions</h3>
|
||||||
|
|
||||||
<router-link
|
<a
|
||||||
:to="{ name: 'seed-backup' }"
|
|
||||||
href=""
|
href=""
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-2"
|
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-2"
|
||||||
|
>Backup Seed</a
|
||||||
>
|
>
|
||||||
Backup Identifier Seed
|
|
||||||
</router-link>
|
|
||||||
<a
|
<a
|
||||||
|
href=""
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-6"
|
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-6"
|
||||||
@click="exportDatabase()"
|
>Backup Other Data</a
|
||||||
>
|
>
|
||||||
Download Settings & Contacts (excluding Identifier Data)
|
|
||||||
</a>
|
|
||||||
<a ref="downloadLink" />
|
|
||||||
|
|
||||||
<!-- QR code popup -->
|
<!-- QR code popup -->
|
||||||
<dialog id="dlgQR" class="backdrop:bg-black/75 rounded-md">
|
<dialog id="dlgQR" class="backdrop:bg-black/75 rounded-md">
|
||||||
|
<form method="dialog">
|
||||||
<div class="text-slate-500 text-center">
|
<div class="text-slate-500 text-center">
|
||||||
<b>ID:</b> <code>did:peer:kl45kj41lk451kl3</code>
|
<b>ID:</b> <code>did:peer:kl45kj41lk451kl3</code>
|
||||||
</div>
|
</div>
|
||||||
<img src="/img/sample-qr-code.png" class="w-full mb-3" />
|
<img src="img/sample-qr-code.png" class="w-full mb-3" />
|
||||||
|
|
||||||
<button
|
<button
|
||||||
value="cancel"
|
value="cancel"
|
||||||
@@ -160,410 +148,16 @@
|
|||||||
>
|
>
|
||||||
Close
|
Close
|
||||||
</button>
|
</button>
|
||||||
|
</form>
|
||||||
</dialog>
|
</dialog>
|
||||||
|
|
||||||
<h3
|
|
||||||
class="text-sm uppercase font-semibold mb-3"
|
|
||||||
@click="showAdvanced = !showAdvanced"
|
|
||||||
>
|
|
||||||
Advanced
|
|
||||||
</h3>
|
|
||||||
<div v-if="showAdvanced">
|
|
||||||
<label
|
|
||||||
for="toggleShowAmounts"
|
|
||||||
class="flex items-center cursor-pointer mb-6"
|
|
||||||
@click="handleChange"
|
|
||||||
>
|
|
||||||
<!-- toggle -->
|
|
||||||
<div class="relative">
|
|
||||||
<!-- input -->
|
|
||||||
<input
|
|
||||||
type="checkbox"
|
|
||||||
v-model="showContactGives"
|
|
||||||
name="showContactGives"
|
|
||||||
class="sr-only"
|
|
||||||
/>
|
|
||||||
<!-- line -->
|
|
||||||
<div class="block bg-slate-500 w-14 h-8 rounded-full"></div>
|
|
||||||
<!-- dot -->
|
|
||||||
<div
|
|
||||||
class="dot absolute left-1 top-1 bg-slate-400 w-6 h-6 rounded-full transition"
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
<!-- label -->
|
|
||||||
<div class="ml-2">Show amounts given with contacts</div>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<div class="flex py-2">
|
|
||||||
<button
|
|
||||||
class="text-center text-md text-blue-500"
|
|
||||||
@click="checkLimits()"
|
|
||||||
>
|
|
||||||
Check Limits
|
|
||||||
</button>
|
|
||||||
<!-- show spinner if loading limits -->
|
|
||||||
<div v-if="loadingLimits" class="ml-2">
|
|
||||||
Checking... <fa icon="spinner" class="fa-spin"></fa>
|
|
||||||
</div>
|
|
||||||
<div class="ml-2">
|
|
||||||
{{ limitsMessage }}
|
|
||||||
</div>
|
|
||||||
<div v-if="!!limits?.nextWeekBeginDateTime" class="px-9">
|
|
||||||
<span class="font-bold">Rate Limits</span>
|
|
||||||
<p>
|
|
||||||
You have done {{ limits.doneClaimsThisWeek }} claims out of
|
|
||||||
{{ limits.maxClaimsPerWeek }} for this week. Your claims counter
|
|
||||||
resets at {{ readableTime(limits.nextWeekBeginDateTime) }}
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
You have done {{ limits.doneRegistrationsThisMonth }} registrations
|
|
||||||
out of {{ limits.maxRegistrationsPerMonth }} for this month. Your
|
|
||||||
registrations counter resets at
|
|
||||||
{{ readableTime(limits.nextMonthBeginDateTime) }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex py-2">
|
|
||||||
Claim Server
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
class="block w-full rounded border border-slate-400 px-3 py-2"
|
|
||||||
v-model="apiServerInput"
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
v-if="apiServerInput != apiServer"
|
|
||||||
class="px-4 rounded bg-red-500 border border-slate-400"
|
|
||||||
@click="onClickSaveApiServer()"
|
|
||||||
>
|
|
||||||
<fa icon="floppy-disk" class="fa-fw" color="white"></fa>
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
class="px-4 rounded bg-slate-200 border border-slate-400"
|
|
||||||
@click="setApiServerInput(Constants.PROD_ENDORSER_API_SERVER)"
|
|
||||||
>
|
|
||||||
Use Prod
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
class="px-4 rounded bg-slate-200 border border-slate-400"
|
|
||||||
@click="setApiServerInput(Constants.TEST_ENDORSER_API_SERVER)"
|
|
||||||
>
|
|
||||||
Use Test
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
class="px-4 rounded bg-slate-200 border border-slate-400"
|
|
||||||
@click="setApiServerInput(Constants.LOCAL_ENDORSER_API_SERVER)"
|
|
||||||
>
|
|
||||||
Use Local
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<button class="text-blue-500">
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'statistics' }"
|
|
||||||
class="block text-center py-3"
|
|
||||||
>
|
|
||||||
See Achievements & Statistics
|
|
||||||
</router-link>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import "dexie-export-import";
|
import { Options, Vue } from "vue-class-component";
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import { useClipboard } from "@vueuse/core";
|
|
||||||
|
|
||||||
import { AppString } from "@/constants/app";
|
@Options({
|
||||||
import { db, accountsDB } from "@/db";
|
components: {},
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
})
|
||||||
import { accessToken } from "@/libs/crypto";
|
export default class AccountViewView extends Vue {}
|
||||||
import { AxiosError } from "axios/index";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
import { IIdentifier } from "@veramo/core";
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
||||||
const Buffer = require("buffer/").Buffer;
|
|
||||||
|
|
||||||
@Component({ components: { AlertMessage, QuickNav } })
|
|
||||||
export default class AccountViewView extends Vue {
|
|
||||||
Constants = AppString;
|
|
||||||
|
|
||||||
activeDid = "";
|
|
||||||
apiServer = "";
|
|
||||||
apiServerInput = "";
|
|
||||||
derivationPath = "";
|
|
||||||
firstName = "";
|
|
||||||
lastName = "";
|
|
||||||
numAccounts = 0;
|
|
||||||
publicHex = "";
|
|
||||||
publicBase64 = "";
|
|
||||||
limits: RateLimits | null = null;
|
|
||||||
limitsMessage = "";
|
|
||||||
loadingLimits = true; // might as well now that we do it on mount, to avoid flashing the registration message
|
|
||||||
showContactGives = false;
|
|
||||||
|
|
||||||
showDidCopy = false;
|
|
||||||
showDerCopy = false;
|
|
||||||
showB64Copy = false;
|
|
||||||
showPubCopy = false;
|
|
||||||
|
|
||||||
showAdvanced = false;
|
|
||||||
alertMessage = "";
|
|
||||||
alertTitle = "";
|
|
||||||
|
|
||||||
public async getIdentity(activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const account = await accountsDB.accounts
|
|
||||||
.where("did")
|
|
||||||
.equals(activeDid)
|
|
||||||
.first();
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
return identity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getHeaders(identity) {
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
// call fn, copy text to the clipboard, then redo fn after 2 seconds
|
|
||||||
doCopyTwoSecRedo(text, fn) {
|
|
||||||
fn();
|
|
||||||
useClipboard()
|
|
||||||
.copy(text)
|
|
||||||
.then(() => setTimeout(fn, 2000));
|
|
||||||
}
|
|
||||||
|
|
||||||
handleChange() {
|
|
||||||
this.showContactGives = !this.showContactGives;
|
|
||||||
this.updateShowContactAmounts();
|
|
||||||
}
|
|
||||||
|
|
||||||
readableTime(timeStr: string) {
|
|
||||||
return timeStr.substring(0, timeStr.indexOf("T"));
|
|
||||||
}
|
|
||||||
|
|
||||||
async beforeCreate() {
|
|
||||||
await accountsDB.open();
|
|
||||||
this.numAccounts = await accountsDB.accounts.count();
|
|
||||||
}
|
|
||||||
|
|
||||||
async created() {
|
|
||||||
// Uncomment this to register this user on the test server.
|
|
||||||
// To manage within the vue devtools browser extension https://devtools.vuejs.org/
|
|
||||||
// assign this to a class variable, eg. "registerThisUser = testServerRegisterUser",
|
|
||||||
// select a component in the extension, and enter in the console: $vm.ctx.registerThisUser()
|
|
||||||
//testServerRegisterUser();
|
|
||||||
|
|
||||||
try {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.activeDid = settings?.activeDid || "";
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
this.apiServerInput = settings?.apiServer || "";
|
|
||||||
this.firstName = settings?.firstName || "";
|
|
||||||
this.lastName = settings?.lastName || "";
|
|
||||||
this.showContactGives = !!settings?.showContactGivesInline;
|
|
||||||
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
|
|
||||||
if (identity) {
|
|
||||||
this.publicHex = identity.keys[0].publicKeyHex;
|
|
||||||
this.publicBase64 = Buffer.from(this.publicHex, "hex").toString(
|
|
||||||
"base64",
|
|
||||||
);
|
|
||||||
this.derivationPath = identity.keys[0].meta.derivationPath;
|
|
||||||
|
|
||||||
db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
activeDid: identity.did,
|
|
||||||
});
|
|
||||||
this.checkLimitsFor(identity);
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
if (
|
|
||||||
err.message ===
|
|
||||||
"Attempted to load account records with no identity available."
|
|
||||||
) {
|
|
||||||
this.limitsMessage = "No identity.";
|
|
||||||
this.loadingLimits = false;
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error Creating Account",
|
|
||||||
text: "Clear your cache and start over (after data backup).",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
console.error(
|
|
||||||
"Telling user to clear cache at page create because:",
|
|
||||||
err,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public async updateShowContactAmounts() {
|
|
||||||
try {
|
|
||||||
await db.open();
|
|
||||||
db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
showContactGivesInline: this.showContactGives,
|
|
||||||
});
|
|
||||||
} catch (err) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error Updating Contact Setting",
|
|
||||||
text: "Clear your cache and start over (after data backup).",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
console.error(
|
|
||||||
"Telling user to clear cache after contact setting update because:",
|
|
||||||
err,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public async exportDatabase() {
|
|
||||||
try {
|
|
||||||
const blob = await db.export({ prettyJson: true });
|
|
||||||
const url = URL.createObjectURL(blob);
|
|
||||||
|
|
||||||
const downloadAnchor = this.$refs.downloadLink as HTMLAnchorElement;
|
|
||||||
downloadAnchor.href = url;
|
|
||||||
downloadAnchor.download = db.name + "-backup.json";
|
|
||||||
downloadAnchor.click();
|
|
||||||
|
|
||||||
URL.revokeObjectURL(url);
|
|
||||||
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "toast",
|
|
||||||
title: "Download Started",
|
|
||||||
text: "See your downloads directory for the backup.",
|
|
||||||
},
|
|
||||||
5000,
|
|
||||||
);
|
|
||||||
} catch (error) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Export Error",
|
|
||||||
text: "See console logs for more info.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
console.error("Export Error:", error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async checkLimits() {
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
if (identity) {
|
|
||||||
this.checkLimitsFor(identity);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async checkLimitsFor(identity: IIdentifier) {
|
|
||||||
this.loadingLimits = true;
|
|
||||||
this.limitsMessage = "";
|
|
||||||
|
|
||||||
try {
|
|
||||||
const url = this.apiServer + "/api/report/rateLimits";
|
|
||||||
const headers = await this.getHeaders(identity);
|
|
||||||
|
|
||||||
const resp = await this.axios.get(url, { headers });
|
|
||||||
// axios throws an exception on a 400
|
|
||||||
if (resp.status === 200) {
|
|
||||||
this.limits = resp.data;
|
|
||||||
}
|
|
||||||
} catch (error: unknown) {
|
|
||||||
if (
|
|
||||||
error.message ===
|
|
||||||
"Attempted to load Give records with no identity available."
|
|
||||||
) {
|
|
||||||
this.limitsMessage = "No identity.";
|
|
||||||
this.loadingLimits = false;
|
|
||||||
} else {
|
|
||||||
const serverError = error as AxiosError;
|
|
||||||
console.error("Bad response retrieving limits: ", serverError);
|
|
||||||
|
|
||||||
const data: ErrorResponse | undefined =
|
|
||||||
serverError.response && serverError.response.data;
|
|
||||||
if (data && data.error && data.error.message) {
|
|
||||||
this.limitsMessage = data.error.message;
|
|
||||||
} else {
|
|
||||||
this.limitsMessage = "Bad server response.";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
this.loadingLimits = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
async switchAccount(accountNum: number) {
|
|
||||||
// 0 means none
|
|
||||||
if (accountNum === 0) {
|
|
||||||
await db.open();
|
|
||||||
db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
activeDid: undefined,
|
|
||||||
});
|
|
||||||
this.activeDid = "";
|
|
||||||
this.derivationPath = "";
|
|
||||||
this.publicHex = "";
|
|
||||||
this.publicBase64 = "";
|
|
||||||
} else {
|
|
||||||
await accountsDB.open();
|
|
||||||
const accounts = await accountsDB.accounts.toArray();
|
|
||||||
const account = accounts[accountNum - 1];
|
|
||||||
|
|
||||||
await db.open();
|
|
||||||
db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
activeDid: account.did,
|
|
||||||
});
|
|
||||||
|
|
||||||
this.activeDid = account.did;
|
|
||||||
this.derivationPath = account.derivationPath;
|
|
||||||
this.publicHex = account.publicKeyHex;
|
|
||||||
this.publicBase64 = Buffer.from(this.publicHex, "hex").toString("base64");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public showContactGivesClassNames() {
|
|
||||||
return {
|
|
||||||
"bg-slate-900": !this.showContactGives,
|
|
||||||
"bg-green-600": this.showContactGives,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async onClickSaveApiServer() {
|
|
||||||
await db.open();
|
|
||||||
db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
apiServer: this.apiServerInput,
|
|
||||||
});
|
|
||||||
this.apiServer = this.apiServerInput;
|
|
||||||
}
|
|
||||||
|
|
||||||
setApiServerInput(value) {
|
|
||||||
this.apiServerInput = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -5,16 +5,17 @@
|
|||||||
<div id="ViewBreadcrumb" class="mb-8">
|
<div id="ViewBreadcrumb" class="mb-8">
|
||||||
<h1 class="text-lg text-center font-light relative px-7">
|
<h1 class="text-lg text-center font-light relative px-7">
|
||||||
<!-- Cancel -->
|
<!-- Cancel -->
|
||||||
<router-link
|
<a
|
||||||
:to="{ name: 'account' }"
|
href="account-view.html"
|
||||||
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
||||||
><fa icon="chevron-left" class="fa-fw"></fa
|
><fa icon="chevron-left" class="fa-fw"></fa
|
||||||
></router-link>
|
></a>
|
||||||
|
|
||||||
Confirm Contact
|
Confirm Contact
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<form>
|
||||||
<p class="text-center text-xl mb-4 font-light">
|
<p class="text-center text-xl mb-4 font-light">
|
||||||
Would you like to add <i>Firstname</i> to your network?
|
Would you like to add <i>Firstname</i> to your network?
|
||||||
</p>
|
</p>
|
||||||
@@ -42,13 +43,14 @@
|
|||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
@Component({
|
@Options({
|
||||||
components: {},
|
components: {},
|
||||||
})
|
})
|
||||||
export default class ConfirmContactView extends Vue {}
|
export default class ConfirmContactView extends Vue {}
|
||||||
|
|||||||
@@ -1,362 +0,0 @@
|
|||||||
<template>
|
|
||||||
<QuickNav selected="Contacts"></QuickNav>
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
|
||||||
Given with {{ contact?.name }}
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<!-- Results List -->
|
|
||||||
<div>
|
|
||||||
<div class="border-b border-slate-300 flex">
|
|
||||||
<div class="w-1/4"></div>
|
|
||||||
<div class="w-1/4">from them</div>
|
|
||||||
<div class="w-1/4"></div>
|
|
||||||
<div class="w-1/4">to them</div>
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
class="border-b border-slate-300 flex"
|
|
||||||
v-for="record in giveRecords"
|
|
||||||
:key="record.id"
|
|
||||||
>
|
|
||||||
<div class="w-1/4">
|
|
||||||
{{ new Date(record.issuedAt).toLocaleString() }}
|
|
||||||
</div>
|
|
||||||
<div class="w-1/4">
|
|
||||||
<span v-if="record.agentDid == contact.did">
|
|
||||||
<div class="font-bold">
|
|
||||||
{{ record.amount }} {{ record.unit }}
|
|
||||||
<span v-if="record.amountConfirmed" class="tooltip">
|
|
||||||
<fa icon="circle-check" class="text-green-600 fa-fw ml-1" />
|
|
||||||
<span class="tooltiptext">Confirmed</span>
|
|
||||||
</span>
|
|
||||||
<button v-else class="tooltip" @click="confirm(record)">
|
|
||||||
<fa icon="circle" class="text-blue-600 fa-fw ml-1" />
|
|
||||||
<span class="tooltiptext">Unconfirmed</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<br />
|
|
||||||
{{ record.description }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="w-1/8">
|
|
||||||
<span v-if="record.agentDid == contact.did">
|
|
||||||
<fa icon="long-arrow-alt-left" class="text-slate-900 fa-fw ml-1" />
|
|
||||||
</span>
|
|
||||||
<span v-else>
|
|
||||||
|
|
||||||
<fa icon="long-arrow-alt-right" class="text-slate-900 fa-fw ml-1" />
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="w-1/4">
|
|
||||||
<span v-if="record.agentDid != contact.did">
|
|
||||||
<div class="font-bold">
|
|
||||||
{{ record.amount }} {{ record.unit }}
|
|
||||||
<span v-if="record.amountConfirmed" class="tooltip">
|
|
||||||
<fa icon="circle-check" class="text-green-600 fa-fw ml-1" />
|
|
||||||
<span class="tooltiptext">Confirmed</span>
|
|
||||||
</span>
|
|
||||||
<button v-else class="tooltip" @click="cannotConfirmMessage()">
|
|
||||||
<fa icon="circle" class="text-slate-600 fa-fw ml-1" />
|
|
||||||
<span class="tooltiptext">Unconfirmed</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<br />
|
|
||||||
{{ record.description }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import * as R from "ramda";
|
|
||||||
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import { accountsDB, db } from "@/db";
|
|
||||||
import { Contact } from "@/db/tables/contacts";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import { accessToken, SimpleSigner } from "@/libs/crypto";
|
|
||||||
import {
|
|
||||||
AgreeVerifiableCredential,
|
|
||||||
GiveServerRecord,
|
|
||||||
GiveVerifiableCredential,
|
|
||||||
SCHEMA_ORG_CONTEXT,
|
|
||||||
} from "@/libs/endorserServer";
|
|
||||||
import * as didJwt from "did-jwt";
|
|
||||||
import { AxiosError } from "axios";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
@Component({ components: { AlertMessage, QuickNav } })
|
|
||||||
export default class ContactsView extends Vue {
|
|
||||||
activeDid = "";
|
|
||||||
apiServer = "";
|
|
||||||
contact: Contact | null = null;
|
|
||||||
giveRecords: Array<GiveServerRecord> = [];
|
|
||||||
alertTitle = "";
|
|
||||||
alertMessage = "";
|
|
||||||
numAccounts = 0;
|
|
||||||
|
|
||||||
async beforeCreate() {
|
|
||||||
await accountsDB.open();
|
|
||||||
this.numAccounts = await accountsDB.accounts.count();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getIdentity(activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const account = await accountsDB.accounts
|
|
||||||
.where("did")
|
|
||||||
.equals(activeDid)
|
|
||||||
.first();
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"Attempted to load Give records with no identity available.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return identity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getHeaders(identity) {
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
async created() {
|
|
||||||
try {
|
|
||||||
await db.open();
|
|
||||||
const contactDid = this.$route.query.contactDid as string;
|
|
||||||
this.contact = (await db.contacts.get(contactDid)) || null;
|
|
||||||
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.activeDid = settings?.activeDid || "";
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
|
|
||||||
if (this.activeDid && this.contact) {
|
|
||||||
this.loadGives(this.activeDid, this.contact);
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text:
|
|
||||||
err.userMessage ||
|
|
||||||
"There was an error retrieving the latest sweet, sweet action.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async loadGives(activeDid: string, contact: Contact) {
|
|
||||||
try {
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
let result = [];
|
|
||||||
const url =
|
|
||||||
this.apiServer +
|
|
||||||
"/api/v2/report/gives?agentDid=" +
|
|
||||||
encodeURIComponent(identity.did) +
|
|
||||||
"&recipientDid=" +
|
|
||||||
encodeURIComponent(contact.did);
|
|
||||||
const headers = this.getHeaders(identity);
|
|
||||||
const resp = await this.axios.get(url, { headers });
|
|
||||||
if (resp.status === 200) {
|
|
||||||
result = resp.data.data;
|
|
||||||
} else {
|
|
||||||
console.error(
|
|
||||||
"Got bad response status & data of",
|
|
||||||
resp.status,
|
|
||||||
resp.data,
|
|
||||||
);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: "Got an error retrieving your given time from the server.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const url2 =
|
|
||||||
this.apiServer +
|
|
||||||
"/api/v2/report/gives?agentDid=" +
|
|
||||||
encodeURIComponent(contact.did) +
|
|
||||||
"&recipientDid=" +
|
|
||||||
encodeURIComponent(identity.did);
|
|
||||||
const headers2 = await this.getHeaders(identity);
|
|
||||||
const resp2 = await this.axios.get(url2, { headers: headers2 });
|
|
||||||
if (resp2.status === 200) {
|
|
||||||
result = R.concat(result, resp2.data.data);
|
|
||||||
} else {
|
|
||||||
console.error(
|
|
||||||
"Got bad response status & data of",
|
|
||||||
resp2.status,
|
|
||||||
resp2.data,
|
|
||||||
);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: "Got an error retrieving your given time from the server.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const sortedResult: Array<GiveServerRecord> = R.sort(
|
|
||||||
(a, b) =>
|
|
||||||
new Date(b.issuedAt).getTime() - new Date(a.issuedAt).getTime(),
|
|
||||||
result,
|
|
||||||
);
|
|
||||||
this.giveRecords = sortedResult;
|
|
||||||
} catch (error) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: error as string,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async confirm(record: GiveServerRecord) {
|
|
||||||
// Make claim
|
|
||||||
// I use clone here because otherwise it gets a Proxy object.
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
||||||
const origClaim: GiveVerifiableCredential = R.clone(record.fullClaim);
|
|
||||||
if (record.fullClaim["@context"] == SCHEMA_ORG_CONTEXT) {
|
|
||||||
delete origClaim["@context"];
|
|
||||||
}
|
|
||||||
origClaim["identifier"] = record.handleId;
|
|
||||||
const vcClaim: AgreeVerifiableCredential = {
|
|
||||||
"@context": SCHEMA_ORG_CONTEXT,
|
|
||||||
"@type": "AgreeAction",
|
|
||||||
object: origClaim,
|
|
||||||
};
|
|
||||||
|
|
||||||
// Make a payload for the claim
|
|
||||||
const vcPayload = {
|
|
||||||
vc: {
|
|
||||||
"@context": ["https://www.w3.org/2018/credentials/v1"],
|
|
||||||
type: ["VerifiableCredential"],
|
|
||||||
credentialSubject: vcClaim,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
// Create a signature using private key of identity
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
if (identity.keys[0].privateKeyHex !== null) {
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
||||||
const privateKeyHex: string = identity.keys[0].privateKeyHex!;
|
|
||||||
const signer = await SimpleSigner(privateKeyHex);
|
|
||||||
const alg = undefined;
|
|
||||||
// Create a JWT for the request
|
|
||||||
const vcJwt: string = await didJwt.createJWT(vcPayload, {
|
|
||||||
alg: alg,
|
|
||||||
issuer: identity.did,
|
|
||||||
signer: signer,
|
|
||||||
});
|
|
||||||
|
|
||||||
// Make the xhr request payload
|
|
||||||
const payload = JSON.stringify({ jwtEncoded: vcJwt });
|
|
||||||
const url = this.apiServer + "/api/v2/claim";
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const resp = await this.axios.post(url, payload, { headers });
|
|
||||||
if (resp.data?.success) {
|
|
||||||
record.amountConfirmed = origClaim.object?.amountOfThisGood || 1;
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
let userMessage = "There was an error. See logs for more info.";
|
|
||||||
const serverError = error as AxiosError;
|
|
||||||
if (serverError) {
|
|
||||||
if (serverError.message) {
|
|
||||||
userMessage = serverError.message; // Info for the user
|
|
||||||
} else {
|
|
||||||
userMessage = JSON.stringify(serverError.toJSON());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
userMessage = error as string;
|
|
||||||
}
|
|
||||||
// Now set that error for the user to see.
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: userMessage,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
cannotConfirmMessage() {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Not Allowed",
|
|
||||||
text: "Only the recipient can confirm final receipt.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
/* Tooltip from https://www.w3schools.com/css/css_tooltip.asp */
|
|
||||||
/* Tooltip container */
|
|
||||||
.tooltip {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Tooltip text */
|
|
||||||
.tooltip .tooltiptext {
|
|
||||||
visibility: hidden;
|
|
||||||
width: 200px;
|
|
||||||
background-color: black;
|
|
||||||
color: #fff;
|
|
||||||
text-align: center;
|
|
||||||
padding: 5px 0;
|
|
||||||
border-radius: 6px;
|
|
||||||
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Show the tooltip text when you mouse over the tooltip container */
|
|
||||||
.tooltip:hover .tooltiptext {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
.tooltip:hover .tooltiptext-left {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,302 +0,0 @@
|
|||||||
<template>
|
|
||||||
<QuickNav selected="Home"></QuickNav>
|
|
||||||
<!-- CONTENT -->
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<!-- Breadcrumb -->
|
|
||||||
<div id="ViewBreadcrumb" class="mb-8">
|
|
||||||
<h1 class="text-lg text-center font-light relative px-7">
|
|
||||||
<!-- Back -->
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'home' }"
|
|
||||||
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
|
||||||
><fa icon="chevron-left" class="fa-fw"></fa
|
|
||||||
></router-link>
|
|
||||||
|
|
||||||
Give to Contacts
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Quick Search -->
|
|
||||||
|
|
||||||
<!-- Initial Loading Animation -->
|
|
||||||
|
|
||||||
<!-- Results List -->
|
|
||||||
<ul class="border-t border-slate-300">
|
|
||||||
<li class="border-b border-slate-300 py-3">
|
|
||||||
<h2 class="text-base flex gap-4 items-center">
|
|
||||||
<span class="grow italic"
|
|
||||||
><fa icon="question-circle" class="fa-fw fa-xl text-slate-400"></fa>
|
|
||||||
Anonymous
|
|
||||||
</span>
|
|
||||||
<span class="text-right">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
@click="openDialog()"
|
|
||||||
class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"
|
|
||||||
>
|
|
||||||
<fa icon="gift" class="fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
</span>
|
|
||||||
</h2>
|
|
||||||
</li>
|
|
||||||
<li
|
|
||||||
v-for="contact in allContacts"
|
|
||||||
:key="contact.did"
|
|
||||||
class="border-b border-slate-300 py-3"
|
|
||||||
>
|
|
||||||
<h2 class="text-base flex gap-4 items-center">
|
|
||||||
<span class="grow font-semibold"
|
|
||||||
><fa icon="user" class="fa-fw fa-xl text-slate-400"></fa>
|
|
||||||
{{ contact.name || "(no name)" }}
|
|
||||||
</span>
|
|
||||||
<span class="text-right">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
@click="openDialog(contact)"
|
|
||||||
class="block w-full text-center text-sm uppercase bg-blue-600 text-white px-3 py-1.5 rounded-md"
|
|
||||||
>
|
|
||||||
<fa icon="gift" class="fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
</span>
|
|
||||||
</h2>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<GiftedDialog
|
|
||||||
ref="customDialog"
|
|
||||||
@dialog-result="handleDialogResult"
|
|
||||||
message="Received from"
|
|
||||||
>
|
|
||||||
</GiftedDialog>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import GiftedDialog from "@/components/GiftedDialog.vue";
|
|
||||||
import { db, accountsDB } from "@/db";
|
|
||||||
import { AccountsSchema } from "@/db/tables/accounts";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import { accessToken } from "@/libs/crypto";
|
|
||||||
import { createAndSubmitGive } from "@/libs/endorserServer";
|
|
||||||
import { Account } from "@/db/tables/accounts";
|
|
||||||
import { Contact } from "@/db/tables/contacts";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
components: { GiftedDialog, AlertMessage, QuickNav },
|
|
||||||
})
|
|
||||||
export default class HomeView extends Vue {
|
|
||||||
activeDid = "";
|
|
||||||
allAccounts: Array<Account> = [];
|
|
||||||
allContacts: Array<Contact> = [];
|
|
||||||
apiServer = "";
|
|
||||||
isHiddenSpinner = true;
|
|
||||||
alertTitle = "";
|
|
||||||
alertMessage = "";
|
|
||||||
accounts: AccountsSchema;
|
|
||||||
numAccounts = 0;
|
|
||||||
|
|
||||||
async beforeCreate() {
|
|
||||||
accountsDB.open();
|
|
||||||
this.accounts = accountsDB.accounts;
|
|
||||||
this.numAccounts = await this.accounts.count();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getIdentity(activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const account = await accountsDB.accounts
|
|
||||||
.where("did")
|
|
||||||
.equals(activeDid)
|
|
||||||
.first();
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"Attempted to load Give records with no identity available.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return identity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getHeaders(identity) {
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
async created() {
|
|
||||||
try {
|
|
||||||
await accountsDB.open();
|
|
||||||
this.allAccounts = await accountsDB.accounts.toArray();
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
this.activeDid = settings?.activeDid || "";
|
|
||||||
this.allContacts = await db.contacts.toArray();
|
|
||||||
this.feedLastViewedId = settings?.lastViewedClaimId;
|
|
||||||
this.updateAllFeed();
|
|
||||||
} catch (err) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text:
|
|
||||||
err.userMessage ||
|
|
||||||
"There was an error retrieving the latest sweet, sweet action.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public async buildHeaders() {
|
|
||||||
const headers = { "Content-Type": "application/json" };
|
|
||||||
|
|
||||||
if (this.activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const allAccounts = await accountsDB.accounts.toArray();
|
|
||||||
const account = allAccounts.find((acc) => acc.did === this.activeDid);
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"An ID is chosen but there are no keys for it so it cannot be used to talk with the service.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
headers["Authorization"] = "Bearer " + (await accessToken(identity));
|
|
||||||
} else {
|
|
||||||
// it's OK without auth... we just won't get any identifiers
|
|
||||||
}
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
openDialog(giver) {
|
|
||||||
this.$refs.customDialog.open(giver);
|
|
||||||
}
|
|
||||||
|
|
||||||
handleDialogResult(result) {
|
|
||||||
if (result.action === "confirm") {
|
|
||||||
return new Promise((resolve) => {
|
|
||||||
this.recordGive(result.contact?.did, result.description, result.hours);
|
|
||||||
resolve();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
// action was "cancel" so do nothing
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param giverDid may be null
|
|
||||||
* @param description may be an empty string
|
|
||||||
* @param hours may be 0
|
|
||||||
*/
|
|
||||||
public async recordGive(giverDid, description, hours) {
|
|
||||||
if (!this.activeDid) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "You must select an identity before you can record a give.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!description && !hours) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "You must enter a description or some number of hours.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
const result = await createAndSubmitGive(
|
|
||||||
this.axios,
|
|
||||||
this.apiServer,
|
|
||||||
identity,
|
|
||||||
giverDid,
|
|
||||||
this.activeDid,
|
|
||||||
description,
|
|
||||||
hours,
|
|
||||||
);
|
|
||||||
|
|
||||||
if (isGiveCreationError(result)) {
|
|
||||||
const errorMessage = getGiveCreationErrorMessage(result);
|
|
||||||
console.log("Error with give result:", result);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: errorMessage || "There was an error recording the give.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "success",
|
|
||||||
title: "Success",
|
|
||||||
text: "That gift was recorded.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.log("Error with give caught:", error);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text:
|
|
||||||
getGiveErrorMessage(error) ||
|
|
||||||
"There was an error recording the give.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private setAlert(title, message) {
|
|
||||||
this.alertTitle = title;
|
|
||||||
this.alertMessage = message;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Helper functions for readability
|
|
||||||
|
|
||||||
isGiveCreationError(result) {
|
|
||||||
return result.status !== 201 || result.data?.error;
|
|
||||||
}
|
|
||||||
|
|
||||||
getGiveCreationErrorMessage(result) {
|
|
||||||
return result.data?.error?.message;
|
|
||||||
}
|
|
||||||
|
|
||||||
getGiveErrorMessage(error) {
|
|
||||||
return error.userMessage || error.response?.data?.error?.message;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,124 +0,0 @@
|
|||||||
<template>
|
|
||||||
<QuickNav selected="Profile"></QuickNav>
|
|
||||||
<!-- CONTENT -->
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<!-- Heading -->
|
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
|
||||||
Your Contact Info
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Play with display options: https://qr-code-styling.com/
|
|
||||||
See docs: https://www.npmjs.com/package/qr-code-generator-vue3
|
|
||||||
-->
|
|
||||||
<QRCodeVue3
|
|
||||||
:value="this.qrValue"
|
|
||||||
:cornersSquareOptions="{ type: 'extra-rounded' }"
|
|
||||||
:dotsOptions="{ type: 'square' }"
|
|
||||||
class="flex justify-center"
|
|
||||||
/>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import QRCodeVue3 from "qr-code-generator-vue3";
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import { accountsDB, db } from "@/db";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import * as R from "ramda";
|
|
||||||
import { SimpleSigner } from "@/libs/crypto";
|
|
||||||
import * as didJwt from "did-jwt";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
||||||
const Buffer = require("buffer/").Buffer;
|
|
||||||
alertTitle = "";
|
|
||||||
alertMessage = "";
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
components: {
|
|
||||||
QRCodeVue3,
|
|
||||||
AlertMessage,
|
|
||||||
QuickNav,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
export default class ContactQRScanShow extends Vue {
|
|
||||||
activeDid = "";
|
|
||||||
apiServer = "";
|
|
||||||
qrValue = "";
|
|
||||||
|
|
||||||
public async getIdentity(activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const accounts = await accountsDB.accounts.toArray();
|
|
||||||
const account = R.find((acc) => acc.did === activeDid, accounts);
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"Attempted to load Give records with no identity available.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return identity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getHeaders(identity) {
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
async created() {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.activeDid = settings?.activeDid || "";
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
|
|
||||||
await accountsDB.open();
|
|
||||||
const accounts = await accountsDB.accounts.toArray();
|
|
||||||
const account = R.find((acc) => acc.did === this.activeDid, accounts);
|
|
||||||
if (!account) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "warning",
|
|
||||||
title: "",
|
|
||||||
text: "You have no identity yet.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
const publicKeyHex = identity.keys[0].publicKeyHex;
|
|
||||||
const publicEncKey = Buffer.from(publicKeyHex, "hex").toString("base64");
|
|
||||||
const contactInfo = {
|
|
||||||
iat: Date.now(),
|
|
||||||
iss: this.activeDid,
|
|
||||||
own: {
|
|
||||||
name: (settings?.firstName || "") + " " + (settings?.lastName || ""),
|
|
||||||
publicEncKey,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
const alg = undefined;
|
|
||||||
const privateKeyHex: string = identity.keys[0].privateKeyHex;
|
|
||||||
const signer = await SimpleSigner(privateKeyHex);
|
|
||||||
// create a JWT for the request
|
|
||||||
const vcJwt: string = await didJwt.createJWT(contactInfo, {
|
|
||||||
alg: alg,
|
|
||||||
issuer: identity.did,
|
|
||||||
signer: signer,
|
|
||||||
});
|
|
||||||
const viewPrefix = "https://endorser.ch/contact?jwt=";
|
|
||||||
this.qrValue = viewPrefix + vcJwt;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -4,16 +4,17 @@
|
|||||||
<div id="ViewBreadcrumb" class="mb-8">
|
<div id="ViewBreadcrumb" class="mb-8">
|
||||||
<h1 class="text-lg text-center font-light relative px-7">
|
<h1 class="text-lg text-center font-light relative px-7">
|
||||||
<!-- Cancel -->
|
<!-- Cancel -->
|
||||||
<router-link
|
<a
|
||||||
:to="{ name: 'account' }"
|
href="account-view.html"
|
||||||
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
||||||
><fa icon="chevron-left" class="fa-fw"></fa
|
><fa icon="chevron-left" class="fa-fw"></fa
|
||||||
></router-link>
|
></a>
|
||||||
|
|
||||||
Scan Contact
|
Scan Contact
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<form>
|
||||||
<h3 class="text-sm uppercase font-semibold mb-2">Scan a QR Code…</h3>
|
<h3 class="text-sm uppercase font-semibold mb-2">Scan a QR Code…</h3>
|
||||||
<div class="bg-black rounded overflow-hidden relative mb-4">
|
<div class="bg-black rounded overflow-hidden relative mb-4">
|
||||||
<img src="https://picsum.photos/400/400?random=1" class="w-full" />
|
<img src="https://picsum.photos/400/400?random=1" class="w-full" />
|
||||||
@@ -24,7 +25,9 @@
|
|||||||
<!-- Reft -->
|
<!-- Reft -->
|
||||||
<div class="absolute top-1/4 bottom-1/4 left-0 bg-black/50 w-1/4"></div>
|
<div class="absolute top-1/4 bottom-1/4 left-0 bg-black/50 w-1/4"></div>
|
||||||
<!-- Right -->
|
<!-- Right -->
|
||||||
<div class="absolute top-1/4 bottom-1/4 right-0 bg-black/50 w-1/4"></div>
|
<div
|
||||||
|
class="absolute top-1/4 bottom-1/4 right-0 bg-black/50 w-1/4"
|
||||||
|
></div>
|
||||||
<!-- Bottom -->
|
<!-- Bottom -->
|
||||||
<div class="absolute bottom-0 left-0 right-0 bg-black/50 h-1/4"></div>
|
<div class="absolute bottom-0 left-0 right-0 bg-black/50 h-1/4"></div>
|
||||||
|
|
||||||
@@ -47,7 +50,9 @@
|
|||||||
></div>
|
></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3 class="text-sm uppercase font-semibold mb-2">…or Enter Contact Data</h3>
|
<h3 class="text-sm uppercase font-semibold mb-2">
|
||||||
|
…or Enter Contact Data
|
||||||
|
</h3>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Name (optional)"
|
placeholder="Name (optional)"
|
||||||
@@ -77,13 +82,14 @@
|
|||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
@Component({
|
@Options({
|
||||||
components: {},
|
components: {},
|
||||||
})
|
})
|
||||||
export default class ContactScanView extends Vue {}
|
export default class ContactScanView extends Vue {}
|
||||||
|
|||||||
@@ -1,911 +0,0 @@
|
|||||||
<template>
|
|
||||||
<QuickNav selected="Contacts"></QuickNav>
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<!-- Heading -->
|
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
|
||||||
Your Contacts
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<div class="flex justify-between py-2">
|
|
||||||
<span />
|
|
||||||
<span>
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'help' }"
|
|
||||||
class="text-xs uppercase bg-blue-500 text-white px-1.5 py-1 rounded-md ml-1"
|
|
||||||
>
|
|
||||||
Help
|
|
||||||
</router-link>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- New Contact -->
|
|
||||||
<div class="mb-4 flex">
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
placeholder="DID, Name, Public Key"
|
|
||||||
class="block w-full rounded-l border border-r-0 border-slate-400 px-3 py-2"
|
|
||||||
v-model="contactInput"
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
class="px-4 rounded-r bg-slate-200 border border-l-0 border-slate-400"
|
|
||||||
@click="onClickNewContact()"
|
|
||||||
>
|
|
||||||
<fa icon="plus" class="fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex justify-between" v-if="showGiveNumbers">
|
|
||||||
<div class="w-full text-right">
|
|
||||||
Hours to Add:
|
|
||||||
<input
|
|
||||||
class="border border rounded border-slate-400 w-24 text-right"
|
|
||||||
type="text"
|
|
||||||
placeholder="1"
|
|
||||||
v-model="hourInput"
|
|
||||||
/>
|
|
||||||
<br />
|
|
||||||
<input
|
|
||||||
class="border border rounded border-slate-400 w-48"
|
|
||||||
type="text"
|
|
||||||
placeholder="Description"
|
|
||||||
v-model="hourDescriptionInput"
|
|
||||||
/>
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
<button
|
|
||||||
href=""
|
|
||||||
class="text-center text-md text-white px-1.5 py-2 rounded-md mb-6"
|
|
||||||
v-bind:class="showGiveAmountsClassNames()"
|
|
||||||
@click="toggleShowGiveTotals()"
|
|
||||||
>
|
|
||||||
{{
|
|
||||||
showGiveTotals
|
|
||||||
? "Total"
|
|
||||||
: showGiveConfirmed
|
|
||||||
? "Confirmed"
|
|
||||||
: "Unconfirmed"
|
|
||||||
}}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Results List -->
|
|
||||||
<ul v-if="contacts.length > 0" class="border-t border-slate-300">
|
|
||||||
<li
|
|
||||||
class="border-b border-slate-300 py-4"
|
|
||||||
v-for="contact in contacts"
|
|
||||||
:key="contact.did"
|
|
||||||
>
|
|
||||||
<div class="grow overflow-hidden">
|
|
||||||
<h2 class="text-base font-semibold">
|
|
||||||
{{ contact.name || "(no name)" }}
|
|
||||||
</h2>
|
|
||||||
<div class="text-sm truncate">{{ contact.did }}</div>
|
|
||||||
<div class="text-sm truncate" v-if="contact.publicKeyBase64">
|
|
||||||
Public Key (base 64): {{ contact.publicKeyBase64 }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="ContactActions" class="flex gap-1.5 mt-2">
|
|
||||||
<button
|
|
||||||
v-if="contact.seesMe"
|
|
||||||
class="text-sm uppercase bg-slate-500 text-white px-2 py-1.5 rounded-md"
|
|
||||||
@click="setVisibility(contact, false)"
|
|
||||||
title="They can see you"
|
|
||||||
>
|
|
||||||
<fa icon="eye" class="fa-fw" />
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
v-else
|
|
||||||
class="text-sm uppercase bg-slate-500 text-white px-2 py-1.5 rounded-md"
|
|
||||||
@click="setVisibility(contact, true)"
|
|
||||||
title="They cannot see you"
|
|
||||||
>
|
|
||||||
<fa icon="eye-slash" class="fa-fw" />
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
class="text-sm uppercase bg-slate-500 text-white px-2 py-1.5 rounded-md"
|
|
||||||
@click="checkVisibility(contact)"
|
|
||||||
title="Check Visibility"
|
|
||||||
>
|
|
||||||
<fa icon="rotate" class="fa-fw" />
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
v-if="contact.registered"
|
|
||||||
class="text-sm uppercase bg-slate-500 text-white px-2 py-1.5 rounded-md"
|
|
||||||
title="Registered"
|
|
||||||
>
|
|
||||||
<fa icon="person-circle-check" class="fa-fw" />
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
v-else
|
|
||||||
@click="register(contact)"
|
|
||||||
class="text-sm uppercase bg-slate-500 text-white px-2 py-1.5 rounded-md"
|
|
||||||
title="Registration unknown"
|
|
||||||
>
|
|
||||||
<fa icon="person-circle-question" class="fa-fw" />
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
@click="deleteContact(contact)"
|
|
||||||
class="text-sm uppercase bg-red-600 text-white px-2 py-1.5 rounded-md"
|
|
||||||
title="Delete"
|
|
||||||
>
|
|
||||||
<fa icon="trash-can" class="fa-fw" />
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<div v-if="showGiveNumbers" class="ml-auto flex gap-1.5">
|
|
||||||
<button
|
|
||||||
class="text-sm uppercase bg-blue-600 text-white px-2 py-1.5 rounded-md"
|
|
||||||
@click="onClickAddGive(activeDid, contact.did)"
|
|
||||||
title="givenByMeDescriptions[contact.did]"
|
|
||||||
>
|
|
||||||
To:
|
|
||||||
{{
|
|
||||||
/* eslint-disable prettier/prettier */
|
|
||||||
this.showGiveTotals
|
|
||||||
? ((givenByMeConfirmed[contact.did] || 0)
|
|
||||||
+ (givenByMeUnconfirmed[contact.did] || 0))
|
|
||||||
: this.showGiveConfirmed
|
|
||||||
? (givenByMeConfirmed[contact.did] || 0)
|
|
||||||
: (givenByMeUnconfirmed[contact.did] || 0)
|
|
||||||
/* eslint-enable prettier/prettier */
|
|
||||||
}}
|
|
||||||
<fa icon="plus" class="fa-fw" />
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
class="text-sm uppercase bg-blue-600 text-white px-2 py-1.5 rounded-md"
|
|
||||||
@click="onClickAddGive(contact.did, activeDid)"
|
|
||||||
title="givenToMeDescriptions[contact.did]"
|
|
||||||
>
|
|
||||||
From:
|
|
||||||
{{
|
|
||||||
/* eslint-disable prettier/prettier */
|
|
||||||
this.showGiveTotals
|
|
||||||
? ((givenToMeConfirmed[contact.did] || 0)
|
|
||||||
+ (givenToMeUnconfirmed[contact.did] || 0))
|
|
||||||
: this.showGiveConfirmed
|
|
||||||
? (givenToMeConfirmed[contact.did] || 0)
|
|
||||||
: (givenToMeUnconfirmed[contact.did] || 0)
|
|
||||||
/* eslint-enable prettier/prettier */
|
|
||||||
}}
|
|
||||||
<fa icon="plus" class="fa-fw" />
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<router-link
|
|
||||||
:to="{
|
|
||||||
name: 'contact-amounts',
|
|
||||||
query: { contactDid: contact.did },
|
|
||||||
}"
|
|
||||||
class="text-sm uppercase bg-slate-500 text-white px-2 py-1.5 rounded-md"
|
|
||||||
title="See all given activity"
|
|
||||||
>
|
|
||||||
<fa icon="file-lines" class="fa-fw" />
|
|
||||||
</router-link>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<p v-else>This identity has no contacts.</p>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { AxiosError } from "axios";
|
|
||||||
import * as didJwt from "did-jwt";
|
|
||||||
import * as R from "ramda";
|
|
||||||
import { IIdentifier } from "@veramo/core";
|
|
||||||
import { accountsDB, db } from "@/db";
|
|
||||||
import { Contact } from "@/db/tables/contacts";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import { accessToken, SimpleSigner } from "@/libs/crypto";
|
|
||||||
import {
|
|
||||||
GiveVerifiableCredential,
|
|
||||||
RegisterVerifiableCredential,
|
|
||||||
SERVICE_ID,
|
|
||||||
} from "@/libs/endorserServer";
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
||||||
const Buffer = require("buffer/").Buffer;
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
components: { AlertMessage, QuickNav },
|
|
||||||
})
|
|
||||||
export default class ContactsView extends Vue {
|
|
||||||
activeDid = "";
|
|
||||||
apiServer = "";
|
|
||||||
contacts: Array<Contact> = [];
|
|
||||||
contactInput = "";
|
|
||||||
// { "did:...": concatenated-descriptions } entry for each contact
|
|
||||||
givenByMeDescriptions: Record<string, string> = {};
|
|
||||||
// { "did:...": amount } entry for each contact
|
|
||||||
givenByMeConfirmed: Record<string, number> = {};
|
|
||||||
// { "did:...": amount } entry for each contact
|
|
||||||
givenByMeUnconfirmed: Record<string, number> = {};
|
|
||||||
// { "did:...": concatenated-descriptions } entry for each contact
|
|
||||||
givenToMeDescriptions: Record<string, string> = {};
|
|
||||||
// { "did:...": amount } entry for each contact
|
|
||||||
givenToMeConfirmed: Record<string, number> = {};
|
|
||||||
// { "did:...": amount } entry for each contact
|
|
||||||
givenToMeUnconfirmed: Record<string, number> = {};
|
|
||||||
hourDescriptionInput = "";
|
|
||||||
hourInput = "0";
|
|
||||||
showGiveNumbers = false;
|
|
||||||
showGiveTotals = true;
|
|
||||||
showGiveConfirmed = true;
|
|
||||||
alertTitle = "";
|
|
||||||
alertMessage = "";
|
|
||||||
|
|
||||||
async created() {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.activeDid = settings?.activeDid || "";
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
|
|
||||||
this.showGiveNumbers = !!settings?.showContactGivesInline;
|
|
||||||
if (this.showGiveNumbers) {
|
|
||||||
this.loadGives();
|
|
||||||
}
|
|
||||||
const allContacts = await db.contacts.toArray();
|
|
||||||
this.contacts = R.sort(
|
|
||||||
(a: Contact, b) => (a.name || "").localeCompare(b.name || ""),
|
|
||||||
allContacts,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getIdentity(activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const accounts = await accountsDB.accounts.toArray();
|
|
||||||
const account = R.find((acc) => acc.did === activeDid, accounts);
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"Attempted to load Give records with no identity available.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return identity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getHeaders(identity) {
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getHeadersAndIdentity(activeDid) {
|
|
||||||
const identity = await this.getIdentity(activeDid);
|
|
||||||
const headers = await this.getHeaders(identity);
|
|
||||||
|
|
||||||
return { headers, identity };
|
|
||||||
}
|
|
||||||
|
|
||||||
async loadGives() {
|
|
||||||
const handleResponse = (resp, descriptions, confirmed, unconfirmed) => {
|
|
||||||
if (resp.status === 200) {
|
|
||||||
const allData = resp.data.data;
|
|
||||||
for (const give of allData) {
|
|
||||||
if (give.unit === "HUR") {
|
|
||||||
if (give.amountConfirmed) {
|
|
||||||
const prevAmount = confirmed[give.agentDid] || 0;
|
|
||||||
confirmed[give.agentDid] = prevAmount + give.amount;
|
|
||||||
} else {
|
|
||||||
const prevAmount = unconfirmed[give.agentDid] || 0;
|
|
||||||
unconfirmed[give.agentDid] = prevAmount + give.amount;
|
|
||||||
}
|
|
||||||
if (!descriptions[give.agentDid] && give.description) {
|
|
||||||
descriptions[give.agentDid] = give.description;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.error(
|
|
||||||
"Got bad response status & data of",
|
|
||||||
resp.status,
|
|
||||||
resp.data,
|
|
||||||
);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text:
|
|
||||||
"Got an error retrieving your " +
|
|
||||||
resp.config.url.includes("recipientDid")
|
|
||||||
? "received"
|
|
||||||
: "given" + " time from the server.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const { headers, identity } = await this.getHeadersAndIdentity(
|
|
||||||
this.activeDid,
|
|
||||||
);
|
|
||||||
const givenByUrl =
|
|
||||||
this.apiServer +
|
|
||||||
"/api/v2/report/gives?agentDid=" +
|
|
||||||
encodeURIComponent(identity.did);
|
|
||||||
const givenToUrl =
|
|
||||||
this.apiServer +
|
|
||||||
"/api/v2/report/gives?recipientDid=" +
|
|
||||||
encodeURIComponent(identity.did);
|
|
||||||
|
|
||||||
const [givenByMeResp, givenToMeResp] = await Promise.all([
|
|
||||||
this.axios.get(givenByUrl, { headers }),
|
|
||||||
this.axios.get(givenToUrl, { headers }),
|
|
||||||
]);
|
|
||||||
|
|
||||||
const givenByMeDescriptions = {};
|
|
||||||
const givenByMeConfirmed = {};
|
|
||||||
const givenByMeUnconfirmed = {};
|
|
||||||
handleResponse(
|
|
||||||
givenByMeResp,
|
|
||||||
givenByMeDescriptions,
|
|
||||||
givenByMeConfirmed,
|
|
||||||
givenByMeUnconfirmed,
|
|
||||||
);
|
|
||||||
this.givenByMeDescriptions = givenByMeDescriptions;
|
|
||||||
this.givenByMeConfirmed = givenByMeConfirmed;
|
|
||||||
this.givenByMeUnconfirmed = givenByMeUnconfirmed;
|
|
||||||
|
|
||||||
const givenToMeDescriptions = {};
|
|
||||||
const givenToMeConfirmed = {};
|
|
||||||
const givenToMeUnconfirmed = {};
|
|
||||||
handleResponse(
|
|
||||||
givenToMeResp,
|
|
||||||
givenToMeDescriptions,
|
|
||||||
givenToMeConfirmed,
|
|
||||||
givenToMeUnconfirmed,
|
|
||||||
);
|
|
||||||
this.givenToMeDescriptions = givenToMeDescriptions;
|
|
||||||
this.givenToMeConfirmed = givenToMeConfirmed;
|
|
||||||
this.givenToMeUnconfirmed = givenToMeUnconfirmed;
|
|
||||||
} catch (error) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: error as string,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async onClickNewContact(): Promise<void> {
|
|
||||||
let did = this.contactInput;
|
|
||||||
let name, publicKeyBase64;
|
|
||||||
const commaPos1 = this.contactInput.indexOf(",");
|
|
||||||
if (commaPos1 > -1) {
|
|
||||||
did = this.contactInput.substring(0, commaPos1).trim();
|
|
||||||
name = this.contactInput.substring(commaPos1 + 1).trim();
|
|
||||||
const commaPos2 = this.contactInput.indexOf(",", commaPos1 + 1);
|
|
||||||
if (commaPos2 > -1) {
|
|
||||||
name = this.contactInput.substring(commaPos1 + 1, commaPos2).trim();
|
|
||||||
publicKeyBase64 = this.contactInput.substring(commaPos2 + 1).trim();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// help with potential mistakes while this sharing requires copy-and-paste
|
|
||||||
if (publicKeyBase64 && /^[0-9A-Fa-f]{66}$/i.test(publicKeyBase64)) {
|
|
||||||
// it must be all hex (compressed public key), so convert
|
|
||||||
publicKeyBase64 = Buffer.from(publicKeyBase64, "hex").toString("base64");
|
|
||||||
}
|
|
||||||
const newContact = { did, name, publicKeyBase64 };
|
|
||||||
await db.contacts.add(newContact);
|
|
||||||
const allContacts = this.contacts.concat([newContact]);
|
|
||||||
this.contacts = R.sort(
|
|
||||||
(a: Contact, b) => (a.name || "").localeCompare(b.name || ""),
|
|
||||||
allContacts,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
async deleteContact(contact: Contact) {
|
|
||||||
if (
|
|
||||||
confirm(
|
|
||||||
"Are you sure you want to delete " +
|
|
||||||
this.nameForDid(this.contacts, contact.did) +
|
|
||||||
" with DID " +
|
|
||||||
contact.did +
|
|
||||||
" ?",
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
await db.open();
|
|
||||||
await db.contacts.delete(contact.did);
|
|
||||||
this.contacts = R.without([contact], this.contacts);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async register(contact: Contact) {
|
|
||||||
if (
|
|
||||||
confirm(
|
|
||||||
"Are you sure you want to use one of your registrations for " +
|
|
||||||
this.nameForDid(this.contacts, contact.did) +
|
|
||||||
"?",
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
|
|
||||||
const vcClaim: RegisterVerifiableCredential = {
|
|
||||||
"@context": "https://schema.org",
|
|
||||||
"@type": "RegisterAction",
|
|
||||||
agent: { identifier: identity.did },
|
|
||||||
object: SERVICE_ID,
|
|
||||||
participant: { identifier: contact.did },
|
|
||||||
};
|
|
||||||
// Make a payload for the claim
|
|
||||||
const vcPayload = {
|
|
||||||
vc: {
|
|
||||||
"@context": ["https://www.w3.org/2018/credentials/v1"],
|
|
||||||
type: ["VerifiableCredential"],
|
|
||||||
credentialSubject: vcClaim,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
// Create a signature using private key of identity
|
|
||||||
if (identity.keys[0].privateKeyHex !== null) {
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
||||||
const privateKeyHex: string = identity.keys[0].privateKeyHex!;
|
|
||||||
const signer = await SimpleSigner(privateKeyHex);
|
|
||||||
const alg = undefined;
|
|
||||||
// Create a JWT for the request
|
|
||||||
const vcJwt: string = await didJwt.createJWT(vcPayload, {
|
|
||||||
alg: alg,
|
|
||||||
issuer: identity.did,
|
|
||||||
signer: signer,
|
|
||||||
});
|
|
||||||
|
|
||||||
// Make the xhr request payload
|
|
||||||
const payload = JSON.stringify({ jwtEncoded: vcJwt });
|
|
||||||
const url = this.apiServer + "/api/v2/claim";
|
|
||||||
const headers = await this.getHeaders(identity);
|
|
||||||
|
|
||||||
try {
|
|
||||||
const resp = await this.axios.post(url, payload, { headers });
|
|
||||||
if (resp.data?.success?.embeddedRecordError) {
|
|
||||||
let message = "There was some problem with the registration.";
|
|
||||||
if (typeof resp.data.success.embeddedRecordError == "string") {
|
|
||||||
message += " " + resp.data.success.embeddedRecordError;
|
|
||||||
}
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Registration Still Unknown",
|
|
||||||
text: message,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else if (resp.data?.success?.handleId) {
|
|
||||||
contact.registered = true;
|
|
||||||
db.contacts.update(contact.did, { registered: true });
|
|
||||||
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "info",
|
|
||||||
title: "Registration Success",
|
|
||||||
text: contact.name + " has been registered.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
let userMessage = "There was an error. See logs for more info.";
|
|
||||||
const serverError = error as AxiosError;
|
|
||||||
if (serverError) {
|
|
||||||
if (serverError.message) {
|
|
||||||
userMessage = serverError.message; // Info for the user
|
|
||||||
} else {
|
|
||||||
userMessage = JSON.stringify(serverError.toJSON());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
userMessage = error as string;
|
|
||||||
}
|
|
||||||
// Now set that error for the user to see.
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: userMessage,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async setVisibility(contact: Contact, visibility: boolean) {
|
|
||||||
const url =
|
|
||||||
this.apiServer +
|
|
||||||
"/api/report/" +
|
|
||||||
(visibility ? "canSeeMe" : "cannotSeeMe");
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
const headers = await this.getHeaders(identity);
|
|
||||||
const payload = JSON.stringify({ did: contact.did });
|
|
||||||
|
|
||||||
try {
|
|
||||||
const resp = await this.axios.post(url, payload, { headers });
|
|
||||||
if (resp.status === 200) {
|
|
||||||
contact.seesMe = visibility;
|
|
||||||
db.contacts.update(contact.did, { seesMe: visibility });
|
|
||||||
} else {
|
|
||||||
console.error("Bad response setting visibility: ", resp.data);
|
|
||||||
if (resp.data.error?.message) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: resp.data.error?.message,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: "Bad server response of " + resp.status,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: err as string,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async checkVisibility(contact: Contact) {
|
|
||||||
const url =
|
|
||||||
this.apiServer +
|
|
||||||
"/api/report/canDidExplicitlySeeMe?did=" +
|
|
||||||
encodeURIComponent(contact.did);
|
|
||||||
|
|
||||||
try {
|
|
||||||
const resp = await this.axios.get(url, { headers });
|
|
||||||
if (resp.status === 200) {
|
|
||||||
const visibility = resp.data;
|
|
||||||
contact.seesMe = visibility;
|
|
||||||
db.contacts.update(contact.did, { seesMe: visibility });
|
|
||||||
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "toast",
|
|
||||||
title: "Refreshed",
|
|
||||||
text:
|
|
||||||
this.nameForContact(contact, true) +
|
|
||||||
" can " +
|
|
||||||
(visibility ? "" : "not ") +
|
|
||||||
"see your activity.",
|
|
||||||
},
|
|
||||||
5000,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
if (resp.data.error?.message) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: resp.data.error?.message,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: "Bad server response of " + resp.status,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: err as string,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// from https://stackoverflow.com/a/175787/845494
|
|
||||||
//
|
|
||||||
private isNumeric(str: string): boolean {
|
|
||||||
return !isNaN(+str);
|
|
||||||
}
|
|
||||||
|
|
||||||
private nameForDid(contacts: Array<Contact>, did: string): string {
|
|
||||||
const contact = R.find((con) => con.did == did, contacts);
|
|
||||||
return this.nameForContact(contact);
|
|
||||||
}
|
|
||||||
|
|
||||||
private nameForContact(contact?: Contact, capitalize?: boolean): string {
|
|
||||||
return contact?.name || (capitalize ? "T" : "t") + "this unnamed user";
|
|
||||||
}
|
|
||||||
|
|
||||||
async onClickAddGive(fromDid: string, toDid: string): Promise<void> {
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
|
|
||||||
// if they have unconfirmed amounts, ask to confirm those first
|
|
||||||
if (toDid == identity?.did && this.givenToMeUnconfirmed[fromDid] > 0) {
|
|
||||||
if (
|
|
||||||
confirm(
|
|
||||||
"There are " +
|
|
||||||
this.givenToMeUnconfirmed[fromDid] +
|
|
||||||
" unconfirmed hours from them." +
|
|
||||||
" Would you like to confirm some of those hours?",
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
this.$router.push({
|
|
||||||
name: "contact-amounts",
|
|
||||||
query: { contactDid: fromDid },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!this.isNumeric(this.hourInput)) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Input Error",
|
|
||||||
text: "This is not a valid number of hours: " + this.hourInput,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else if (!parseFloat(this.hourInput)) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Input Error",
|
|
||||||
text: "Giving 0 hours does nothing.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else if (!identity) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Status Error",
|
|
||||||
text: "No identity is available.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
// ask to confirm amount
|
|
||||||
let toFrom;
|
|
||||||
if (fromDid == identity?.did) {
|
|
||||||
toFrom = "from you to " + this.nameForDid(this.contacts, toDid);
|
|
||||||
} else {
|
|
||||||
toFrom = "from " + this.nameForDid(this.contacts, fromDid) + " to you";
|
|
||||||
}
|
|
||||||
let description;
|
|
||||||
if (this.hourDescriptionInput) {
|
|
||||||
description = " with description '" + this.hourDescriptionInput + "'";
|
|
||||||
} else {
|
|
||||||
description = " with no description";
|
|
||||||
}
|
|
||||||
if (
|
|
||||||
confirm(
|
|
||||||
"Are you sure you want to record " +
|
|
||||||
this.hourInput +
|
|
||||||
" hours " +
|
|
||||||
toFrom +
|
|
||||||
description +
|
|
||||||
"?",
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
this.createAndSubmitGive(
|
|
||||||
identity,
|
|
||||||
fromDid,
|
|
||||||
toDid,
|
|
||||||
parseFloat(this.hourInput),
|
|
||||||
this.hourDescriptionInput,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async createAndSubmitGive(
|
|
||||||
identity: IIdentifier,
|
|
||||||
fromDid: string,
|
|
||||||
toDid: string,
|
|
||||||
amount: number,
|
|
||||||
description: string,
|
|
||||||
): Promise<void> {
|
|
||||||
// Make a claim
|
|
||||||
const vcClaim: GiveVerifiableCredential = {
|
|
||||||
"@context": "https://schema.org",
|
|
||||||
"@type": "GiveAction",
|
|
||||||
agent: { identifier: fromDid },
|
|
||||||
object: { amountOfThisGood: amount, unitCode: "HUR" },
|
|
||||||
recipient: { identifier: toDid },
|
|
||||||
};
|
|
||||||
if (description) {
|
|
||||||
vcClaim.description = description;
|
|
||||||
}
|
|
||||||
// Make a payload for the claim
|
|
||||||
const vcPayload = {
|
|
||||||
vc: {
|
|
||||||
"@context": ["https://www.w3.org/2018/credentials/v1"],
|
|
||||||
type: ["VerifiableCredential"],
|
|
||||||
credentialSubject: vcClaim,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
// Create a signature using private key of identity
|
|
||||||
if (identity.keys[0].privateKeyHex !== null) {
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
||||||
const privateKeyHex: string = identity.keys[0].privateKeyHex!;
|
|
||||||
const signer = await SimpleSigner(privateKeyHex);
|
|
||||||
const alg = undefined;
|
|
||||||
// Create a JWT for the request
|
|
||||||
const vcJwt: string = await didJwt.createJWT(vcPayload, {
|
|
||||||
alg: alg,
|
|
||||||
issuer: identity.did,
|
|
||||||
signer: signer,
|
|
||||||
});
|
|
||||||
|
|
||||||
// Make the xhr request payload
|
|
||||||
|
|
||||||
const payload = JSON.stringify({ jwtEncoded: vcJwt });
|
|
||||||
const url = this.apiServer + "/api/v2/claim";
|
|
||||||
const headers = await this.getHeaders(identity);
|
|
||||||
|
|
||||||
try {
|
|
||||||
const resp = await this.axios.post(url, payload, { headers });
|
|
||||||
if (resp.data?.success?.handleId) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "success",
|
|
||||||
title: "Done",
|
|
||||||
text: "Successfully logged time to the server.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
|
|
||||||
if (fromDid === identity.did) {
|
|
||||||
const newList = R.clone(this.givenByMeUnconfirmed);
|
|
||||||
newList[toDid] = (newList[toDid] || 0) + amount;
|
|
||||||
this.givenByMeUnconfirmed = newList;
|
|
||||||
} else {
|
|
||||||
const newList = R.clone(this.givenToMeConfirmed);
|
|
||||||
newList[fromDid] = (newList[fromDid] || 0) + amount;
|
|
||||||
this.givenToMeConfirmed = newList;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
let userMessage = "There was an error. See logs for more info.";
|
|
||||||
const serverError = error as AxiosError;
|
|
||||||
if (serverError) {
|
|
||||||
if (serverError.message) {
|
|
||||||
userMessage = serverError.message; // Info for the user
|
|
||||||
} else {
|
|
||||||
userMessage = JSON.stringify(serverError.toJSON());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
userMessage = error as string;
|
|
||||||
}
|
|
||||||
// Now set that error for the user to see.
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error With Server",
|
|
||||||
text: userMessage,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public toggleShowGiveTotals() {
|
|
||||||
if (this.showGiveTotals) {
|
|
||||||
this.showGiveTotals = false;
|
|
||||||
this.showGiveConfirmed = true;
|
|
||||||
} else if (this.showGiveConfirmed) {
|
|
||||||
this.showGiveTotals = false; // stays the same
|
|
||||||
this.showGiveConfirmed = false;
|
|
||||||
} else {
|
|
||||||
this.showGiveTotals = true;
|
|
||||||
this.showGiveConfirmed = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public showGiveAmountsClassNames() {
|
|
||||||
return {
|
|
||||||
"bg-slate-500": this.showGiveTotals,
|
|
||||||
"bg-green-600": !this.showGiveTotals && this.showGiveConfirmed,
|
|
||||||
"bg-yellow-600": !this.showGiveTotals && !this.showGiveConfirmed,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
/* Tooltip from https://www.w3schools.com/css/css_tooltip.asp */
|
|
||||||
/* Tooltip container */
|
|
||||||
.tooltip {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Tooltip text */
|
|
||||||
.tooltip .tooltiptext {
|
|
||||||
visibility: hidden;
|
|
||||||
width: 200px;
|
|
||||||
background-color: black;
|
|
||||||
color: #fff;
|
|
||||||
text-align: center;
|
|
||||||
padding: 5px 0;
|
|
||||||
border-radius: 6px;
|
|
||||||
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
/* How do we share with the above so code isn't duplicated? */
|
|
||||||
.tooltip .tooltiptext-left {
|
|
||||||
visibility: hidden;
|
|
||||||
width: 200px;
|
|
||||||
background-color: black;
|
|
||||||
color: #fff;
|
|
||||||
text-align: center;
|
|
||||||
padding: 5px 0;
|
|
||||||
border-radius: 6px;
|
|
||||||
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
|
|
||||||
bottom: 0%;
|
|
||||||
right: 105%;
|
|
||||||
margin-left: -60px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Show the tooltip text when you mouse over the tooltip container */
|
|
||||||
.tooltip:hover .tooltiptext {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
.tooltip:hover .tooltiptext-left {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,5 +1,39 @@
|
|||||||
<template>
|
<template>
|
||||||
<QuickNav selected="Discover"></QuickNav>
|
<!-- QUICK NAV -->
|
||||||
|
<nav id="QuickNav" class="fixed bottom-0 left-0 right-0 bg-slate-200">
|
||||||
|
<ul class="flex text-2xl p-2 gap-2">
|
||||||
|
<!-- Home Feed -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="house-chimney" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Search -->
|
||||||
|
<li class="basis-1/5 rounded-md bg-slate-400 text-white">
|
||||||
|
<a href="search.html" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="magnifying-glass" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Projects -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="folder-open" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Commitments -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="hand" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Profile -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="account-view.html" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="circle-user" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<!-- CONTENT -->
|
<!-- CONTENT -->
|
||||||
<section id="Content" class="p-6 pb-24">
|
<section id="Content" class="p-6 pb-24">
|
||||||
@@ -9,20 +43,18 @@
|
|||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<!-- Quick Search -->
|
<!-- Quick Search -->
|
||||||
<div id="QuickSearch" class="mb-4 flex" v-on:keyup.enter="search()">
|
<form id="QuickSearch" class="mb-4 flex">
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
v-model="searchTerms"
|
|
||||||
placeholder="Search…"
|
placeholder="Search…"
|
||||||
class="block w-full rounded-l border border-r-0 border-slate-400 px-3 py-2"
|
class="block w-full rounded-l border border-r-0 border-slate-400 px-3 py-2"
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
@click="search()"
|
|
||||||
class="px-4 rounded-r bg-slate-200 border border-l-0 border-slate-400"
|
class="px-4 rounded-r bg-slate-200 border border-l-0 border-slate-400"
|
||||||
>
|
>
|
||||||
<fa icon="magnifying-glass" class="fa-fw"></fa>
|
<fa icon="magnifying-glass" class="fa-fw"></fa>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</form>
|
||||||
|
|
||||||
<!-- Result Tabs -->
|
<!-- Result Tabs -->
|
||||||
<div class="text-center text-slate-500 border-b border-slate-300">
|
<div class="text-center text-slate-500 border-b border-slate-300">
|
||||||
@@ -30,58 +62,34 @@
|
|||||||
<li>
|
<li>
|
||||||
<a
|
<a
|
||||||
href="#"
|
href="#"
|
||||||
@click="
|
class="inline-block py-3 rounded-t-lg border-b-2 active text-blue-600 border-blue-600 font-semibold"
|
||||||
projects = [];
|
|
||||||
searchLocal();
|
|
||||||
"
|
|
||||||
v-bind:class="computedLocalTabClassNames()"
|
|
||||||
>
|
>
|
||||||
Nearby
|
Nearby
|
||||||
<span
|
<span
|
||||||
class="font-semibold text-sm bg-slate-200 px-1.5 py-0.5 rounded-md"
|
class="font-semibold text-sm bg-slate-200 px-1.5 py-0.5 rounded-md"
|
||||||
>{{ localCount }}</span
|
>20+</span
|
||||||
>
|
>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a
|
||||||
href="#"
|
href="#"
|
||||||
v-bind:class="computedRemoteTabClassNames()"
|
class="inline-block py-3 rounded-t-lg border-b-2 border-transparent hover:text-slate-600 hover:border-slate-300"
|
||||||
@click="
|
|
||||||
projects = [];
|
|
||||||
search();
|
|
||||||
"
|
|
||||||
>
|
>
|
||||||
Remote
|
Remote
|
||||||
<span
|
<span
|
||||||
class="font-semibold text-sm bg-slate-200 px-1.5 py-0.5 rounded-md"
|
class="font-semibold text-sm bg-slate-200 px-1.5 py-0.5 rounded-md"
|
||||||
>{{ remoteCount }}</span
|
>13</span
|
||||||
>
|
>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Loading Animation -->
|
|
||||||
<div
|
|
||||||
class="fixed left-6 bottom-24 text-center text-4xl leading-none bg-slate-400 text-white w-14 py-2.5 rounded-full"
|
|
||||||
v-if="isLoading"
|
|
||||||
>
|
|
||||||
<fa icon="spinner" class="fa-spin-pulse"></fa>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Results List -->
|
<!-- Results List -->
|
||||||
<InfiniteScroll @reached-bottom="loadMoreData">
|
<ul class="">
|
||||||
<ul>
|
<li class="border-b border-slate-300">
|
||||||
<li
|
<a href="project-view.html" class="block py-4 flex gap-4">
|
||||||
class="border-b border-slate-300"
|
|
||||||
v-for="project in projects"
|
|
||||||
:key="project.handleId"
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
@click="onClickLoadProject(project.handleId)"
|
|
||||||
class="block py-4 flex gap-4"
|
|
||||||
>
|
|
||||||
<div class="w-12">
|
<div class="w-12">
|
||||||
<img
|
<img
|
||||||
src="https://picsum.photos/200/200?random=1"
|
src="https://picsum.photos/200/200?random=1"
|
||||||
@@ -90,289 +98,59 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="grow">
|
<div class="grow">
|
||||||
<h2 class="text-base font-semibold">{{ project.name }}</h2>
|
<h2 class="text-base font-semibold">Canyon cleanup</h2>
|
||||||
<div class="text-sm">
|
<div class="text-sm">
|
||||||
<fa icon="user" class="fa-fw text-slate-400"></fa>
|
<fa icon="user" class="fa-fw text-slate-400"></fa> Rotary
|
||||||
{{
|
</div>
|
||||||
didInfo(project.issuerDid, activeDid, allMyDids, allContacts)
|
</div>
|
||||||
}}
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="border-b border-slate-300">
|
||||||
|
<a href="project-view.html" class="block py-4 flex gap-4">
|
||||||
|
<div class="w-12">
|
||||||
|
<img
|
||||||
|
src="https://picsum.photos/200/200?random=2"
|
||||||
|
class="w-full rounded"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="grow">
|
||||||
|
<h2 class="text-base font-semibold">Potluck with neighbors</h2>
|
||||||
|
<div class="text-sm">
|
||||||
|
<fa icon="user" class="fa-fw text-slate-400"></fa> Andrew A.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="border-b border-slate-300">
|
||||||
|
<a href="project-view.html" class="block py-4 flex gap-4">
|
||||||
|
<div class="w-12">
|
||||||
|
<img
|
||||||
|
src="https://picsum.photos/200/200?random=3"
|
||||||
|
class="w-full rounded"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="grow">
|
||||||
|
<h2 class="text-base font-semibold">Historical site</h2>
|
||||||
|
<div class="text-sm">
|
||||||
|
<fa icon="user" class="fa-fw text-slate-400 mr-1"></fa>
|
||||||
|
<em>Unknown</em>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</InfiniteScroll>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
import { accountsDB, db } from "@/db";
|
@Options({
|
||||||
import { Contact } from "@/db/tables/contacts";
|
components: {},
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import { accessToken } from "@/libs/crypto";
|
|
||||||
import { didInfo } from "@/libs/endorserServer";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
import InfiniteScroll from "@/components/InfiniteScroll";
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
components: { AlertMessage, QuickNav, InfiniteScroll },
|
|
||||||
})
|
})
|
||||||
export default class DiscoverView extends Vue {
|
export default class DiscoverView extends Vue {}
|
||||||
activeDid = "";
|
|
||||||
allContacts: Array<Contact> = [];
|
|
||||||
allMyDids: Array<string> = [];
|
|
||||||
apiServer = "";
|
|
||||||
searchTerms = "";
|
|
||||||
alertMessage = "";
|
|
||||||
alertTitle = "";
|
|
||||||
projects: ProjectData[] = [];
|
|
||||||
isLocalActive = true;
|
|
||||||
isRemoteActive = false;
|
|
||||||
localCount = 0;
|
|
||||||
remoteCount = 0;
|
|
||||||
isLoading = false;
|
|
||||||
|
|
||||||
// make this function available to the Vue template
|
|
||||||
didInfo = didInfo;
|
|
||||||
|
|
||||||
async mounted() {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.activeDid = settings?.activeDid || "";
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
this.allContacts = await db.contacts.toArray();
|
|
||||||
|
|
||||||
await accountsDB.open();
|
|
||||||
const allAccounts = await accountsDB.accounts.toArray();
|
|
||||||
this.allMyDids = allAccounts.map((acc) => acc.did);
|
|
||||||
|
|
||||||
this.searchLocal();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async buildHeaders() {
|
|
||||||
const headers = { "Content-Type": "application/json" };
|
|
||||||
|
|
||||||
if (this.activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const allAccounts = await accountsDB.accounts.toArray();
|
|
||||||
const account = allAccounts.find((acc) => acc.did === this.activeDid);
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"An ID is chosen but there are no keys for it so it cannot be used to talk with the service.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
headers["Authorization"] = "Bearer " + (await accessToken(identity));
|
|
||||||
} else {
|
|
||||||
// it's OK without auth... we just won't get any identifiers
|
|
||||||
}
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async search(beforeId?: string) {
|
|
||||||
let queryParams = "claimContents=" + encodeURIComponent(this.searchTerms);
|
|
||||||
|
|
||||||
if (beforeId) {
|
|
||||||
queryParams = queryParams + `&beforeId=${beforeId}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.isRemoteActive = true;
|
|
||||||
this.isLocalActive = false;
|
|
||||||
|
|
||||||
try {
|
|
||||||
this.isLoading = true;
|
|
||||||
const response = await fetch(
|
|
||||||
this.apiServer + "/api/v2/report/plans?" + queryParams,
|
|
||||||
{
|
|
||||||
method: "GET",
|
|
||||||
headers: await this.buildHeaders(),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
if (response.status !== 200) {
|
|
||||||
const details = await response.text();
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: `There was a problem accessing the server. Please try again later. (${details})`,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
|
|
||||||
throw details;
|
|
||||||
}
|
|
||||||
|
|
||||||
const results = await response.json();
|
|
||||||
|
|
||||||
const plans: ProjectData[] = results.data;
|
|
||||||
if (plans) {
|
|
||||||
for (const plan of plans) {
|
|
||||||
const { name, description, handleId, rowid, issuerDid } = plan;
|
|
||||||
this.projects.push({ name, description, handleId, rowid, issuerDid });
|
|
||||||
}
|
|
||||||
this.remoteCount = this.projects.length;
|
|
||||||
} else {
|
|
||||||
throw JSON.stringify(results);
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.log("Error with feed load:", e);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: e.userMessage || "There was a problem retrieving projects.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} finally {
|
|
||||||
this.isLoading = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public async searchLocal(beforeId?: string) {
|
|
||||||
const claimContents =
|
|
||||||
"claimContents=" + encodeURIComponent(this.searchTerms);
|
|
||||||
let queryParams = [
|
|
||||||
claimContents,
|
|
||||||
"minLocLat=40.901000",
|
|
||||||
"maxLocLat=40.904000",
|
|
||||||
"westLocLon=-111.914000",
|
|
||||||
"eastLocLon=-111.909000",
|
|
||||||
].join("&");
|
|
||||||
|
|
||||||
if (beforeId) {
|
|
||||||
queryParams = queryParams + `&beforeId=${beforeId}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
this.isLoading = true;
|
|
||||||
this.isLocalActive = true;
|
|
||||||
this.isRemoteActive = false;
|
|
||||||
const response = await fetch(
|
|
||||||
this.apiServer + "/api/v2/report/plansByLocation?" + queryParams,
|
|
||||||
{
|
|
||||||
method: "GET",
|
|
||||||
headers: await this.buildHeaders(),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
if (response.status !== 200) {
|
|
||||||
const details = await response.text();
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: `There was a problem accessing the server. Please try again later. (${details})`,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
throw await response.text();
|
|
||||||
}
|
|
||||||
|
|
||||||
const results = await response.json();
|
|
||||||
|
|
||||||
if (results.data) {
|
|
||||||
if (beforeId) {
|
|
||||||
const plans: ProjectData[] = results.data;
|
|
||||||
for (const plan of plans) {
|
|
||||||
const { name, description, handleId = plan.handleId, rowid } = plan;
|
|
||||||
if (beforeId !== plan["rowid"]) {
|
|
||||||
this.projects.push({ name, description, handleId, rowid });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.projects = results.data;
|
|
||||||
}
|
|
||||||
this.localCount = this.projects.length;
|
|
||||||
} else {
|
|
||||||
throw JSON.stringify(results);
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.log("Error with feed load:", e);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: e.userMessage || "There was a problem retrieving projects.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} finally {
|
|
||||||
this.isLoading = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Data loader used by infinite scroller
|
|
||||||
* @param payload is the flag from the InfiniteScroll indicating if it should load
|
|
||||||
**/
|
|
||||||
async loadMoreData(payload: boolean) {
|
|
||||||
if (this.projects.length > 0 && payload) {
|
|
||||||
const latestProject = this.projects[this.projects.length - 1];
|
|
||||||
if (this.isLocalActive) {
|
|
||||||
this.searchLocal(latestProject["rowid"]);
|
|
||||||
} else if (this.isRemoteActive) {
|
|
||||||
this.search(latestProject["rowid"]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handle clicking on a project entry found in the list
|
|
||||||
* @param id of the project
|
|
||||||
**/
|
|
||||||
onClickLoadProject(id: string) {
|
|
||||||
localStorage.setItem("projectId", id);
|
|
||||||
const route = {
|
|
||||||
name: "project",
|
|
||||||
};
|
|
||||||
this.$router.push(route);
|
|
||||||
}
|
|
||||||
|
|
||||||
public computedLocalTabClassNames() {
|
|
||||||
return {
|
|
||||||
"inline-block": true,
|
|
||||||
"py-3": true,
|
|
||||||
"rounded-t-lg": true,
|
|
||||||
"border-b-2": true,
|
|
||||||
active: this.isLocalActive,
|
|
||||||
"text-blue-600": this.isLocalActive,
|
|
||||||
"border-blue-600": this.isLocalActive,
|
|
||||||
"font-semibold": this.isLocalActive,
|
|
||||||
"border-transparent": !this.isLocalActive,
|
|
||||||
"hover:text-slate-600": !this.isLocalActive,
|
|
||||||
"hover:border-slate-300": !this.isLocalActive,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
public computedRemoteTabClassNames() {
|
|
||||||
return {
|
|
||||||
"inline-block": true,
|
|
||||||
"py-3": true,
|
|
||||||
"rounded-t-lg": true,
|
|
||||||
"border-b-2": true,
|
|
||||||
active: this.isRemoteActive,
|
|
||||||
"text-blue-600": this.isRemoteActive,
|
|
||||||
"border-blue-600": this.isRemoteActive,
|
|
||||||
"font-semibold": this.isRemoteActive,
|
|
||||||
"border-transparent": !this.isRemoteActive,
|
|
||||||
"hover:text-slate-600": !this.isRemoteActive,
|
|
||||||
"hover:border-slate-300": !this.isRemoteActive,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,190 +0,0 @@
|
|||||||
<template>
|
|
||||||
<QuickNav selected="Profile"></QuickNav>
|
|
||||||
<!-- CONTENT -->
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<!-- Heading -->
|
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
|
||||||
Help
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<p>
|
|
||||||
This app is a window into data that you and your friends own, focused on
|
|
||||||
gifts and collaboration.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">What is the philosophy here?</h2>
|
|
||||||
<p>
|
|
||||||
We are building networks of people who want to grow a gifting society.
|
|
||||||
First of all, you can record ways you've seen people give, and that
|
|
||||||
leaves a permanent record -- one that came from you, and the recipient
|
|
||||||
can prove it was for them. This is personally gratifying, but it extends
|
|
||||||
to broader work: volunteers can get confirmation of activity and
|
|
||||||
selectively show off their contributions and network.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
You can also record projects and plans and invite others to collaborate.
|
|
||||||
Soon you'll be able to see when others are interested and see how much
|
|
||||||
they're willing to contribute, even if there are conditions.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
This app uses the power of cryptography to build a reputation, recording
|
|
||||||
activity that you can share at your discretion. You put some activity
|
|
||||||
public, but your sensitive information is not shared with anyone,
|
|
||||||
including our services. This is in contrast to Meta and Google, who hold
|
|
||||||
your data and allow you use it. Those services are useful, but they have
|
|
||||||
the control; this app gives you the control.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">How do I take my first action?</h2>
|
|
||||||
<p>
|
|
||||||
You need someone to register you -- usually the person who told you
|
|
||||||
about this app, on the Contacts
|
|
||||||
<fa icon="circle-user" class="fa-fw" /> page. After they register you,
|
|
||||||
and after you have contacts, you can select any contact on the home page
|
|
||||||
and record your appreciation for... whatever. That is a claim recorded
|
|
||||||
on a custom ledger. The day after being registered, you'll be able to
|
|
||||||
register others; later, you can create projects, too.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Note that there are limits to how many each person can register, so you
|
|
||||||
may have to wait.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">How do I backup all my data?</h2>
|
|
||||||
<p>
|
|
||||||
There are two sets of data to backup: the identifier secrets and the
|
|
||||||
other data that isn't quite a secret such as settings, contacts, etc.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div class="px-4">
|
|
||||||
<h2 class="text-xl font-semibold">
|
|
||||||
How do I backup my identifier (secret) data?
|
|
||||||
</h2>
|
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>
|
|
||||||
Go to Your Identity <fa icon="circle-user" class="fa-fw" /> page.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Click on "Backup Identifier Seed" and follow the instructions.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
If you have other identifiers, switch to each one and repeat those
|
|
||||||
steps.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">
|
|
||||||
How do I backup my other (non-identifier-secret) data?
|
|
||||||
</h2>
|
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>
|
|
||||||
Go to Your Identity <fa icon="circle-user" class="fa-fw" /> page.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Click on "Download Settings...". That will save a file to your
|
|
||||||
downloads folder. That is your backup, so put it someplace where you
|
|
||||||
won't lose it.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">How do I restore my data?</h2>
|
|
||||||
<p>
|
|
||||||
There are two parts to restore your data: the identity secrets and the
|
|
||||||
other data such as settings, contacts, etc.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div class="px-4">
|
|
||||||
<h2 class="text-xl font-semibold">
|
|
||||||
How do I restore my identifier (secret) data?
|
|
||||||
</h2>
|
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>
|
|
||||||
<router-link class="text-blue-500" to="/import-account">
|
|
||||||
Go to the import page
|
|
||||||
</router-link>
|
|
||||||
and enter the seed phrase you backed up.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">
|
|
||||||
How do I restore my other (non-identifier-secret) data?
|
|
||||||
</h2>
|
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>Make sure you have your backup file (above), then contact us.</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">
|
|
||||||
How do I add someone to my contacts?
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
Tell them to copy their ID, which typically starts with "did:ethr:...",
|
|
||||||
and send it to you. Go to the Contacts
|
|
||||||
<fa icon="circle-user" class="fa-fw" /> page and enter that into the top
|
|
||||||
form. You may add a name by adding a comma followed by their name; you
|
|
||||||
may also add their public key by adding another comma followed by the
|
|
||||||
key.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">
|
|
||||||
I know there is a record from someone, so why can't I see that info?
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
If you don't see anything associated with a person, this is typically
|
|
||||||
because they have not given you permission to see their information. Ask
|
|
||||||
them to add you to their contact list and make sure the eye next to your
|
|
||||||
name is open like this
|
|
||||||
<fa icon="eye" class="fa-fw" /> and not closed like this
|
|
||||||
<fa icon="eye-slash" class="fa-fw" />.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Sometimes the reason you don't see something is because the search time
|
|
||||||
is limited. Go to the bottom and make sure to load all the data on a
|
|
||||||
list. If you still don't see it, try a search or view on a different
|
|
||||||
page.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">How do I create another identity?</h2>
|
|
||||||
<p>
|
|
||||||
Go
|
|
||||||
<router-link to="start" class="text-blue-500">
|
|
||||||
create another identity here.
|
|
||||||
</router-link>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">What is your privacy policy?</h2>
|
|
||||||
<p>
|
|
||||||
See
|
|
||||||
<a href="https://endorser.ch/privacy-policy" class="text-blue-500">
|
|
||||||
the Endorser Service Privacy Policy.
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">What app version is this?</h2>
|
|
||||||
<p>
|
|
||||||
{{ package.version }}
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h2 class="text-xl font-semibold">
|
|
||||||
For any other questions, including remove your data:
|
|
||||||
</h2>
|
|
||||||
<p>
|
|
||||||
Contact us through
|
|
||||||
<a href="https://communitycred.org">CommunityCred.org</a>.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import * as Package from "../../package.json";
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
@Component({ components: { QuickNav } })
|
|
||||||
export default class Help extends Vue {
|
|
||||||
package = Package;
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,501 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
<QuickNav selected="Home"></QuickNav>
|
<section></section>
|
||||||
<!-- CONTENT -->
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
|
||||||
Time Safari
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<div class="mb-8">
|
|
||||||
<h2 class="text-xl font-bold mb-4">Notiwind Alert Test Suite</h2>
|
|
||||||
|
|
||||||
<button
|
|
||||||
@click="
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: 'alert',
|
|
||||||
type: 'toast',
|
|
||||||
text: 'I\'m a toast. Don\'t mind me.',
|
|
||||||
},
|
|
||||||
5000,
|
|
||||||
)
|
|
||||||
"
|
|
||||||
class="font-bold uppercase bg-slate-400 text-white px-3 py-2 rounded-md mr-2"
|
|
||||||
>
|
|
||||||
Toast (self-dismiss)
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
@click="
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: 'alert',
|
|
||||||
type: 'info',
|
|
||||||
title: 'Information Alert',
|
|
||||||
text: 'Just wanted you to know.',
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
)
|
|
||||||
"
|
|
||||||
class="font-bold uppercase bg-slate-600 text-white px-3 py-2 rounded-md mr-2"
|
|
||||||
>
|
|
||||||
Info
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
@click="
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: 'alert',
|
|
||||||
type: 'success',
|
|
||||||
title: 'Success Alert',
|
|
||||||
text: 'Congratulations!',
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
)
|
|
||||||
"
|
|
||||||
class="font-bold uppercase bg-emerald-600 text-white px-3 py-2 rounded-md mr-2"
|
|
||||||
>
|
|
||||||
Success
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
@click="
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: 'alert',
|
|
||||||
type: 'warning',
|
|
||||||
title: 'Warning Alert',
|
|
||||||
text: 'You might wanna look at this.',
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
)
|
|
||||||
"
|
|
||||||
class="font-bold uppercase bg-amber-600 text-white px-3 py-2 rounded-md mr-2"
|
|
||||||
>
|
|
||||||
Warning
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
@click="
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: 'alert',
|
|
||||||
type: 'danger',
|
|
||||||
title: 'Danger Alert',
|
|
||||||
text: 'Something terrible has happened!',
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
)
|
|
||||||
"
|
|
||||||
class="font-bold uppercase bg-rose-600 text-white px-3 py-2 rounded-md mr-2"
|
|
||||||
>
|
|
||||||
Danger
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="mb-8">
|
|
||||||
<h2 class="text-xl font-bold">Quick Action</h2>
|
|
||||||
<p class="mb-4">Show appreciation to a contact:</p>
|
|
||||||
|
|
||||||
<ul class="grid grid-cols-4 gap-x-3 gap-y-5 text-center mb-5">
|
|
||||||
<li
|
|
||||||
v-for="contact in allContacts"
|
|
||||||
:key="contact.did"
|
|
||||||
@click="openDialog(contact)"
|
|
||||||
>
|
|
||||||
<div class="mb-1">
|
|
||||||
<fa icon="user" class="fa-fw fa-xl text-slate-400"></fa>
|
|
||||||
</div>
|
|
||||||
<h3
|
|
||||||
class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden"
|
|
||||||
>
|
|
||||||
{{ contact.name || "(no name)" }}
|
|
||||||
</h3>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<!-- Ideally, this button should only be visible when the active account has more than 7 or 11 contacts in their list (we want to limit the grid count above to 8 or 12 accounts to keep it compact) -->
|
|
||||||
<router-link
|
|
||||||
v-if="allContacts.length > 7"
|
|
||||||
:to="{ name: 'contact-gives' }"
|
|
||||||
class="block text-center text-md font-bold uppercase bg-slate-500 text-white px-2 py-3 rounded-md"
|
|
||||||
>
|
|
||||||
Show More Contacts…
|
|
||||||
</router-link>
|
|
||||||
|
|
||||||
<!-- If there are no contacts, show this instead: -->
|
|
||||||
<div
|
|
||||||
class="rounded border border-dashed border-slate-300 bg-slate-100 px-4 py-3 text-center italic text-slate-500"
|
|
||||||
>
|
|
||||||
(No contacts to show.)
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<GiftedDialog
|
|
||||||
ref="customDialog"
|
|
||||||
@dialog-result="handleDialogResult"
|
|
||||||
message="Received from"
|
|
||||||
>
|
|
||||||
</GiftedDialog>
|
|
||||||
|
|
||||||
<div class="bg-slate-100 rounded-md overflow-hidden px-4 py-3 mb-4">
|
|
||||||
<h2 class="text-xl font-bold mb-4">Latest Activity</h2>
|
|
||||||
<div :class="{ hidden: isHiddenSpinner }">
|
|
||||||
<p class="text-slate-500 text-center italic mt-4 mb-4">
|
|
||||||
<fa icon="spinner" class="fa-spin-pulse"></fa> Loading…
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<ul class="border-t border-slate-300">
|
|
||||||
<li
|
|
||||||
class="border-b border-slate-300 py-2"
|
|
||||||
v-for="record in feedData"
|
|
||||||
:key="record.jwtId"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="border-b border-dashed border-slate-400 text-orange-400 pb-2 mb-2 font-bold uppercase text-sm"
|
|
||||||
v-if="record.jwtId == feedLastViewedId"
|
|
||||||
>
|
|
||||||
You've seen all claims below:
|
|
||||||
</div>
|
|
||||||
<div class="flex">
|
|
||||||
<fa icon="gift" class="pt-1 pr-2 text-slate-500"></fa>
|
|
||||||
<!-- icon values: "coins" = money; "clock" = time; "gift" = others -->
|
|
||||||
<span class="">{{ this.giveDescription(record) }}</span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
import { Options, Vue } from "vue-class-component";
|
||||||
import GiftedDialog from "@/components/GiftedDialog.vue";
|
import HelloWorld from "@/components/HelloWorld.vue"; // @ is an alias to /src
|
||||||
import { db, accountsDB } from "@/db";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import { accessToken } from "@/libs/crypto";
|
|
||||||
import { createAndSubmitGive, didInfo } from "@/libs/endorserServer";
|
|
||||||
import { Contact } from "@/db/tables/contacts";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
@Component({
|
@Options({
|
||||||
components: { GiftedDialog, AlertMessage, QuickNav },
|
components: {
|
||||||
|
HelloWorld,
|
||||||
|
},
|
||||||
})
|
})
|
||||||
export default class HomeView extends Vue {
|
export default class HomeView extends Vue {}
|
||||||
activeDid = "";
|
|
||||||
allContacts: Array<Contact> = [];
|
|
||||||
allMyDids: Array<string> = [];
|
|
||||||
apiServer = "";
|
|
||||||
feedAllLoaded = false;
|
|
||||||
feedData = [];
|
|
||||||
feedPreviousOldestId = null;
|
|
||||||
feedLastViewedId = null;
|
|
||||||
isHiddenSpinner = true;
|
|
||||||
alertTitle = "";
|
|
||||||
alertMessage = "";
|
|
||||||
numAccounts = 0;
|
|
||||||
|
|
||||||
async beforeCreate() {
|
|
||||||
await accountsDB.open();
|
|
||||||
this.numAccounts = await accountsDB.accounts.count();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getIdentity(activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const account = await accountsDB.accounts
|
|
||||||
.where("did")
|
|
||||||
.equals(activeDid)
|
|
||||||
.first();
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"Attempted to load Give records with no identity available.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return identity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getHeaders(identity) {
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
async created() {
|
|
||||||
try {
|
|
||||||
await accountsDB.open();
|
|
||||||
const allAccounts = await accountsDB.accounts.toArray();
|
|
||||||
this.allMyDids = allAccounts.map((acc) => acc.did);
|
|
||||||
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
this.activeDid = settings?.activeDid || "";
|
|
||||||
this.allContacts = await db.contacts.toArray();
|
|
||||||
this.feedLastViewedId = settings?.lastViewedClaimId;
|
|
||||||
this.updateAllFeed();
|
|
||||||
} catch (err) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text:
|
|
||||||
err.userMessage ||
|
|
||||||
"There was an error retrieving the latest sweet, sweet action.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public async buildHeaders() {
|
|
||||||
const headers = { "Content-Type": "application/json" };
|
|
||||||
|
|
||||||
if (this.activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const allAccounts = await accountsDB.accounts.toArray();
|
|
||||||
const account = allAccounts.find((acc) => acc.did === this.activeDid);
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"An ID is chosen but there are no keys for it so it cannot be used to talk with the service.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
headers["Authorization"] = "Bearer " + (await accessToken(identity));
|
|
||||||
} else {
|
|
||||||
// it's OK without auth... we just won't get any identifiers
|
|
||||||
}
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async updateAllFeed() {
|
|
||||||
this.isHiddenSpinner = false;
|
|
||||||
await this.retrieveClaims(this.apiServer, null, this.feedPreviousOldestId)
|
|
||||||
.then(async (results) => {
|
|
||||||
if (results.data.length > 0) {
|
|
||||||
this.feedData = this.feedData.concat(results.data);
|
|
||||||
this.feedAllLoaded = results.hitLimit;
|
|
||||||
this.feedPreviousOldestId =
|
|
||||||
results.data[results.data.length - 1].jwtId;
|
|
||||||
if (
|
|
||||||
this.feedLastViewedId == null ||
|
|
||||||
this.feedLastViewedId < results.data[0].jwtId
|
|
||||||
) {
|
|
||||||
await db.open();
|
|
||||||
db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
lastViewedClaimId: results.data[0].jwtId,
|
|
||||||
});
|
|
||||||
// but not for this page because we need to remember what it was before
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch((e) => {
|
|
||||||
console.log("Error with feed load:", e);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Export Error",
|
|
||||||
text: e.userMessage || "There was an error retrieving feed data.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
this.isHiddenSpinner = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async retrieveClaims(endorserApiServer, identifier, beforeId) {
|
|
||||||
const beforeQuery = beforeId == null ? "" : "&beforeId=" + beforeId;
|
|
||||||
const response = await fetch(
|
|
||||||
endorserApiServer + "/api/v2/report/gives?" + beforeQuery,
|
|
||||||
{
|
|
||||||
method: "GET",
|
|
||||||
headers: await this.buildHeaders(),
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
if (response.status !== 200) {
|
|
||||||
throw await response.text();
|
|
||||||
}
|
|
||||||
|
|
||||||
const results = await response.json();
|
|
||||||
|
|
||||||
if (results.data) {
|
|
||||||
return results;
|
|
||||||
} else {
|
|
||||||
throw JSON.stringify(results);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
giveDescription(giveRecord) {
|
|
||||||
let claim = giveRecord.fullClaim;
|
|
||||||
if (claim.claim) {
|
|
||||||
claim = claim.claim;
|
|
||||||
}
|
|
||||||
// agent.did is for legacy data, before March 2023
|
|
||||||
const giverDid =
|
|
||||||
claim.agent?.identifier || claim.agent?.did || giveRecord.issuer;
|
|
||||||
const giverInfo = didInfo(
|
|
||||||
giverDid,
|
|
||||||
this.activeDid,
|
|
||||||
this.allMyDids,
|
|
||||||
this.allContacts,
|
|
||||||
);
|
|
||||||
const gaveAmount = claim.object?.amountOfThisGood
|
|
||||||
? this.displayAmount(claim.object.unitCode, claim.object.amountOfThisGood)
|
|
||||||
: claim.description || "something unknown";
|
|
||||||
// recipient.did is for legacy data, before March 2023
|
|
||||||
const gaveRecipientId = claim.recipient?.identifier || claim.recipient?.did;
|
|
||||||
const gaveRecipientInfo = gaveRecipientId
|
|
||||||
? " to " +
|
|
||||||
didInfo(
|
|
||||||
gaveRecipientId,
|
|
||||||
this.activeDid,
|
|
||||||
this.allMyDids,
|
|
||||||
this.allContacts,
|
|
||||||
)
|
|
||||||
: "";
|
|
||||||
return giverInfo + " gave " + gaveAmount + gaveRecipientInfo;
|
|
||||||
}
|
|
||||||
|
|
||||||
displayAmount(code, amt) {
|
|
||||||
return "" + amt + " " + this.currencyShortWordForCode(code, amt === 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
currencyShortWordForCode(unitCode, single) {
|
|
||||||
return unitCode === "HUR" ? (single ? "hour" : "hours") : unitCode;
|
|
||||||
}
|
|
||||||
|
|
||||||
openDialog(giver) {
|
|
||||||
this.$refs.customDialog.open(giver);
|
|
||||||
}
|
|
||||||
|
|
||||||
handleDialogResult(result) {
|
|
||||||
if (result.action === "confirm") {
|
|
||||||
return new Promise((resolve) => {
|
|
||||||
this.recordGive(result.contact?.did, result.description, result.hours);
|
|
||||||
resolve();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
// action was "cancel" so do nothing
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param giverDid may be null
|
|
||||||
* @param description may be an empty string
|
|
||||||
* @param hours may be 0
|
|
||||||
*/
|
|
||||||
public async recordGive(giverDid, description, hours) {
|
|
||||||
if (!this.activeDid) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "You must select an identity before you can record a give.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!description && !hours) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "You must enter a description or some number of hours.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
const result = await createAndSubmitGive(
|
|
||||||
this.axios,
|
|
||||||
this.apiServer,
|
|
||||||
identity,
|
|
||||||
giverDid,
|
|
||||||
this.activeDid,
|
|
||||||
description,
|
|
||||||
hours,
|
|
||||||
);
|
|
||||||
|
|
||||||
if (this.isGiveCreationError(result)) {
|
|
||||||
const errorMessage = this.getGiveCreationErrorMessage(result);
|
|
||||||
console.log("Error with give result:", result);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: errorMessage || "There was an error recording the give.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "success",
|
|
||||||
title: "Success",
|
|
||||||
text: "That gift was recorded.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.log("Error with give caught:", error);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text:
|
|
||||||
this.getGiveErrorMessage(error) ||
|
|
||||||
"There was an error recording the give.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private setAlert(title, message) {
|
|
||||||
this.alertTitle = title;
|
|
||||||
this.alertMessage = message;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Helper functions for readability
|
|
||||||
|
|
||||||
isGiveCreationError(result) {
|
|
||||||
return result.status !== 201 || result.data?.error;
|
|
||||||
}
|
|
||||||
|
|
||||||
getGiveCreationErrorMessage(result) {
|
|
||||||
return result.data?.error?.message;
|
|
||||||
}
|
|
||||||
|
|
||||||
getGiveErrorMessage(error) {
|
|
||||||
return error.userMessage || error.response?.data?.error?.message;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,175 +0,0 @@
|
|||||||
<template>
|
|
||||||
<QuickNav selected="Profile"></QuickNav>
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<!-- Breadcrumb -->
|
|
||||||
<div id="ViewBreadcrumb" class="mb-8">
|
|
||||||
<h1 class="text-lg text-center font-light relative px-7">
|
|
||||||
<!-- Cancel -->
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'account' }"
|
|
||||||
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
|
||||||
><fa icon="chevron-left" class="fa-fw"></fa>
|
|
||||||
</router-link>
|
|
||||||
|
|
||||||
Switch Identity
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Identity List -->
|
|
||||||
|
|
||||||
<!-- Current Identity - Display First! -->
|
|
||||||
<div class="block bg-slate-100 rounded-md flex items-center px-4 py-3 mb-4">
|
|
||||||
<fa icon="circle-check" class="fa-fw text-blue-600 text-xl mr-3"></fa>
|
|
||||||
<span class="overflow-hidden">
|
|
||||||
<h2 class="text-xl font-semibold mb-0">
|
|
||||||
{{ firstName }} {{ lastName }}
|
|
||||||
</h2>
|
|
||||||
<div class="text-sm text-slate-500 truncate">
|
|
||||||
<b>ID:</b> <code>{{ activeDid }}</code>
|
|
||||||
</div>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Other Identity/ies -->
|
|
||||||
<ul class="mb-4">
|
|
||||||
<li
|
|
||||||
class="block bg-slate-100 rounded-md flex items-center px-4 py-3 mb-2"
|
|
||||||
v-for="ident in otherIdentities"
|
|
||||||
:key="ident.did"
|
|
||||||
@click="switchAccount(ident.did)"
|
|
||||||
>
|
|
||||||
<fa icon="circle" class="fa-fw text-slate-400 text-xl mr-3"></fa>
|
|
||||||
<span class="overflow-hidden">
|
|
||||||
<h2 class="text-xl font-semibold mb-0"></h2>
|
|
||||||
<div class="text-sm text-slate-500 truncate">
|
|
||||||
<b>ID:</b> <code>{{ ident.did }}</code>
|
|
||||||
</div>
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<!-- Actions -->
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'start' }"
|
|
||||||
class="block text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
|
||||||
>
|
|
||||||
Add Another Identity…
|
|
||||||
</router-link>
|
|
||||||
<a
|
|
||||||
href="#"
|
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-8"
|
|
||||||
@click="switchAccount('0')"
|
|
||||||
>
|
|
||||||
No Identity
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
<script lang="ts">
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import { AppString } from "@/constants/app";
|
|
||||||
import { db, accountsDB } from "@/db";
|
|
||||||
import { AccountsSchema } from "@/db/tables/accounts";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
@Component({ components: { AlertMessage, QuickNav } })
|
|
||||||
export default class IdentitySwitcherView extends Vue {
|
|
||||||
Constants = AppString;
|
|
||||||
public accounts: AccountsSchema;
|
|
||||||
public activeDid;
|
|
||||||
public firstName;
|
|
||||||
public lastName;
|
|
||||||
public alertTitle;
|
|
||||||
public alertMessage;
|
|
||||||
public otherIdentities = [];
|
|
||||||
|
|
||||||
public async getIdentity(activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const account = await accountsDB.accounts
|
|
||||||
.where("did")
|
|
||||||
.equals(activeDid)
|
|
||||||
.first();
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
return identity;
|
|
||||||
}
|
|
||||||
|
|
||||||
async created() {
|
|
||||||
try {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.activeDid = settings?.activeDid || "";
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
this.apiServerInput = settings?.apiServer || "";
|
|
||||||
this.firstName = settings?.firstName || "No";
|
|
||||||
this.lastName = settings?.lastName || "Name";
|
|
||||||
this.showContactGives = !!settings?.showContactGivesInline;
|
|
||||||
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
|
|
||||||
if (identity) {
|
|
||||||
db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
activeDid: identity.did,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
await accountsDB.open();
|
|
||||||
const accounts = await accountsDB.accounts.toArray();
|
|
||||||
for (let n = 0; n < accounts.length; n++) {
|
|
||||||
const did = JSON.parse(accounts[n].identity)["did"];
|
|
||||||
if (did && this.activeDid !== did) {
|
|
||||||
this.otherIdentities.push({ did: did });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
if (
|
|
||||||
err.message ===
|
|
||||||
"Attempted to load account records with no identity available."
|
|
||||||
) {
|
|
||||||
this.limitsMessage = "No identity.";
|
|
||||||
this.loadingLimits = false;
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error Creating Account",
|
|
||||||
text: "Clear your cache and start over (after data backup).",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
console.error(
|
|
||||||
"Telling user to clear cache at page create because:",
|
|
||||||
err,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async switchAccount(did: string) {
|
|
||||||
// 0 means none
|
|
||||||
if (did === "0") {
|
|
||||||
did = undefined;
|
|
||||||
}
|
|
||||||
await db.open();
|
|
||||||
db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
activeDid: did,
|
|
||||||
});
|
|
||||||
this.activeDid = did;
|
|
||||||
this.otherIdentities = [];
|
|
||||||
await accountsDB.open();
|
|
||||||
const accounts = await accountsDB.accounts.toArray();
|
|
||||||
for (let n = 0; n < accounts.length; n++) {
|
|
||||||
const did = JSON.parse(accounts[n].identity)["did"];
|
|
||||||
if (did && this.activeDid !== did) {
|
|
||||||
this.otherIdentities.push({ did: did });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.$router.push({ name: "account" });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -4,16 +4,16 @@
|
|||||||
<div id="ViewBreadcrumb" class="mb-8">
|
<div id="ViewBreadcrumb" class="mb-8">
|
||||||
<h1 class="text-lg text-center font-light relative px-7">
|
<h1 class="text-lg text-center font-light relative px-7">
|
||||||
<!-- Cancel -->
|
<!-- Cancel -->
|
||||||
<button
|
<a
|
||||||
@click="$router.go(-1)"
|
href="start.html"
|
||||||
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
||||||
>
|
><fa icon="chevron-left"></fa>
|
||||||
<fa icon="chevron-left"></fa>
|
</a>
|
||||||
</button>
|
|
||||||
Import Existing Identity
|
Import Existing Identity
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
<!-- Import Account Form -->
|
<!-- Import Account Form -->
|
||||||
|
<form>
|
||||||
<p class="text-center text-xl mb-4 font-light">
|
<p class="text-center text-xl mb-4 font-light">
|
||||||
Enter your seed phrase below to import your identity on this device.
|
Enter your seed phrase below to import your identity on this device.
|
||||||
</p>
|
</p>
|
||||||
@@ -21,81 +21,29 @@
|
|||||||
type="text"
|
type="text"
|
||||||
placeholder="Seed Phrase"
|
placeholder="Seed Phrase"
|
||||||
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
||||||
v-model="mnemonic"
|
|
||||||
/>
|
/>
|
||||||
{{ mnemonic }}
|
|
||||||
<div class="mt-8">
|
<div class="mt-8">
|
||||||
<button
|
<input
|
||||||
@click="from_mnemonic()"
|
type="submit"
|
||||||
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
||||||
>
|
value="Import Identity"
|
||||||
Import
|
/>
|
||||||
</button>
|
|
||||||
<button
|
<button
|
||||||
@click="onCancelClick()"
|
|
||||||
type="button"
|
type="button"
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
import { Options, Vue } from "vue-class-component";
|
||||||
import { deriveAddress, newIdentifier } from "../libs/crypto";
|
|
||||||
import { accountsDB, db } from "@/db";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
|
|
||||||
@Component({
|
@Options({
|
||||||
components: {},
|
components: {},
|
||||||
})
|
})
|
||||||
export default class ImportAccountView extends Vue {
|
export default class ImportAccountView extends Vue {}
|
||||||
mnemonic = "";
|
|
||||||
address = "";
|
|
||||||
privateHex = "";
|
|
||||||
publicHex = "";
|
|
||||||
derivationPath = "";
|
|
||||||
|
|
||||||
public onCancelClick() {
|
|
||||||
this.$router.back();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async from_mnemonic() {
|
|
||||||
const mne: string = this.mnemonic.trim().toLowerCase();
|
|
||||||
if (this.mnemonic.trim().length > 0) {
|
|
||||||
[this.address, this.privateHex, this.publicHex, this.derivationPath] =
|
|
||||||
deriveAddress(mne);
|
|
||||||
|
|
||||||
const newId = newIdentifier(
|
|
||||||
this.address,
|
|
||||||
this.publicHex,
|
|
||||||
this.privateHex,
|
|
||||||
this.derivationPath,
|
|
||||||
);
|
|
||||||
|
|
||||||
try {
|
|
||||||
await accountsDB.open();
|
|
||||||
await accountsDB.accounts.add({
|
|
||||||
dateCreated: new Date().toISOString(),
|
|
||||||
derivationPath: this.derivationPath,
|
|
||||||
did: newId.did,
|
|
||||||
identity: JSON.stringify(newId),
|
|
||||||
mnemonic: mne,
|
|
||||||
publicKeyHex: newId.keys[0].publicKeyHex,
|
|
||||||
});
|
|
||||||
|
|
||||||
// record that as the active DID
|
|
||||||
await db.open();
|
|
||||||
db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
activeDid: newId.did,
|
|
||||||
});
|
|
||||||
this.$router.push({ name: "account" });
|
|
||||||
} catch (err) {
|
|
||||||
console.error("Error saving mnemonic & updating settings:", err);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -4,34 +4,30 @@
|
|||||||
<div id="ViewBreadcrumb" class="mb-8">
|
<div id="ViewBreadcrumb" class="mb-8">
|
||||||
<h1 class="text-lg text-center font-light relative px-7">
|
<h1 class="text-lg text-center font-light relative px-7">
|
||||||
<!-- Cancel -->
|
<!-- Cancel -->
|
||||||
<button
|
<a
|
||||||
@click="$router.go(-1)"
|
href="account-view.html"
|
||||||
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
||||||
>
|
><fa icon="chevron-left" class="fa-fw"></fa>
|
||||||
<fa icon="chevron-left" class="fa-fw"></fa>
|
</a>
|
||||||
</button>
|
|
||||||
[New/Edit] Identity
|
[New/Edit] Identity
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
<form>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="First Name"
|
placeholder="First Name"
|
||||||
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
||||||
v-model="firstName"
|
|
||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Last Name"
|
placeholder="Last Name"
|
||||||
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
||||||
v-model="lastName"
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div class="mt-8">
|
<div class="mt-8">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
||||||
@click="onClickSaveChanges()"
|
|
||||||
>
|
>
|
||||||
Save Changes
|
Save Changes
|
||||||
</button>
|
</button>
|
||||||
@@ -39,52 +35,19 @@
|
|||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
||||||
@click="onClickCancel()"
|
|
||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
import { Options, Vue } from "vue-class-component";
|
||||||
import { db } from "@/db";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
|
|
||||||
@Component({
|
@Options({
|
||||||
components: {},
|
components: {},
|
||||||
})
|
})
|
||||||
export default class NewEditAccountView extends Vue {
|
export default class NewEditAccountView extends Vue {}
|
||||||
firstName =
|
|
||||||
localStorage.getItem("firstName") === null
|
|
||||||
? "--"
|
|
||||||
: localStorage.getItem("firstName");
|
|
||||||
lastName =
|
|
||||||
localStorage.getItem("lastName") === null
|
|
||||||
? "--"
|
|
||||||
: localStorage.getItem("lastName");
|
|
||||||
|
|
||||||
// 'created' hook runs when the Vue instance is first created
|
|
||||||
async created() {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.firstName = settings?.firstName || "";
|
|
||||||
this.lastName = settings?.lastName || "";
|
|
||||||
}
|
|
||||||
|
|
||||||
onClickSaveChanges() {
|
|
||||||
db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
firstName: this.firstName,
|
|
||||||
lastName: this.lastName,
|
|
||||||
});
|
|
||||||
localStorage.setItem("firstName", this.firstName as string);
|
|
||||||
localStorage.setItem("lastName", this.lastName as string);
|
|
||||||
this.$router.push({ name: "account" });
|
|
||||||
}
|
|
||||||
|
|
||||||
onClickCancel() {
|
|
||||||
this.$router.back();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -5,19 +5,21 @@
|
|||||||
<div id="ViewBreadcrumb" class="mb-8">
|
<div id="ViewBreadcrumb" class="mb-8">
|
||||||
<h1 class="text-lg text-center font-light relative px-7">
|
<h1 class="text-lg text-center font-light relative px-7">
|
||||||
<!-- Cancel -->
|
<!-- Cancel -->
|
||||||
<router-link
|
<a
|
||||||
:to="{ name: 'project' }"
|
href="project-view.html"
|
||||||
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
||||||
><fa icon="chevron-left" class="fa-fw"></fa>
|
><fa icon="chevron-left" class="fa-fw"></fa>
|
||||||
</router-link>
|
</a>
|
||||||
|
|
||||||
Make Commitment
|
Make Commitment
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Project Details -->
|
<!-- Project Details -->
|
||||||
|
<form>
|
||||||
<select class="block w-full rounded border border-slate-400 mb-4 px-3 py-2">
|
<select
|
||||||
|
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
||||||
|
>
|
||||||
<option disabled>Choose a commitment type…</option>
|
<option disabled>Choose a commitment type…</option>
|
||||||
<option selected>Time</option>
|
<option selected>Time</option>
|
||||||
<option>Cryptocurrency</option>
|
<option>Cryptocurrency</option>
|
||||||
@@ -54,13 +56,14 @@
|
|||||||
Maybe Later
|
Maybe Later
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</form>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
@Component({
|
@Options({
|
||||||
components: {},
|
components: {},
|
||||||
})
|
})
|
||||||
export default class NewEditCommitmentView extends Vue {}
|
export default class NewEditCommitmentView extends Vue {}
|
||||||
|
|||||||
@@ -5,302 +5,74 @@
|
|||||||
<div id="ViewBreadcrumb" class="mb-8">
|
<div id="ViewBreadcrumb" class="mb-8">
|
||||||
<h1 class="text-lg text-center font-light relative px-7">
|
<h1 class="text-lg text-center font-light relative px-7">
|
||||||
<!-- Cancel -->
|
<!-- Cancel -->
|
||||||
<router-link
|
<a
|
||||||
:to="{ name: 'project' }"
|
href="project-view.html"
|
||||||
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
||||||
><fa icon="chevron-left" class="fa-fw"></fa
|
><fa icon="chevron-left" class="fa-fw"></fa>
|
||||||
></router-link>
|
</a>
|
||||||
[New/Edit] Plan
|
|
||||||
|
[New/Edit] Project
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Project Details -->
|
<!-- Project Details -->
|
||||||
|
<form>
|
||||||
<!-- Image - (see design model) Empty -->
|
<!-- Image - (see design model) Empty -->
|
||||||
|
|
||||||
<div>
|
<!-- Image - Populated -->
|
||||||
{{ errorMessage }}
|
<div class="relative mb-4 rounded-md overflow-hidden">
|
||||||
|
<div class="absolute top-3 right-3 flex gap-2">
|
||||||
|
<button
|
||||||
|
class="text-md font-bold uppercase bg-blue-600 text-white px-3 py-2 rounded"
|
||||||
|
>
|
||||||
|
<fa icon="pen" class="fa-fw"></fa>
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="text-md font-bold uppercase bg-red-600 text-white px-3 py-2 rounded"
|
||||||
|
>
|
||||||
|
<fa icon="trash-can" class="fa-fw"></fa>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<img src="https://picsum.photos/800/400" class="w-full" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Project Name"
|
placeholder="Project Name"
|
||||||
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
||||||
v-model="projectName"
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<textarea
|
<textarea
|
||||||
placeholder="Description"
|
placeholder="Description"
|
||||||
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2"
|
||||||
rows="5"
|
rows="5"
|
||||||
v-model="description"
|
|
||||||
maxlength="500"
|
|
||||||
></textarea>
|
></textarea>
|
||||||
<div class="text-xs text-slate-500 italic -mt-3 mb-4">
|
<div class="text-xs text-slate-500 italic -mt-3 mb-4">
|
||||||
{{ description.length }}/500 max. characters
|
88/500 max. characters
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mt-8">
|
<div class="mt-8">
|
||||||
<button
|
<input
|
||||||
:disabled="isHiddenSave"
|
type="submit"
|
||||||
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
||||||
@click="onSaveProjectClick()"
|
value="Save Project"
|
||||||
>
|
/>
|
||||||
<!-- SHOW if in idle state -->
|
|
||||||
<span :class="{ hidden: isHiddenSave }">Save Project</span>
|
|
||||||
|
|
||||||
<!-- SHOW if in saving state; DISABLE button while in saving state -->
|
|
||||||
<span :class="{ hidden: isHiddenSpinner }">
|
|
||||||
<!-- icon no worky? -->
|
|
||||||
<i class="fa-solid fa-spinner fa-spin-pulse"></i>
|
|
||||||
Saving…</span
|
|
||||||
>
|
|
||||||
</button>
|
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
||||||
@click="onCancelClick()"
|
|
||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<AlertMessage
|
</form>
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { AxiosError } from "axios";
|
import { Options, Vue } from "vue-class-component";
|
||||||
import * as didJwt from "did-jwt";
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
|
|
||||||
import { accountsDB, db } from "@/db";
|
@Options({
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
components: {},
|
||||||
import { accessToken, SimpleSigner } from "@/libs/crypto";
|
|
||||||
import { useAppStore } from "@/store/app";
|
|
||||||
import { IIdentifier } from "@veramo/core";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
components: { AlertMessage },
|
|
||||||
})
|
})
|
||||||
export default class NewEditProjectView extends Vue {
|
export default class NewEditProjectView extends Vue {}
|
||||||
activeDid = "";
|
|
||||||
apiServer = "";
|
|
||||||
projectName = "";
|
|
||||||
description = "";
|
|
||||||
errorMessage = "";
|
|
||||||
numAccounts = 0;
|
|
||||||
alertTitle = "";
|
|
||||||
alertMessage = "";
|
|
||||||
|
|
||||||
async beforeCreate() {
|
|
||||||
await accountsDB.open();
|
|
||||||
this.numAccounts = await accountsDB.accounts.count();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getIdentity(activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const account = await accountsDB.accounts
|
|
||||||
.where("did")
|
|
||||||
.equals(activeDid)
|
|
||||||
.first();
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"Attempted to load project records with no identity available.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return identity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getHeaders(identity) {
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
projectId = localStorage.getItem("projectId") || "";
|
|
||||||
isHiddenSave = false;
|
|
||||||
isHiddenSpinner = true;
|
|
||||||
|
|
||||||
async created() {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.activeDid = settings?.activeDid || "";
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
|
|
||||||
if (this.projectId) {
|
|
||||||
if (this.numAccounts === 0) {
|
|
||||||
console.error("Error: no account was found.");
|
|
||||||
} else {
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"An ID is chosen but there are no keys for it so it cannot be used to talk with the service.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
this.LoadProject(identity);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async LoadProject(identity: IIdentifier) {
|
|
||||||
const url =
|
|
||||||
this.apiServer +
|
|
||||||
"/api/claim/byHandle/" +
|
|
||||||
encodeURIComponent(this.projectId);
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const resp = await this.axios.get(url, { headers });
|
|
||||||
if (resp.status === 200) {
|
|
||||||
const claim = resp.data.claim;
|
|
||||||
this.projectName = claim.name;
|
|
||||||
this.description = claim.description;
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Got error retrieving that project", error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async SaveProject(identity: IIdentifier) {
|
|
||||||
// Make a claim
|
|
||||||
const vcClaim: VerifiableCredential = {
|
|
||||||
"@context": "https://schema.org",
|
|
||||||
"@type": "PlanAction",
|
|
||||||
name: this.projectName,
|
|
||||||
description: this.description,
|
|
||||||
identifier: this.projectId || undefined,
|
|
||||||
};
|
|
||||||
if (this.projectId) {
|
|
||||||
vcClaim.identifier = this.projectId;
|
|
||||||
}
|
|
||||||
// Make a payload for the claim
|
|
||||||
const vcPayload = {
|
|
||||||
vc: {
|
|
||||||
"@context": ["https://www.w3.org/2018/credentials/v1"],
|
|
||||||
type: ["VerifiableCredential"],
|
|
||||||
credentialSubject: vcClaim,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
// create a signature using private key of identity
|
|
||||||
if (identity.keys[0].privateKeyHex != null) {
|
|
||||||
const privateKeyHex: string = identity.keys[0].privateKeyHex;
|
|
||||||
const signer = await SimpleSigner(privateKeyHex);
|
|
||||||
const alg = undefined;
|
|
||||||
// create a JWT for the request
|
|
||||||
const vcJwt: string = await didJwt.createJWT(vcPayload, {
|
|
||||||
alg: alg,
|
|
||||||
issuer: identity.did,
|
|
||||||
signer: signer,
|
|
||||||
});
|
|
||||||
|
|
||||||
// Make the xhr request payload
|
|
||||||
|
|
||||||
const payload = JSON.stringify({ jwtEncoded: vcJwt });
|
|
||||||
const url = this.apiServer + "/api/v2/claim";
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const resp = await this.axios.post(url, payload, { headers });
|
|
||||||
// handleId is new in server v release-1.6.0; remove fullIri when that
|
|
||||||
// version shows up here: https://endorser.ch:3000/api-docs/
|
|
||||||
if (resp.data?.success?.handleId || resp.data?.success?.fullIri) {
|
|
||||||
this.errorMessage = "";
|
|
||||||
this.alertTitle = "";
|
|
||||||
this.alertMessage = "";
|
|
||||||
// handleId is new in server v release-1.6.0; remove fullIri when that
|
|
||||||
// version shows up here: https://endorser.ch:3000/api-docs/
|
|
||||||
useAppStore().setProjectId(
|
|
||||||
resp.data.success.handleId || resp.data.success.fullIri,
|
|
||||||
);
|
|
||||||
setTimeout(
|
|
||||||
function (that: Vue) {
|
|
||||||
const route = {
|
|
||||||
name: "project",
|
|
||||||
};
|
|
||||||
that.$router.push(route);
|
|
||||||
},
|
|
||||||
2000,
|
|
||||||
this,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
let userMessage = "There was an error saving the project.";
|
|
||||||
const serverError = error as AxiosError;
|
|
||||||
if (serverError) {
|
|
||||||
if (Object.prototype.hasOwnProperty.call(serverError, "message")) {
|
|
||||||
console.log(serverError);
|
|
||||||
userMessage = serverError.response.data.error.message; // This is info for the user.
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "User Message",
|
|
||||||
text: userMessage,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Server Message",
|
|
||||||
text: JSON.stringify(serverError.toJSON()),
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.error(
|
|
||||||
"Here's the full error trying to save the claim:",
|
|
||||||
error,
|
|
||||||
);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Claim Error",
|
|
||||||
text: error as string,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
// Now set that error for the user to see.
|
|
||||||
this.errorMessage = userMessage;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public async onSaveProjectClick() {
|
|
||||||
this.isHiddenSave = true;
|
|
||||||
this.isHiddenSpinner = false;
|
|
||||||
|
|
||||||
if (this.numAccounts === 0) {
|
|
||||||
console.error("Error: there is no account.");
|
|
||||||
} else {
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
this.SaveProject(identity);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public onCancelClick() {
|
|
||||||
this.$router.back();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,81 +0,0 @@
|
|||||||
<template>
|
|
||||||
<QuickNav selected="Profile"></QuickNav>
|
|
||||||
<!-- CONTENT -->
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<!-- Heading -->
|
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
|
||||||
Your Identity
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<div class="flex justify-center py-12">
|
|
||||||
<span />
|
|
||||||
<span v-if="loading">
|
|
||||||
<span class="text-xl">Creating... </span>
|
|
||||||
<fa
|
|
||||||
icon="spinner"
|
|
||||||
class="fa-spin fa-spin-pulse"
|
|
||||||
color="green"
|
|
||||||
size="128"
|
|
||||||
></fa>
|
|
||||||
</span>
|
|
||||||
<span v-else>
|
|
||||||
<span class="text-xl">Created!</span>
|
|
||||||
<fa
|
|
||||||
icon="burst"
|
|
||||||
class="fa-beat px-12"
|
|
||||||
color="green"
|
|
||||||
style="
|
|
||||||
--fa-animation-duration: 1s;
|
|
||||||
--fa-animation-direction: reverse;
|
|
||||||
--fa-animation-iteration-count: 1;
|
|
||||||
--fa-beat-scale: 6;
|
|
||||||
"
|
|
||||||
></fa>
|
|
||||||
</span>
|
|
||||||
<span />
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import "dexie-export-import";
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import { accountsDB, db } from "@/db";
|
|
||||||
import { deriveAddress, generateSeed, newIdentifier } from "@/libs/crypto";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
@Component({ components: { QuickNav } })
|
|
||||||
export default class AccountViewView extends Vue {
|
|
||||||
loading = true;
|
|
||||||
|
|
||||||
async mounted() {
|
|
||||||
const mnemonic = generateSeed();
|
|
||||||
// address is 0x... ETH address, without "did:eth:"
|
|
||||||
const [address, privateHex, publicHex, derivationPath] =
|
|
||||||
deriveAddress(mnemonic);
|
|
||||||
|
|
||||||
const newId = newIdentifier(address, publicHex, privateHex, derivationPath);
|
|
||||||
const identity = JSON.stringify(newId);
|
|
||||||
|
|
||||||
await accountsDB.open();
|
|
||||||
await accountsDB.accounts.add({
|
|
||||||
dateCreated: new Date().toISOString(),
|
|
||||||
derivationPath: derivationPath,
|
|
||||||
did: newId.did,
|
|
||||||
identity: identity,
|
|
||||||
mnemonic: mnemonic,
|
|
||||||
publicKeyHex: newId.keys[0].publicKeyHex,
|
|
||||||
});
|
|
||||||
|
|
||||||
await db.settings.update(MASTER_SETTINGS_KEY, {
|
|
||||||
activeDid: newId.did,
|
|
||||||
});
|
|
||||||
|
|
||||||
this.loading = false;
|
|
||||||
setTimeout(() => {
|
|
||||||
this.$router.push({ name: "account" });
|
|
||||||
}, 1000);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,17 +1,49 @@
|
|||||||
<template>
|
<template>
|
||||||
<QuickNav selected="Projects"></QuickNav>
|
<!-- QUICK NAV -->
|
||||||
|
<nav id="QuickNav" class="fixed bottom-0 left-0 right-0 bg-slate-200">
|
||||||
|
<ul class="flex text-2xl p-2 gap-2">
|
||||||
|
<!-- Home Feed -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="house-chimney" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Search -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="search.html" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="magnifying-glass" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Projects -->
|
||||||
|
<li class="basis-1/5 rounded-md bg-slate-400 text-white">
|
||||||
|
<a href="" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="folder-open" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Commitments -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="hand" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
<!-- Profile -->
|
||||||
|
<li class="basis-1/5 rounded-md text-slate-500">
|
||||||
|
<a href="account-view.html" class="block text-center py-3 px-1"
|
||||||
|
><fa icon="circle-user" class="fa-fw"></fa
|
||||||
|
></a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<!-- CONTENT -->
|
<!-- CONTENT -->
|
||||||
<section id="Content" class="p-6 pb-24">
|
<section id="Content" class="p-6 pb-24">
|
||||||
<!-- Breadcrumb -->
|
<!-- Breadcrumb -->
|
||||||
<div id="ViewBreadcrumb" class="mb-8">
|
<div id="ViewBreadcrumb" class="mb-8">
|
||||||
<h1 class="text-lg text-center font-light relative px-7">
|
<h1 class="text-lg text-center font-light relative px-7">
|
||||||
<!-- Back -->
|
<!-- Back -->
|
||||||
<button
|
<a href="" class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
||||||
@click="$router.go(-1)"
|
><fa icon="chevron-left" class="fa-fw"></fa
|
||||||
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
></a>
|
||||||
>
|
|
||||||
<fa icon="chevron-left" class="fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
<!-- Context Menu -->
|
<!-- Context Menu -->
|
||||||
<a
|
<a
|
||||||
href=""
|
href=""
|
||||||
@@ -19,491 +51,79 @@
|
|||||||
><fa icon="ellipsis-vertical" class="fa-fw"></fa
|
><fa icon="ellipsis-vertical" class="fa-fw"></fa
|
||||||
></a>
|
></a>
|
||||||
|
|
||||||
View Plan
|
View Project
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Project Details -->
|
<!-- Project Details -->
|
||||||
<div class="bg-slate-100 rounded-md overflow-hidden px-4 py-3 mb-4">
|
<div class="bg-slate-100 rounded-md overflow-hidden px-4 py-3 mb-4">
|
||||||
|
<!-- Image -->
|
||||||
|
<div class="-mx-4 -mt-3 mb-3">
|
||||||
|
<img src="https://picsum.photos/800/400" class="w-full" />
|
||||||
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h2 class="text-xl font-semibold">{{ name }}</h2>
|
<h2 class="text-xl font-semibold">Canyon cleanup</h2>
|
||||||
<div class="flex justify-between gap-4 text-sm mb-3">
|
<div class="flex justify-between gap-4 text-sm mb-3">
|
||||||
|
<span><fa icon="user" class="fa-fw text-slate-400"></fa> Rotary</span>
|
||||||
<span
|
<span
|
||||||
><fa icon="user" class="fa-fw text-slate-400"></fa>
|
><fa icon="calendar" class="fa-fw text-slate-400"></fa> 8 days
|
||||||
{{ issuer }}</span
|
ago</span
|
||||||
>
|
>
|
||||||
<span
|
|
||||||
><fa icon="calendar" class="fa-fw text-slate-400"></fa
|
|
||||||
>{{ timeSince }}
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="text-sm text-slate-500">
|
<div class="text-sm text-slate-500">
|
||||||
<div v-if="!expanded">
|
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
|
||||||
{{ truncatedDesc }}
|
accusantium doloremque laudantium…
|
||||||
<a v-if="description.length >= truncateLength" @click="expandText"
|
<a href="" class="uppercase text-xs font-semibold text-slate-700"
|
||||||
>Read More</a
|
>Read More</a
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
</div>
|
||||||
{{ description }}
|
</div>
|
||||||
|
|
||||||
|
<!-- Commit -->
|
||||||
<a
|
<a
|
||||||
@click="collapseText"
|
href="commitment-edit.html"
|
||||||
class="uppercase text-xs font-semibold text-slate-700"
|
class="block text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-8"
|
||||||
>Read Less</a
|
>Make Commitment</a
|
||||||
>
|
>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
|
||||||
@click="onEditClick()"
|
|
||||||
>
|
|
||||||
Edit
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
<!-- Commitments -->
|
||||||
<div v-if="activeDid">
|
<div class="bg-slate-100 px-4 py-3 rounded-md">
|
||||||
<button
|
<h3 class="text-sm uppercase font-semibold mb-3">Commitments</h3>
|
||||||
@click="openDialog({ name: 'you', did: activeDid })"
|
|
||||||
class="text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md"
|
|
||||||
>
|
|
||||||
I gave...
|
|
||||||
</button>
|
|
||||||
― or:
|
|
||||||
</div>
|
|
||||||
<!-- similar contact selection code is in multiple places -->
|
|
||||||
Record a gift from
|
|
||||||
<span v-for="contact in allContacts" :key="contact.did">
|
|
||||||
<button @click="openDialog(contact)" class="text-blue-500">
|
|
||||||
{{ contact.name }}</button
|
|
||||||
>,
|
|
||||||
</span>
|
|
||||||
<span v-if="allContacts.length > 0"> or </span>
|
|
||||||
<button @click="openDialog()" class="text-blue-500">
|
|
||||||
someone not specified
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Gifts to & from this -->
|
<ul class="text-sm border-t border-slate-300">
|
||||||
<div class="mt-8 flex justify-around">
|
<li class="flex justify-between gap-4 py-1.5 border-b border-slate-300">
|
||||||
<div>
|
<span>[Username]</span>
|
||||||
<h1 class="text-xl">Given to this Project</h1>
|
<span
|
||||||
|
>5 hours <fa icon="spinner" class="fa-fw text-slate-400"></fa
|
||||||
|
></span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="flex justify-between gap-4 py-1.5 border-b border-slate-300">
|
||||||
|
<span>[Username]</span>
|
||||||
|
<span
|
||||||
|
>US$ 20.00 <fa icon="circle-check" class="fa-fw text-lime-500"></fa
|
||||||
|
></span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="flex justify-between gap-4 py-1.5 border-b border-slate-300">
|
||||||
|
<span>[Username]</span>
|
||||||
|
<span
|
||||||
|
>0.1 BTC <fa icon="spinner" class="fa-fw text-slate-400"></fa
|
||||||
|
></span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
|
||||||
<h1 class="text-xl">... and paid forward from this Project</h1>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="flex justify-around">
|
|
||||||
<div class="w-1/2">
|
|
||||||
<div v-for="give in givesToThis" :key="give.id">
|
|
||||||
<div class="flex justify-between">
|
|
||||||
<div class="flex gap-3">
|
|
||||||
<div class="flex gap-2">
|
|
||||||
<fa icon="user" class="fa-fw text-slate-400"></fa>
|
|
||||||
<span>{{
|
|
||||||
didInfo(give.agentDid, activeDid, allMyDids, allContacts)
|
|
||||||
}}</span>
|
|
||||||
</div>
|
|
||||||
<div class="flex gap-2" v-if="give.amount">
|
|
||||||
<fa
|
|
||||||
icon="clock"
|
|
||||||
v-if="give.unit === 'HUR'"
|
|
||||||
class="fa-fw text-slate-400"
|
|
||||||
></fa>
|
|
||||||
<fa icon="coins" v-else class="fa-fw text-slate-400"></fa>
|
|
||||||
<span>{{ give.amount }}</span>
|
|
||||||
</div>
|
|
||||||
<div class="flex gap-2" v-if="give.description">
|
|
||||||
<fa icon="comment" class="fa-fw text-slate-400"></fa>
|
|
||||||
<span>{{ give.description }}</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="w-1/2">
|
|
||||||
<div v-for="give in givesByThis" :key="give.id">
|
|
||||||
<div class="flex justify-between">
|
|
||||||
<div class="flex gap-3">
|
|
||||||
<div class="flex gap-2">
|
|
||||||
<fa icon="user" class="fa-fw text-slate-400"></fa>
|
|
||||||
<span>{{
|
|
||||||
didInfo(give.agentDid, activeDid, allMyDids, allContacts)
|
|
||||||
}}</span>
|
|
||||||
</div>
|
|
||||||
<div class="flex gap-2" v-if="give.amount">
|
|
||||||
<fa
|
|
||||||
icon="clock"
|
|
||||||
v-if="give.unit === 'HUR'"
|
|
||||||
class="fa-fw text-slate-400"
|
|
||||||
></fa>
|
|
||||||
<fa icon="coins" v-else class="fa-fw text-slate-400"></fa>
|
|
||||||
<span>{{ give.amount }}</span>
|
|
||||||
</div>
|
|
||||||
<div class="flex gap-2">
|
|
||||||
<fa icon="comment" class="fa-fw text-slate-400"></fa>
|
|
||||||
<span>{{ give.description }}</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<GiftedDialog
|
|
||||||
ref="customDialog"
|
|
||||||
@dialog-result="handleDialogResult"
|
|
||||||
message="Received from"
|
|
||||||
>
|
|
||||||
</GiftedDialog>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { AxiosError } from "axios";
|
import { Options, Vue } from "vue-class-component";
|
||||||
import * as moment from "moment";
|
|
||||||
import { IIdentifier } from "@veramo/core";
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
|
|
||||||
import GiftedDialog from "@/components/GiftedDialog.vue";
|
@Options({
|
||||||
import { accountsDB, db } from "@/db";
|
components: {},
|
||||||
import { Contact } from "@/db/tables/contacts";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import { accessToken } from "@/libs/crypto";
|
|
||||||
import {
|
|
||||||
createAndSubmitGive,
|
|
||||||
didInfo,
|
|
||||||
GiveServerRecord,
|
|
||||||
} from "@/libs/endorserServer";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
components: { GiftedDialog, AlertMessage, QuickNav },
|
|
||||||
})
|
})
|
||||||
export default class ProjectViewView extends Vue {
|
export default class ProjectViewView extends Vue {}
|
||||||
activeDid = "";
|
|
||||||
alertMessage = "";
|
|
||||||
alertTitle = "";
|
|
||||||
allMyDids: Array<string> = [];
|
|
||||||
allContacts: Array<Contact> = [];
|
|
||||||
apiServer = "";
|
|
||||||
description = "";
|
|
||||||
expanded = false;
|
|
||||||
givesToThis: Array<GiveServerRecord> = [];
|
|
||||||
givesByThis: Array<GiveServerRecord> = [];
|
|
||||||
name = "";
|
|
||||||
issuer = "";
|
|
||||||
projectId = localStorage.getItem("projectId") || ""; // handle ID
|
|
||||||
timeSince = "";
|
|
||||||
truncatedDesc = "";
|
|
||||||
truncateLength = 40;
|
|
||||||
|
|
||||||
async created() {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
this.activeDid = settings?.activeDid || "";
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
this.allContacts = await db.contacts.toArray();
|
|
||||||
|
|
||||||
await accountsDB.open();
|
|
||||||
const accounts = accountsDB.accounts;
|
|
||||||
const accountsArr = await accounts?.toArray();
|
|
||||||
this.allMyDids = accountsArr.map((acc) => acc.did);
|
|
||||||
const account = accountsArr?.find((acc) => acc.did === this.activeDid);
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
this.LoadProject(identity);
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getIdentity(activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const account = await accountsDB.accounts
|
|
||||||
.where("did")
|
|
||||||
.equals(activeDid)
|
|
||||||
.first();
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"Attempted to load project records with no identity available.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return identity;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getHeaders(identity) {
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: "Bearer " + token,
|
|
||||||
};
|
|
||||||
return headers;
|
|
||||||
}
|
|
||||||
|
|
||||||
onEditClick() {
|
|
||||||
localStorage.setItem("projectId", this.projectId as string);
|
|
||||||
const route = {
|
|
||||||
name: "new-edit-project",
|
|
||||||
};
|
|
||||||
this.$router.push(route);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Isn't there a better way to make this available to the template?
|
|
||||||
didInfo(did, activeDid, dids, contacts) {
|
|
||||||
return didInfo(did, activeDid, dids, contacts);
|
|
||||||
}
|
|
||||||
|
|
||||||
expandText() {
|
|
||||||
this.expanded = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
collapseText() {
|
|
||||||
this.expanded = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
async LoadProject(identity: IIdentifier) {
|
|
||||||
const url =
|
|
||||||
this.apiServer +
|
|
||||||
"/api/claim/byHandle/" +
|
|
||||||
encodeURIComponent(this.projectId);
|
|
||||||
const headers = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
};
|
|
||||||
if (identity) {
|
|
||||||
const token = await accessToken(identity);
|
|
||||||
headers["Authorization"] = "Bearer " + token;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const resp = await this.axios.get(url, { headers });
|
|
||||||
if (resp.status === 200) {
|
|
||||||
const startTime = resp.data.startTime;
|
|
||||||
if (startTime != null) {
|
|
||||||
const eventDate = new Date(startTime);
|
|
||||||
const now = moment.now();
|
|
||||||
this.timeSince = moment.utc(now).to(eventDate);
|
|
||||||
}
|
|
||||||
this.issuer = resp.data.issuer;
|
|
||||||
this.name = resp.data.claim?.name || "(no name)";
|
|
||||||
this.description = resp.data.claim?.description || "(no description)";
|
|
||||||
this.truncatedDesc = this.description.slice(0, this.truncateLength);
|
|
||||||
} else if (resp.status === 404) {
|
|
||||||
// actually, axios throws an error so we never get here
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "That project does not exist.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} catch (error: unknown) {
|
|
||||||
const serverError = error as AxiosError;
|
|
||||||
if (serverError.response?.status === 404) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "That project does not exist.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "Something went wrong retrieving that project. See logs for more info.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
console.error("Error retrieving project:", serverError.message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const givesInUrl =
|
|
||||||
this.apiServer +
|
|
||||||
"/api/v2/report/givesForPlans?planIds=" +
|
|
||||||
encodeURIComponent(JSON.stringify([this.projectId]));
|
|
||||||
try {
|
|
||||||
const resp = await this.axios.get(givesInUrl, { headers });
|
|
||||||
if (resp.status === 200 && resp.data.data) {
|
|
||||||
this.givesToThis = resp.data.data;
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "Failed to retrieve gives to this project.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} catch (error: unknown) {
|
|
||||||
const serverError = error as AxiosError;
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "Something went wrong retrieving gives to this project.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
console.error(
|
|
||||||
"Error retrieving gives to this project:",
|
|
||||||
serverError.message,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const givesOutUrl =
|
|
||||||
this.apiServer +
|
|
||||||
"/api/v2/report/givesProvidedBy?providerId=" +
|
|
||||||
encodeURIComponent(this.projectId);
|
|
||||||
try {
|
|
||||||
const resp = await this.axios.get(givesOutUrl, { headers });
|
|
||||||
if (resp.status === 200 && resp.data.data) {
|
|
||||||
this.givesByThis = resp.data.data;
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "Failed to retrieve gives by this project.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} catch (error: unknown) {
|
|
||||||
const serverError = error as AxiosError;
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "Something went wrong retrieving gives by project.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
console.error(
|
|
||||||
"Error retrieving gives by this project:",
|
|
||||||
serverError.message,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
openDialog(contact) {
|
|
||||||
this.$refs.customDialog.open(contact);
|
|
||||||
}
|
|
||||||
|
|
||||||
handleDialogResult(result) {
|
|
||||||
if (result.action === "confirm") {
|
|
||||||
return new Promise((resolve) => {
|
|
||||||
this.recordGive(result.contact?.did, result.description, result.hours);
|
|
||||||
resolve();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
// action was not "confirm" so do nothing
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param giverDid may be null
|
|
||||||
* @param description may be an empty string
|
|
||||||
* @param hours may be 0
|
|
||||||
*/
|
|
||||||
async recordGive(giverDid, description, hours) {
|
|
||||||
if (!this.activeDid) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "You must select an identity before you can record a give.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!description && !hours) {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "You must enter a description or some number of hours.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const identity = await this.getIdentity(this.activeDid);
|
|
||||||
const result = await createAndSubmitGive(
|
|
||||||
this.axios,
|
|
||||||
this.apiServer,
|
|
||||||
identity,
|
|
||||||
giverDid,
|
|
||||||
this.activeDid,
|
|
||||||
description,
|
|
||||||
hours,
|
|
||||||
this.projectId,
|
|
||||||
);
|
|
||||||
|
|
||||||
if (result.status !== 201 || result.data?.error) {
|
|
||||||
console.log("Error with give result:", result);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text:
|
|
||||||
result.data?.error?.message ||
|
|
||||||
"There was an error recording the give.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "success",
|
|
||||||
title: "Success",
|
|
||||||
text: "That gift was recorded.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.log("Error with give caught:", e);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text:
|
|
||||||
e.userMessage ||
|
|
||||||
e.response?.data?.error?.message ||
|
|
||||||
"There was an error recording the give.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,245 +0,0 @@
|
|||||||
<template>
|
|
||||||
<QuickNav selected="Projects"></QuickNav>
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<!-- Heading -->
|
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
|
||||||
Your Plans
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<!-- Quick Search -->
|
|
||||||
|
|
||||||
<div id="QuickSearch" class="mb-4 flex">
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
placeholder="Search…"
|
|
||||||
class="block w-full rounded-l border border-r-0 border-slate-400 px-3 py-2"
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
class="px-4 rounded-r bg-slate-200 border border-l-0 border-slate-400"
|
|
||||||
>
|
|
||||||
<fa icon="magnifying-glass" class="fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- New Project -->
|
|
||||||
<button
|
|
||||||
class="fixed right-6 bottom-24 text-center text-4xl leading-none bg-blue-600 text-white w-14 py-2.5 rounded-full"
|
|
||||||
@click="onClickNewProject()"
|
|
||||||
>
|
|
||||||
<fa icon="plus" class="fa-fw"></fa>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<!-- Loading Animation -->
|
|
||||||
<div
|
|
||||||
class="fixed left-6 bottom-24 text-center text-4xl leading-none bg-slate-400 text-white w-14 py-2.5 rounded-full"
|
|
||||||
v-if="isLoading"
|
|
||||||
>
|
|
||||||
<fa icon="spinner" class="fa-spin-pulse"></fa>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Results List -->
|
|
||||||
<InfiniteScroll @reached-bottom="loadMoreData">
|
|
||||||
<ul class="border-t border-slate-300">
|
|
||||||
<li
|
|
||||||
class="border-b border-slate-300"
|
|
||||||
v-for="project in projects"
|
|
||||||
:key="project.handleId"
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
@click="onClickLoadProject(project.handleId)"
|
|
||||||
class="block py-4 flex gap-4"
|
|
||||||
>
|
|
||||||
<div class="flex-none w-12">
|
|
||||||
<img
|
|
||||||
src="https://picsum.photos/200/200?random=1"
|
|
||||||
class="w-full rounded"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="grow overflow-hidden">
|
|
||||||
<h2 class="text-base font-semibold">{{ project.name }}</h2>
|
|
||||||
<div class="text-sm truncate">
|
|
||||||
{{ project.description }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</InfiniteScroll>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import { accountsDB, db } from "@/db";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import { accessToken } from "@/libs/crypto";
|
|
||||||
import { IIdentifier } from "@veramo/core";
|
|
||||||
import InfiniteScroll from "@/components/InfiniteScroll";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
components: { InfiniteScroll, AlertMessage, QuickNav },
|
|
||||||
})
|
|
||||||
export default class ProjectsView extends Vue {
|
|
||||||
apiServer = "";
|
|
||||||
projects: ProjectData[] = [];
|
|
||||||
current: IIdentifier;
|
|
||||||
isLoading = false;
|
|
||||||
alertTitle = "";
|
|
||||||
alertMessage = "";
|
|
||||||
numAccounts = 0;
|
|
||||||
|
|
||||||
async beforeCreate() {
|
|
||||||
await accountsDB.open();
|
|
||||||
this.numAccounts = await accountsDB.accounts.count();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Core project data loader
|
|
||||||
* @param url the url used to fetch the data
|
|
||||||
* @param token Authorization token
|
|
||||||
**/
|
|
||||||
async dataLoader(url: string, token: string) {
|
|
||||||
const headers: { [key: string]: string } = {
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
Authorization: `Bearer ${token}`,
|
|
||||||
};
|
|
||||||
|
|
||||||
try {
|
|
||||||
this.isLoading = true;
|
|
||||||
const resp = await this.axios.get(url, { headers });
|
|
||||||
if (resp.status === 200 || !resp.data.data) {
|
|
||||||
const plans: ProjectData[] = resp.data.data;
|
|
||||||
for (const plan of plans) {
|
|
||||||
const { name, description, handleId = plan.fullIri, rowid } = plan;
|
|
||||||
this.projects.push({ name, description, handleId, rowid });
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.log("Bad server response & data:", resp.status, resp.data);
|
|
||||||
throw Error("Failed to get projects from the server.");
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Got error loading projects:", error.message);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "Got an error loading projects: " + error.message,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} finally {
|
|
||||||
this.isLoading = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Data loader used by infinite scroller
|
|
||||||
* @param payload is the flag from the InfiniteScroll indicating if it should load
|
|
||||||
**/
|
|
||||||
async loadMoreData(payload: boolean) {
|
|
||||||
if (this.projects.length > 0 && payload) {
|
|
||||||
const latestProject = this.projects[this.projects.length - 1];
|
|
||||||
const url = `${this.apiServer}/api/v2/report/plansByIssuer?beforeId=${latestProject.rowid}`;
|
|
||||||
const token = await accessToken(this.current);
|
|
||||||
await this.dataLoader(url, token);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handle clicking on a project entry found in the list
|
|
||||||
* @param id of the project
|
|
||||||
**/
|
|
||||||
onClickLoadProject(id: string) {
|
|
||||||
localStorage.setItem("projectId", id);
|
|
||||||
const route = {
|
|
||||||
name: "project",
|
|
||||||
};
|
|
||||||
this.$router.push(route);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Load projects initially
|
|
||||||
* @param identity of the user
|
|
||||||
**/
|
|
||||||
async LoadProjects(identity: IIdentifier) {
|
|
||||||
const url = `${this.apiServer}/api/v2/report/plansByIssuer`;
|
|
||||||
const token: string = await accessToken(identity);
|
|
||||||
await this.dataLoader(url, token);
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getIdentity(activeDid) {
|
|
||||||
await accountsDB.open();
|
|
||||||
const account = await accountsDB.accounts
|
|
||||||
.where("did")
|
|
||||||
.equals(activeDid)
|
|
||||||
.first();
|
|
||||||
const identity = JSON.parse(account?.identity || "null");
|
|
||||||
|
|
||||||
if (!identity) {
|
|
||||||
throw new Error(
|
|
||||||
"Attempted to load project records with no identity available.",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return identity;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 'created' hook runs when the Vue instance is first created
|
|
||||||
**/
|
|
||||||
async created() {
|
|
||||||
try {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
const activeDid = settings?.activeDid || "";
|
|
||||||
this.apiServer = settings?.apiServer || "";
|
|
||||||
|
|
||||||
if (this.numAccounts === 0) {
|
|
||||||
console.error("No accounts found.");
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "You need an identity to load your projects.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
const identity = await this.getIdentity(activeDid);
|
|
||||||
this.current = identity;
|
|
||||||
this.LoadProjects(identity);
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
console.log("Error initializing:", err);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error",
|
|
||||||
text: "Something went wrong loading your projects.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handling clicking on the new project button
|
|
||||||
**/
|
|
||||||
onClickNewProject(): void {
|
|
||||||
localStorage.removeItem("projectId");
|
|
||||||
const route = {
|
|
||||||
name: "new-edit-project",
|
|
||||||
};
|
|
||||||
this.$router.push(route);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,91 +0,0 @@
|
|||||||
<template>
|
|
||||||
<QuickNav selected="Profile"></QuickNav>
|
|
||||||
<!-- CONTENT -->
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<!-- Heading -->
|
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
|
||||||
Seed Backup
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<div class="flex justify-between py-2">
|
|
||||||
<span />
|
|
||||||
<span>
|
|
||||||
<router-link
|
|
||||||
:to="{ name: 'help' }"
|
|
||||||
class="text-xs uppercase bg-blue-500 text-white px-1.5 py-1 rounded-md ml-1"
|
|
||||||
>
|
|
||||||
Help
|
|
||||||
</router-link>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-if="activeAccount">
|
|
||||||
<p>
|
|
||||||
BEWARE: Anyone who gets hold of this mnemonic seed phrase will be able
|
|
||||||
impersonate you and take over any digital holdings based on it. So only
|
|
||||||
reveal it when you are in a private place out of sight of other eyes,
|
|
||||||
and only record it in something private -- don't take a screenshot or
|
|
||||||
send it to any online service.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<button
|
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
|
||||||
@click="showSeedPhrase"
|
|
||||||
>
|
|
||||||
Click here when you're ready to see it.
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<p v-if="showSeed">{{ activeAccount.mnemonic }}</p>
|
|
||||||
</div>
|
|
||||||
<div v-else>You do not have an active identity.</div>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import { accountsDB, db } from "@/db";
|
|
||||||
import * as R from "ramda";
|
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
@Component({ components: { AlertMessage, QuickNav } })
|
|
||||||
export default class SeedBackupView extends Vue {
|
|
||||||
activeAccount = null;
|
|
||||||
showSeed = false;
|
|
||||||
alertMessage = "";
|
|
||||||
alertTitle = "";
|
|
||||||
|
|
||||||
// 'created' hook runs when the Vue instance is first created
|
|
||||||
async created() {
|
|
||||||
try {
|
|
||||||
await db.open();
|
|
||||||
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
||||||
const activeDid = settings?.activeDid || "";
|
|
||||||
|
|
||||||
await accountsDB.open();
|
|
||||||
const accounts = await accountsDB.accounts.toArray();
|
|
||||||
this.activeAccount = R.find((acc) => acc.did === activeDid, accounts);
|
|
||||||
} catch (err) {
|
|
||||||
console.error("Got an error loading an identity:", err);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Error Loading Account",
|
|
||||||
text: "Got an error loading your seed data.",
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
showSeedPhrase() {
|
|
||||||
this.showSeed = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -12,34 +12,26 @@
|
|||||||
<p class="text-center text-xl mb-4 font-light">
|
<p class="text-center text-xl mb-4 font-light">
|
||||||
Do you already have an identity to import?
|
Do you already have an identity to import?
|
||||||
</p>
|
</p>
|
||||||
<a
|
<router-link
|
||||||
@click="onClickYes()"
|
:to="{ name: 'new-edit-account' }"
|
||||||
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
class="block w-full text-center text-lg font-bold uppercase bg-blue-600 text-white px-2 py-3 rounded-md mb-2"
|
||||||
>
|
>
|
||||||
No
|
No
|
||||||
</a>
|
</router-link>
|
||||||
<a
|
<router-link
|
||||||
@click="onClickNo()"
|
:to="{ name: 'import-account' }"
|
||||||
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
class="block w-full text-center text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md"
|
||||||
>Yes</a
|
>Yes</router-link
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
@Component({
|
@Options({
|
||||||
components: {},
|
components: {},
|
||||||
})
|
})
|
||||||
export default class StartView extends Vue {
|
export default class StartView extends Vue {}
|
||||||
public onClickYes() {
|
|
||||||
this.$router.push({ name: "new-identifier" });
|
|
||||||
}
|
|
||||||
|
|
||||||
public onClickNo() {
|
|
||||||
this.$router.push({ name: "import-account" });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -1,110 +0,0 @@
|
|||||||
<template>
|
|
||||||
<QuickNav selected="Profile"></QuickNav>
|
|
||||||
<!-- CONTENT -->
|
|
||||||
<section id="Content" class="p-6 pb-24">
|
|
||||||
<!-- Heading -->
|
|
||||||
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
|
||||||
Achievements & Statistics
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
Here is a view of the activity you can see.
|
|
||||||
<ul class="list-disc list-inside">
|
|
||||||
<li>Each identity and claim has a unique position.</li>
|
|
||||||
<!-- eslint-disable prettier/prettier --><!-- If we format prettier then there is extra space at the start of the line. -->
|
|
||||||
<li>Each will show at their time of appearance relative to all others.</li>
|
|
||||||
<li>Note that the ones on the left and right edges are randomized
|
|
||||||
because their data isn't all visible to you.
|
|
||||||
</li>
|
|
||||||
<!-- eslint-enable -->
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="mt-3">
|
|
||||||
<div v-if="worldProperties.startTime">
|
|
||||||
<label>Time Range: </label>
|
|
||||||
{{ worldProperties.startTime }}
|
|
||||||
-
|
|
||||||
{{ worldProperties.endTime }}
|
|
||||||
</div>
|
|
||||||
<div v-if="worldProperties.animationDurationSeconds">
|
|
||||||
<label>Animation Time: </label>
|
|
||||||
{{ worldProperties.animationDurationSeconds }} seconds
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<button class="float-right" @click="captureGraphics()">Screenshot</button>
|
|
||||||
<div id="scene-container" class="h-screen"></div>
|
|
||||||
<AlertMessage
|
|
||||||
:alertTitle="alertTitle"
|
|
||||||
:alertMessage="alertMessage"
|
|
||||||
></AlertMessage>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
<script lang="ts">
|
|
||||||
import { SVGRenderer } from "three/addons/renderers/SVGRenderer.js";
|
|
||||||
import { Component, Vue } from "vue-facing-decorator";
|
|
||||||
import { World } from "@/components/World/World.js";
|
|
||||||
import AlertMessage from "@/components/AlertMessage";
|
|
||||||
import QuickNav from "@/components/QuickNav";
|
|
||||||
|
|
||||||
@Component({ components: { AlertMessage, World, QuickNav } })
|
|
||||||
export default class StatisticsView extends Vue {
|
|
||||||
world: World;
|
|
||||||
worldProperties: WorldProperties = {};
|
|
||||||
alertTitle = "";
|
|
||||||
alertMessage = "";
|
|
||||||
|
|
||||||
mounted() {
|
|
||||||
try {
|
|
||||||
const container = document.querySelector("#scene-container");
|
|
||||||
const newWorld = new World(container, this);
|
|
||||||
newWorld.start();
|
|
||||||
this.world = newWorld;
|
|
||||||
} catch (err) {
|
|
||||||
console.log(err);
|
|
||||||
this.$notify(
|
|
||||||
{
|
|
||||||
group: "alert",
|
|
||||||
type: "danger",
|
|
||||||
title: "Mounting Error",
|
|
||||||
text: err.message,
|
|
||||||
},
|
|
||||||
-1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public captureGraphics() {
|
|
||||||
/**
|
|
||||||
* This yields an SVG that only shows white and black highlights
|
|
||||||
// from https://stackoverflow.com/questions/27632621/exporting-from-three-js-scene-to-svg-or-other-vector-format
|
|
||||||
**/
|
|
||||||
const rendererSVG = new SVGRenderer();
|
|
||||||
rendererSVG.setSize(window.innerWidth, window.innerHeight);
|
|
||||||
rendererSVG.render(this.world.scene, this.world.camera);
|
|
||||||
ExportToSVG(rendererSVG, "test.svg");
|
|
||||||
}
|
|
||||||
|
|
||||||
public setWorldProperty(propertyName, propertyValue) {
|
|
||||||
this.worldProperties[propertyName] = propertyValue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function ExportToSVG(rendererSVG, filename) {
|
|
||||||
const XMLS = new XMLSerializer();
|
|
||||||
const svgfile = XMLS.serializeToString(rendererSVG.domElement);
|
|
||||||
const svgData = svgfile;
|
|
||||||
const preface = '<?xml version="1.0" standalone="no"?>\r\n';
|
|
||||||
const svgBlob = new Blob([preface, svgData], {
|
|
||||||
type: "image/svg+xml;charset=utf-8",
|
|
||||||
});
|
|
||||||
const svgUrl = URL.createObjectURL(svgBlob);
|
|
||||||
const downloadLink = document.createElement("a");
|
|
||||||
|
|
||||||
downloadLink.href = svgUrl;
|
|
||||||
downloadLink.download = filename;
|
|
||||||
document.body.appendChild(downloadLink);
|
|
||||||
downloadLink.click();
|
|
||||||
document.body.removeChild(downloadLink);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,15 +1,4 @@
|
|||||||
const { defineConfig } = require("@vue/cli-service");
|
const { defineConfig } = require("@vue/cli-service");
|
||||||
module.exports = defineConfig({
|
module.exports = defineConfig({
|
||||||
transpileDependencies: true,
|
transpileDependencies: true,
|
||||||
configureWebpack: {
|
|
||||||
devtool: "source-map",
|
|
||||||
experiments: {
|
|
||||||
topLevelAwait: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
pwa: {
|
|
||||||
iconPaths: {
|
|
||||||
faviconSVG: "img/icons/safari-pinned-tab.svg",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user