Merge branch 'build-improvement' of ssh://173.199.124.46:222/trent_larson/crowd-funder-for-time-pwa into build-improvement

This commit is contained in:
Matthew Raymer
2025-08-07 01:49:31 +00:00
3 changed files with 6 additions and 8 deletions

View File

@@ -126,15 +126,15 @@ export default class GiftedDialog extends Vue {
firstStep = true; // true = Step 1 (giver/recipient selection), false = Step 2 (amount/description) firstStep = true; // true = Step 1 (giver/recipient selection), false = Step 2 (amount/description)
giver?: libsUtil.GiverReceiverInputInfo; // undefined means no identified giver agent giver?: libsUtil.GiverReceiverInputInfo; // undefined means no identified giver agent
offerId = ""; offerId = "";
projects: PlanData[] = [];
prompt = ""; prompt = "";
receiver?: libsUtil.GiverReceiverInputInfo; receiver?: libsUtil.GiverReceiverInputInfo;
stepType = "giver";
unitCode = "HUR"; unitCode = "HUR";
visible = false; visible = false;
libsUtil = libsUtil; libsUtil = libsUtil;
projects: PlanData[] = [];
didInfo = didInfo; didInfo = didInfo;
// Computed property to help debug template logic // Computed property to help debug template logic
@@ -188,8 +188,6 @@ export default class GiftedDialog extends Vue {
return false; return false;
} }
stepType = "giver";
async open( async open(
giver?: libsUtil.GiverReceiverInputInfo, giver?: libsUtil.GiverReceiverInputInfo,
receiver?: libsUtil.GiverReceiverInputInfo, receiver?: libsUtil.GiverReceiverInputInfo,

View File

@@ -4,6 +4,6 @@ export interface UserProfile {
locLon?: number; locLon?: number;
locLat2?: number; locLat2?: number;
locLon2?: number; locLon2?: number;
issuerDid?: string; issuerDid: string;
rowId?: string; // set on profile retrieved from server rowId?: string; // set on profile retrieved from server
} }

View File

@@ -34,7 +34,7 @@ import { PlatformServiceFactory } from "../services/PlatformServiceFactory";
import { IIdentifier } from "@veramo/core"; import { IIdentifier } from "@veramo/core";
import { DEFAULT_ROOT_DERIVATION_PATH } from "./crypto"; import { DEFAULT_ROOT_DERIVATION_PATH } from "./crypto";
// Consolidate this with src/utils/PlatformServiceMixin._parseJsonField // Consolidate this with src/utils/PlatformServiceMixin.mapQueryResultToValues
function mapQueryResultToValues( function mapQueryResultToValues(
record: { columns: string[]; values: unknown[][] } | undefined, record: { columns: string[]; values: unknown[][] } | undefined,
): Array<Record<string, unknown>> { ): Array<Record<string, unknown>> {
@@ -57,10 +57,10 @@ async function getPlatformService() {
} }
export interface GiverReceiverInputInfo { export interface GiverReceiverInputInfo {
did?: string; did?: string; // only for people
name?: string; name?: string;
image?: string; image?: string;
handleId?: string; handleId?: string; // only for projects
} }
export enum OnboardPage { export enum OnboardPage {