PotLock frontend application built on NextJS featuring project exploration, pages, donations, and Pots (quadratic funding for now) on the NEAR Blockchain
The backlog to the NextJS App can be found at https://potlock.org/next-backlog
You can access BOS PotLock version using one of the environments below:
You can see original features https://potlock.notion.site/All-Features-Potlock-NextJS-App-5f543fa8b31840aa88bf5b8cf57ead3d?pvs=4
Core contracts can be found at https://github.com/PotLock/core Contract documentation: https://docs.potlock.io/contracts/contracts-overview
# using the right node version
nvm use;
# enable Yarn support
corepack enable;
# create config for environment variables
cp .env.example .env.local;
# if required, edit .env.local
# then run the development server ( dependencies will be installed automatically )
yarn dev
Open http://localhost:3000 in your browser.
Swagger docs: https://test-dev.potlock.io/api/schema/swagger-ui/#/
URI: http://ec2-100-27-57-47.compute-1.amazonaws.com/api/v1
Swagger UI: https://dev.potlock.io/api/schema/swagger-ui/#/
Provides explicit separation between abstract and business-logic-heavy parts of the codebase, for which it offers a highly modular approach, defining clear boundaries for different aspects of the application within each module:
[ src/ ]
│
├── global.d.ts <--- # Globally available type definitions
│
│
├── [ common ] <--- # Low-level foundation of the app, containing endpoint bindings,
│ │ # utility libraries, reusable primitives, and assets, used in layouts and
│ │ # business logic across the codebase. MUST NOT contain business logic by itself.
│ │ # AKA "shared" ( see link 2. )
│ │
│ ├── constants.ts <--- # Static reusable values, e.g.
│ │ export const NATIVE_TOKEN_ID = "near";
│ │ export const MAX_GAS = 100;
│ │
│ ├── [ api ] <--- # Basic network and data layer
│ │
│ ├── [ assets ] <--- # Globally used assets, e.g. images or icons
│ │
│ ├── [ contracts ] <--- # Smart contract services and interfaces
│ │
│ ├── [ hooks ] <--- # Shared React hooks for low-level functionalities
│ │
│ ├── [ lib ] <--- # Universal utilities, e.g. string manipulations,
│ │ # mathematic calculations, browser API bindings, etc.
│ │
│ └── [ ui ] <--- # Project UI kit
│ │
│ ├── [ components ] <--- # React components implementing UI design primitives
│ │
│ └── [ utils ] <--- # UI-specific utilities, like DOM manipulations
│ # or TailwindCSS class transformers
│
│
│
├── [ modules ] <--- # Business logic units broken down into categories. Simply put, this is
│ │ # a collection of directories that contain code implementing specific
│ │ # groups of app use cases and are named after functionalities they provide.
│ │
│ ...
│ │
│ │
│ ├── [ core ] <--- # Follows the same structure as any other module, but contains business logic,
│ │ # that is shared between all or some of the other modules
│ │
│ ├── [ profile ] <--- # A feature-specific module
│ │ │
│ │ ├── index.ts <--- # Module entry point for public exports ( available for external use )
│ │ │
│ │ ├── constants.ts <--- # Module-specific static reusable values, e.g.
│ │ │ export const PUBLIC_GOODS_REGISTRY_LIST_ID = 1
│ │ │
│ │ ├── models.ts <--- # Feature state definitions ( See link 3. )
│ │ │ # If this file grows over 300 LoC, consider turning it into a directory
│ │ │ # with the same name by applying code-splitting techniques.
│ │ │
│ │ ├── types.ts <--- # Module-specific shared types and interfaces
│ │ │
│ │ ├── [ components ] <--- # Feature-specific React components
│ │ │
│ │ ├── [ hooks ] <--- # Feature-specific React hooks
│ │ │
│ │ └── [ utils ] <--- # Feature-specific utilities, like value converters or validators
│ │
│ │
│ ├── ...
│ │
│ ...
│
│
│
├── [ pages ] <--- # Entry point of the application.
│ # Follows Nextjs Pages routing specification ( see link 1. )
│
│
│
└── [ store ] <--- # Shared application state root.
# Uses Rematch state management library, based on Redux.
We use Vitest testing framework coupled with React Testing Library to specifically target UI.
For details, please refer to the corresponding documentation resources:
All tests should be located in the _tests/
directory. ... for each specific page or group of use cases.
[ _tests/ ]
│
├── donation.tests.tsx <--- # Tests for donation scenarios
│
├── homepage.tests.tsx <--- # Tests for the homepage
│
...
│
└── test-env.tsx <--- # Testing environment setup
Execute all unit tests:
yarn test:unit
Run dev server for unit tests:
yarn dev:test