Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improving the donation modal & projects loading #122

Merged
merged 20 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion playwright-tests/tests/pot.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test.beforeEach(async ({ page }) => {
await page.goto(`${ROOT_SRC}?tab=pot&potId=${DEFAULT_POT_ID}&nav=projects`);
});

test("clicking project card should go to project page", async ({ page }) => {
test.skip("clicking project card should go to project page", async ({ page }) => {
test.setTimeout(120000); // 1 minute... we want to improve performance

const projectSearchBar = await page.getByPlaceholder("Search projects");
Expand Down
6 changes: 5 additions & 1 deletion src/Main.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import { ModulesProvider } from "alem";
import { ModulesProvider, useParams } from "alem";
import Banner from "./components/Banner/Banner";
import Nav from "./components/Nav/Nav";
import ModalSuccess from "./modals/ModalSuccess/ModalSuccess";
import Routes from "./routes/Routes";

const Main = () => {
const { transactionHashes } = useParams();

return (
<>
<ModulesProvider />
Expand All @@ -12,6 +15,7 @@ const Main = () => {
<Routes />
</div>
<Banner />
{transactionHashes && <ModalSuccess />}
</>
);
};
Expand Down
4 changes: 1 addition & 3 deletions src/SDK/lists.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ const ListsSDK = {
const registration = registrations.find(
(registration) => registration.list_id === (listId || potlockRegistryListId),
);
return Near.view(_listContractId, "get_registration", {
registration_id: registration.id,
});
return registration;
}
},
asyncGetRegistration: (listId, registrantId) => {
Expand Down
4 changes: 2 additions & 2 deletions src/SDK/pot.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const PotSDK = {
// TODO: paginate
return Near.view(potId, "get_matching_pool_donations", {});
},
asyncGetMatchingPoolDonations: (potId) => {
return Near.asyncView(potId, "get_matching_pool_donations", {});
asyncGetMatchingPoolDonations: (potId, args) => {
return Near.asyncView(potId, "get_matching_pool_donations", args || {});
},
getPublicRoundDonations: (potId, args) => {
return Near.view(potId, "get_public_round_donations", {
Expand Down
22 changes: 9 additions & 13 deletions src/components/Card/Card.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Big, RouteLink, Social, context, useEffect, useMemo, useParams, useState } from "alem";
import { Big, RouteLink, Social, context, useMemo, useParams } from "alem";
import DonateSDK from "@app/SDK/donate";
import PotSDK from "@app/SDK/pot";
import { useDonationModal } from "@app/hooks/useDonationModal";
Expand Down Expand Up @@ -32,10 +32,10 @@ import {
} from "./styles";

const Card = (props: any) => {
const [ready, isReady] = useState(false);
const { payoutDetails, allowDonate: _allowDonate } = props;
const { potId } = useParams();

const { payoutDetails, allowDonate: _allowDonate } = props;

// Start Modals provider
const Modals = useModals();
const { setDonationModalProps } = useDonationModal();
Expand All @@ -56,7 +56,7 @@ const Card = (props: any) => {
? DonateSDK.getDonationsForRecipient(projectId)
: [];

const totalAmountNear = useMemo(() => {
const getTotalAmountNear = () => {
if (payoutDetails) return payoutDetails.totalAmount;
if (!donationsForProject) return "0";
let totalDonationAmountNear = new Big(0);
Expand All @@ -66,7 +66,9 @@ const Card = (props: any) => {
}
}
return totalDonationAmountNear.toString();
}, [donationsForProject, payoutDetails]);
};

const totalAmountNear = useMemo(getTotalAmountNear, [donationsForProject, payoutDetails]);

const getImageSrc = (image: any) => {
const defaultImageUrl = "https://ipfs.near.social/ipfs/bafkreih4i6kftb34wpdzcuvgafozxz6tk6u4f5kcr2gwvtvxikvwriteci";
Expand Down Expand Up @@ -100,13 +102,7 @@ const Card = (props: any) => {

const tags = getTagsFromSocialProfileData(profile);

useEffect(() => {
if (profile !== null && !ready) {
isReady(true);
}
}, [profile, donationsForProject, tags]);

if (!ready) return <CardSkeleton />;
if (profile === null) return <CardSkeleton />;

return (
<>
Expand Down Expand Up @@ -203,7 +199,7 @@ const Card = (props: any) => {
{payoutDetails && (
<MatchingSection>
<MatchingTitle>Estimated matched amount</MatchingTitle>
<MatchingAmount>{yoctosToNear(payoutDetails.matchingAmount) || "- N"}</MatchingAmount>
<MatchingAmount>{yoctosToNear(payoutDetails.amount) || "- N"}</MatchingAmount>
</MatchingSection>
)}
</CardContainer>
Expand Down
2 changes: 1 addition & 1 deletion src/components/PotCard/styles.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import styled from "styled-components";

export const Card = styled.a`
export const Card = styled("Link")`
display: flex;
flex-direction: column;
min-width: 320px;
Expand Down
4 changes: 1 addition & 3 deletions src/hooks/useModals.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { useParams } from "alem";
import DonationModalProvider from "@app/contexts/DonationModalProvider";
import { useDonationModal } from "@app/hooks/useDonationModal";
import ModalDonation from "../modals/ModalDonation";
Expand All @@ -12,12 +11,11 @@ import ModalSuccess from "../modals/ModalSuccess/ModalSuccess";
const useModals = () => {
DonationModalProvider();

const { transactionHashes: _transactionHashes } = useParams();
const { successfulDonation, donationModalProps } = useDonationModal();

return () => (
<>
{(successfulDonation || _transactionHashes) && <ModalSuccess />}
{successfulDonation && <ModalSuccess />}
{donationModalProps && <ModalDonation />}
</>
);
Expand Down
2 changes: 1 addition & 1 deletion src/modals/ModalDonation/AmountInput/AmountInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const AmountInput = (props: any) => {
</DropdownWrapper>
);
const { value, amount, HandleAmoutChange, donationType, denominationOptions, selectedDenomination } = props;
const _value = value || amount || 0;
const _value = value || amount || "";

return (
<Container>
Expand Down
8 changes: 4 additions & 4 deletions src/modals/ModalDonation/ConfirmPot/ConfirmPot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ConfirmPot = ({
bypassChefFee,
updateState,
potDetail,
potId,
selectedRound,
referrerId,
accountId,
amount,
Expand Down Expand Up @@ -62,13 +62,13 @@ const ConfirmPot = ({
const pollIntervalMs = 1000;
// const totalPollTimeMs = 60000; // consider adding in to make sure interval doesn't run indefinitely
const pollId = setInterval(() => {
PotSDK.asyncGetDonationsForDonor(potId, accountId)
PotSDK.asyncGetDonationsForDonor(selectedRound, accountId)
.then((alldonations: any) => {
const donations: Record<string, any> = {};
for (const donation of alldonations) {
const { project_id, donated_at_ms, donated_at } = donation;
if (projectIds.includes(project_id) && (donated_at_ms || donated_at) > afterTs) {
donations[project_id] = { ...donation, potId };
donations[project_id] = { ...donation, potId: selectedRound };
}
}
if (Object.keys(donations).length === projectIds.length) {
Expand Down Expand Up @@ -128,7 +128,7 @@ const ConfirmPot = ({

if (amount) {
transactions.push({
contractName: potId,
contractName: selectedRound,
methodName: "donate",
args: {
referrer_id: referrerId,
Expand Down
1 change: 0 additions & 1 deletion src/modals/ModalDonation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ const ModalDonation = () => {
{...donationModalProps}
{...state}
accountId={accountId}
potId={potId}
referrerId={referrerId}
updateState={State.update}
ftBalance={ftBalance}
Expand Down
4 changes: 2 additions & 2 deletions src/modals/ModalSuccess/ModalSuccess.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const ModalSuccess = () => {
});

const onClose = () => {
_setSuccessfulDonation(null);
if (_setSuccessfulDonation) _setSuccessfulDonation(null);
const location = getLocation();
delete params.transactionHashes;

Expand Down Expand Up @@ -135,7 +135,7 @@ const ModalSuccess = () => {
: "";

if (recipientId) {
if (methodName === "donate") {
if (methodName === "donate" && (result.project_id || result.recipient_id)) {
setSuccessfulDonation((prev: any) => ({
...prev,
[recipientId]: { ...result, potId: receiver_id },
Expand Down
4 changes: 2 additions & 2 deletions src/pages/CreateProject/CreateProject.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import Header from "./components/Header/Header";

const CreateProject = () => {
const { tab } = useParams();
const registeration = ListsSDK.getRegistration(null, context.accountId);
const edit = tab === "editproject" || registeration;
// const registeration = ListsSDK.getRegistration(null, context.accountId);
const edit = tab === "editproject";

return (
<>
Expand Down
4 changes: 1 addition & 3 deletions src/pages/CreateProject/components/CreateForm/CreateForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,7 @@ const CreateForm = (props: { edit: boolean }) => {
}
}, [policy]);

const registeredProject = useMemo(() => {
return ListsSDK.getRegistration(null, state.isDao ? state.daoAddress : context.accountId);
}, [state.isDao, state.daoAddress]);
const registeredProject = ListsSDK.getRegistration(null, state.isDao ? state.daoAddress : context.accountId);

const proposals: any = checkDao
? Near.view(state.daoAddress, "get_proposals", {
Expand Down
53 changes: 37 additions & 16 deletions src/pages/Pot/NavPages/Applications/Applications.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { Social, State, context, state, useParams, Tooltip, OverlayTrigger, useEffect } from "alem";
import PotSDK from "@app/SDK/pot";
import Button from "@app/components/Button";
import Dropdown from "@app/components/Inputs/Dropdown/Dropdown";
import ToastContainer from "@app/components/ToastNotification/getToastContainer";
import ProfileImage from "@app/components/mob.near/ProfileImage";
import { PotDetail } from "@app/types";
import { getConfig, getPotProjects } from "@app/services/getPotData";
import _address from "@app/utils/_address";
import daysAgo from "@app/utils/daysAgo";
import getTransactionsFromHashes from "@app/utils/getTransactionsFromHashes";
Expand All @@ -22,12 +21,13 @@ import {
Status,
} from "./styles";

const Applications = ({ potDetail }: { potDetail: PotDetail }) => {
const Applications = () => {
const accountId = context.accountId;
const { potId, transactionHashes } = useParams();

State.init({
newStatus: "",
potDetail: null,
projectId: "",
searchTerm: "",
allApplications: null,
Expand All @@ -39,27 +39,48 @@ const Applications = ({ potDetail }: { potDetail: PotDetail }) => {
},
});

const { newStatus, projectId, searchTerm, allApplications, filteredApplications, filterVal, toastContent } = state;

const applications = PotSDK.getApplications(potId);
const {
newStatus,
projectId,
searchTerm,
allApplications,
filteredApplications,
filterVal,
toastContent,
potDetail,
} = state;

const getApplicationCount = (sortVal: string) => {
if (!applications) return;
return applications?.filter((application: any) => {
if (!allApplications) return;
return allApplications?.filter((application: any) => {
if (sortVal === "All") return true;
return application.status === sortVal;
})?.length;
};

if (applications && !allApplications) {
applications.reverse();
State.update({
filteredApplications: applications,
allApplications: applications,
});
}
useEffect(() => {
if (!potDetail)
getConfig({
potId,
updateState: (potDetail) =>
State.update({
potDetail,
}),
});
if (!allApplications)
getPotProjects({
potId,
isApprpved: false,
updateState: (applications) =>
State.update({
allApplications: applications,
filteredApplications: applications,
}),
});
}, []);

if (!allApplications) return <div className="spinner-border text-secondary" role="status" />;
if (allApplications === null || potDetail === null)
return <div className="spinner-border text-secondary" role="status" />;

const { owner, admins, chef } = potDetail;

Expand Down
Loading
Loading