Compare commits
9 Commits
main
...
zach/fixes
Author | SHA1 | Date | |
---|---|---|---|
1511f474ff | |||
c2e847a9e4 | |||
|
a1fc4447e8 | ||
a22d73b2db | |||
c8183ba355 | |||
1cb7c5a1f4 | |||
f50f4b9a4d | |||
017d773d81 | |||
284721234b |
@ -1,61 +0,0 @@
|
|||||||
name: Deploy Snowball frontend
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
env:
|
|
||||||
REGISTRY_USER_KEY: ${{ secrets.REGISTRY_USER_KEY }}
|
|
||||||
REGISTRY_BOND_ID: ${{ secrets.REGISTRY_BOND_ID }}
|
|
||||||
DEPLOYER_LRN: lrn://vaasl-provider/deployers/webapp-deployer-api.apps.vaasl.io
|
|
||||||
AUTHORITY: laconic-deploy
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
node-version: [20.x]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Check out repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
|
||||||
uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version: ${{ matrix.node-version }}
|
|
||||||
|
|
||||||
- name: Download yarn
|
|
||||||
run: |
|
|
||||||
curl -fsSL -o /usr/local/bin/yarn https://github.com/yarnpkg/yarn/releases/download/v1.22.21/yarn-1.22.21.js
|
|
||||||
chmod +x /usr/local/bin/yarn
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
yarn install
|
|
||||||
|
|
||||||
- name: Set up environment
|
|
||||||
run: |
|
|
||||||
# Create a .env file with the necessary variables
|
|
||||||
echo "REGISTRY_BOND_ID=$REGISTRY_BOND_ID" > packages/deployer/.env
|
|
||||||
echo "DEPLOYER_LRN=$DEPLOYER_LRN" >> packages/deployer/.env
|
|
||||||
echo "AUTHORITY=$AUTHORITY" >> packages/deployer/.env
|
|
||||||
|
|
||||||
# Create a config file with necessary endpoints and secrets
|
|
||||||
cat > packages/deployer/config.yml <<EOF
|
|
||||||
services:
|
|
||||||
registry:
|
|
||||||
rpcEndpoint: https://laconicd-sapo.laconic.com
|
|
||||||
gqlEndpoint: https://laconicd-sapo.laconic.com/api
|
|
||||||
userKey: $REGISTRY_USER_KEY
|
|
||||||
bondId: $REGISTRY_BOND_ID
|
|
||||||
chainId: laconic-testnet-2
|
|
||||||
gasPrice: 0.001alnt
|
|
||||||
EOF
|
|
||||||
|
|
||||||
- name: Run deploy script
|
|
||||||
run: |
|
|
||||||
cd packages/deployer
|
|
||||||
./deploy-frontend.sh
|
|
@ -14,13 +14,13 @@ VITE_SERVER_URL = 'LACONIC_HOSTED_CONFIG_server_url'
|
|||||||
VITE_GITHUB_CLIENT_ID = 'LACONIC_HOSTED_CONFIG_github_clientid'
|
VITE_GITHUB_CLIENT_ID = 'LACONIC_HOSTED_CONFIG_github_clientid'
|
||||||
VITE_GITHUB_PWA_TEMPLATE_REPO = 'LACONIC_HOSTED_CONFIG_github_pwa_templaterepo'
|
VITE_GITHUB_PWA_TEMPLATE_REPO = 'LACONIC_HOSTED_CONFIG_github_pwa_templaterepo'
|
||||||
VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO = 'LACONIC_HOSTED_CONFIG_github_image_upload_templaterepo'
|
VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO = 'LACONIC_HOSTED_CONFIG_github_image_upload_templaterepo'
|
||||||
VITE_GITHUB_NEXT_APP_TEMPLATE_REPO = 'LACONIC_HOSTED_CONFIG_github_next_app_templaterepo'
|
VITE_WALLET_CONNECT_ID = 'LACONIC_HOSTED_CONFIG_wallet_connect_id'
|
||||||
VITE_LACONICD_CHAIN_ID = 'LACONIC_HOSTED_CONFIG_laconicd_chain_id'
|
VITE_LACONICD_CHAIN_ID = 'LACONIC_HOSTED_CONFIG_laconicd_chain_id'
|
||||||
VITE_WALLET_IFRAME_URL = 'LACONIC_HOSTED_CONFIG_wallet_iframe_url'
|
|
||||||
VITE_LIT_RELAY_API_KEY = 'LACONIC_HOSTED_CONFIG_lit_relay_api_key'
|
VITE_LIT_RELAY_API_KEY = 'LACONIC_HOSTED_CONFIG_lit_relay_api_key'
|
||||||
VITE_BUGSNAG_API_KEY = 'LACONIC_HOSTED_CONFIG_bugsnag_api_key'
|
VITE_BUGSNAG_API_KEY = 'LACONIC_HOSTED_CONFIG_bugsnag_api_key'
|
||||||
VITE_PASSKEY_WALLET_RPID = 'LACONIC_HOSTED_CONFIG_passkey_wallet_rpid'
|
VITE_PASSKEY_WALLET_RPID = 'LACONIC_HOSTED_CONFIG_passkey_wallet_rpid'
|
||||||
VITE_TURNKEY_API_BASE_URL = 'LACONIC_HOSTED_CONFIG_turnkey_api_base_url'
|
VITE_TURNKEY_API_BASE_URL = 'LACONIC_HOSTED_CONFIG_turnkey_api_base_url'
|
||||||
|
VITE_TURNKEY_ORGANIZATION_ID = 'LACONIC_HOSTED_CONFIG_turnkey_organization_id'
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
yarn || exit 1
|
yarn || exit 1
|
||||||
|
@ -27,7 +27,6 @@
|
|||||||
"nanoid": "3",
|
"nanoid": "3",
|
||||||
"nanoid-dictionary": "^5.0.0-beta.1",
|
"nanoid-dictionary": "^5.0.0-beta.1",
|
||||||
"octokit": "^3.1.2",
|
"octokit": "^3.1.2",
|
||||||
"openpgp": "^6.0.1",
|
|
||||||
"reflect-metadata": "^0.2.1",
|
"reflect-metadata": "^0.2.1",
|
||||||
"semver": "^7.6.0",
|
"semver": "^7.6.0",
|
||||||
"toml": "^3.0.0",
|
"toml": "^3.0.0",
|
||||||
|
@ -17,14 +17,13 @@ import { DatabaseConfig } from './config';
|
|||||||
import { User } from './entity/User';
|
import { User } from './entity/User';
|
||||||
import { Organization } from './entity/Organization';
|
import { Organization } from './entity/Organization';
|
||||||
import { Project } from './entity/Project';
|
import { Project } from './entity/Project';
|
||||||
import { Deployment, DeploymentStatus } from './entity/Deployment';
|
import { Deployment } from './entity/Deployment';
|
||||||
import { ProjectMember } from './entity/ProjectMember';
|
import { ProjectMember } from './entity/ProjectMember';
|
||||||
import { EnvironmentVariable } from './entity/EnvironmentVariable';
|
import { EnvironmentVariable } from './entity/EnvironmentVariable';
|
||||||
import { Domain } from './entity/Domain';
|
import { Domain } from './entity/Domain';
|
||||||
import { getEntities, loadAndSaveData } from './utils';
|
import { getEntities, loadAndSaveData } from './utils';
|
||||||
import { UserOrganization } from './entity/UserOrganization';
|
import { UserOrganization } from './entity/UserOrganization';
|
||||||
import { Deployer } from './entity/Deployer';
|
import { Deployer } from './entity/Deployer';
|
||||||
import { DNSRecordAttributes } from './types';
|
|
||||||
|
|
||||||
const ORGANIZATION_DATA_PATH = '../test/fixtures/organizations.json';
|
const ORGANIZATION_DATA_PATH = '../test/fixtures/organizations.json';
|
||||||
|
|
||||||
@ -50,25 +49,12 @@ export class Database {
|
|||||||
await this.dataSource.initialize();
|
await this.dataSource.initialize();
|
||||||
log('database initialized');
|
log('database initialized');
|
||||||
|
|
||||||
let organizations = await this.getOrganizations({});
|
const organizations = await this.getOrganizations({});
|
||||||
|
|
||||||
// Load an organization if none exist
|
// Load an organization if none exist
|
||||||
if (!organizations.length) {
|
if (!organizations.length) {
|
||||||
const orgEntities = await getEntities(path.resolve(__dirname, ORGANIZATION_DATA_PATH));
|
const orgEntities = await getEntities(path.resolve(__dirname, ORGANIZATION_DATA_PATH));
|
||||||
organizations = await loadAndSaveData(Organization, this.dataSource, [orgEntities[0]]);
|
await loadAndSaveData(Organization, this.dataSource, [orgEntities[0]]);
|
||||||
}
|
|
||||||
|
|
||||||
// Hotfix for updating old DB data
|
|
||||||
if (organizations[0].slug === 'snowball-tools-1') {
|
|
||||||
const [orgEntity] = await getEntities(path.resolve(__dirname, ORGANIZATION_DATA_PATH));
|
|
||||||
|
|
||||||
await this.updateOrganization(
|
|
||||||
organizations[0].id,
|
|
||||||
{
|
|
||||||
slug: orgEntity.slug as string,
|
|
||||||
name: orgEntity.name as string
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -135,14 +121,6 @@ export class Database {
|
|||||||
return newUserOrganization;
|
return newUserOrganization;
|
||||||
}
|
}
|
||||||
|
|
||||||
async updateOrganization(organizationId: string, data: DeepPartial<Organization>): Promise<boolean> {
|
|
||||||
const organizationRepository = this.dataSource.getRepository(Organization);
|
|
||||||
const updateResult = await organizationRepository.update({ id: organizationId }, data);
|
|
||||||
assert(updateResult.affected);
|
|
||||||
|
|
||||||
return updateResult.affected > 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
async getProjects(options: FindManyOptions<Project>): Promise<Project[]> {
|
async getProjects(options: FindManyOptions<Project>): Promise<Project[]> {
|
||||||
const projectRepository = this.dataSource.getRepository(Project);
|
const projectRepository = this.dataSource.getRepository(Project);
|
||||||
const projects = await projectRepository.find(options);
|
const projects = await projectRepository.find(options);
|
||||||
@ -158,9 +136,10 @@ export class Database {
|
|||||||
.leftJoinAndSelect(
|
.leftJoinAndSelect(
|
||||||
'project.deployments',
|
'project.deployments',
|
||||||
'deployments',
|
'deployments',
|
||||||
'deployments.isCurrent = true AND deployments.isCanonical = true'
|
'deployments.isCurrent = true'
|
||||||
)
|
)
|
||||||
.leftJoinAndSelect('deployments.createdBy', 'user')
|
.leftJoinAndSelect('deployments.createdBy', 'user')
|
||||||
|
.leftJoinAndSelect('deployments.domain', 'domain')
|
||||||
.leftJoinAndSelect('deployments.deployer', 'deployer')
|
.leftJoinAndSelect('deployments.deployer', 'deployer')
|
||||||
.leftJoinAndSelect('project.owner', 'owner')
|
.leftJoinAndSelect('project.owner', 'owner')
|
||||||
.leftJoinAndSelect('project.deployers', 'deployers')
|
.leftJoinAndSelect('project.deployers', 'deployers')
|
||||||
@ -202,8 +181,9 @@ export class Database {
|
|||||||
.leftJoinAndSelect(
|
.leftJoinAndSelect(
|
||||||
'project.deployments',
|
'project.deployments',
|
||||||
'deployments',
|
'deployments',
|
||||||
'deployments.isCurrent = true AND deployments.isCanonical = true'
|
'deployments.isCurrent = true'
|
||||||
)
|
)
|
||||||
|
.leftJoinAndSelect('deployments.domain', 'domain')
|
||||||
.leftJoin('project.projectMembers', 'projectMembers')
|
.leftJoin('project.projectMembers', 'projectMembers')
|
||||||
.leftJoin('project.organization', 'organization')
|
.leftJoin('project.organization', 'organization')
|
||||||
.where(
|
.where(
|
||||||
@ -234,6 +214,7 @@ export class Database {
|
|||||||
return this.getDeployments({
|
return this.getDeployments({
|
||||||
relations: {
|
relations: {
|
||||||
project: true,
|
project: true,
|
||||||
|
domain: true,
|
||||||
createdBy: true,
|
createdBy: true,
|
||||||
deployer: true,
|
deployer: true,
|
||||||
},
|
},
|
||||||
@ -248,25 +229,6 @@ export class Database {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async getNonCanonicalDeploymentsByProjectId(projectId: string): Promise<Deployment[]> {
|
|
||||||
return this.getDeployments({
|
|
||||||
relations: {
|
|
||||||
project: true,
|
|
||||||
createdBy: true,
|
|
||||||
deployer: true,
|
|
||||||
},
|
|
||||||
where: {
|
|
||||||
project: {
|
|
||||||
id: projectId
|
|
||||||
},
|
|
||||||
isCanonical: false
|
|
||||||
},
|
|
||||||
order: {
|
|
||||||
createdAt: 'DESC'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async getDeployment(
|
async getDeployment(
|
||||||
options: FindOneOptions<Deployment>
|
options: FindOneOptions<Deployment>
|
||||||
): Promise<Deployment | null> {
|
): Promise<Deployment | null> {
|
||||||
@ -619,49 +581,6 @@ export class Database {
|
|||||||
return domains;
|
return domains;
|
||||||
}
|
}
|
||||||
|
|
||||||
async getOldestDomainByProjectId(
|
|
||||||
projectId: string,
|
|
||||||
): Promise<Domain | null> {
|
|
||||||
const domainRepository = this.dataSource.getRepository(Domain);
|
|
||||||
|
|
||||||
const domain = await domainRepository.findOne({
|
|
||||||
where: {
|
|
||||||
project: {
|
|
||||||
id: projectId
|
|
||||||
},
|
|
||||||
},
|
|
||||||
order: {
|
|
||||||
createdAt: 'ASC'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return domain;
|
|
||||||
}
|
|
||||||
|
|
||||||
async getLatestDNSRecordByProjectId(
|
|
||||||
projectId: string,
|
|
||||||
): Promise<DNSRecordAttributes | null> {
|
|
||||||
const deploymentRepository = this.dataSource.getRepository(Deployment);
|
|
||||||
|
|
||||||
const deployment = await deploymentRepository.findOne({
|
|
||||||
where: {
|
|
||||||
project: {
|
|
||||||
id: projectId,
|
|
||||||
},
|
|
||||||
status: DeploymentStatus.Ready,
|
|
||||||
},
|
|
||||||
order: {
|
|
||||||
createdAt: 'DESC'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (deployment === null) {
|
|
||||||
throw new Error(`No deployment found for project ${projectId}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
return deployment.dnsRecordData;
|
|
||||||
}
|
|
||||||
|
|
||||||
async addDeployer(data: DeepPartial<Deployer>): Promise<Deployer> {
|
async addDeployer(data: DeepPartial<Deployer>): Promise<Deployer> {
|
||||||
const deployerRepository = this.dataSource.getRepository(Deployer);
|
const deployerRepository = this.dataSource.getRepository(Deployer);
|
||||||
const newDomain = await deployerRepository.save(data);
|
const newDomain = await deployerRepository.save(data);
|
||||||
|
@ -15,9 +15,6 @@ export class Deployer {
|
|||||||
@Column('varchar')
|
@Column('varchar')
|
||||||
baseDomain!: string;
|
baseDomain!: string;
|
||||||
|
|
||||||
@Column('varchar', { nullable: true})
|
|
||||||
publicKey!: string | null;
|
|
||||||
|
|
||||||
@Column('varchar', { nullable: true })
|
@Column('varchar', { nullable: true })
|
||||||
minimumPayment!: string | null;
|
minimumPayment!: string | null;
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import { Project } from './Project';
|
|||||||
import { Domain } from './Domain';
|
import { Domain } from './Domain';
|
||||||
import { User } from './User';
|
import { User } from './User';
|
||||||
import { Deployer } from './Deployer';
|
import { Deployer } from './Deployer';
|
||||||
import { AppDeploymentRecordAttributes, AppDeploymentRemovalRecordAttributes, DNSRecordAttributes } from '../types';
|
import { AppDeploymentRecordAttributes, AppDeploymentRemovalRecordAttributes } from '../types';
|
||||||
|
|
||||||
export enum Environment {
|
export enum Environment {
|
||||||
Production = 'Production',
|
Production = 'Production',
|
||||||
@ -39,7 +39,6 @@ export interface ApplicationDeploymentRequest {
|
|||||||
config: string;
|
config: string;
|
||||||
meta: string;
|
meta: string;
|
||||||
payment?: string;
|
payment?: string;
|
||||||
dns?: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ApplicationDeploymentRemovalRequest {
|
export interface ApplicationDeploymentRemovalRequest {
|
||||||
@ -78,6 +77,13 @@ export class Deployment {
|
|||||||
@JoinColumn({ name: 'projectId' })
|
@JoinColumn({ name: 'projectId' })
|
||||||
project!: Project;
|
project!: Project;
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
domainId!: string | null;
|
||||||
|
|
||||||
|
@OneToOne(() => Domain)
|
||||||
|
@JoinColumn({ name: 'domainId' })
|
||||||
|
domain!: Domain | null;
|
||||||
|
|
||||||
@Column('varchar')
|
@Column('varchar')
|
||||||
branch!: string;
|
branch!: string;
|
||||||
|
|
||||||
@ -120,9 +126,6 @@ export class Deployment {
|
|||||||
@Column('simple-json', { nullable: true })
|
@Column('simple-json', { nullable: true })
|
||||||
applicationDeploymentRemovalRecordData!: AppDeploymentRemovalRecordAttributes | null;
|
applicationDeploymentRemovalRecordData!: AppDeploymentRemovalRecordAttributes | null;
|
||||||
|
|
||||||
@Column('simple-json', { nullable: true })
|
|
||||||
dnsRecordData!: DNSRecordAttributes | null;
|
|
||||||
|
|
||||||
@ManyToOne(() => Deployer)
|
@ManyToOne(() => Deployer)
|
||||||
@JoinColumn({ name: 'deployerLrn' })
|
@JoinColumn({ name: 'deployerLrn' })
|
||||||
deployer!: Deployer;
|
deployer!: Deployer;
|
||||||
@ -135,9 +138,6 @@ export class Deployment {
|
|||||||
@Column('boolean', { default: false })
|
@Column('boolean', { default: false })
|
||||||
isCurrent!: boolean;
|
isCurrent!: boolean;
|
||||||
|
|
||||||
@Column('boolean', { default: false })
|
|
||||||
isCanonical!: boolean;
|
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
enum: DeploymentStatus
|
enum: DeploymentStatus
|
||||||
})
|
})
|
||||||
|
@ -4,7 +4,6 @@ import { DateTime } from 'luxon';
|
|||||||
import { Octokit } from 'octokit';
|
import { Octokit } from 'octokit';
|
||||||
import { inc as semverInc } from 'semver';
|
import { inc as semverInc } from 'semver';
|
||||||
import { DeepPartial } from 'typeorm';
|
import { DeepPartial } from 'typeorm';
|
||||||
import * as openpgp from 'openpgp';
|
|
||||||
|
|
||||||
import { Account, DEFAULT_GAS_ESTIMATION_MULTIPLIER, Registry as LaconicRegistry, getGasPrice, parseGasAndFees } from '@cerc-io/registry-sdk';
|
import { Account, DEFAULT_GAS_ESTIMATION_MULTIPLIER, Registry as LaconicRegistry, getGasPrice, parseGasAndFees } from '@cerc-io/registry-sdk';
|
||||||
import { DeliverTxResponse, IndexedTx } from '@cosmjs/stargate';
|
import { DeliverTxResponse, IndexedTx } from '@cosmjs/stargate';
|
||||||
@ -16,7 +15,7 @@ import {
|
|||||||
ApplicationDeploymentRequest,
|
ApplicationDeploymentRequest,
|
||||||
ApplicationDeploymentRemovalRequest
|
ApplicationDeploymentRemovalRequest
|
||||||
} from './entity/Deployment';
|
} from './entity/Deployment';
|
||||||
import { AppDeploymentRecord, AppDeploymentRemovalRecord, AuctionParams, DeployerRecord, RegistryRecord } from './types';
|
import { AppDeploymentRecord, AppDeploymentRemovalRecord, AuctionParams, DeployerRecord } from './types';
|
||||||
import { getConfig, getRepoDetails, registryTransactionWithRetry, sleep } from './utils';
|
import { getConfig, getRepoDetails, registryTransactionWithRetry, sleep } from './utils';
|
||||||
|
|
||||||
const log = debug('snowball:registry');
|
const log = debug('snowball:registry');
|
||||||
@ -27,7 +26,7 @@ const APP_DEPLOYMENT_REQUEST_TYPE = 'ApplicationDeploymentRequest';
|
|||||||
const APP_DEPLOYMENT_REMOVAL_REQUEST_TYPE = 'ApplicationDeploymentRemovalRequest';
|
const APP_DEPLOYMENT_REMOVAL_REQUEST_TYPE = 'ApplicationDeploymentRemovalRequest';
|
||||||
const APP_DEPLOYMENT_RECORD_TYPE = 'ApplicationDeploymentRecord';
|
const APP_DEPLOYMENT_RECORD_TYPE = 'ApplicationDeploymentRecord';
|
||||||
const APP_DEPLOYMENT_REMOVAL_RECORD_TYPE = 'ApplicationDeploymentRemovalRecord';
|
const APP_DEPLOYMENT_REMOVAL_RECORD_TYPE = 'ApplicationDeploymentRemovalRecord';
|
||||||
const WEBAPP_DEPLOYER_RECORD_TYPE = 'WebappDeployer';
|
const WEBAPP_DEPLOYER_RECORD_TYPE = 'WebappDeployer'
|
||||||
const SLEEP_DURATION = 1000;
|
const SLEEP_DURATION = 1000;
|
||||||
|
|
||||||
// TODO: Move registry code to registry-sdk/watcher-ts
|
// TODO: Move registry code to registry-sdk/watcher-ts
|
||||||
@ -108,7 +107,19 @@ export class Registry {
|
|||||||
...(packageJSON.version && { app_version: packageJSON.version })
|
...(packageJSON.version && { app_version: packageJSON.version })
|
||||||
};
|
};
|
||||||
|
|
||||||
const result = await this.publishRecord(applicationRecord);
|
const fee = parseGasAndFees(this.registryConfig.fee.gas, this.registryConfig.fee.fees);
|
||||||
|
|
||||||
|
const result = await registryTransactionWithRetry(() =>
|
||||||
|
this.registry.setRecord(
|
||||||
|
{
|
||||||
|
privateKey: this.registryConfig.privateKey,
|
||||||
|
record: applicationRecord,
|
||||||
|
bondId: this.registryConfig.bondId
|
||||||
|
},
|
||||||
|
this.registryConfig.privateKey,
|
||||||
|
fee
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
log(`Published application record ${result.id}`);
|
log(`Published application record ${result.id}`);
|
||||||
log('Application record data:', applicationRecord);
|
log('Application record data:', applicationRecord);
|
||||||
@ -117,8 +128,6 @@ export class Registry {
|
|||||||
const lrn = this.getLrn(repo);
|
const lrn = this.getLrn(repo);
|
||||||
log(`Setting name: ${lrn} for record ID: ${result.id}`);
|
log(`Setting name: ${lrn} for record ID: ${result.id}`);
|
||||||
|
|
||||||
const fee = parseGasAndFees(this.registryConfig.fee.gas, this.registryConfig.fee.fees);
|
|
||||||
|
|
||||||
await sleep(SLEEP_DURATION);
|
await sleep(SLEEP_DURATION);
|
||||||
await registryTransactionWithRetry(() =>
|
await registryTransactionWithRetry(() =>
|
||||||
this.registry.setName(
|
this.registry.setName(
|
||||||
@ -210,7 +219,17 @@ export class Registry {
|
|||||||
type: APP_DEPLOYMENT_AUCTION_RECORD_TYPE,
|
type: APP_DEPLOYMENT_AUCTION_RECORD_TYPE,
|
||||||
};
|
};
|
||||||
|
|
||||||
const result = await this.publishRecord(applicationDeploymentAuction);
|
const result = await registryTransactionWithRetry(() =>
|
||||||
|
this.registry.setRecord(
|
||||||
|
{
|
||||||
|
privateKey: this.registryConfig.privateKey,
|
||||||
|
record: applicationDeploymentAuction,
|
||||||
|
bondId: this.registryConfig.bondId
|
||||||
|
},
|
||||||
|
this.registryConfig.privateKey,
|
||||||
|
fee
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
log(`Application deployment auction created: ${auctionResult.auction.id}`);
|
log(`Application deployment auction created: ${auctionResult.auction.id}`);
|
||||||
log(`Application deployment auction record published: ${result.id}`);
|
log(`Application deployment auction record published: ${result.id}`);
|
||||||
@ -227,11 +246,8 @@ export class Registry {
|
|||||||
repository: string,
|
repository: string,
|
||||||
auctionId?: string | null,
|
auctionId?: string | null,
|
||||||
lrn: string,
|
lrn: string,
|
||||||
apiUrl: string,
|
|
||||||
environmentVariables: { [key: string]: string },
|
environmentVariables: { [key: string]: string },
|
||||||
dns: string,
|
dns: string,
|
||||||
requesterAddress: string,
|
|
||||||
publicKey: string,
|
|
||||||
payment?: string | null
|
payment?: string | null
|
||||||
}): Promise<{
|
}): Promise<{
|
||||||
applicationDeploymentRequestId: string;
|
applicationDeploymentRequestId: string;
|
||||||
@ -245,16 +261,6 @@ export class Registry {
|
|||||||
throw new Error(`No record found for ${lrn}`);
|
throw new Error(`No record found for ${lrn}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
let hash;
|
|
||||||
if (Object.keys(data.environmentVariables).length !== 0) {
|
|
||||||
hash = await this.generateConfigHash(
|
|
||||||
data.environmentVariables,
|
|
||||||
data.requesterAddress,
|
|
||||||
data.publicKey,
|
|
||||||
data.apiUrl,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create record of type ApplicationDeploymentRequest and publish
|
// Create record of type ApplicationDeploymentRequest and publish
|
||||||
const applicationDeploymentRequest = {
|
const applicationDeploymentRequest = {
|
||||||
type: APP_DEPLOYMENT_REQUEST_TYPE,
|
type: APP_DEPLOYMENT_REQUEST_TYPE,
|
||||||
@ -264,7 +270,9 @@ export class Registry {
|
|||||||
dns: data.dns,
|
dns: data.dns,
|
||||||
|
|
||||||
// https://git.vdb.to/cerc-io/laconic-registry-cli/commit/129019105dfb93bebcea02fde0ed64d0f8e5983b
|
// https://git.vdb.to/cerc-io/laconic-registry-cli/commit/129019105dfb93bebcea02fde0ed64d0f8e5983b
|
||||||
config: JSON.stringify(hash ? { ref: hash } : {}),
|
config: JSON.stringify({
|
||||||
|
env: data.environmentVariables
|
||||||
|
}),
|
||||||
meta: JSON.stringify({
|
meta: JSON.stringify({
|
||||||
note: `Added by Snowball @ ${DateTime.utc().toFormat(
|
note: `Added by Snowball @ ${DateTime.utc().toFormat(
|
||||||
"EEE LLL dd HH:mm:ss 'UTC' yyyy"
|
"EEE LLL dd HH:mm:ss 'UTC' yyyy"
|
||||||
@ -279,7 +287,19 @@ export class Registry {
|
|||||||
|
|
||||||
await sleep(SLEEP_DURATION);
|
await sleep(SLEEP_DURATION);
|
||||||
|
|
||||||
const result = await this.publishRecord(applicationDeploymentRequest);
|
const fee = parseGasAndFees(this.registryConfig.fee.gas, this.registryConfig.fee.fees);
|
||||||
|
|
||||||
|
const result = await registryTransactionWithRetry(() =>
|
||||||
|
this.registry.setRecord(
|
||||||
|
{
|
||||||
|
privateKey: this.registryConfig.privateKey,
|
||||||
|
record: applicationDeploymentRequest,
|
||||||
|
bondId: this.registryConfig.bondId
|
||||||
|
},
|
||||||
|
this.registryConfig.privateKey,
|
||||||
|
fee
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
log(`Application deployment request record published: ${result.id}`);
|
log(`Application deployment request record published: ${result.id}`);
|
||||||
log('Application deployment request data:', applicationDeploymentRequest);
|
log('Application deployment request data:', applicationDeploymentRequest);
|
||||||
@ -351,11 +371,12 @@ export class Registry {
|
|||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
// Filter records with ApplicationDeploymentRequestId ID
|
// Filter records with ApplicationDeploymentRequestId ID and Deployment specific URL
|
||||||
return records.filter((record: AppDeploymentRecord) =>
|
return records.filter((record: AppDeploymentRecord) =>
|
||||||
deployments.some(
|
deployments.some(
|
||||||
(deployment) =>
|
(deployment) =>
|
||||||
deployment.applicationDeploymentRequestId === record.attributes.request
|
deployment.applicationDeploymentRequestId === record.attributes.request &&
|
||||||
|
record.attributes.url.includes(deployment.id)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -410,14 +431,6 @@ export class Registry {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetch record by Id
|
|
||||||
*/
|
|
||||||
async getRecordById(id: string): Promise<RegistryRecord | null> {
|
|
||||||
const [record] = await this.registry.getRecordsByIds([id]);
|
|
||||||
return record ?? null;
|
|
||||||
}
|
|
||||||
|
|
||||||
async createApplicationDeploymentRemovalRequest(data: {
|
async createApplicationDeploymentRemovalRequest(data: {
|
||||||
deploymentId: string;
|
deploymentId: string;
|
||||||
deployerLrn: string;
|
deployerLrn: string;
|
||||||
@ -436,8 +449,18 @@ export class Registry {
|
|||||||
...(data.payment && { payment: data.payment }),
|
...(data.payment && { payment: data.payment }),
|
||||||
};
|
};
|
||||||
|
|
||||||
const result = await this.publishRecord(
|
const fee = parseGasAndFees(this.registryConfig.fee.gas, this.registryConfig.fee.fees);
|
||||||
applicationDeploymentRemovalRequest,
|
|
||||||
|
const result = await registryTransactionWithRetry(() =>
|
||||||
|
this.registry.setRecord(
|
||||||
|
{
|
||||||
|
privateKey: this.registryConfig.privateKey,
|
||||||
|
record: applicationDeploymentRemovalRequest,
|
||||||
|
bondId: this.registryConfig.bondId
|
||||||
|
},
|
||||||
|
this.registryConfig.privateKey,
|
||||||
|
fee
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
log(`Application deployment removal request record published: ${result.id}`);
|
log(`Application deployment removal request record published: ${result.id}`);
|
||||||
@ -463,27 +486,6 @@ export class Registry {
|
|||||||
return completedAuctions;
|
return completedAuctions;
|
||||||
}
|
}
|
||||||
|
|
||||||
async publishRecord(recordData: any): Promise<any> {
|
|
||||||
const fee = parseGasAndFees(
|
|
||||||
this.registryConfig.fee.gas,
|
|
||||||
this.registryConfig.fee.fees,
|
|
||||||
);
|
|
||||||
|
|
||||||
const result = await registryTransactionWithRetry(() =>
|
|
||||||
this.registry.setRecord(
|
|
||||||
{
|
|
||||||
privateKey: this.registryConfig.privateKey,
|
|
||||||
record: recordData,
|
|
||||||
bondId: this.registryConfig.bondId,
|
|
||||||
},
|
|
||||||
this.registryConfig.privateKey,
|
|
||||||
fee,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
async getRecordsByName(name: string): Promise<any> {
|
async getRecordsByName(name: string): Promise<any> {
|
||||||
return this.registry.resolveNames([name]);
|
return this.registry.resolveNames([name]);
|
||||||
}
|
}
|
||||||
@ -530,43 +532,4 @@ export class Registry {
|
|||||||
assert(this.registryConfig.authority, "Authority doesn't exist");
|
assert(this.registryConfig.authority, "Authority doesn't exist");
|
||||||
return `lrn://${this.registryConfig.authority}/applications/${appName}`;
|
return `lrn://${this.registryConfig.authority}/applications/${appName}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
async generateConfigHash(
|
|
||||||
environmentVariables: { [key: string]: string },
|
|
||||||
requesterAddress: string,
|
|
||||||
pubKey: string,
|
|
||||||
url: string,
|
|
||||||
): Promise<string> {
|
|
||||||
// Config to be encrypted
|
|
||||||
const config = {
|
|
||||||
authorized: [requesterAddress],
|
|
||||||
config: { env: environmentVariables },
|
|
||||||
};
|
|
||||||
|
|
||||||
// Serialize the config
|
|
||||||
const serialized = JSON.stringify(config, null, 2);
|
|
||||||
|
|
||||||
const armoredKey = `-----BEGIN PGP PUBLIC KEY BLOCK-----\n\n${pubKey}\n\n-----END PGP PUBLIC KEY BLOCK-----`;
|
|
||||||
const publicKey = await openpgp.readKey({ armoredKey });
|
|
||||||
|
|
||||||
// Encrypt the config
|
|
||||||
const encrypted = await openpgp.encrypt({
|
|
||||||
message: await openpgp.createMessage({ text: serialized }),
|
|
||||||
encryptionKeys: publicKey,
|
|
||||||
format: 'binary',
|
|
||||||
});
|
|
||||||
|
|
||||||
// Get the hash after uploading encrypted config
|
|
||||||
const response = await fetch(`${url}/upload/config`, {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/octet-stream',
|
|
||||||
},
|
|
||||||
body: encrypted,
|
|
||||||
});
|
|
||||||
|
|
||||||
const configHash = await response.json();
|
|
||||||
|
|
||||||
return configHash.id;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@ export const createResolvers = async (service: Service): Promise<any> => {
|
|||||||
},
|
},
|
||||||
|
|
||||||
deployments: async (_: any, { projectId }: { projectId: string }) => {
|
deployments: async (_: any, { projectId }: { projectId: string }) => {
|
||||||
return service.getNonCanonicalDeploymentsByProjectId(projectId);
|
return service.getDeploymentsByProjectId(projectId);
|
||||||
},
|
},
|
||||||
|
|
||||||
environmentVariables: async (
|
environmentVariables: async (
|
||||||
@ -95,13 +95,6 @@ export const createResolvers = async (service: Service): Promise<any> => {
|
|||||||
) => {
|
) => {
|
||||||
return service.verifyTx(txHash, amount, senderAddress);
|
return service.verifyTx(txHash, amount, senderAddress);
|
||||||
},
|
},
|
||||||
|
|
||||||
latestDNSRecord: async (
|
|
||||||
_: any,
|
|
||||||
{ projectId }: { projectId: string },
|
|
||||||
) => {
|
|
||||||
return service.getLatestDNSRecordByProjectId(projectId);
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// TODO: Return error in GQL response
|
// TODO: Return error in GQL response
|
||||||
|
@ -94,4 +94,13 @@ router.get('/session', (req, res) => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
router.post('/logout', (req, res) => {
|
||||||
|
req.session.destroy((err) => {
|
||||||
|
if (err) {
|
||||||
|
return res.send({ success: false });
|
||||||
|
}
|
||||||
|
res.send({ success: true });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
export default router;
|
export default router;
|
||||||
|
@ -100,6 +100,7 @@ type ProjectMember {
|
|||||||
|
|
||||||
type Deployment {
|
type Deployment {
|
||||||
id: String!
|
id: String!
|
||||||
|
domain: Domain
|
||||||
branch: String!
|
branch: String!
|
||||||
commitHash: String!
|
commitHash: String!
|
||||||
commitMessage: String!
|
commitMessage: String!
|
||||||
@ -107,7 +108,6 @@ type Deployment {
|
|||||||
environment: Environment!
|
environment: Environment!
|
||||||
deployer: Deployer
|
deployer: Deployer
|
||||||
applicationDeploymentRequestId: String
|
applicationDeploymentRequestId: String
|
||||||
applicationDeploymentRecordData: AppDeploymentRecordAttributes
|
|
||||||
isCurrent: Boolean!
|
isCurrent: Boolean!
|
||||||
baseDomain: String
|
baseDomain: String
|
||||||
status: DeploymentStatus!
|
status: DeploymentStatus!
|
||||||
@ -249,27 +249,6 @@ type Auction {
|
|||||||
bids: [Bid!]!
|
bids: [Bid!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type DNSRecordAttributes {
|
|
||||||
name: String
|
|
||||||
value: String
|
|
||||||
request: String
|
|
||||||
resourceType: String
|
|
||||||
version: String
|
|
||||||
}
|
|
||||||
|
|
||||||
type AppDeploymentRecordAttributes {
|
|
||||||
application: String
|
|
||||||
auction: String
|
|
||||||
deployer: String
|
|
||||||
dns: String
|
|
||||||
meta: String
|
|
||||||
name: String
|
|
||||||
request: String
|
|
||||||
type: String
|
|
||||||
url: String
|
|
||||||
version: String
|
|
||||||
}
|
|
||||||
|
|
||||||
input AuctionParams {
|
input AuctionParams {
|
||||||
maxPrice: String,
|
maxPrice: String,
|
||||||
numProviders: Int,
|
numProviders: Int,
|
||||||
@ -286,7 +265,6 @@ type Query {
|
|||||||
projectMembers(projectId: String!): [ProjectMember!]
|
projectMembers(projectId: String!): [ProjectMember!]
|
||||||
searchProjects(searchText: String!): [Project!]
|
searchProjects(searchText: String!): [Project!]
|
||||||
getAuctionData(auctionId: String!): Auction!
|
getAuctionData(auctionId: String!): Auction!
|
||||||
latestDNSRecord(projectId: String!): DNSRecordAttributes
|
|
||||||
domains(projectId: String!, filter: FilterDomainsInput): [Domain]
|
domains(projectId: String!, filter: FilterDomainsInput): [Domain]
|
||||||
deployers: [Deployer]
|
deployers: [Deployer]
|
||||||
address: String!
|
address: String!
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { DeepPartial, FindOptionsWhere } from 'typeorm';
|
import { DeepPartial, FindOptionsWhere, IsNull, Not } from 'typeorm';
|
||||||
import { Octokit, RequestError } from 'octokit';
|
import { Octokit, RequestError } from 'octokit';
|
||||||
import { DateTime } from 'luxon';
|
|
||||||
|
|
||||||
import { OAuthApp } from '@octokit/oauth-app';
|
import { OAuthApp } from '@octokit/oauth-app';
|
||||||
|
|
||||||
@ -23,8 +22,6 @@ import {
|
|||||||
AppDeploymentRemovalRecord,
|
AppDeploymentRemovalRecord,
|
||||||
AuctionParams,
|
AuctionParams,
|
||||||
DeployerRecord,
|
DeployerRecord,
|
||||||
DNSRecord,
|
|
||||||
DNSRecordAttributes,
|
|
||||||
EnvironmentVariables,
|
EnvironmentVariables,
|
||||||
GitPushEventPayload,
|
GitPushEventPayload,
|
||||||
} from './types';
|
} from './types';
|
||||||
@ -202,60 +199,12 @@ export class Service {
|
|||||||
if (!deployment.project) {
|
if (!deployment.project) {
|
||||||
log(`Project ${deployment.projectId} not found`);
|
log(`Project ${deployment.projectId} not found`);
|
||||||
return;
|
return;
|
||||||
}
|
} else {
|
||||||
|
|
||||||
const registryRecord = await this.laconicRegistry.getRecordById(record.attributes.dns);
|
|
||||||
|
|
||||||
if (!registryRecord) {
|
|
||||||
log(`DNS record not found for deployment ${deployment.id}`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const dnsRecord = registryRecord as DNSRecord;
|
|
||||||
|
|
||||||
const dnsRecordData: DNSRecordAttributes = {
|
|
||||||
name: dnsRecord.attributes.name,
|
|
||||||
request: dnsRecord.attributes.request,
|
|
||||||
resourceType: dnsRecord.attributes.resource_type,
|
|
||||||
value: dnsRecord.attributes.value,
|
|
||||||
version: dnsRecord.attributes.version,
|
|
||||||
}
|
|
||||||
|
|
||||||
deployment.applicationDeploymentRecordId = record.id;
|
deployment.applicationDeploymentRecordId = record.id;
|
||||||
deployment.applicationDeploymentRecordData = record.attributes;
|
deployment.applicationDeploymentRecordData = record.attributes;
|
||||||
deployment.url = record.attributes.url;
|
deployment.url = record.attributes.url;
|
||||||
deployment.status = DeploymentStatus.Ready;
|
deployment.status = DeploymentStatus.Ready;
|
||||||
deployment.isCurrent = deployment.environment === Environment.Production;
|
deployment.isCurrent = deployment.environment === Environment.Production;
|
||||||
deployment.dnsRecordData = dnsRecordData;
|
|
||||||
|
|
||||||
if (deployment.isCanonical) {
|
|
||||||
const previousCanonicalDeployment = await this.db.getDeployment({
|
|
||||||
where: {
|
|
||||||
projectId: deployment.project.id,
|
|
||||||
deployer: deployment.deployer,
|
|
||||||
isCanonical: true,
|
|
||||||
isCurrent: true,
|
|
||||||
},
|
|
||||||
relations: {
|
|
||||||
project: true,
|
|
||||||
deployer: true,
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (previousCanonicalDeployment) {
|
|
||||||
// Send removal request for the previous canonical deployment and delete DB entry
|
|
||||||
if (previousCanonicalDeployment.url !== deployment.url) {
|
|
||||||
await this.laconicRegistry.createApplicationDeploymentRemovalRequest({
|
|
||||||
deploymentId: previousCanonicalDeployment.applicationDeploymentRecordId!,
|
|
||||||
deployerLrn: previousCanonicalDeployment.deployer.deployerLrn,
|
|
||||||
auctionId: previousCanonicalDeployment.project.auctionId,
|
|
||||||
payment: previousCanonicalDeployment.project.txHash
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
await this.db.deleteDeploymentById(previousCanonicalDeployment.id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
await this.db.updateDeploymentById(deployment.id, deployment);
|
await this.db.updateDeploymentById(deployment.id, deployment);
|
||||||
|
|
||||||
@ -274,34 +223,28 @@ export class Service {
|
|||||||
log(
|
log(
|
||||||
`Updated deployment ${deployment.id} with URL ${record.attributes.url}`,
|
`Updated deployment ${deployment.id} with URL ${record.attributes.url}`,
|
||||||
);
|
);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
await Promise.all(deploymentUpdatePromises);
|
await Promise.all(deploymentUpdatePromises);
|
||||||
|
|
||||||
// Get deployments that are in production environment
|
// Get deployments that are in production environment
|
||||||
const prodDeployments = Object.values(recordToDeploymentsMap).filter(
|
const prodDeployments = Object.values(recordToDeploymentsMap).filter(deployment => deployment.isCurrent);
|
||||||
(deployment) => deployment.isCurrent,
|
|
||||||
);
|
|
||||||
// Set the isCurrent state to false for the old deployments
|
// Set the isCurrent state to false for the old deployments
|
||||||
for (const deployment of prodDeployments) {
|
for (const deployment of prodDeployments) {
|
||||||
const projectDeployments = await this.db.getDeploymentsByProjectId(
|
const projectDeployments = await this.db.getDeploymentsByProjectId(deployment.projectId);
|
||||||
deployment.projectId,
|
const oldDeployments = projectDeployments
|
||||||
);
|
.filter(projectDeployment => projectDeployment.deployer.deployerLrn === deployment.deployer.deployerLrn && projectDeployment.id !== deployment.id);
|
||||||
|
|
||||||
const oldDeployments = projectDeployments.filter(
|
|
||||||
(projectDeployment) =>
|
|
||||||
projectDeployment.deployer.deployerLrn ===
|
|
||||||
deployment.deployer.deployerLrn &&
|
|
||||||
projectDeployment.id !== deployment.id &&
|
|
||||||
projectDeployment.isCanonical == deployment.isCanonical,
|
|
||||||
);
|
|
||||||
for (const oldDeployment of oldDeployments) {
|
for (const oldDeployment of oldDeployments) {
|
||||||
await this.db.updateDeployment(
|
await this.db.updateDeployment(
|
||||||
{ id: oldDeployment.id },
|
{ id: oldDeployment.id },
|
||||||
{ isCurrent: false },
|
{ isCurrent: false }
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await Promise.all(deploymentUpdatePromises);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -485,14 +428,9 @@ export class Service {
|
|||||||
return dbProjects;
|
return dbProjects;
|
||||||
}
|
}
|
||||||
|
|
||||||
async getNonCanonicalDeploymentsByProjectId(projectId: string): Promise<Deployment[]> {
|
async getDeploymentsByProjectId(projectId: string): Promise<Deployment[]> {
|
||||||
const nonCanonicalDeployments = await this.db.getNonCanonicalDeploymentsByProjectId(projectId);
|
const dbDeployments = await this.db.getDeploymentsByProjectId(projectId);
|
||||||
return nonCanonicalDeployments;
|
return dbDeployments;
|
||||||
}
|
|
||||||
|
|
||||||
async getLatestDNSRecordByProjectId(projectId: string): Promise<DNSRecordAttributes | null> {
|
|
||||||
const dnsRecord = await this.db.getLatestDNSRecordByProjectId(projectId);
|
|
||||||
return dnsRecord;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async getEnvironmentVariablesByProjectId(
|
async getEnvironmentVariablesByProjectId(
|
||||||
@ -634,7 +572,6 @@ export class Service {
|
|||||||
where: { id: deploymentId },
|
where: { id: deploymentId },
|
||||||
relations: {
|
relations: {
|
||||||
project: true,
|
project: true,
|
||||||
deployer: true,
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -642,12 +579,18 @@ export class Service {
|
|||||||
throw new Error('Deployment does not exist');
|
throw new Error('Deployment does not exist');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const prodBranchDomains = await this.db.getDomainsByProjectId(
|
||||||
|
oldDeployment.project.id,
|
||||||
|
{ branch: oldDeployment.project.prodBranch },
|
||||||
|
);
|
||||||
|
|
||||||
const octokit = await this.getOctokit(user.id);
|
const octokit = await this.getOctokit(user.id);
|
||||||
|
|
||||||
const newDeployment = await this.createDeployment(user.id, octokit, {
|
const newDeployment = await this.createDeployment(user.id, octokit, {
|
||||||
project: oldDeployment.project,
|
project: oldDeployment.project,
|
||||||
branch: oldDeployment.branch,
|
branch: oldDeployment.branch,
|
||||||
environment: Environment.Production,
|
environment: Environment.Production,
|
||||||
|
domain: prodBranchDomains[0],
|
||||||
commitHash: oldDeployment.commitHash,
|
commitHash: oldDeployment.commitHash,
|
||||||
commitMessage: oldDeployment.commitMessage,
|
commitMessage: oldDeployment.commitMessage,
|
||||||
deployer: oldDeployment.deployer
|
deployer: oldDeployment.deployer
|
||||||
@ -676,6 +619,19 @@ export class Service {
|
|||||||
commitHash: data.commitHash!,
|
commitHash: data.commitHash!,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Update previous deployment with prod branch domain
|
||||||
|
// TODO: Fix unique constraint error for domain
|
||||||
|
if (data.domain) {
|
||||||
|
await this.db.updateDeployment(
|
||||||
|
{
|
||||||
|
domainId: data.domain.id,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
domain: null,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
let deployer;
|
let deployer;
|
||||||
if (deployerLrn) {
|
if (deployerLrn) {
|
||||||
deployer = await this.db.getDeployerByLRN(deployerLrn);
|
deployer = await this.db.getDeployerByLRN(deployerLrn);
|
||||||
@ -683,62 +639,44 @@ export class Service {
|
|||||||
deployer = data.deployer;
|
deployer = data.deployer;
|
||||||
}
|
}
|
||||||
|
|
||||||
const deployment = await this.createDeploymentFromData(userId, data, deployer!.deployerLrn!, applicationRecordId, applicationRecordData, false);
|
const newDeployment = await this.createDeploymentFromData(userId, data, deployer!.deployerLrn!, applicationRecordId, applicationRecordData);
|
||||||
|
|
||||||
const address = await this.getAddress();
|
|
||||||
const { repo, repoUrl } = await getRepoDetails(octokit, data.project.repository, data.commitHash);
|
const { repo, repoUrl } = await getRepoDetails(octokit, data.project.repository, data.commitHash);
|
||||||
const environmentVariablesObj = await this.getEnvVariables(data.project!.id!);
|
const environmentVariablesObj = await this.getEnvVariables(data.project!.id!);
|
||||||
|
|
||||||
// To set project DNS
|
// To set project DNS
|
||||||
if (data.environment === Environment.Production) {
|
if (data.environment === Environment.Production) {
|
||||||
const canonicalDeployment = await this.createDeploymentFromData(userId, data, deployer!.deployerLrn!, applicationRecordId, applicationRecordData, true);
|
// On deleting deployment later, project DNS deployment is also deleted
|
||||||
// If a custom domain is present then use that as the DNS in the deployment request
|
// So publish project DNS deployment first so that ApplicationDeploymentRecord for the same is available when deleting deployment later
|
||||||
const customDomain = await this.db.getOldestDomainByProjectId(data.project!.id!);
|
|
||||||
|
|
||||||
// On deleting deployment later, project canonical deployment is also deleted
|
|
||||||
// So publish project canonical deployment first so that ApplicationDeploymentRecord for the same is available when deleting deployment later
|
|
||||||
const { applicationDeploymentRequestData, applicationDeploymentRequestId } =
|
|
||||||
await this.laconicRegistry.createApplicationDeploymentRequest({
|
await this.laconicRegistry.createApplicationDeploymentRequest({
|
||||||
deployment: canonicalDeployment,
|
deployment: newDeployment,
|
||||||
appName: repo,
|
appName: repo,
|
||||||
repository: repoUrl,
|
repository: repoUrl,
|
||||||
environmentVariables: environmentVariablesObj,
|
environmentVariables: environmentVariablesObj,
|
||||||
dns: customDomain?.name ?? `${canonicalDeployment.project.name}`,
|
dns: `${newDeployment.project.name}`,
|
||||||
lrn: deployer!.deployerLrn!,
|
lrn: deployer!.deployerLrn!,
|
||||||
apiUrl: deployer!.deployerApiUrl!,
|
|
||||||
payment: data.project.txHash,
|
payment: data.project.txHash,
|
||||||
auctionId: data.project.auctionId,
|
auctionId: data.project.auctionId
|
||||||
requesterAddress: address,
|
|
||||||
publicKey: deployer!.publicKey!
|
|
||||||
});
|
|
||||||
|
|
||||||
await this.db.updateDeploymentById(canonicalDeployment.id, {
|
|
||||||
applicationDeploymentRequestId,
|
|
||||||
applicationDeploymentRequestData,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const { applicationDeploymentRequestId, applicationDeploymentRequestData } =
|
const { applicationDeploymentRequestId, applicationDeploymentRequestData } =
|
||||||
await this.laconicRegistry.createApplicationDeploymentRequest({
|
await this.laconicRegistry.createApplicationDeploymentRequest({
|
||||||
deployment: deployment,
|
deployment: newDeployment,
|
||||||
appName: repo,
|
appName: repo,
|
||||||
repository: repoUrl,
|
repository: repoUrl,
|
||||||
lrn: deployer!.deployerLrn!,
|
lrn: deployer!.deployerLrn!,
|
||||||
apiUrl: deployer!.deployerApiUrl!,
|
|
||||||
environmentVariables: environmentVariablesObj,
|
environmentVariables: environmentVariablesObj,
|
||||||
dns: `${deployment.project.name}-${deployment.id}`,
|
dns: `${newDeployment.project.name}-${newDeployment.id}`,
|
||||||
payment: data.project.txHash,
|
payment: data.project.txHash,
|
||||||
auctionId: data.project.auctionId,
|
auctionId: data.project.auctionId
|
||||||
requesterAddress: address,
|
|
||||||
publicKey: deployer!.publicKey!
|
|
||||||
});
|
});
|
||||||
|
|
||||||
await this.db.updateDeploymentById(deployment.id, {
|
await this.db.updateDeploymentById(newDeployment.id, {
|
||||||
applicationDeploymentRequestId,
|
applicationDeploymentRequestId,
|
||||||
applicationDeploymentRequestData,
|
applicationDeploymentRequestData,
|
||||||
});
|
});
|
||||||
|
|
||||||
return deployment;
|
return newDeployment;
|
||||||
}
|
}
|
||||||
|
|
||||||
async createDeploymentFromAuction(
|
async createDeploymentFromAuction(
|
||||||
@ -781,59 +719,42 @@ export class Service {
|
|||||||
commitMessage: latestCommit.commit.message,
|
commitMessage: latestCommit.commit.message,
|
||||||
};
|
};
|
||||||
|
|
||||||
const deployment = await this.createDeploymentFromData(project.ownerId!, deploymentData, deployerLrn, applicationRecordId, applicationRecordData, false);
|
const newDeployment = await this.createDeploymentFromData(project.ownerId!, deploymentData, deployerLrn, applicationRecordId, applicationRecordData);
|
||||||
const address = await this.getAddress();
|
|
||||||
|
|
||||||
const environmentVariablesObj = await this.getEnvVariables(project!.id!);
|
const environmentVariablesObj = await this.getEnvVariables(project!.id!);
|
||||||
// To set project DNS
|
// To set project DNS
|
||||||
if (deploymentData.environment === Environment.Production) {
|
if (deploymentData.environment === Environment.Production) {
|
||||||
const canonicalDeployment = await this.createDeploymentFromData(project.ownerId!, deploymentData, deployerLrn, applicationRecordId, applicationRecordData, true);
|
// On deleting deployment later, project DNS deployment is also deleted
|
||||||
// If a custom domain is present then use that as the DNS in the deployment request
|
// So publish project DNS deployment first so that ApplicationDeploymentRecord for the same is available when deleting deployment later
|
||||||
const customDomain = await this.db.getOldestDomainByProjectId(project!.id!);
|
|
||||||
|
|
||||||
// On deleting deployment later, project canonical deployment is also deleted
|
|
||||||
// So publish project canonical deployment first so that ApplicationDeploymentRecord for the same is available when deleting deployment later
|
|
||||||
const { applicationDeploymentRequestId, applicationDeploymentRequestData } =
|
|
||||||
await this.laconicRegistry.createApplicationDeploymentRequest({
|
await this.laconicRegistry.createApplicationDeploymentRequest({
|
||||||
deployment: canonicalDeployment,
|
deployment: newDeployment,
|
||||||
appName: repo,
|
appName: repo,
|
||||||
repository: repoUrl,
|
repository: repoUrl,
|
||||||
environmentVariables: environmentVariablesObj,
|
environmentVariables: environmentVariablesObj,
|
||||||
dns: customDomain?.name ?? `${canonicalDeployment.project.name}`,
|
dns: `${newDeployment.project.name}`,
|
||||||
auctionId: project.auctionId!,
|
auctionId: project.auctionId!,
|
||||||
lrn: deployerLrn,
|
lrn: deployerLrn,
|
||||||
apiUrl: deployer!.deployerApiUrl!,
|
|
||||||
requesterAddress: address,
|
|
||||||
publicKey: deployer!.publicKey!
|
|
||||||
});
|
|
||||||
|
|
||||||
await this.db.updateDeploymentById(canonicalDeployment.id, {
|
|
||||||
applicationDeploymentRequestId,
|
|
||||||
applicationDeploymentRequestData,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const { applicationDeploymentRequestId, applicationDeploymentRequestData } =
|
const { applicationDeploymentRequestId, applicationDeploymentRequestData } =
|
||||||
// Create requests for all the deployers
|
// Create requests for all the deployers
|
||||||
await this.laconicRegistry.createApplicationDeploymentRequest({
|
await this.laconicRegistry.createApplicationDeploymentRequest({
|
||||||
deployment: deployment,
|
deployment: newDeployment,
|
||||||
appName: repo,
|
appName: repo,
|
||||||
repository: repoUrl,
|
repository: repoUrl,
|
||||||
auctionId: project.auctionId!,
|
auctionId: project.auctionId!,
|
||||||
lrn: deployerLrn,
|
lrn: deployerLrn,
|
||||||
apiUrl: deployer!.deployerApiUrl!,
|
|
||||||
environmentVariables: environmentVariablesObj,
|
environmentVariables: environmentVariablesObj,
|
||||||
dns: `${deployment.project.name}-${deployment.id}`,
|
dns: `${newDeployment.project.name}-${newDeployment.id}`,
|
||||||
requesterAddress: address,
|
|
||||||
publicKey: deployer!.publicKey!
|
|
||||||
});
|
});
|
||||||
|
|
||||||
await this.db.updateDeploymentById(deployment.id, {
|
await this.db.updateDeploymentById(newDeployment.id, {
|
||||||
applicationDeploymentRequestId,
|
applicationDeploymentRequestId,
|
||||||
applicationDeploymentRequestData,
|
applicationDeploymentRequestData,
|
||||||
});
|
});
|
||||||
|
|
||||||
return deployment;
|
return newDeployment;
|
||||||
}
|
}
|
||||||
|
|
||||||
async createDeploymentFromData(
|
async createDeploymentFromData(
|
||||||
@ -842,7 +763,6 @@ export class Service {
|
|||||||
deployerLrn: string,
|
deployerLrn: string,
|
||||||
applicationRecordId: string,
|
applicationRecordId: string,
|
||||||
applicationRecordData: ApplicationRecord,
|
applicationRecordData: ApplicationRecord,
|
||||||
isCanonical: boolean,
|
|
||||||
): Promise<Deployment> {
|
): Promise<Deployment> {
|
||||||
const newDeployment = await this.db.addDeployment({
|
const newDeployment = await this.db.addDeployment({
|
||||||
project: data.project,
|
project: data.project,
|
||||||
@ -853,13 +773,13 @@ export class Service {
|
|||||||
status: DeploymentStatus.Building,
|
status: DeploymentStatus.Building,
|
||||||
applicationRecordId,
|
applicationRecordId,
|
||||||
applicationRecordData,
|
applicationRecordData,
|
||||||
|
domain: data.domain,
|
||||||
createdBy: Object.assign(new User(), {
|
createdBy: Object.assign(new User(), {
|
||||||
id: userId,
|
id: userId,
|
||||||
}),
|
}),
|
||||||
deployer: Object.assign(new Deployer(), {
|
deployer: Object.assign(new Deployer(), {
|
||||||
deployerLrn,
|
deployerLrn,
|
||||||
}),
|
}),
|
||||||
isCanonical
|
|
||||||
});
|
});
|
||||||
|
|
||||||
log(`Created deployment ${newDeployment.id}`);
|
log(`Created deployment ${newDeployment.id}`);
|
||||||
@ -1092,6 +1012,9 @@ export class Service {
|
|||||||
|
|
||||||
for await (const project of projects) {
|
for await (const project of projects) {
|
||||||
const octokit = await this.getOctokit(project.ownerId);
|
const octokit = await this.getOctokit(project.ownerId);
|
||||||
|
const [domain] = await this.db.getDomainsByProjectId(project.id, {
|
||||||
|
branch,
|
||||||
|
});
|
||||||
|
|
||||||
const deployers = project.deployers;
|
const deployers = project.deployers;
|
||||||
if (!deployers) {
|
if (!deployers) {
|
||||||
@ -1109,6 +1032,7 @@ export class Service {
|
|||||||
project.prodBranch === branch
|
project.prodBranch === branch
|
||||||
? Environment.Production
|
? Environment.Production
|
||||||
: Environment.Preview,
|
: Environment.Preview,
|
||||||
|
domain,
|
||||||
commitHash: headCommit.id,
|
commitHash: headCommit.id,
|
||||||
commitMessage: headCommit.message,
|
commitMessage: headCommit.message,
|
||||||
deployer: deployer
|
deployer: deployer
|
||||||
@ -1150,6 +1074,7 @@ export class Service {
|
|||||||
const oldDeployment = await this.db.getDeployment({
|
const oldDeployment = await this.db.getDeployment({
|
||||||
relations: {
|
relations: {
|
||||||
project: true,
|
project: true,
|
||||||
|
domain: true,
|
||||||
deployer: true,
|
deployer: true,
|
||||||
createdBy: true,
|
createdBy: true,
|
||||||
},
|
},
|
||||||
@ -1175,6 +1100,7 @@ export class Service {
|
|||||||
// TODO: Put isCurrent field in project
|
// TODO: Put isCurrent field in project
|
||||||
branch: oldDeployment.branch,
|
branch: oldDeployment.branch,
|
||||||
environment: Environment.Production,
|
environment: Environment.Production,
|
||||||
|
domain: oldDeployment.domain,
|
||||||
commitHash: oldDeployment.commitHash,
|
commitHash: oldDeployment.commitHash,
|
||||||
commitMessage: oldDeployment.commitMessage,
|
commitMessage: oldDeployment.commitMessage,
|
||||||
deployer: oldDeployment.deployer
|
deployer: oldDeployment.deployer
|
||||||
@ -1192,79 +1118,31 @@ export class Service {
|
|||||||
// TODO: Implement transactions
|
// TODO: Implement transactions
|
||||||
const oldCurrentDeployment = await this.db.getDeployment({
|
const oldCurrentDeployment = await this.db.getDeployment({
|
||||||
relations: {
|
relations: {
|
||||||
project: true,
|
domain: true,
|
||||||
deployer: true,
|
|
||||||
},
|
},
|
||||||
where: {
|
where: {
|
||||||
project: {
|
project: {
|
||||||
id: projectId,
|
id: projectId,
|
||||||
},
|
},
|
||||||
isCurrent: true,
|
isCurrent: true,
|
||||||
isCanonical: false,
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!oldCurrentDeployment) {
|
if (!oldCurrentDeployment) {
|
||||||
throw new Error('Current deployment does not exist');
|
throw new Error('Current deployment doesnot exist');
|
||||||
}
|
}
|
||||||
|
|
||||||
const oldCurrentDeploymentUpdate = await this.db.updateDeploymentById(
|
const oldCurrentDeploymentUpdate = await this.db.updateDeploymentById(
|
||||||
oldCurrentDeployment.id,
|
oldCurrentDeployment.id,
|
||||||
{ isCurrent: false },
|
{ isCurrent: false, domain: null },
|
||||||
);
|
);
|
||||||
|
|
||||||
const newCurrentDeploymentUpdate = await this.db.updateDeploymentById(
|
const newCurrentDeploymentUpdate = await this.db.updateDeploymentById(
|
||||||
deploymentId,
|
deploymentId,
|
||||||
{ isCurrent: true },
|
{ isCurrent: true, domain: oldCurrentDeployment?.domain },
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!newCurrentDeploymentUpdate || !oldCurrentDeploymentUpdate){
|
return newCurrentDeploymentUpdate && oldCurrentDeploymentUpdate;
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
const newCurrentDeployment = await this.db.getDeployment({ where: { id: deploymentId }, relations: { project: true, deployer: true } });
|
|
||||||
|
|
||||||
if (!newCurrentDeployment) {
|
|
||||||
throw new Error(`Deployment with Id ${deploymentId} not found`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const applicationDeploymentRequestData = newCurrentDeployment.applicationDeploymentRequestData;
|
|
||||||
|
|
||||||
const customDomain = await this.db.getOldestDomainByProjectId(projectId);
|
|
||||||
|
|
||||||
if (customDomain && applicationDeploymentRequestData) {
|
|
||||||
applicationDeploymentRequestData.dns = customDomain.name
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create a canonical deployment for the new current deployment
|
|
||||||
const canonicalDeployment = await this.createDeploymentFromData(
|
|
||||||
newCurrentDeployment.project.ownerId,
|
|
||||||
newCurrentDeployment,
|
|
||||||
newCurrentDeployment.deployer!.deployerLrn!,
|
|
||||||
newCurrentDeployment.applicationRecordId,
|
|
||||||
newCurrentDeployment.applicationRecordData,
|
|
||||||
true,
|
|
||||||
);
|
|
||||||
|
|
||||||
applicationDeploymentRequestData!.meta = JSON.stringify({
|
|
||||||
...JSON.parse(applicationDeploymentRequestData!.meta),
|
|
||||||
note: `Updated by Snowball @ ${DateTime.utc().toFormat(
|
|
||||||
"EEE LLL dd HH:mm:ss 'UTC' yyyy"
|
|
||||||
)}`
|
|
||||||
});
|
|
||||||
|
|
||||||
const result = await this.laconicRegistry.publishRecord(
|
|
||||||
applicationDeploymentRequestData,
|
|
||||||
);
|
|
||||||
|
|
||||||
log(`Application deployment request record published: ${result.id}`)
|
|
||||||
|
|
||||||
const updateResult = await this.db.updateDeploymentById(canonicalDeployment.id, {
|
|
||||||
applicationDeploymentRequestId: result.id,
|
|
||||||
applicationDeploymentRequestData,
|
|
||||||
});
|
|
||||||
|
|
||||||
return updateResult;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async deleteDeployment(deploymentId: string): Promise<boolean> {
|
async deleteDeployment(deploymentId: string): Promise<boolean> {
|
||||||
@ -1281,23 +1159,9 @@ export class Service {
|
|||||||
if (deployment && deployment.applicationDeploymentRecordId) {
|
if (deployment && deployment.applicationDeploymentRecordId) {
|
||||||
// If deployment is current, remove deployment for project subdomain as well
|
// If deployment is current, remove deployment for project subdomain as well
|
||||||
if (deployment.isCurrent) {
|
if (deployment.isCurrent) {
|
||||||
const canonicalDeployment = await this.db.getDeployment({
|
|
||||||
where: {
|
|
||||||
projectId: deployment.project.id,
|
|
||||||
deployer: deployment.deployer,
|
|
||||||
isCanonical: true
|
|
||||||
},
|
|
||||||
relations: {
|
|
||||||
project: true,
|
|
||||||
deployer: true,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
// If the canonical deployment is not present then query the chain for the deployment record for backward compatibility
|
|
||||||
if (!canonicalDeployment) {
|
|
||||||
log(`Canonical deployment for deployment with id ${deployment.id} not found, querying the chain..`);
|
|
||||||
const currentDeploymentURL = `https://${(deployment.project.name).toLowerCase()}.${deployment.deployer.baseDomain}`;
|
const currentDeploymentURL = `https://${(deployment.project.name).toLowerCase()}.${deployment.deployer.baseDomain}`;
|
||||||
|
|
||||||
|
// TODO: Store the latest DNS deployment record
|
||||||
const deploymentRecords =
|
const deploymentRecords =
|
||||||
await this.laconicRegistry.getDeploymentRecordsByFilter({
|
await this.laconicRegistry.getDeploymentRecordsByFilter({
|
||||||
application: deployment.applicationRecordId,
|
application: deployment.applicationRecordId,
|
||||||
@ -1322,24 +1186,6 @@ export class Service {
|
|||||||
auctionId: deployment.project.auctionId,
|
auctionId: deployment.project.auctionId,
|
||||||
payment: deployment.project.txHash
|
payment: deployment.project.txHash
|
||||||
});
|
});
|
||||||
} else {
|
|
||||||
// If canonical deployment is found in the DB, then send the removal request with that deployment record Id
|
|
||||||
const result =
|
|
||||||
await this.laconicRegistry.createApplicationDeploymentRemovalRequest({
|
|
||||||
deploymentId: canonicalDeployment.applicationDeploymentRecordId!,
|
|
||||||
deployerLrn: canonicalDeployment.deployer.deployerLrn,
|
|
||||||
auctionId: canonicalDeployment.project.auctionId,
|
|
||||||
payment: canonicalDeployment.project.txHash
|
|
||||||
});
|
|
||||||
|
|
||||||
await this.db.updateDeploymentById(canonicalDeployment.id, {
|
|
||||||
status: DeploymentStatus.Deleting,
|
|
||||||
applicationDeploymentRemovalRequestId:
|
|
||||||
result.applicationDeploymentRemovalRequestId,
|
|
||||||
applicationDeploymentRemovalRequestData:
|
|
||||||
result.applicationDeploymentRemovalRequestData,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const result =
|
const result =
|
||||||
@ -1369,7 +1215,7 @@ export class Service {
|
|||||||
data: { name: string },
|
data: { name: string },
|
||||||
): Promise<{
|
): Promise<{
|
||||||
primaryDomain: Domain;
|
primaryDomain: Domain;
|
||||||
// redirectedDomain: Domain;
|
redirectedDomain: Domain;
|
||||||
}> {
|
}> {
|
||||||
const currentProject = await this.db.getProjectById(projectId);
|
const currentProject = await this.db.getProjectById(projectId);
|
||||||
|
|
||||||
@ -1385,22 +1231,22 @@ export class Service {
|
|||||||
|
|
||||||
const savedPrimaryDomain = await this.db.addDomain(primaryDomainDetails);
|
const savedPrimaryDomain = await this.db.addDomain(primaryDomainDetails);
|
||||||
|
|
||||||
// const domainArr = data.name.split('www.');
|
const domainArr = data.name.split('www.');
|
||||||
|
|
||||||
// const redirectedDomainDetails = {
|
const redirectedDomainDetails = {
|
||||||
// name: domainArr.length > 1 ? domainArr[1] : `www.${domainArr[0]}`,
|
name: domainArr.length > 1 ? domainArr[1] : `www.${domainArr[0]}`,
|
||||||
// branch: currentProject.prodBranch,
|
branch: currentProject.prodBranch,
|
||||||
// project: currentProject,
|
project: currentProject,
|
||||||
// redirectTo: savedPrimaryDomain,
|
redirectTo: savedPrimaryDomain,
|
||||||
// };
|
};
|
||||||
|
|
||||||
// const savedRedirectedDomain = await this.db.addDomain(
|
const savedRedirectedDomain = await this.db.addDomain(
|
||||||
// redirectedDomainDetails,
|
redirectedDomainDetails,
|
||||||
// );
|
);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
primaryDomain: savedPrimaryDomain,
|
primaryDomain: savedPrimaryDomain,
|
||||||
// redirectedDomain: savedRedirectedDomain,
|
redirectedDomain: savedRedirectedDomain,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1588,7 +1434,6 @@ export class Service {
|
|||||||
const deployerApiUrl = record.attributes.apiUrl;
|
const deployerApiUrl = record.attributes.apiUrl;
|
||||||
const minimumPayment = record.attributes.minimumPayment;
|
const minimumPayment = record.attributes.minimumPayment;
|
||||||
const paymentAddress = record.attributes.paymentAddress;
|
const paymentAddress = record.attributes.paymentAddress;
|
||||||
const publicKey = record.attributes.publicKey;
|
|
||||||
const baseDomain = deployerApiUrl.substring(deployerApiUrl.indexOf('.') + 1);
|
const baseDomain = deployerApiUrl.substring(deployerApiUrl.indexOf('.') + 1);
|
||||||
|
|
||||||
const deployerData = {
|
const deployerData = {
|
||||||
@ -1597,8 +1442,7 @@ export class Service {
|
|||||||
deployerApiUrl,
|
deployerApiUrl,
|
||||||
baseDomain,
|
baseDomain,
|
||||||
minimumPayment,
|
minimumPayment,
|
||||||
paymentAddress,
|
paymentAddress
|
||||||
publicKey
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO: Update deployers table in a separate job
|
// TODO: Update deployers table in a separate job
|
||||||
|
@ -40,22 +40,6 @@ export interface AppDeploymentRecordAttributes {
|
|||||||
version: string;
|
version: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DNSRecordAttributes {
|
|
||||||
name: string;
|
|
||||||
value: string;
|
|
||||||
request: string;
|
|
||||||
resourceType: string;
|
|
||||||
version: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface RegistryDNSRecordAttributes {
|
|
||||||
name: string;
|
|
||||||
value: string;
|
|
||||||
request: string;
|
|
||||||
resource_type: string;
|
|
||||||
version: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface AppDeploymentRemovalRecordAttributes {
|
export interface AppDeploymentRemovalRecordAttributes {
|
||||||
deployment: string;
|
deployment: string;
|
||||||
request: string;
|
request: string;
|
||||||
@ -63,7 +47,7 @@ export interface AppDeploymentRemovalRecordAttributes {
|
|||||||
version: string;
|
version: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface RegistryRecord {
|
interface RegistryRecord {
|
||||||
id: string;
|
id: string;
|
||||||
names: string[] | null;
|
names: string[] | null;
|
||||||
owners: string[];
|
owners: string[];
|
||||||
@ -80,10 +64,6 @@ export interface AppDeploymentRemovalRecord extends RegistryRecord {
|
|||||||
attributes: AppDeploymentRemovalRecordAttributes;
|
attributes: AppDeploymentRemovalRecordAttributes;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DNSRecord extends RegistryRecord {
|
|
||||||
attributes: RegistryDNSRecordAttributes
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface AddProjectFromTemplateInput {
|
export interface AddProjectFromTemplateInput {
|
||||||
templateOwner: string;
|
templateOwner: string;
|
||||||
templateRepo: string;
|
templateRepo: string;
|
||||||
|
@ -3,5 +3,10 @@
|
|||||||
"id": "2379cf1f-a232-4ad2-ae14-4d881131cc26",
|
"id": "2379cf1f-a232-4ad2-ae14-4d881131cc26",
|
||||||
"name": "Deploy Tools",
|
"name": "Deploy Tools",
|
||||||
"slug": "deploy-tools"
|
"slug": "deploy-tools"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "7eb9b3eb-eb74-4b53-b59a-69884c82a7fb",
|
||||||
|
"name": "Laconic",
|
||||||
|
"slug": "laconic-2"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -10,7 +10,7 @@ import { Deployment, DeploymentStatus, Environment } from '../src/entity/Deploym
|
|||||||
const log = debug('snowball:publish-deploy-records');
|
const log = debug('snowball:publish-deploy-records');
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
const { registryConfig, database } = await getConfig();
|
const { registryConfig, database, misc } = await getConfig();
|
||||||
|
|
||||||
const registry = new Registry(
|
const registry = new Registry(
|
||||||
registryConfig.gqlEndpoint,
|
registryConfig.gqlEndpoint,
|
||||||
|
1
packages/deployer/.gitignore
vendored
1
packages/deployer/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
records/*.yml
|
|
@ -4,5 +4,5 @@ services:
|
|||||||
gqlEndpoint: https://laconicd-sapo.laconic.com/api
|
gqlEndpoint: https://laconicd-sapo.laconic.com/api
|
||||||
userKey:
|
userKey:
|
||||||
bondId:
|
bondId:
|
||||||
chainId: laconic-testnet-2
|
chainId: laconic_9000-2
|
||||||
gasPrice: 0.001alnt
|
gasPrice: 1alnt
|
||||||
|
@ -8,11 +8,8 @@ echo "Using AUTHORITY: $AUTHORITY"
|
|||||||
# Repository URL
|
# Repository URL
|
||||||
REPO_URL="https://git.vdb.to/cerc-io/snowballtools-base"
|
REPO_URL="https://git.vdb.to/cerc-io/snowballtools-base"
|
||||||
|
|
||||||
# Get the latest commit hash for a branch
|
# Get the latest commit hash from the repository
|
||||||
BRANCH_NAME="main"
|
LATEST_HASH=$(git ls-remote $REPO_URL HEAD | awk '{print $1}')
|
||||||
LATEST_HASH=$(git ls-remote $REPO_URL refs/heads/$BRANCH_NAME | awk '{print $1}')
|
|
||||||
|
|
||||||
echo "Latest commit hash for branch $BRANCH_NAME: $LATEST_HASH"
|
|
||||||
|
|
||||||
# Extract version from ../frontend/package.json
|
# Extract version from ../frontend/package.json
|
||||||
PACKAGE_VERSION=$(jq -r '.version' ../frontend/package.json)
|
PACKAGE_VERSION=$(jq -r '.version' ../frontend/package.json)
|
||||||
@ -102,9 +99,6 @@ fi
|
|||||||
# Get payment address for deployer
|
# Get payment address for deployer
|
||||||
paymentAddress=$(yarn --silent laconic -c config.yml registry name resolve "$DEPLOYER_LRN" | jq -r '.[0].attributes.paymentAddress')
|
paymentAddress=$(yarn --silent laconic -c config.yml registry name resolve "$DEPLOYER_LRN" | jq -r '.[0].attributes.paymentAddress')
|
||||||
paymentAmount=$(yarn --silent laconic -c config.yml registry name resolve "$DEPLOYER_LRN" | jq -r '.[0].attributes.minimumPayment' | sed 's/alnt//g')
|
paymentAmount=$(yarn --silent laconic -c config.yml registry name resolve "$DEPLOYER_LRN" | jq -r '.[0].attributes.minimumPayment' | sed 's/alnt//g')
|
||||||
|
|
||||||
echo "Paying address: $paymentAddress with amount $paymentAmount..."
|
|
||||||
|
|
||||||
# Pay deployer if paymentAmount is not null
|
# Pay deployer if paymentAmount is not null
|
||||||
if [[ -n "$paymentAmount" && "$paymentAmount" != "null" ]]; then
|
if [[ -n "$paymentAmount" && "$paymentAmount" != "null" ]]; then
|
||||||
payment=$(yarn --silent laconic -c config.yml registry tokens send --address "$paymentAddress" --type alnt --quantity "$paymentAmount")
|
payment=$(yarn --silent laconic -c config.yml registry tokens send --address "$paymentAddress" --type alnt --quantity "$paymentAmount")
|
||||||
@ -125,18 +119,17 @@ record:
|
|||||||
name: deploy-frontend@$PACKAGE_VERSION
|
name: deploy-frontend@$PACKAGE_VERSION
|
||||||
application: lrn://$AUTHORITY/applications/deploy-frontend@$PACKAGE_VERSION
|
application: lrn://$AUTHORITY/applications/deploy-frontend@$PACKAGE_VERSION
|
||||||
deployer: $DEPLOYER_LRN
|
deployer: $DEPLOYER_LRN
|
||||||
dns: deploy.laconic.com
|
dns: deploy
|
||||||
config:
|
config:
|
||||||
env:
|
env:
|
||||||
LACONIC_HOSTED_CONFIG_server_url: https://deploy-backend.laconic.com
|
LACONIC_HOSTED_CONFIG_server_url: https://deploy-backend.apps.vaasl.io
|
||||||
LACONIC_HOSTED_CONFIG_github_clientid: Ov23li4NtYybQlF6u5Dk
|
LACONIC_HOSTED_CONFIG_github_clientid: Ov23liaet4yc0KX0iM1c
|
||||||
LACONIC_HOSTED_CONFIG_github_pwa_templaterepo: laconic-templates/test-progressive-web-app
|
LACONIC_HOSTED_CONFIG_github_pwa_templaterepo: laconic-templates/test-progressive-web-app
|
||||||
LACONIC_HOSTED_CONFIG_github_image_upload_templaterepo: laconic-templates/image-upload-pwa-example
|
LACONIC_HOSTED_CONFIG_github_image_upload_templaterepo: laconic-templates/image-upload-pwa-example
|
||||||
LACONIC_HOSTED_CONFIG_github_next_app_templaterepo: laconic-templates/starter.nextjs-react-tailwind
|
LACONIC_HOSTED_CONFIG_wallet_connect_id: 63cad7ba97391f63652161f484670e15
|
||||||
LACONIC_HOSTED_CONFIG_laconicd_chain_id: laconic-testnet-2
|
LACONIC_HOSTED_CONFIG_laconicd_chain_id: laconic-testnet-2
|
||||||
LACONIC_HOSTED_CONFIG_wallet_iframe_url: https://wallet.laconic.com
|
|
||||||
meta:
|
meta:
|
||||||
note: Added @ $CURRENT_DATE_TIME
|
note: Added by Snowball @ $CURRENT_DATE_TIME
|
||||||
repository: "$REPO_URL"
|
repository: "$REPO_URL"
|
||||||
repository_ref: $LATEST_HASH
|
repository_ref: $LATEST_HASH
|
||||||
payment: $txHash
|
payment: $txHash
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
source .env
|
|
||||||
echo "Using REGISTRY_BOND_ID: $REGISTRY_BOND_ID"
|
|
||||||
echo "Using DEPLOYER_LRN: $DEPLOYER_LRN"
|
|
||||||
echo "Using AUTHORITY: $AUTHORITY"
|
|
||||||
|
|
||||||
# Repository URL
|
# Repository URL
|
||||||
REPO_URL="https://git.vdb.to/cerc-io/snowballtools-base"
|
REPO_URL="https://git.vdb.to/cerc-io/snowballtools-base"
|
||||||
|
|
||||||
@ -17,33 +12,63 @@ PACKAGE_VERSION=$(jq -r '.version' ../frontend/package.json)
|
|||||||
# Current date and time for note
|
# Current date and time for note
|
||||||
CURRENT_DATE_TIME=$(date -u)
|
CURRENT_DATE_TIME=$(date -u)
|
||||||
|
|
||||||
CONFIG_FILE=config.yml
|
CONFIG_FILE=config.staging.yml
|
||||||
|
REGISTRY_BOND_ID="098c906850b87412f02200e41f449bc79e055eab77acfef32c0b22443bb46661"
|
||||||
|
|
||||||
# Reference: https://git.vdb.to/cerc-io/test-progressive-web-app/src/branch/main/scripts
|
# Reference: https://git.vdb.to/cerc-io/test-progressive-web-app/src/branch/main/scripts
|
||||||
|
|
||||||
# Get latest version from registry and increment application-record version
|
# Get latest version from registry and increment application-record version
|
||||||
NEW_APPLICATION_VERSION=$(yarn --silent laconic -c $CONFIG_FILE registry record list --type ApplicationRecord --all --name "deploy-frontend" 2>/dev/null | jq -r -s ".[] | sort_by(.createTime) | reverse | [ .[] | select(.bondId == \"$REGISTRY_BOND_ID\") ] | .[0].attributes.version" | awk -F. -v OFS=. '{$NF += 1 ; print}')
|
NEW_APPLICATION_VERSION=$(yarn --silent laconic -c $CONFIG_FILE registry record list --type ApplicationRecord --all --name "staging-snowballtools-base-frontend" 2>/dev/null | jq -r -s ".[] | sort_by(.createTime) | reverse | [ .[] | select(.bondId == \"$REGISTRY_BOND_ID\") ] | .[0].attributes.version" | awk -F. -v OFS=. '{$NF += 1 ; print}')
|
||||||
|
|
||||||
if [ -z "$NEW_APPLICATION_VERSION" ] || [ "1" == "$NEW_APPLICATION_VERSION" ]; then
|
if [ -z "$NEW_APPLICATION_VERSION" ] || [ "1" == "$NEW_APPLICATION_VERSION" ]; then
|
||||||
# Set application-record version if no previous records were found
|
# Set application-record version if no previous records were found
|
||||||
NEW_APPLICATION_VERSION=0.0.1
|
NEW_APPLICATION_VERSION=0.0.1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Generate application-deployment-request.yml
|
||||||
|
cat >./staging-records/application-deployment-request.yml <<EOF
|
||||||
|
record:
|
||||||
|
type: ApplicationDeploymentRequest
|
||||||
|
version: '1.0.0'
|
||||||
|
name: staging-snowballtools-base-frontend@$PACKAGE_VERSION
|
||||||
|
application: lrn://staging-snowballtools/applications/staging-snowballtools-base-frontend@$PACKAGE_VERSION
|
||||||
|
dns: dashboard.staging.apps.snowballtools.com
|
||||||
|
config:
|
||||||
|
env:
|
||||||
|
LACONIC_HOSTED_CONFIG_server_url: https://snowballtools-base-api.staging.apps.snowballtools.com
|
||||||
|
LACONIC_HOSTED_CONFIG_github_clientid: Ov23liOaoahRTYd4nSCV
|
||||||
|
LACONIC_HOSTED_CONFIG_github_templaterepo: snowball-tools/test-progressive-web-app
|
||||||
|
LACONIC_HOSTED_CONFIG_github_pwa_templaterepo: snowball-tools/test-progressive-web-app
|
||||||
|
LACONIC_HOSTED_CONFIG_github_image_upload_templaterepo: snowball-tools/image-upload-pwa-example
|
||||||
|
LACONIC_HOSTED_CONFIG_wallet_connect_id: eda9ba18042a5ea500f358194611ece2
|
||||||
|
LACONIC_HOSTED_CONFIG_laconicd_chain_id: laconic-testnet-2
|
||||||
|
LACONIC_HOSTED_CONFIG_lit_relay_api_key: 15DDD969-E75F-404D-AAD9-58A37C4FD354_snowball
|
||||||
|
LACONIC_HOSTED_CONFIG_aplchemy_api_key: THvPart_gqI5x02RNYSBntlmwA66I_qc
|
||||||
|
LACONIC_HOSTED_CONFIG_bugsnag_api_key: 8c480cd5386079f9dd44f9581264a073
|
||||||
|
LACONIC_HOSTED_CONFIG_passkey_wallet_rpid: dashboard.staging.apps.snowballtools.com
|
||||||
|
LACONIC_HOSTED_CONFIG_turnkey_api_base_url: https://api.turnkey.com
|
||||||
|
LACONIC_HOSTED_CONFIG_turnkey_organization_id: 5049ae99-5bca-40b3-8317-504384d4e591
|
||||||
|
meta:
|
||||||
|
note: Added by Snowball @ $CURRENT_DATE_TIME
|
||||||
|
repository: "$REPO_URL"
|
||||||
|
repository_ref: $LATEST_HASH
|
||||||
|
EOF
|
||||||
|
|
||||||
# Generate application-record.yml with incremented version
|
# Generate application-record.yml with incremented version
|
||||||
cat >./records/application-record.yml <<EOF
|
cat >./staging-records/application-record.yml <<EOF
|
||||||
record:
|
record:
|
||||||
type: ApplicationRecord
|
type: ApplicationRecord
|
||||||
version: $NEW_APPLICATION_VERSION
|
version: $NEW_APPLICATION_VERSION
|
||||||
repository_ref: $LATEST_HASH
|
repository_ref: $LATEST_HASH
|
||||||
repository: ["$REPO_URL"]
|
repository: ["$REPO_URL"]
|
||||||
app_type: webapp
|
app_type: webapp
|
||||||
name: deploy-frontend
|
name: staging-snowballtools-base-frontend
|
||||||
app_version: $PACKAGE_VERSION
|
app_version: $PACKAGE_VERSION
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
echo "Files generated successfully"
|
echo "Files generated successfully."
|
||||||
|
|
||||||
RECORD_FILE=records/application-record.yml
|
RECORD_FILE=staging-records/application-record.yml
|
||||||
|
|
||||||
# Publish ApplicationRecord
|
# Publish ApplicationRecord
|
||||||
publish_response=$(yarn --silent laconic -c $CONFIG_FILE registry record publish --filename $RECORD_FILE)
|
publish_response=$(yarn --silent laconic -c $CONFIG_FILE registry record publish --filename $RECORD_FILE)
|
||||||
@ -57,7 +82,7 @@ echo "ApplicationRecord published"
|
|||||||
echo $RECORD_ID
|
echo $RECORD_ID
|
||||||
|
|
||||||
# Set name to record
|
# Set name to record
|
||||||
REGISTRY_APP_LRN="lrn://$AUTHORITY/applications/deploy-frontend"
|
REGISTRY_APP_LRN="lrn://staging-snowballtools/applications/staging-snowballtools-base-frontend"
|
||||||
|
|
||||||
sleep 2
|
sleep 2
|
||||||
yarn --silent laconic -c $CONFIG_FILE registry name set "$REGISTRY_APP_LRN@${PACKAGE_VERSION}" "$RECORD_ID"
|
yarn --silent laconic -c $CONFIG_FILE registry name set "$REGISTRY_APP_LRN@${PACKAGE_VERSION}" "$RECORD_ID"
|
||||||
@ -96,46 +121,7 @@ if [ -z "$APP_RECORD" ] || [ "null" == "$APP_RECORD" ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get payment address for deployer
|
RECORD_FILE=staging-records/application-deployment-request.yml
|
||||||
paymentAddress=$(yarn --silent laconic -c config.yml registry name resolve "$DEPLOYER_LRN" | jq -r '.[0].attributes.paymentAddress')
|
|
||||||
paymentAmount=$(yarn --silent laconic -c config.yml registry name resolve "$DEPLOYER_LRN" | jq -r '.[0].attributes.minimumPayment' | sed 's/alnt//g')
|
|
||||||
# Pay deployer if paymentAmount is not null
|
|
||||||
if [[ -n "$paymentAmount" && "$paymentAmount" != "null" ]]; then
|
|
||||||
payment=$(yarn --silent laconic -c config.yml registry tokens send --address "$paymentAddress" --type alnt --quantity "$paymentAmount")
|
|
||||||
|
|
||||||
# Extract the transaction hash
|
|
||||||
txHash=$(echo "$payment" | jq -r '.tx.hash')
|
|
||||||
echo "Paid deployer with txHash as $txHash"
|
|
||||||
|
|
||||||
else
|
|
||||||
echo "Payment amount is null; skipping payment."
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Generate application-deployment-request.yml
|
|
||||||
cat >./records/application-deployment-request.yml <<EOF
|
|
||||||
record:
|
|
||||||
type: ApplicationDeploymentRequest
|
|
||||||
version: '1.0.0'
|
|
||||||
name: deploy-frontend@$PACKAGE_VERSION
|
|
||||||
application: lrn://$AUTHORITY/applications/deploy-frontend@$PACKAGE_VERSION
|
|
||||||
deployer: $DEPLOYER_LRN
|
|
||||||
dns: deploy
|
|
||||||
config:
|
|
||||||
env:
|
|
||||||
LACONIC_HOSTED_CONFIG_server_url: https://deploy-backend.apps.vaasl.io
|
|
||||||
LACONIC_HOSTED_CONFIG_github_clientid: Ov23liaet4yc0KX0iM1c
|
|
||||||
LACONIC_HOSTED_CONFIG_github_pwa_templaterepo: laconic-templates/test-progressive-web-app
|
|
||||||
LACONIC_HOSTED_CONFIG_github_image_upload_templaterepo: laconic-templates/image-upload-pwa-example
|
|
||||||
LACONIC_HOSTED_CONFIG_github_next_app_templaterepo: laconic-templates/starter.nextjs-react-tailwind
|
|
||||||
LACONIC_HOSTED_CONFIG_laconicd_chain_id: laconic-testnet-2
|
|
||||||
meta:
|
|
||||||
note: Added by Snowball @ $CURRENT_DATE_TIME
|
|
||||||
repository: "$REPO_URL"
|
|
||||||
repository_ref: $LATEST_HASH
|
|
||||||
payment: $txHash
|
|
||||||
EOF
|
|
||||||
|
|
||||||
RECORD_FILE=records/application-deployment-request.yml
|
|
||||||
|
|
||||||
sleep 2
|
sleep 2
|
||||||
deployment_response=$(yarn --silent laconic -c $CONFIG_FILE registry record publish --filename $RECORD_FILE)
|
deployment_response=$(yarn --silent laconic -c $CONFIG_FILE registry record publish --filename $RECORD_FILE)
|
17
packages/deployer/records/application-deployment-request.yml
Normal file
17
packages/deployer/records/application-deployment-request.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
record:
|
||||||
|
type: ApplicationDeploymentRequest
|
||||||
|
version: '1.0.0'
|
||||||
|
name: deploy-frontend@1.0.0
|
||||||
|
application: lrn://vaasl/applications/deploy-frontend@1.0.0
|
||||||
|
dns: deploy
|
||||||
|
config:
|
||||||
|
env:
|
||||||
|
LACONIC_HOSTED_CONFIG_server_url: https://deploy-backend.apps.vaasl.io
|
||||||
|
LACONIC_HOSTED_CONFIG_github_clientid: Ov23liaet4yc0KX0iM1c
|
||||||
|
LACONIC_HOSTED_CONFIG_github_pwa_templaterepo: laconic-templates/test-progressive-web-app
|
||||||
|
LACONIC_HOSTED_CONFIG_github_image_upload_templaterepo: laconic-templates/image-upload-pwa-example
|
||||||
|
LACONIC_HOSTED_CONFIG_wallet_connect_id: 63cad7ba97391f63652161f484670e15
|
||||||
|
meta:
|
||||||
|
note: Added by Snowball @ Thu Apr 4 14:49:41 UTC 2024
|
||||||
|
repository: "https://git.vdb.to/cerc-io/snowballtools-base"
|
||||||
|
repository_ref: 351db16336eacc3e1f9119ceb8d1282b8e27a27e
|
8
packages/deployer/records/application-record.yml
Normal file
8
packages/deployer/records/application-record.yml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
record:
|
||||||
|
type: ApplicationRecord
|
||||||
|
version: 0.0.2
|
||||||
|
repository_ref: 351db16336eacc3e1f9119ceb8d1282b8e27a27e
|
||||||
|
repository: ["https://git.vdb.to/cerc-io/snowballtools-base"]
|
||||||
|
app_type: webapp
|
||||||
|
name: deploy-frontend
|
||||||
|
app_version: 1.0.0
|
@ -1,56 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
source .env
|
|
||||||
echo "Using DEPLOYER_LRN: $DEPLOYER_LRN"
|
|
||||||
|
|
||||||
# Generate application-deployment-removal-request.yml
|
|
||||||
REMOVAL_REQUEST_RECORD_FILE=records/application-deployment-removal-request.yml
|
|
||||||
# TODO: Pass deployment record ID as arg
|
|
||||||
DEPLOYMENT_RECORD_ID=bafyreidjho77xeczaqpyawhc4wbpm5it5atibtuxk6ost6vnpu2svlp3ka
|
|
||||||
|
|
||||||
cat > $REMOVAL_REQUEST_RECORD_FILE <<EOF
|
|
||||||
record:
|
|
||||||
deployer: $DEPLOYER_LRN
|
|
||||||
deployment: $DEPLOYMENT_RECORD_ID
|
|
||||||
type: ApplicationDeploymentRemovalRequest
|
|
||||||
version: 1.0.0
|
|
||||||
EOF
|
|
||||||
|
|
||||||
CONFIG_FILE=config.yml
|
|
||||||
|
|
||||||
sleep 2
|
|
||||||
REMOVAL_REQUEST_ID=$(yarn --silent laconic -c $CONFIG_FILE registry record publish --filename $REMOVAL_REQUEST_RECORD_FILE | jq -r '.id')
|
|
||||||
echo "ApplicationDeploymentRemovalRequest published"
|
|
||||||
echo $REMOVAL_REQUEST_ID
|
|
||||||
|
|
||||||
# Deployment checks
|
|
||||||
RETRY_INTERVAL=30
|
|
||||||
MAX_RETRIES=20
|
|
||||||
|
|
||||||
# Check that an ApplicationDeploymentRemovalRecord is published
|
|
||||||
retry_count=0
|
|
||||||
while true; do
|
|
||||||
removal_records_response=$(yarn --silent laconic -c $CONFIG_FILE registry record list --type ApplicationDeploymentRemovalRecord --all request $REMOVAL_REQUEST_ID)
|
|
||||||
len_removal_records=$(echo $removal_records_response | jq 'length')
|
|
||||||
|
|
||||||
# Check if number of records returned is 0
|
|
||||||
if [ $len_removal_records -eq 0 ]; then
|
|
||||||
# Check if retries are exhausted
|
|
||||||
if [ $retry_count -eq $MAX_RETRIES ]; then
|
|
||||||
echo "Retries exhausted"
|
|
||||||
echo "ApplicationDeploymentRemovalRecord for deployment removal request $REMOVAL_REQUEST_ID not found"
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
echo "ApplicationDeploymentRemovalRecord not found, retrying in $RETRY_INTERVAL sec..."
|
|
||||||
sleep $RETRY_INTERVAL
|
|
||||||
retry_count=$((retry_count+1))
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "ApplicationDeploymentRemovalRecord found"
|
|
||||||
REMOVAL_RECORD_ID=$(echo $removal_records_response | jq -r '.[0].id')
|
|
||||||
echo $REMOVAL_RECORD_ID
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
echo "Deployment removal successful"
|
|
@ -0,0 +1,24 @@
|
|||||||
|
record:
|
||||||
|
type: ApplicationDeploymentRequest
|
||||||
|
version: '1.0.0'
|
||||||
|
name: staging-snowballtools-base-frontend@0.0.0
|
||||||
|
application: crn://staging-snowballtools/applications/staging-snowballtools-base-frontend@0.0.0
|
||||||
|
dns: dashboard.staging.apps.snowballtools.com
|
||||||
|
config:
|
||||||
|
env:
|
||||||
|
LACONIC_HOSTED_CONFIG_server_url: https://snowballtools-base-api.staging.apps.snowballtools.com
|
||||||
|
LACONIC_HOSTED_CONFIG_github_clientid: Ov23liOaoahRTYd4nSCV
|
||||||
|
LACONIC_HOSTED_CONFIG_github_templaterepo: snowball-tools/test-progressive-web-app
|
||||||
|
LACONIC_HOSTED_CONFIG_github_pwa_templaterepo: snowball-tools/test-progressive-web-app
|
||||||
|
LACONIC_HOSTED_CONFIG_github_image_upload_templaterepo: snowball-tools/image-upload-pwa-example
|
||||||
|
LACONIC_HOSTED_CONFIG_wallet_connect_id: eda9ba18042a5ea500f358194611ece2
|
||||||
|
LACONIC_HOSTED_CONFIG_lit_relay_api_key: 15DDD969-E75F-404D-AAD9-58A37C4FD354_snowball
|
||||||
|
LACONIC_HOSTED_CONFIG_aplchemy_api_key: THvPart_gqI5x02RNYSBntlmwA66I_qc
|
||||||
|
LACONIC_HOSTED_CONFIG_bugsnag_api_key: 8c480cd5386079f9dd44f9581264a073
|
||||||
|
LACONIC_HOSTED_CONFIG_passkey_wallet_rpid: dashboard.staging.apps.snowballtools.com
|
||||||
|
LACONIC_HOSTED_CONFIG_turnkey_api_base_url: https://api.turnkey.com
|
||||||
|
LACONIC_HOSTED_CONFIG_turnkey_organization_id: 5049ae99-5bca-40b3-8317-504384d4e591
|
||||||
|
meta:
|
||||||
|
note: Added by Snowball @ Mon Jun 24 23:51:48 UTC 2024
|
||||||
|
repository: "https://git.vdb.to/cerc-io/snowballtools-base"
|
||||||
|
repository_ref: 61e3e88a6c9d57e95441059369ee5a46f5c07601
|
8
packages/deployer/staging-records/application-record.yml
Normal file
8
packages/deployer/staging-records/application-record.yml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
record:
|
||||||
|
type: ApplicationRecord
|
||||||
|
version: 0.0.1
|
||||||
|
repository_ref: 61e3e88a6c9d57e95441059369ee5a46f5c07601
|
||||||
|
repository: ["https://git.vdb.to/cerc-io/snowballtools-base"]
|
||||||
|
app_type: webapp
|
||||||
|
name: staging-snowballtools-base-frontend
|
||||||
|
app_version: 0.0.0
|
@ -3,14 +3,17 @@ VITE_SERVER_URL='http://localhost:8000'
|
|||||||
VITE_GITHUB_CLIENT_ID=
|
VITE_GITHUB_CLIENT_ID=
|
||||||
VITE_GITHUB_PWA_TEMPLATE_REPO="snowball-tools/test-progressive-web-app"
|
VITE_GITHUB_PWA_TEMPLATE_REPO="snowball-tools/test-progressive-web-app"
|
||||||
VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO="snowball-tools/image-upload-pwa-example"
|
VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO="snowball-tools/image-upload-pwa-example"
|
||||||
VITE_GITHUB_NEXT_APP_TEMPLATE_REPO="snowball-tools/starter.nextjs-react-tailwind"
|
|
||||||
|
VITE_WALLET_CONNECT_ID=
|
||||||
|
|
||||||
VITE_LIT_RELAY_API_KEY=
|
VITE_LIT_RELAY_API_KEY=
|
||||||
|
|
||||||
|
VITE_ALCHEMY_API_KEY=
|
||||||
|
|
||||||
VITE_BUGSNAG_API_KEY=
|
VITE_BUGSNAG_API_KEY=
|
||||||
|
|
||||||
VITE_PASSKEY_WALLET_RPID=
|
VITE_PASSKEY_WALLET_RPID=
|
||||||
VITE_TURNKEY_API_BASE_URL=
|
VITE_TURNKEY_API_BASE_URL=
|
||||||
|
VITE_TURNKEY_ORGANIZATION_ID=
|
||||||
|
|
||||||
VITE_LACONICD_CHAIN_ID=
|
VITE_LACONICD_CHAIN_ID=
|
||||||
VITE_WALLET_IFRAME_URL=
|
|
||||||
|
@ -41,12 +41,13 @@
|
|||||||
"@turnkey/http": "^2.10.0",
|
"@turnkey/http": "^2.10.0",
|
||||||
"@turnkey/sdk-react": "^0.1.0",
|
"@turnkey/sdk-react": "^0.1.0",
|
||||||
"@turnkey/webauthn-stamper": "^0.5.0",
|
"@turnkey/webauthn-stamper": "^0.5.0",
|
||||||
|
"@walletconnect/ethereum-provider": "^2.12.2",
|
||||||
"@web3modal/siwe": "4.0.5",
|
"@web3modal/siwe": "4.0.5",
|
||||||
|
"@web3modal/wagmi": "4.0.5",
|
||||||
"assert": "^2.1.0",
|
"assert": "^2.1.0",
|
||||||
"axios": "^1.6.7",
|
"axios": "^1.6.7",
|
||||||
"clsx": "^2.1.0",
|
"clsx": "^2.1.0",
|
||||||
"date-fns": "^3.3.1",
|
"date-fns": "^3.3.1",
|
||||||
"ethers": "^5.6.2",
|
|
||||||
"downshift": "^8.3.2",
|
"downshift": "^8.3.2",
|
||||||
"framer-motion": "^11.0.8",
|
"framer-motion": "^11.0.8",
|
||||||
"gql-client": "^1.0.0",
|
"gql-client": "^1.0.0",
|
||||||
@ -68,6 +69,7 @@
|
|||||||
"usehooks-ts": "^2.15.1",
|
"usehooks-ts": "^2.15.1",
|
||||||
"uuid": "^9.0.1",
|
"uuid": "^9.0.1",
|
||||||
"viem": "^2.7.11",
|
"viem": "^2.7.11",
|
||||||
|
"wagmi": "2.5.7",
|
||||||
"web-vitals": "^2.1.4"
|
"web-vitals": "^2.1.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -11,8 +11,8 @@ import ProjectSearchLayout from './layouts/ProjectSearch';
|
|||||||
import Index from './pages';
|
import Index from './pages';
|
||||||
import AuthPage from './pages/AuthPage';
|
import AuthPage from './pages/AuthPage';
|
||||||
import { DashboardLayout } from './pages/org-slug/layout';
|
import { DashboardLayout } from './pages/org-slug/layout';
|
||||||
|
import Web3Provider from 'context/Web3Provider';
|
||||||
import { BASE_URL } from 'utils/constants';
|
import { BASE_URL } from 'utils/constants';
|
||||||
import BuyPrepaidService from './pages/BuyPrepaidService';
|
|
||||||
|
|
||||||
const router = createBrowserRouter([
|
const router = createBrowserRouter([
|
||||||
{
|
{
|
||||||
@ -50,10 +50,6 @@ const router = createBrowserRouter([
|
|||||||
path: '/login',
|
path: '/login',
|
||||||
element: <AuthPage />,
|
element: <AuthPage />,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: '/buy-prepaid-service',
|
|
||||||
element: <BuyPrepaidService />,
|
|
||||||
},
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
@ -79,7 +75,9 @@ function App() {
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<Web3Provider>
|
||||||
<RouterProvider router={router} />
|
<RouterProvider router={router} />
|
||||||
|
</Web3Provider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
import {
|
import {
|
||||||
VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO,
|
VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO,
|
||||||
VITE_GITHUB_PWA_TEMPLATE_REPO,
|
VITE_GITHUB_PWA_TEMPLATE_REPO,
|
||||||
VITE_GITHUB_NEXT_APP_TEMPLATE_REPO,
|
|
||||||
} from 'utils/constants';
|
} from 'utils/constants';
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
{
|
{
|
||||||
id: '1',
|
id: '1',
|
||||||
name: 'Progressive Web App (PWA)',
|
name: 'Progressive Web App (PWA)',
|
||||||
icon: 'web',
|
icon: 'pwa',
|
||||||
repoFullName: `${VITE_GITHUB_PWA_TEMPLATE_REPO}`,
|
repoFullName: `${VITE_GITHUB_PWA_TEMPLATE_REPO}`,
|
||||||
isComingSoon: false,
|
isComingSoon: false,
|
||||||
},
|
},
|
||||||
@ -21,9 +20,23 @@ export default [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: '3',
|
id: '3',
|
||||||
name: 'Next.js + React + TailwindCSS',
|
name: 'Kotlin',
|
||||||
icon: 'web',
|
icon: 'kotlin',
|
||||||
repoFullName: `${VITE_GITHUB_NEXT_APP_TEMPLATE_REPO}`,
|
repoFullName: '',
|
||||||
isComingSoon: false,
|
isComingSoon: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: '4',
|
||||||
|
name: 'React Native',
|
||||||
|
icon: 'react-native',
|
||||||
|
repoFullName: '',
|
||||||
|
isComingSoon: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: '5',
|
||||||
|
name: 'Swift',
|
||||||
|
icon: 'swift',
|
||||||
|
repoFullName: '',
|
||||||
|
isComingSoon: true,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
@ -47,7 +47,6 @@ export const ChangeStateToProductionDialog = ({
|
|||||||
handleCancel={handleCancel}
|
handleCancel={handleCancel}
|
||||||
open={open}
|
open={open}
|
||||||
handleConfirm={handleConfirm}
|
handleConfirm={handleConfirm}
|
||||||
confirmButtonTitle={isConfirmButtonLoading ? 'Redeploying' : 'Redeploy'}
|
|
||||||
confirmButtonProps={{
|
confirmButtonProps={{
|
||||||
disabled: isConfirmButtonLoading,
|
disabled: isConfirmButtonLoading,
|
||||||
rightIcon: isConfirmButtonLoading ? (
|
rightIcon: isConfirmButtonLoading ? (
|
||||||
|
@ -4,11 +4,7 @@ import {
|
|||||||
MenuItem,
|
MenuItem,
|
||||||
MenuList,
|
MenuList,
|
||||||
} from '@snowballtools/material-tailwind-react-fork';
|
} from '@snowballtools/material-tailwind-react-fork';
|
||||||
import {
|
import { ComponentPropsWithoutRef, MouseEvent, useCallback } from 'react';
|
||||||
ComponentPropsWithoutRef,
|
|
||||||
MouseEvent,
|
|
||||||
useCallback,
|
|
||||||
} from 'react';
|
|
||||||
import { useNavigate } from 'react-router-dom';
|
import { useNavigate } from 'react-router-dom';
|
||||||
import { Project } from 'gql-client';
|
import { Project } from 'gql-client';
|
||||||
import { Avatar } from 'components/shared/Avatar';
|
import { Avatar } from 'components/shared/Avatar';
|
||||||
@ -87,7 +83,7 @@ export const ProjectCard = ({
|
|||||||
<p className={theme.title()}>{project.name}</p>
|
<p className={theme.title()}>{project.name}</p>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
<p className={theme.description()}>
|
<p className={theme.description()}>
|
||||||
{project.deployments[0]?.applicationDeploymentRecordData?.url ?? 'No domain'}
|
{project.deployments[0]?.domain?.name ?? 'No domain'}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{/* Icons */}
|
{/* Icons */}
|
||||||
|
@ -1,96 +0,0 @@
|
|||||||
import { useCallback, useEffect } from 'react';
|
|
||||||
|
|
||||||
import { Box, Modal } from '@mui/material';
|
|
||||||
|
|
||||||
import {
|
|
||||||
VITE_LACONICD_CHAIN_ID,
|
|
||||||
VITE_WALLET_IFRAME_URL,
|
|
||||||
} from 'utils/constants';
|
|
||||||
|
|
||||||
const ApproveTransactionModal = ({
|
|
||||||
setAccount,
|
|
||||||
setIsDataReceived,
|
|
||||||
isVisible,
|
|
||||||
}: {
|
|
||||||
setAccount: (account: string) => void;
|
|
||||||
setIsDataReceived: (isReceived: boolean) => void;
|
|
||||||
isVisible: boolean;
|
|
||||||
}) => {
|
|
||||||
useEffect(() => {
|
|
||||||
const handleMessage = (event: MessageEvent) => {
|
|
||||||
if (event.origin !== VITE_WALLET_IFRAME_URL) return;
|
|
||||||
|
|
||||||
if (event.data.type === 'WALLET_ACCOUNTS_DATA') {
|
|
||||||
setIsDataReceived(true);
|
|
||||||
|
|
||||||
if (event.data.data.length === 0) {
|
|
||||||
console.error(`Accounts not present for chainId: ${VITE_LACONICD_CHAIN_ID}`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
setAccount(event.data.data[0]);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (event.data.type === 'ERROR') {
|
|
||||||
console.error('Error from wallet:', event.data.message);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
window.addEventListener('message', handleMessage);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
window.removeEventListener('message', handleMessage);
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const getDataFromWallet = useCallback(() => {
|
|
||||||
const iframe = document.getElementById('walletIframe') as HTMLIFrameElement;
|
|
||||||
|
|
||||||
if (!iframe.contentWindow) {
|
|
||||||
console.error('Iframe not found or not loaded');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
iframe.contentWindow.postMessage(
|
|
||||||
{
|
|
||||||
type: 'REQUEST_WALLET_ACCOUNTS',
|
|
||||||
chainId: VITE_LACONICD_CHAIN_ID,
|
|
||||||
},
|
|
||||||
VITE_WALLET_IFRAME_URL,
|
|
||||||
);
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Modal open={isVisible} disableEscapeKeyDown keepMounted>
|
|
||||||
<Box
|
|
||||||
sx={{
|
|
||||||
position: 'absolute',
|
|
||||||
top: '50%',
|
|
||||||
left: '50%',
|
|
||||||
transform: 'translate(-50%, -50%)',
|
|
||||||
width: '90%',
|
|
||||||
maxWidth: '1200px',
|
|
||||||
height: '600px',
|
|
||||||
maxHeight: '80vh',
|
|
||||||
overflow: 'auto',
|
|
||||||
boxShadow: 24,
|
|
||||||
borderRadius: '8px',
|
|
||||||
outline: 'none',
|
|
||||||
bgcolor: 'background.paper',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<iframe
|
|
||||||
onLoad={getDataFromWallet}
|
|
||||||
id="walletIframe"
|
|
||||||
src={`${VITE_WALLET_IFRAME_URL}/wallet-embed`}
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
sandbox="allow-scripts allow-same-origin"
|
|
||||||
className="border rounded-md shadow-sm"
|
|
||||||
></iframe>
|
|
||||||
</Box>
|
|
||||||
</Modal>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ApproveTransactionModal;
|
|
@ -1,67 +0,0 @@
|
|||||||
import { useEffect, useState } from 'react';
|
|
||||||
|
|
||||||
import { Modal } from '@mui/material';
|
|
||||||
|
|
||||||
import { VITE_WALLET_IFRAME_URL } from 'utils/constants';
|
|
||||||
import useCheckBalance from '../../../hooks/useCheckBalance';
|
|
||||||
|
|
||||||
const CHECK_BALANCE_INTERVAL = 5000;
|
|
||||||
const IFRAME_ID = 'checkBalanceIframe';
|
|
||||||
|
|
||||||
const CheckBalanceIframe = ({
|
|
||||||
onBalanceChange,
|
|
||||||
isPollingEnabled,
|
|
||||||
amount,
|
|
||||||
}: {
|
|
||||||
onBalanceChange: (value: boolean | undefined) => void;
|
|
||||||
isPollingEnabled: boolean;
|
|
||||||
amount: string;
|
|
||||||
}) => {
|
|
||||||
const { isBalanceSufficient, checkBalance } = useCheckBalance(
|
|
||||||
amount,
|
|
||||||
IFRAME_ID,
|
|
||||||
);
|
|
||||||
|
|
||||||
const [isLoaded, setIsLoaded] = useState(false);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!isLoaded) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
checkBalance();
|
|
||||||
}, [amount, checkBalance, isLoaded]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!isPollingEnabled || !isLoaded || isBalanceSufficient) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const interval = setInterval(() => {
|
|
||||||
checkBalance();
|
|
||||||
}, CHECK_BALANCE_INTERVAL);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
clearInterval(interval);
|
|
||||||
};
|
|
||||||
}, [isBalanceSufficient, isPollingEnabled, checkBalance, isLoaded]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
onBalanceChange(isBalanceSufficient);
|
|
||||||
}, [isBalanceSufficient]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Modal open={false} disableEscapeKeyDown keepMounted>
|
|
||||||
<iframe
|
|
||||||
onLoad={() => setIsLoaded(true)}
|
|
||||||
id={IFRAME_ID}
|
|
||||||
src={VITE_WALLET_IFRAME_URL}
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
sandbox="allow-scripts allow-same-origin"
|
|
||||||
className="border rounded-md shadow-sm"
|
|
||||||
/>
|
|
||||||
</Modal>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default CheckBalanceIframe;
|
|
@ -1,4 +1,4 @@
|
|||||||
import { useCallback, useState, useEffect, useMemo } from 'react';
|
import { useCallback, useState, useEffect } from 'react';
|
||||||
import { useForm, Controller } from 'react-hook-form';
|
import { useForm, Controller } from 'react-hook-form';
|
||||||
import { FormProvider, FieldValues } from 'react-hook-form';
|
import { FormProvider, FieldValues } from 'react-hook-form';
|
||||||
import { useNavigate, useSearchParams } from 'react-router-dom';
|
import { useNavigate, useSearchParams } from 'react-router-dom';
|
||||||
@ -8,7 +8,6 @@ import {
|
|||||||
AuctionParams,
|
AuctionParams,
|
||||||
Deployer,
|
Deployer,
|
||||||
} from 'gql-client';
|
} from 'gql-client';
|
||||||
import { BigNumber } from 'ethers';
|
|
||||||
|
|
||||||
import { Select, MenuItem, FormControl, FormHelperText } from '@mui/material';
|
import { Select, MenuItem, FormControl, FormHelperText } from '@mui/material';
|
||||||
|
|
||||||
@ -21,19 +20,15 @@ import { Button } from '../../shared/Button';
|
|||||||
import { Input } from 'components/shared/Input';
|
import { Input } from 'components/shared/Input';
|
||||||
import { useToast } from 'components/shared/Toast';
|
import { useToast } from 'components/shared/Toast';
|
||||||
import { useGQLClient } from '../../../context/GQLClientContext';
|
import { useGQLClient } from '../../../context/GQLClientContext';
|
||||||
import ApproveTransactionModal from './ApproveTransactionModal';
|
|
||||||
import EnvironmentVariablesForm from 'pages/org-slug/projects/id/settings/EnvironmentVariablesForm';
|
import EnvironmentVariablesForm from 'pages/org-slug/projects/id/settings/EnvironmentVariablesForm';
|
||||||
import { EnvironmentVariablesFormValues } from 'types/types';
|
import { EnvironmentVariablesFormValues } from 'types/types';
|
||||||
import {
|
import ConnectWallet from './ConnectWallet';
|
||||||
VITE_LACONICD_CHAIN_ID,
|
import { useWalletConnectClient } from 'context/WalletConnectContext';
|
||||||
VITE_WALLET_IFRAME_URL,
|
|
||||||
} from 'utils/constants';
|
|
||||||
import CheckBalanceIframe from './CheckBalanceIframe';
|
|
||||||
|
|
||||||
type ConfigureDeploymentFormValues = {
|
type ConfigureDeploymentFormValues = {
|
||||||
option: string;
|
option: string;
|
||||||
lrn?: string;
|
lrn?: string;
|
||||||
numProviders?: string;
|
numProviders?: number;
|
||||||
maxPrice?: string;
|
maxPrice?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -41,19 +36,16 @@ type ConfigureFormValues = ConfigureDeploymentFormValues &
|
|||||||
EnvironmentVariablesFormValues;
|
EnvironmentVariablesFormValues;
|
||||||
|
|
||||||
const DEFAULT_MAX_PRICE = '10000';
|
const DEFAULT_MAX_PRICE = '10000';
|
||||||
const TX_APPROVAL_TIMEOUT_MS = 60000;
|
|
||||||
|
|
||||||
const Configure = () => {
|
const Configure = () => {
|
||||||
|
const { signClient, session, accounts } = useWalletConnectClient();
|
||||||
|
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
const [deployers, setDeployers] = useState<Deployer[]>([]);
|
const [deployers, setDeployers] = useState<Deployer[]>([]);
|
||||||
const [selectedAccount, setSelectedAccount] = useState<string>();
|
const [selectedAccount, setSelectedAccount] = useState<string>();
|
||||||
const [selectedDeployer, setSelectedDeployer] = useState<Deployer>();
|
const [selectedDeployer, setSelectedDeployer] = useState<Deployer>();
|
||||||
const [isPaymentLoading, setIsPaymentLoading] = useState(false);
|
const [isPaymentLoading, setIsPaymentLoading] = useState(false);
|
||||||
const [isPaymentDone, setIsPaymentDone] = useState(false);
|
const [isPaymentDone, setIsPaymentDone] = useState(false);
|
||||||
const [isFrameVisible, setIsFrameVisible] = useState(false);
|
|
||||||
const [isAccountsDataReceived, setIsAccountsDataReceived] = useState(false);
|
|
||||||
const [balanceMessage, setBalanceMessage] = useState<string>();
|
|
||||||
const [isBalanceSufficient, setIsBalanceSufficient] = useState<boolean>();
|
|
||||||
|
|
||||||
const [searchParams] = useSearchParams();
|
const [searchParams] = useSearchParams();
|
||||||
const templateId = searchParams.get('templateId');
|
const templateId = searchParams.get('templateId');
|
||||||
@ -77,40 +69,16 @@ const Configure = () => {
|
|||||||
option: 'Auction',
|
option: 'Auction',
|
||||||
maxPrice: DEFAULT_MAX_PRICE,
|
maxPrice: DEFAULT_MAX_PRICE,
|
||||||
lrn: '',
|
lrn: '',
|
||||||
numProviders: '1',
|
numProviders: 1,
|
||||||
variables: [],
|
variables: [],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const selectedOption = methods.watch('option');
|
const selectedOption = methods.watch('option');
|
||||||
const selectedNumProviders = methods.watch('numProviders') ?? '1';
|
|
||||||
const selectedMaxPrice = methods.watch('maxPrice') ?? DEFAULT_MAX_PRICE;
|
|
||||||
|
|
||||||
const isTabletView = useMediaQuery('(min-width: 720px)'); // md:
|
const isTabletView = useMediaQuery('(min-width: 720px)'); // md:
|
||||||
const buttonSize = isTabletView ? { size: 'lg' as const } : {};
|
const buttonSize = isTabletView ? { size: 'lg' as const } : {};
|
||||||
|
|
||||||
const amountToBePaid = useMemo(() => {
|
|
||||||
let amount: string;
|
|
||||||
|
|
||||||
if (selectedOption === 'LRN') {
|
|
||||||
amount = selectedDeployer?.minimumPayment?.replace(/\D/g, '') ?? '0';
|
|
||||||
} else {
|
|
||||||
if (!selectedNumProviders || !selectedMaxPrice) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
const bigMaxPrice = BigNumber.from(selectedMaxPrice);
|
|
||||||
amount = bigMaxPrice.mul(selectedNumProviders).toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
return amount;
|
|
||||||
}, [
|
|
||||||
selectedOption,
|
|
||||||
selectedDeployer?.minimumPayment,
|
|
||||||
selectedMaxPrice,
|
|
||||||
selectedNumProviders,
|
|
||||||
]);
|
|
||||||
|
|
||||||
const createProject = async (
|
const createProject = async (
|
||||||
data: FieldValues,
|
data: FieldValues,
|
||||||
envVariables: AddEnvironmentVariableInput[],
|
envVariables: AddEnvironmentVariableInput[],
|
||||||
@ -212,8 +180,9 @@ const Configure = () => {
|
|||||||
(deployer) => deployer.deployerLrn === deployerLrn,
|
(deployer) => deployer.deployerLrn === deployerLrn,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
let amount: string;
|
||||||
let senderAddress: string;
|
let senderAddress: string;
|
||||||
let txHash: string | null = null;
|
let txHash: string;
|
||||||
if (createFormData.option === 'LRN' && !deployer?.minimumPayment) {
|
if (createFormData.option === 'LRN' && !deployer?.minimumPayment) {
|
||||||
toast({
|
toast({
|
||||||
id: 'no-payment-required',
|
id: 'no-payment-required',
|
||||||
@ -227,46 +196,39 @@ const Configure = () => {
|
|||||||
} else {
|
} else {
|
||||||
if (!selectedAccount) return;
|
if (!selectedAccount) return;
|
||||||
|
|
||||||
senderAddress = selectedAccount;
|
senderAddress = selectedAccount.split(':')[2];
|
||||||
|
|
||||||
txHash = await cosmosSendTokensHandler(senderAddress, amountToBePaid);
|
if (createFormData.option === 'LRN') {
|
||||||
|
amount = deployer?.minimumPayment!;
|
||||||
if (!txHash) {
|
} else {
|
||||||
toast({
|
amount = (
|
||||||
id: 'unsuccessful-tx',
|
createFormData.numProviders * createFormData.maxPrice
|
||||||
title: 'Transaction rejected',
|
).toString();
|
||||||
variant: 'error',
|
|
||||||
onDismiss: dismiss,
|
|
||||||
});
|
|
||||||
setIsFrameVisible(false);
|
|
||||||
setIsPaymentLoading(false);
|
|
||||||
throw new Error('Transaction rejected');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate transaction hash
|
const amountToBePaid = amount.replace(/\D/g, '').toString();
|
||||||
|
|
||||||
|
const txHashResponse = await cosmosSendTokensHandler(
|
||||||
|
selectedAccount,
|
||||||
|
amountToBePaid,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!txHashResponse) {
|
||||||
|
console.error('Tx not successful');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
txHash = txHashResponse;
|
||||||
|
|
||||||
const isTxHashValid = await verifyTx(
|
const isTxHashValid = await verifyTx(
|
||||||
senderAddress,
|
senderAddress,
|
||||||
txHash,
|
txHash,
|
||||||
amountToBePaid,
|
amountToBePaid.toString(),
|
||||||
);
|
);
|
||||||
setIsPaymentLoading(false);
|
|
||||||
|
|
||||||
if (isTxHashValid) {
|
if (isTxHashValid === false) {
|
||||||
toast({
|
console.error('Invalid Tx hash', txHash);
|
||||||
id: 'payment-successful',
|
return;
|
||||||
title: 'Payment successful',
|
|
||||||
variant: 'success',
|
|
||||||
onDismiss: dismiss,
|
|
||||||
});
|
|
||||||
setIsPaymentDone(true);
|
|
||||||
} else {
|
|
||||||
toast({
|
|
||||||
id: 'invalid-tx-hash',
|
|
||||||
title: 'Transaction validation failed',
|
|
||||||
variant: 'error',
|
|
||||||
onDismiss: dismiss,
|
|
||||||
});
|
|
||||||
throw new Error('Transaction validation failed');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -286,7 +248,7 @@ const Configure = () => {
|
|||||||
createFormData,
|
createFormData,
|
||||||
environmentVariables,
|
environmentVariables,
|
||||||
senderAddress,
|
senderAddress,
|
||||||
txHash!,
|
txHash,
|
||||||
);
|
);
|
||||||
|
|
||||||
await client.getEnvironmentVariables(projectId);
|
await client.getEnvironmentVariables(projectId);
|
||||||
@ -308,17 +270,17 @@ const Configure = () => {
|
|||||||
`/${orgSlug}/projects/create/deploy?projectId=${projectId}`,
|
`/${orgSlug}/projects/create/deploy?projectId=${projectId}`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} catch (error: any) {
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
toast({
|
toast({
|
||||||
id: 'error-deploying-app',
|
id: 'error-deploying-app',
|
||||||
title: 'Error deploying app',
|
title: 'Error deploying app',
|
||||||
variant: 'error',
|
variant: 'error',
|
||||||
onDismiss: dismiss,
|
onDismiss: dismiss,
|
||||||
});
|
});
|
||||||
throw new Error(error);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[client, createProject, dismiss, toast, amountToBePaid],
|
[client, createProject, dismiss, toast],
|
||||||
);
|
);
|
||||||
|
|
||||||
const fetchDeployers = useCallback(async () => {
|
const fetchDeployers = useCallback(async () => {
|
||||||
@ -326,6 +288,10 @@ const Configure = () => {
|
|||||||
setDeployers(res.deployers);
|
setDeployers(res.deployers);
|
||||||
}, [client]);
|
}, [client]);
|
||||||
|
|
||||||
|
const onAccountChange = useCallback((account: string) => {
|
||||||
|
setSelectedAccount(account);
|
||||||
|
}, []);
|
||||||
|
|
||||||
const onDeployerChange = useCallback(
|
const onDeployerChange = useCallback(
|
||||||
(selectedLrn: string) => {
|
(selectedLrn: string) => {
|
||||||
const deployer = deployers.find((d) => d.deployerLrn === selectedLrn);
|
const deployer = deployers.find((d) => d.deployerLrn === selectedLrn);
|
||||||
@ -336,112 +302,76 @@ const Configure = () => {
|
|||||||
|
|
||||||
const cosmosSendTokensHandler = useCallback(
|
const cosmosSendTokensHandler = useCallback(
|
||||||
async (selectedAccount: string, amount: string) => {
|
async (selectedAccount: string, amount: string) => {
|
||||||
if (!selectedAccount) {
|
if (!signClient || !session || !selectedAccount) {
|
||||||
throw new Error('Account not selected');
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const senderAddress = selectedAccount;
|
const chainId = selectedAccount.split(':')[1];
|
||||||
|
const senderAddress = selectedAccount.split(':')[2];
|
||||||
const snowballAddress = await client.getAddress();
|
const snowballAddress = await client.getAddress();
|
||||||
let timeoutId;
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
setIsPaymentDone(false);
|
setIsPaymentDone(false);
|
||||||
setIsPaymentLoading(true);
|
setIsPaymentLoading(true);
|
||||||
|
|
||||||
await requestTx(senderAddress, snowballAddress, amount);
|
|
||||||
|
|
||||||
const txHash = await new Promise<string | null>((resolve, reject) => {
|
|
||||||
// Call cleanup method only if appropriate event type is recieved
|
|
||||||
const cleanup = () => {
|
|
||||||
setIsFrameVisible(false);
|
|
||||||
window.removeEventListener('message', handleTxStatus);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleTxStatus = async (event: MessageEvent) => {
|
|
||||||
if (event.origin !== VITE_WALLET_IFRAME_URL) return;
|
|
||||||
|
|
||||||
if (event.data.type === 'TRANSACTION_RESPONSE') {
|
|
||||||
const txResponse = event.data.data;
|
|
||||||
resolve(txResponse);
|
|
||||||
|
|
||||||
cleanup();
|
|
||||||
} else if (event.data.type === 'ERROR') {
|
|
||||||
console.error('Error from wallet:', event.data.message);
|
|
||||||
reject(new Error('Transaction failed'));
|
|
||||||
toast({
|
toast({
|
||||||
id: 'error-transaction',
|
id: 'sending-payment-request',
|
||||||
title: 'Error during transaction',
|
title: 'Check your wallet and approve payment request',
|
||||||
variant: 'error',
|
variant: 'loading',
|
||||||
onDismiss: dismiss,
|
onDismiss: dismiss,
|
||||||
});
|
});
|
||||||
|
|
||||||
cleanup();
|
const result: { signature: string } = await signClient.request({
|
||||||
}
|
topic: session.topic,
|
||||||
};
|
chainId: `cosmos:${chainId}`,
|
||||||
|
request: {
|
||||||
window.addEventListener('message', handleTxStatus);
|
method: 'cosmos_sendTokens',
|
||||||
|
params: [
|
||||||
// Set a timeout, consider unsuccessful after 1 min
|
|
||||||
timeoutId = setTimeout(() => {
|
|
||||||
reject(new Error('Transaction timeout'));
|
|
||||||
window.removeEventListener('message', handleTxStatus);
|
|
||||||
toast({
|
|
||||||
id: 'transaction-timeout',
|
|
||||||
title: 'The transaction request timed out. Please try again',
|
|
||||||
variant: 'error',
|
|
||||||
onDismiss: dismiss,
|
|
||||||
});
|
|
||||||
setIsFrameVisible(false);
|
|
||||||
setIsPaymentLoading(false);
|
|
||||||
}, TX_APPROVAL_TIMEOUT_MS);
|
|
||||||
});
|
|
||||||
return txHash;
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Error in transaction:', error);
|
|
||||||
throw new Error('Error in transaction');
|
|
||||||
} finally {
|
|
||||||
clearTimeout(timeoutId);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[client, dismiss, toast],
|
|
||||||
);
|
|
||||||
|
|
||||||
const requestTx = async (
|
|
||||||
sender: string,
|
|
||||||
recipient: string,
|
|
||||||
amount: string,
|
|
||||||
) => {
|
|
||||||
const iframe = document.getElementById('walletIframe') as HTMLIFrameElement;
|
|
||||||
|
|
||||||
if (!iframe.contentWindow) {
|
|
||||||
console.error('Iframe not found or not loaded');
|
|
||||||
throw new Error('Iframe not found or not loaded');
|
|
||||||
}
|
|
||||||
|
|
||||||
iframe.contentWindow.postMessage(
|
|
||||||
{
|
{
|
||||||
type: 'REQUEST_TX',
|
from: senderAddress,
|
||||||
chainId: VITE_LACONICD_CHAIN_ID,
|
to: snowballAddress,
|
||||||
fromAddress: sender,
|
value: amount,
|
||||||
toAddress: recipient,
|
|
||||||
amount,
|
|
||||||
},
|
},
|
||||||
VITE_WALLET_IFRAME_URL,
|
],
|
||||||
);
|
},
|
||||||
|
});
|
||||||
|
|
||||||
setIsFrameVisible(true);
|
if (!result) {
|
||||||
};
|
throw new Error('Error completing transaction');
|
||||||
|
}
|
||||||
|
|
||||||
|
toast({
|
||||||
|
id: 'payment-successful',
|
||||||
|
title: 'Payment successful',
|
||||||
|
variant: 'success',
|
||||||
|
onDismiss: dismiss,
|
||||||
|
});
|
||||||
|
|
||||||
|
setIsPaymentDone(true);
|
||||||
|
|
||||||
|
return result.signature;
|
||||||
|
} catch (error: any) {
|
||||||
|
console.error('Error sending tokens', error);
|
||||||
|
|
||||||
|
toast({
|
||||||
|
id: 'error-sending-tokens',
|
||||||
|
title: 'Error sending tokens',
|
||||||
|
variant: 'error',
|
||||||
|
onDismiss: dismiss,
|
||||||
|
});
|
||||||
|
|
||||||
|
setIsPaymentDone(false);
|
||||||
|
} finally {
|
||||||
|
setIsPaymentLoading(false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[session, signClient, toast],
|
||||||
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
fetchDeployers();
|
fetchDeployers();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (isBalanceSufficient) {
|
|
||||||
setBalanceMessage(undefined);
|
|
||||||
}
|
|
||||||
}, [isBalanceSufficient]);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="space-y-7 px-4 py-6">
|
<div className="space-y-7 px-4 py-6">
|
||||||
<div className="flex justify-between mb-6">
|
<div className="flex justify-between mb-6">
|
||||||
@ -558,7 +488,6 @@ const Configure = () => {
|
|||||||
type="number"
|
type="number"
|
||||||
value={value}
|
value={value}
|
||||||
onChange={(e) => onChange(e)}
|
onChange={(e) => onChange(e)}
|
||||||
min={1}
|
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
@ -572,7 +501,7 @@ const Configure = () => {
|
|||||||
control={methods.control}
|
control={methods.control}
|
||||||
rules={{ required: true }}
|
rules={{ required: true }}
|
||||||
render={({ field: { value, onChange } }) => (
|
render={({ field: { value, onChange } }) => (
|
||||||
<Input type="number" value={value} onChange={onChange} min={1} />
|
<Input type="number" value={value} onChange={onChange} />
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@ -591,7 +520,7 @@ const Configure = () => {
|
|||||||
<Button
|
<Button
|
||||||
{...buttonSize}
|
{...buttonSize}
|
||||||
type="submit"
|
type="submit"
|
||||||
disabled={isLoading || !selectedDeployer}
|
disabled={isLoading || !selectedDeployer || !selectedAccount}
|
||||||
rightIcon={
|
rightIcon={
|
||||||
isLoading ? (
|
isLoading ? (
|
||||||
<LoadingIcon className="animate-spin" />
|
<LoadingIcon className="animate-spin" />
|
||||||
@ -604,18 +533,19 @@ const Configure = () => {
|
|||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div className="flex gap-4">
|
<>
|
||||||
|
<Heading as="h4" className="md:text-lg font-medium mb-3">
|
||||||
|
Connect to your wallet
|
||||||
|
</Heading>
|
||||||
|
<ConnectWallet onAccountChange={onAccountChange} />
|
||||||
|
{accounts && accounts?.length > 0 && (
|
||||||
|
<div>
|
||||||
<Button
|
<Button
|
||||||
{...buttonSize}
|
{...buttonSize}
|
||||||
type="submit"
|
type="submit"
|
||||||
shape="default"
|
shape="default"
|
||||||
disabled={
|
disabled={
|
||||||
isLoading ||
|
isLoading || isPaymentLoading || !selectedAccount
|
||||||
isPaymentLoading ||
|
|
||||||
!selectedAccount ||
|
|
||||||
!isBalanceSufficient ||
|
|
||||||
amountToBePaid === '' ||
|
|
||||||
selectedNumProviders === ''
|
|
||||||
}
|
}
|
||||||
rightIcon={
|
rightIcon={
|
||||||
isLoading || isPaymentLoading ? (
|
isLoading || isPaymentLoading ? (
|
||||||
@ -633,54 +563,12 @@ const Configure = () => {
|
|||||||
? 'Deploying'
|
? 'Deploying'
|
||||||
: 'Deploy'}
|
: 'Deploy'}
|
||||||
</Button>
|
</Button>
|
||||||
{isAccountsDataReceived && isBalanceSufficient !== undefined ? (
|
|
||||||
!selectedAccount || !isBalanceSufficient ? (
|
|
||||||
<div className="flex items-center gap-4">
|
|
||||||
<Button
|
|
||||||
{...buttonSize}
|
|
||||||
shape="default"
|
|
||||||
onClick={(e: any) => {
|
|
||||||
e.preventDefault();
|
|
||||||
setBalanceMessage('Waiting for payment');
|
|
||||||
window.open(
|
|
||||||
'https://store.laconic.com',
|
|
||||||
'_blank',
|
|
||||||
'noopener,noreferrer',
|
|
||||||
);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Buy prepaid service
|
|
||||||
</Button>
|
|
||||||
<p className="text-gray-700 dark:text-gray-300">
|
|
||||||
{balanceMessage !== undefined ? (
|
|
||||||
<div className="flex items-center gap-2 text-white">
|
|
||||||
<LoadingIcon className="animate-spin w-5 h-5" />
|
|
||||||
<p>{balanceMessage}</p>
|
|
||||||
</div>
|
</div>
|
||||||
) : !selectedAccount ? (
|
|
||||||
'No accounts found. Create a wallet.'
|
|
||||||
) : (
|
|
||||||
'Insufficient funds.'
|
|
||||||
)}
|
)}
|
||||||
</p>
|
</>
|
||||||
</div>
|
|
||||||
) : null
|
|
||||||
) : null}
|
|
||||||
</div>
|
|
||||||
)}
|
)}
|
||||||
</form>
|
</form>
|
||||||
</FormProvider>
|
</FormProvider>
|
||||||
|
|
||||||
<ApproveTransactionModal
|
|
||||||
setAccount={setSelectedAccount}
|
|
||||||
setIsDataReceived={setIsAccountsDataReceived}
|
|
||||||
isVisible={isFrameVisible}
|
|
||||||
/>
|
|
||||||
<CheckBalanceIframe
|
|
||||||
onBalanceChange={setIsBalanceSufficient}
|
|
||||||
amount={amountToBePaid}
|
|
||||||
isPollingEnabled={true}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -16,7 +16,7 @@ import { MockConnectGitCard } from './MockConnectGitCard';
|
|||||||
import { VITE_GITHUB_CLIENT_ID } from 'utils/constants';
|
import { VITE_GITHUB_CLIENT_ID } from 'utils/constants';
|
||||||
import { LaconicIcon } from 'components/shared/CustomIcon/LaconicIcon';
|
import { LaconicIcon } from 'components/shared/CustomIcon/LaconicIcon';
|
||||||
|
|
||||||
const SCOPES = 'public_repo user';
|
const SCOPES = 'repo user';
|
||||||
const GITHUB_OAUTH_URL = `https://github.com/login/oauth/authorize?client_id=${VITE_GITHUB_CLIENT_ID}&scope=${encodeURIComponent(SCOPES)}`;
|
const GITHUB_OAUTH_URL = `https://github.com/login/oauth/authorize?client_id=${VITE_GITHUB_CLIENT_ID}&scope=${encodeURIComponent(SCOPES)}`;
|
||||||
|
|
||||||
interface ConnectAccountInterface {
|
interface ConnectAccountInterface {
|
||||||
|
@ -0,0 +1,47 @@
|
|||||||
|
import { Select, Option } from '@snowballtools/material-tailwind-react-fork';
|
||||||
|
|
||||||
|
import { Button } from '../../shared/Button';
|
||||||
|
import { useWalletConnectClient } from 'context/WalletConnectContext';
|
||||||
|
|
||||||
|
const ConnectWallet = ({
|
||||||
|
onAccountChange,
|
||||||
|
}: {
|
||||||
|
onAccountChange: (selectedAccount: string) => void;
|
||||||
|
}) => {
|
||||||
|
const { onConnect, accounts } = useWalletConnectClient();
|
||||||
|
|
||||||
|
const handleConnect = async () => {
|
||||||
|
await onConnect();
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="p-4 bg-slate-100 dark:bg-overlay3 rounded-lg mb-6">
|
||||||
|
{!accounts ? (
|
||||||
|
<div>
|
||||||
|
<Button type={'button'} onClick={handleConnect}>
|
||||||
|
Connect Wallet
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div>
|
||||||
|
<Select
|
||||||
|
label="Select Account"
|
||||||
|
defaultValue={accounts[0].address}
|
||||||
|
onChange={(value) => {
|
||||||
|
value && onAccountChange(value);
|
||||||
|
}}
|
||||||
|
className="dark:bg-overlay2 dark:text-foreground"
|
||||||
|
>
|
||||||
|
{accounts.map((account, index) => (
|
||||||
|
<Option key={index} value={account.address}>
|
||||||
|
{account.address.split(':').slice(1).join(':')}
|
||||||
|
</Option>
|
||||||
|
))}
|
||||||
|
</Select>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ConnectWallet;
|
@ -1,8 +1,6 @@
|
|||||||
import React, { useMemo } from 'react';
|
import React, { useMemo } from 'react';
|
||||||
import { SegmentedControls } from 'components/shared/SegmentedControls';
|
import { SegmentedControls } from 'components/shared/SegmentedControls';
|
||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
import { useMediaQuery } from 'usehooks-ts';
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
GithubIcon,
|
GithubIcon,
|
||||||
LockIcon,
|
LockIcon,
|
||||||
@ -10,7 +8,7 @@ import {
|
|||||||
TemplateIconType,
|
TemplateIconType,
|
||||||
} from 'components/shared/CustomIcon';
|
} from 'components/shared/CustomIcon';
|
||||||
import { relativeTimeISO } from 'utils/time';
|
import { relativeTimeISO } from 'utils/time';
|
||||||
import templates from 'assets/templates';
|
import { useMediaQuery } from 'usehooks-ts';
|
||||||
|
|
||||||
export const MockConnectGitCard = () => {
|
export const MockConnectGitCard = () => {
|
||||||
const [segmentedControlsValue, setSegmentedControlsValue] =
|
const [segmentedControlsValue, setSegmentedControlsValue] =
|
||||||
@ -48,6 +46,29 @@ export const MockConnectGitCard = () => {
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const TEMPLATE_CONTENT = [
|
||||||
|
{
|
||||||
|
name: 'Web app',
|
||||||
|
icon: 'web',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Progressive Web App (PWA)',
|
||||||
|
icon: 'pwa',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'React Native',
|
||||||
|
icon: 'react-native',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Kotlin',
|
||||||
|
icon: 'kotlin',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Swift',
|
||||||
|
icon: 'swift',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
const renderContent = useMemo(() => {
|
const renderContent = useMemo(() => {
|
||||||
if (segmentedControlsValue === 'import') {
|
if (segmentedControlsValue === 'import') {
|
||||||
return (
|
return (
|
||||||
@ -65,7 +86,7 @@ export const MockConnectGitCard = () => {
|
|||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div className="grid grid-cols-1 lg:grid-cols-2 relative z-0">
|
<div className="grid grid-cols-1 lg:grid-cols-2 relative z-0">
|
||||||
{templates.map((template, index) => (
|
{TEMPLATE_CONTENT.map((template, index) => (
|
||||||
<MockTemplateCard key={index} {...template} />
|
<MockTemplateCard key={index} {...template} />
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
@ -49,21 +49,21 @@ export const ProjectRepoCard: React.FC<ProjectRepoCardProps> = ({
|
|||||||
onClick={createProject}
|
onClick={createProject}
|
||||||
>
|
>
|
||||||
{/* Icon container */}
|
{/* Icon container */}
|
||||||
<div className="w-10 h-10 bg-base-bg rounded-md justify-center items-center flex dark:bg-overlay">
|
<div className="w-10 h-10 bg-base-bg rounded-md justify-center items-center flex">
|
||||||
<GithubIcon />
|
<GithubIcon />
|
||||||
</div>
|
</div>
|
||||||
{/* Content */}
|
{/* Content */}
|
||||||
<div className="flex flex-1 gap-3 flex-wrap">
|
<div className="flex flex-1 gap-3 flex-wrap">
|
||||||
<div className="flex flex-col gap-1">
|
<div className="flex flex-col gap-1">
|
||||||
<p className="text-elements-high-em dark:text-foreground text-sm font-medium tracking-[-0.006em]">
|
<p className="text-elements-high-em text-sm font-medium tracking-[-0.006em]">
|
||||||
{repository.full_name}
|
{repository.full_name}
|
||||||
</p>
|
</p>
|
||||||
<p className="text-elements-low-em dark:text-foreground-secondary text-xs">
|
<p className="text-elements-low-em text-xs">
|
||||||
{repository.updated_at && relativeTimeISO(repository.updated_at)}
|
{repository.updated_at && relativeTimeISO(repository.updated_at)}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{repository.visibility === 'private' && (
|
{repository.visibility === 'private' && (
|
||||||
<div className="bg-orange-50 border border-orange-200 px-2 py-1 flex items-center gap-1 rounded-lg text-xs text-orange-600 dark:text-error h-fit">
|
<div className="bg-orange-50 border border-orange-200 px-2 py-1 flex items-center gap-1 rounded-lg text-xs text-orange-600 h-fit">
|
||||||
<LockIcon />
|
<LockIcon />
|
||||||
Private
|
Private
|
||||||
</div>
|
</div>
|
||||||
|
@ -166,9 +166,7 @@ export const RepositoryList = () => {
|
|||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div className="mt-4 p-6 flex flex-col gap-4 items-center justify-center">
|
<div className="mt-4 p-6 flex flex-col gap-4 items-center justify-center">
|
||||||
<p className="text-elements-high-em dark:text-foreground font-sans">
|
<p className="text-elements-high-em font-sans">No repository found</p>
|
||||||
No repository found
|
|
||||||
</p>
|
|
||||||
<Button
|
<Button
|
||||||
variant="tertiary"
|
variant="tertiary"
|
||||||
leftIcon={<RefreshIcon />}
|
leftIcon={<RefreshIcon />}
|
||||||
|
@ -0,0 +1,42 @@
|
|||||||
|
import { CopyBlock, atomOneLight } from 'react-code-blocks';
|
||||||
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
|
import { Modal } from 'components/shared/Modal';
|
||||||
|
import { Button } from 'components/shared/Button';
|
||||||
|
|
||||||
|
interface AssignDomainProps {
|
||||||
|
open: boolean;
|
||||||
|
handleOpen: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const AssignDomainDialog = ({ open, handleOpen }: AssignDomainProps) => {
|
||||||
|
return (
|
||||||
|
<Modal open={open} onOpenChange={handleOpen}>
|
||||||
|
<Modal.Content>
|
||||||
|
<Modal.Header>Assign Domain</Modal.Header>
|
||||||
|
<Modal.Body>
|
||||||
|
In order to assign a domain to your production deployments, configure
|
||||||
|
it in the{' '}
|
||||||
|
{/* TODO: Fix selection of project settings tab on navigation to domains */}
|
||||||
|
<Link to="../settings/domains" className="text-light-blue-800 inline">
|
||||||
|
project settings{' '}
|
||||||
|
</Link>
|
||||||
|
(recommended). If you want to assign to this specific deployment,
|
||||||
|
however, you can do so using our command-line interface:
|
||||||
|
{/* https://github.com/rajinwonderland/react-code-blocks/issues/138 */}
|
||||||
|
<CopyBlock
|
||||||
|
text="snowball alias <deployment> <domain>"
|
||||||
|
language=""
|
||||||
|
showLineNumbers={false}
|
||||||
|
theme={atomOneLight}
|
||||||
|
/>
|
||||||
|
</Modal.Body>
|
||||||
|
<Modal.Footer className="flex justify-start">
|
||||||
|
<Button onClick={handleOpen}>Okay</Button>
|
||||||
|
</Modal.Footer>
|
||||||
|
</Modal.Content>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default AssignDomainDialog;
|
@ -92,7 +92,7 @@ const DeploymentDetailsCard = ({
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const fetchDeploymentLogs = useCallback(async () => {
|
const fetchDeploymentLogs = async () => {
|
||||||
setDeploymentLogs('Loading logs...');
|
setDeploymentLogs('Loading logs...');
|
||||||
handleOpenDialog();
|
handleOpenDialog();
|
||||||
const statusUrl = `${deployment.deployer.deployerApiUrl}/${deployment.applicationDeploymentRequestId}`;
|
const statusUrl = `${deployment.deployer.deployerApiUrl}/${deployment.applicationDeploymentRequestId}`;
|
||||||
@ -108,7 +108,7 @@ const DeploymentDetailsCard = ({
|
|||||||
);
|
);
|
||||||
setDeploymentLogs(logsRes);
|
setDeploymentLogs(logsRes);
|
||||||
}
|
}
|
||||||
}, [deployment.deployer, deployment.applicationDeploymentRequestId]);
|
};
|
||||||
|
|
||||||
const renderDeploymentStatus = useCallback(
|
const renderDeploymentStatus = useCallback(
|
||||||
(className?: string) => {
|
(className?: string) => {
|
||||||
@ -127,7 +127,7 @@ const DeploymentDetailsCard = ({
|
|||||||
</Tooltip>
|
</Tooltip>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
[deployment.status, deployment.commitHash, fetchDeploymentLogs],
|
[deployment.status, deployment.commitHash],
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -10,6 +10,7 @@ import {
|
|||||||
import { Deployment, Domain, Environment, Project } from 'gql-client';
|
import { Deployment, Domain, Environment, Project } from 'gql-client';
|
||||||
import { Button } from 'components/shared/Button';
|
import { Button } from 'components/shared/Button';
|
||||||
import {
|
import {
|
||||||
|
GlobeIcon,
|
||||||
HorizontalDotIcon,
|
HorizontalDotIcon,
|
||||||
LinkIcon,
|
LinkIcon,
|
||||||
RefreshIcon,
|
RefreshIcon,
|
||||||
@ -17,6 +18,7 @@ import {
|
|||||||
UndoIcon,
|
UndoIcon,
|
||||||
CrossCircleIcon,
|
CrossCircleIcon,
|
||||||
} from 'components/shared/CustomIcon';
|
} from 'components/shared/CustomIcon';
|
||||||
|
import AssignDomainDialog from './AssignDomainDialog';
|
||||||
import { useGQLClient } from 'context/GQLClientContext';
|
import { useGQLClient } from 'context/GQLClientContext';
|
||||||
import { cn } from 'utils/classnames';
|
import { cn } from 'utils/classnames';
|
||||||
import { ChangeStateToProductionDialog } from 'components/projects/Dialog/ChangeStateToProductionDialog';
|
import { ChangeStateToProductionDialog } from 'components/projects/Dialog/ChangeStateToProductionDialog';
|
||||||
@ -47,8 +49,8 @@ export const DeploymentMenu = ({
|
|||||||
const [redeployToProduction, setRedeployToProduction] = useState(false);
|
const [redeployToProduction, setRedeployToProduction] = useState(false);
|
||||||
const [deleteDeploymentDialog, setDeleteDeploymentDialog] = useState(false);
|
const [deleteDeploymentDialog, setDeleteDeploymentDialog] = useState(false);
|
||||||
const [isConfirmDeleteLoading, setIsConfirmDeleteLoading] = useState(false);
|
const [isConfirmDeleteLoading, setIsConfirmDeleteLoading] = useState(false);
|
||||||
const [isConfirmUpdateLoading, setIsConfirmUpdateLoading] = useState(false);
|
|
||||||
const [rollbackDeployment, setRollbackDeployment] = useState(false);
|
const [rollbackDeployment, setRollbackDeployment] = useState(false);
|
||||||
|
const [assignDomainDialog, setAssignDomainDialog] = useState(false);
|
||||||
const [isConfirmButtonLoading, setConfirmButtonLoadingLoading] =
|
const [isConfirmButtonLoading, setConfirmButtonLoadingLoading] =
|
||||||
useState(false);
|
useState(false);
|
||||||
|
|
||||||
@ -56,8 +58,6 @@ export const DeploymentMenu = ({
|
|||||||
const isUpdated = await client.updateDeploymentToProd(deployment.id);
|
const isUpdated = await client.updateDeploymentToProd(deployment.id);
|
||||||
if (isUpdated.updateDeploymentToProd) {
|
if (isUpdated.updateDeploymentToProd) {
|
||||||
await onUpdate();
|
await onUpdate();
|
||||||
setIsConfirmUpdateLoading(false);
|
|
||||||
|
|
||||||
toast({
|
toast({
|
||||||
id: 'deployment_changed_to_production',
|
id: 'deployment_changed_to_production',
|
||||||
title: 'Deployment changed to production',
|
title: 'Deployment changed to production',
|
||||||
@ -102,8 +102,6 @@ export const DeploymentMenu = ({
|
|||||||
);
|
);
|
||||||
if (isRollbacked.rollbackDeployment) {
|
if (isRollbacked.rollbackDeployment) {
|
||||||
await onUpdate();
|
await onUpdate();
|
||||||
setIsConfirmUpdateLoading(false);
|
|
||||||
|
|
||||||
toast({
|
toast({
|
||||||
id: 'deployment_rolled_back',
|
id: 'deployment_rolled_back',
|
||||||
title: 'Deployment rolled back',
|
title: 'Deployment rolled back',
|
||||||
@ -175,6 +173,12 @@ export const DeploymentMenu = ({
|
|||||||
<LinkIcon /> Visit
|
<LinkIcon /> Visit
|
||||||
</a>
|
</a>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
|
<MenuItem
|
||||||
|
className="hover:bg-base-bg-emphasized flex items-center gap-3"
|
||||||
|
onClick={() => setAssignDomainDialog(!assignDomainDialog)}
|
||||||
|
>
|
||||||
|
<GlobeIcon /> Assign domain
|
||||||
|
</MenuItem>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
className="hover:bg-base-bg-emphasized flex items-center gap-3"
|
className="hover:bg-base-bg-emphasized flex items-center gap-3"
|
||||||
onClick={() => setChangeToProduction(!changeToProduction)}
|
onClick={() => setChangeToProduction(!changeToProduction)}
|
||||||
@ -222,11 +226,9 @@ export const DeploymentMenu = ({
|
|||||||
handleCancel={() => setChangeToProduction((preVal) => !preVal)}
|
handleCancel={() => setChangeToProduction((preVal) => !preVal)}
|
||||||
open={changeToProduction}
|
open={changeToProduction}
|
||||||
handleConfirm={async () => {
|
handleConfirm={async () => {
|
||||||
setIsConfirmUpdateLoading(true);
|
|
||||||
await updateDeployment();
|
await updateDeployment();
|
||||||
setChangeToProduction((preVal) => !preVal);
|
setChangeToProduction((preVal) => !preVal);
|
||||||
}}
|
}}
|
||||||
isConfirmButtonLoading={isConfirmUpdateLoading}
|
|
||||||
deployment={deployment}
|
deployment={deployment}
|
||||||
domains={prodBranchDomains}
|
domains={prodBranchDomains}
|
||||||
/>
|
/>
|
||||||
@ -241,7 +243,7 @@ export const DeploymentMenu = ({
|
|||||||
setRedeployToProduction((preVal) => !preVal);
|
setRedeployToProduction((preVal) => !preVal);
|
||||||
}}
|
}}
|
||||||
deployment={deployment}
|
deployment={deployment}
|
||||||
domains={prodBranchDomains}
|
domains={deployment.domain ? [deployment.domain] : []}
|
||||||
isConfirmButtonLoading={isConfirmButtonLoading}
|
isConfirmButtonLoading={isConfirmButtonLoading}
|
||||||
/>
|
/>
|
||||||
{Boolean(currentDeployment) && (
|
{Boolean(currentDeployment) && (
|
||||||
@ -251,16 +253,18 @@ export const DeploymentMenu = ({
|
|||||||
open={rollbackDeployment}
|
open={rollbackDeployment}
|
||||||
confirmButtonTitle="Rollback"
|
confirmButtonTitle="Rollback"
|
||||||
handleConfirm={async () => {
|
handleConfirm={async () => {
|
||||||
setIsConfirmUpdateLoading(true);
|
|
||||||
await rollbackDeploymentHandler();
|
await rollbackDeploymentHandler();
|
||||||
setRollbackDeployment((preVal) => !preVal);
|
setRollbackDeployment((preVal) => !preVal);
|
||||||
}}
|
}}
|
||||||
deployment={currentDeployment}
|
deployment={currentDeployment}
|
||||||
newDeployment={deployment}
|
newDeployment={deployment}
|
||||||
domains={prodBranchDomains}
|
domains={currentDeployment.domain ? [currentDeployment.domain] : []}
|
||||||
isConfirmButtonLoading={isConfirmUpdateLoading}
|
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
<AssignDomainDialog
|
||||||
|
open={assignDomainDialog}
|
||||||
|
handleOpen={() => setAssignDomainDialog(!assignDomainDialog)}
|
||||||
|
/>
|
||||||
<DeleteDeploymentDialog
|
<DeleteDeploymentDialog
|
||||||
open={deleteDeploymentDialog}
|
open={deleteDeploymentDialog}
|
||||||
handleConfirm={async () => {
|
handleConfirm={async () => {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { useEffect, useState } from 'react';
|
import { useState } from 'react';
|
||||||
import { DNSRecordAttributes, Domain, DomainStatus, Project } from 'gql-client';
|
import { Domain, DomainStatus, Project } from 'gql-client';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Typography,
|
Typography,
|
||||||
@ -14,27 +14,22 @@ import EditDomainDialog from './EditDomainDialog';
|
|||||||
import { useGQLClient } from 'context/GQLClientContext';
|
import { useGQLClient } from 'context/GQLClientContext';
|
||||||
import { DeleteDomainDialog } from 'components/projects/Dialog/DeleteDomainDialog';
|
import { DeleteDomainDialog } from 'components/projects/Dialog/DeleteDomainDialog';
|
||||||
import { useToast } from 'components/shared/Toast';
|
import { useToast } from 'components/shared/Toast';
|
||||||
import { GearIcon } from 'components/shared/CustomIcon';
|
import { Tag } from 'components/shared/Tag';
|
||||||
|
import {
|
||||||
|
CheckIcon,
|
||||||
|
CrossIcon,
|
||||||
|
GearIcon,
|
||||||
|
LoadingIcon,
|
||||||
|
} from 'components/shared/CustomIcon';
|
||||||
import { Heading } from 'components/shared/Heading';
|
import { Heading } from 'components/shared/Heading';
|
||||||
import { Button } from 'components/shared/Button';
|
import { Button } from 'components/shared/Button';
|
||||||
import { useParams } from 'react-router-dom';
|
|
||||||
|
|
||||||
// NOTE: Commented code for verify domain functionality
|
enum RefreshStatus {
|
||||||
// import { Tag } from 'components/shared/Tag';
|
IDLE,
|
||||||
// import {
|
CHECKING,
|
||||||
// CheckIcon,
|
CHECK_SUCCESS,
|
||||||
// CrossIcon,
|
CHECK_FAIL,
|
||||||
// LoadingIcon,
|
}
|
||||||
// } from 'components/shared/CustomIcon';
|
|
||||||
|
|
||||||
// enum RefreshStatus {
|
|
||||||
// IDLE,
|
|
||||||
// CHECKING,
|
|
||||||
// CHECK_SUCCESS,
|
|
||||||
// CHECK_FAIL,
|
|
||||||
// }
|
|
||||||
|
|
||||||
// const CHECK_FAIL_TIMEOUT = 5000; // In milliseconds
|
|
||||||
|
|
||||||
interface DomainCardProps {
|
interface DomainCardProps {
|
||||||
domains: Domain[];
|
domains: Domain[];
|
||||||
@ -44,6 +39,14 @@ interface DomainCardProps {
|
|||||||
onUpdate: () => Promise<void>;
|
onUpdate: () => Promise<void>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const CHECK_FAIL_TIMEOUT = 5000; // In milliseconds
|
||||||
|
|
||||||
|
// TODO: Get domain record
|
||||||
|
const DOMAIN_RECORD = {
|
||||||
|
type: 'A',
|
||||||
|
name: '@',
|
||||||
|
value: '56.49.19.21',
|
||||||
|
};
|
||||||
|
|
||||||
const DomainCard = ({
|
const DomainCard = ({
|
||||||
domains,
|
domains,
|
||||||
@ -53,11 +56,9 @@ const DomainCard = ({
|
|||||||
onUpdate,
|
onUpdate,
|
||||||
}: DomainCardProps) => {
|
}: DomainCardProps) => {
|
||||||
const { toast, dismiss } = useToast();
|
const { toast, dismiss } = useToast();
|
||||||
const { id } = useParams();
|
const [refreshStatus, SetRefreshStatus] = useState(RefreshStatus.IDLE);
|
||||||
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
|
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
|
||||||
const [editDialogOpen, setEditDialogOpen] = useState(false);
|
const [editDialogOpen, setEditDialogOpen] = useState(false);
|
||||||
const [dnsRecord, setDnsRecord] = useState<DNSRecordAttributes | null>(null);
|
|
||||||
// const [refreshStatus, SetRefreshStatus] = useState(RefreshStatus.IDLE);
|
|
||||||
|
|
||||||
const client = useGQLClient();
|
const client = useGQLClient();
|
||||||
|
|
||||||
@ -82,33 +83,13 @@ const DomainCard = ({
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const fetchDNSData = async () => {
|
|
||||||
if (id === undefined) {
|
|
||||||
toast({
|
|
||||||
id: 'domain_cannot_find_project',
|
|
||||||
title: 'Cannot find project',
|
|
||||||
variant: 'error',
|
|
||||||
onDismiss: dismiss,
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const dnsRecordResponse = await client.getLatestDNSRecordByProjectId(id);
|
|
||||||
|
|
||||||
setDnsRecord(dnsRecordResponse.latestDNSRecord);
|
|
||||||
};
|
|
||||||
|
|
||||||
fetchDNSData();
|
|
||||||
}, [id, client]);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="flex justify-between py-3">
|
<div className="flex justify-between py-3">
|
||||||
<div className="flex justify-start gap-1">
|
<div className="flex justify-start gap-1">
|
||||||
<Heading as="h6" className="flex-col">
|
<Heading as="h6" className="flex-col">
|
||||||
{domain.name}{' '}
|
{domain.name}{' '}
|
||||||
{/* <Tag
|
<Tag
|
||||||
type={
|
type={
|
||||||
domain.status === DomainStatus.Live ? 'positive' : 'negative'
|
domain.status === DomainStatus.Live ? 'positive' : 'negative'
|
||||||
}
|
}
|
||||||
@ -121,12 +102,12 @@ const DomainCard = ({
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
{domain.status}
|
{domain.status}
|
||||||
</Tag> */}
|
</Tag>
|
||||||
</Heading>
|
</Heading>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex justify-start gap-1">
|
<div className="flex justify-start gap-1">
|
||||||
{/* <i
|
<i
|
||||||
id="refresh"
|
id="refresh"
|
||||||
className="cursor-pointer"
|
className="cursor-pointer"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
@ -141,7 +122,7 @@ const DomainCard = ({
|
|||||||
) : (
|
) : (
|
||||||
'L'
|
'L'
|
||||||
)}
|
)}
|
||||||
</i> */}
|
</i>
|
||||||
<Menu placement="bottom-end">
|
<Menu placement="bottom-end">
|
||||||
<MenuHandler>
|
<MenuHandler>
|
||||||
<Button iconOnly>
|
<Button iconOnly>
|
||||||
@ -182,11 +163,11 @@ const DomainCard = ({
|
|||||||
<Typography variant="small">Production</Typography>
|
<Typography variant="small">Production</Typography>
|
||||||
{domain.status === DomainStatus.Pending && (
|
{domain.status === DomainStatus.Pending && (
|
||||||
<Card className="bg-slate-100 p-4 text-sm">
|
<Card className="bg-slate-100 p-4 text-sm">
|
||||||
{/* {refreshStatus === RefreshStatus.IDLE ? ( */}
|
{refreshStatus === RefreshStatus.IDLE ? (
|
||||||
<Heading>
|
<Heading>
|
||||||
^ Add these records to your domain {/* and refresh to check */}
|
^ Add these records to your domain and refresh to check
|
||||||
</Heading>
|
</Heading>
|
||||||
{/* ) : refreshStatus === RefreshStatus.CHECKING ? (
|
) : refreshStatus === RefreshStatus.CHECKING ? (
|
||||||
<Heading className="text-blue-500">
|
<Heading className="text-blue-500">
|
||||||
^ Checking records for {domain.name}
|
^ Checking records for {domain.name}
|
||||||
</Heading>
|
</Heading>
|
||||||
@ -197,7 +178,7 @@ const DomainCard = ({
|
|||||||
hours. Please ensure you added the correct records and refresh.
|
hours. Please ensure you added the correct records and refresh.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)} */}
|
)}
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
@ -208,15 +189,11 @@ const DomainCard = ({
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{dnsRecord ? (
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>{dnsRecord.resourceType}</td>
|
<td>{DOMAIN_RECORD.type}</td>
|
||||||
<td>@</td>
|
<td>{DOMAIN_RECORD.name}</td>
|
||||||
<td>{dnsRecord.value ?? 'Not Configured'}</td>
|
<td>{DOMAIN_RECORD.value}</td>
|
||||||
</tr>
|
</tr>
|
||||||
) : (
|
|
||||||
<p className={'text-red-500'}>DNS record data not available</p>
|
|
||||||
)}
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</Card>
|
</Card>
|
||||||
|
@ -1,15 +1,11 @@
|
|||||||
import {
|
import { useCallback, useEffect, useMemo } from 'react';
|
||||||
useCallback,
|
import { Controller, useForm, SubmitHandler } from 'react-hook-form';
|
||||||
useEffect,
|
|
||||||
} from 'react';
|
|
||||||
import {
|
|
||||||
useForm,
|
|
||||||
SubmitHandler,
|
|
||||||
} from 'react-hook-form';
|
|
||||||
import { Domain } from 'gql-client';
|
import { Domain } from 'gql-client';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Typography,
|
Typography,
|
||||||
|
Select,
|
||||||
|
Option,
|
||||||
} from '@snowballtools/material-tailwind-react-fork';
|
} from '@snowballtools/material-tailwind-react-fork';
|
||||||
|
|
||||||
import { useGQLClient } from 'context/GQLClientContext';
|
import { useGQLClient } from 'context/GQLClientContext';
|
||||||
@ -18,15 +14,7 @@ import { Button } from 'components/shared/Button';
|
|||||||
import { Input } from 'components/shared/Input';
|
import { Input } from 'components/shared/Input';
|
||||||
import { useToast } from 'components/shared/Toast';
|
import { useToast } from 'components/shared/Toast';
|
||||||
|
|
||||||
// NOTE: Commented code for redirect domain functionality
|
const DEFAULT_REDIRECT_OPTIONS = ['none'];
|
||||||
// import {
|
|
||||||
// Select,
|
|
||||||
// Option,
|
|
||||||
// } from '@snowballtools/material-tailwind-react-fork';
|
|
||||||
// import { Controller } from 'react-hook-form';
|
|
||||||
// import { useMemo } from 'react';
|
|
||||||
|
|
||||||
// const DEFAULT_REDIRECT_OPTIONS = ['none'];
|
|
||||||
|
|
||||||
interface EditDomainDialogProp {
|
interface EditDomainDialogProp {
|
||||||
domains: Domain[];
|
domains: Domain[];
|
||||||
@ -40,7 +28,7 @@ interface EditDomainDialogProp {
|
|||||||
type EditDomainValues = {
|
type EditDomainValues = {
|
||||||
name: string;
|
name: string;
|
||||||
branch: string;
|
branch: string;
|
||||||
// redirectedTo: string;
|
redirectedTo: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
const EditDomainDialog = ({
|
const EditDomainDialog = ({
|
||||||
@ -54,58 +42,58 @@ const EditDomainDialog = ({
|
|||||||
const client = useGQLClient();
|
const client = useGQLClient();
|
||||||
const { toast, dismiss } = useToast();
|
const { toast, dismiss } = useToast();
|
||||||
|
|
||||||
// const getRedirectUrl = (domain: Domain) => {
|
const getRedirectUrl = (domain: Domain) => {
|
||||||
// const redirectDomain = domain.redirectTo;
|
const redirectDomain = domain.redirectTo;
|
||||||
|
|
||||||
// if (redirectDomain !== null) {
|
if (redirectDomain !== null) {
|
||||||
// return redirectDomain?.name;
|
return redirectDomain?.name;
|
||||||
// } else {
|
} else {
|
||||||
// return 'none';
|
return 'none';
|
||||||
// }
|
}
|
||||||
// };
|
};
|
||||||
|
|
||||||
// const redirectOptions = useMemo(() => {
|
const redirectOptions = useMemo(() => {
|
||||||
// const domainNames = domains
|
const domainNames = domains
|
||||||
// .filter((domainData) => domainData.id !== domain.id)
|
.filter((domainData) => domainData.id !== domain.id)
|
||||||
// .map((domain) => domain.name);
|
.map((domain) => domain.name);
|
||||||
// return ['none', ...domainNames];
|
return ['none', ...domainNames];
|
||||||
// }, [domain, domains]);
|
}, [domain, domains]);
|
||||||
|
|
||||||
// const domainRedirectedFrom = useMemo(() => {
|
const domainRedirectedFrom = useMemo(() => {
|
||||||
// return domains.find(
|
return domains.find(
|
||||||
// (domainData) => domainData.redirectTo?.id === domain.id,
|
(domainData) => domainData.redirectTo?.id === domain.id,
|
||||||
// );
|
);
|
||||||
// }, [domains, domain]);
|
}, [domains, domain]);
|
||||||
|
|
||||||
// const isDisableDropdown = useMemo(() => {
|
const isDisableDropdown = useMemo(() => {
|
||||||
// return domainRedirectedFrom !== undefined;
|
return domainRedirectedFrom !== undefined;
|
||||||
// }, [domain, domains]);
|
}, [domain, domains]);
|
||||||
|
|
||||||
const {
|
const {
|
||||||
handleSubmit,
|
handleSubmit,
|
||||||
register,
|
register,
|
||||||
// control,
|
control,
|
||||||
// watch,
|
watch,
|
||||||
reset,
|
reset,
|
||||||
formState: { isValid, isDirty },
|
formState: { isValid, isDirty },
|
||||||
} = useForm({
|
} = useForm({
|
||||||
defaultValues: {
|
defaultValues: {
|
||||||
name: domain.name,
|
name: domain.name,
|
||||||
branch: domain.branch,
|
branch: domain.branch,
|
||||||
// redirectedTo: getRedirectUrl(domain),
|
redirectedTo: getRedirectUrl(domain),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const updateDomainHandler: SubmitHandler<EditDomainValues> = useCallback(
|
const updateDomainHandler: SubmitHandler<EditDomainValues> = useCallback(
|
||||||
async (data) => {
|
async (data) => {
|
||||||
// const domainRedirectTo = domains.find(
|
const domainRedirectTo = domains.find(
|
||||||
// (domainData) => data.redirectedTo === domainData.name,
|
(domainData) => data.redirectedTo === domainData.name,
|
||||||
// );
|
);
|
||||||
|
|
||||||
const updates = {
|
const updates = {
|
||||||
name: data.name ? data.name : domain.name,
|
name: data.name ? data.name : domain.name,
|
||||||
branch: data.branch ? data.branch : domain.branch,
|
branch: data.branch ? data.branch : domain.branch,
|
||||||
// redirectToId: domainRedirectTo ? domainRedirectTo.id : null,
|
redirectToId: domainRedirectTo ? domainRedirectTo.id : null,
|
||||||
};
|
};
|
||||||
|
|
||||||
const { updateDomain } = await client.updateDomain(domain.id, updates);
|
const { updateDomain } = await client.updateDomain(domain.id, updates);
|
||||||
@ -137,7 +125,7 @@ const EditDomainDialog = ({
|
|||||||
reset({
|
reset({
|
||||||
name: domain.name,
|
name: domain.name,
|
||||||
branch: domain.branch,
|
branch: domain.branch,
|
||||||
// redirectedTo: getRedirectUrl(domain),
|
redirectedTo: getRedirectUrl(domain),
|
||||||
});
|
});
|
||||||
}, [domain]);
|
}, [domain]);
|
||||||
|
|
||||||
@ -149,7 +137,7 @@ const EditDomainDialog = ({
|
|||||||
<Modal.Body className="flex flex-col gap-2">
|
<Modal.Body className="flex flex-col gap-2">
|
||||||
<Typography variant="small">Domain name</Typography>
|
<Typography variant="small">Domain name</Typography>
|
||||||
<Input {...register('name')} />
|
<Input {...register('name')} />
|
||||||
{/* <Typography variant="small">Redirect to</Typography>
|
<Typography variant="small">Redirect to</Typography>
|
||||||
<Controller
|
<Controller
|
||||||
name="redirectedTo"
|
name="redirectedTo"
|
||||||
control={control}
|
control={control}
|
||||||
@ -173,7 +161,7 @@ const EditDomainDialog = ({
|
|||||||
further.
|
further.
|
||||||
</Typography>
|
</Typography>
|
||||||
</div>
|
</div>
|
||||||
)} */}
|
)}
|
||||||
<Typography variant="small">Git branch</Typography>
|
<Typography variant="small">Git branch</Typography>
|
||||||
<Input
|
<Input
|
||||||
{...register('branch', {
|
{...register('branch', {
|
||||||
@ -181,8 +169,8 @@ const EditDomainDialog = ({
|
|||||||
Boolean(branches.length) ? branches.includes(value) : true,
|
Boolean(branches.length) ? branches.includes(value) : true,
|
||||||
})}
|
})}
|
||||||
disabled={
|
disabled={
|
||||||
!Boolean(branches.length)
|
!Boolean(branches.length) ||
|
||||||
// || watch('redirectedTo') !== DEFAULT_REDIRECT_OPTIONS[0]
|
watch('redirectedTo') !== DEFAULT_REDIRECT_OPTIONS[0]
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
{!isValid && (
|
{!isValid && (
|
||||||
|
@ -17,7 +17,6 @@ const GitSelectionSection = ({
|
|||||||
<div className="grow">Github</div>
|
<div className="grow">Github</div>
|
||||||
<div>{'>'}</div>
|
<div>{'>'}</div>
|
||||||
</div>
|
</div>
|
||||||
{/*
|
|
||||||
<div
|
<div
|
||||||
className="flex gap-4 border-b-2 border-gray-200 cursor-pointer p-1"
|
className="flex gap-4 border-b-2 border-gray-200 cursor-pointer p-1"
|
||||||
onClick={() => {}}
|
onClick={() => {}}
|
||||||
@ -26,7 +25,6 @@ const GitSelectionSection = ({
|
|||||||
<div className="grow">Gitea</div>
|
<div className="grow">Gitea</div>
|
||||||
<div>{'>'}</div>
|
<div>{'>'}</div>
|
||||||
</div>
|
</div>
|
||||||
*/}
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -1,14 +1,12 @@
|
|||||||
|
import { useEffect, useState } from 'react';
|
||||||
import { useNavigate } from 'react-router-dom';
|
import { useNavigate } from 'react-router-dom';
|
||||||
import { useForm } from 'react-hook-form';
|
import { useForm } from 'react-hook-form';
|
||||||
|
|
||||||
import { Heading } from 'components/shared/Heading';
|
import { Heading } from 'components/shared/Heading';
|
||||||
|
import { InlineNotification } from 'components/shared/InlineNotification';
|
||||||
import { Input } from 'components/shared/Input';
|
import { Input } from 'components/shared/Input';
|
||||||
import { Button } from 'components/shared/Button';
|
import { Button } from 'components/shared/Button';
|
||||||
|
import { Radio } from 'components/shared/Radio';
|
||||||
// NOTE: Commented code for redirect domain functionality
|
|
||||||
// import { useEffect, useState } from 'react';
|
|
||||||
// import { InlineNotification } from 'components/shared/InlineNotification';
|
|
||||||
// import { Radio } from 'components/shared/Radio';
|
|
||||||
|
|
||||||
interface SetupDomainFormValues {
|
interface SetupDomainFormValues {
|
||||||
domainName: string;
|
domainName: string;
|
||||||
@ -20,45 +18,47 @@ const SetupDomain = () => {
|
|||||||
register,
|
register,
|
||||||
handleSubmit,
|
handleSubmit,
|
||||||
formState: { isValid },
|
formState: { isValid },
|
||||||
// watch,
|
watch,
|
||||||
// setValue,
|
setValue,
|
||||||
} = useForm<SetupDomainFormValues>({
|
} = useForm<SetupDomainFormValues>({
|
||||||
defaultValues: {
|
defaultValues: {
|
||||||
domainName: '',
|
domainName: '',
|
||||||
// isWWW: 'false',
|
isWWW: 'false',
|
||||||
},
|
},
|
||||||
mode: 'onChange',
|
mode: 'onChange',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const [domainStr, setDomainStr] = useState<string>('');
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
// const [domainStr, setDomainStr] = useState<string>('');
|
const isWWWRadioOptions = [
|
||||||
// const isWWWRadioOptions = [
|
{ label: domainStr, value: 'false' },
|
||||||
// { label: domainStr, value: 'false' },
|
{ label: `www.${domainStr}`, value: 'true' },
|
||||||
// { label: `www.${domainStr}`, value: 'true' },
|
];
|
||||||
// ];
|
|
||||||
|
|
||||||
// useEffect(() => {
|
useEffect(() => {
|
||||||
// const subscription = watch((value, { name }) => {
|
const subscription = watch((value, { name }) => {
|
||||||
// if (name === 'domainName' && value.domainName) {
|
if (name === 'domainName' && value.domainName) {
|
||||||
// const domainArr = value.domainName.split('www.');
|
const domainArr = value.domainName.split('www.');
|
||||||
// const cleanedDomain =
|
const cleanedDomain =
|
||||||
// domainArr.length > 1 ? domainArr[1] : domainArr[0];
|
domainArr.length > 1 ? domainArr[1] : domainArr[0];
|
||||||
// setDomainStr(cleanedDomain);
|
setDomainStr(cleanedDomain);
|
||||||
|
|
||||||
// setValue(
|
setValue(
|
||||||
// 'isWWW',
|
'isWWW',
|
||||||
// value.domainName.startsWith('www.') ? 'true' : 'false',
|
value.domainName.startsWith('www.') ? 'true' : 'false',
|
||||||
// );
|
);
|
||||||
// }
|
}
|
||||||
// });
|
});
|
||||||
|
|
||||||
// return () => subscription.unsubscribe();
|
return () => subscription.unsubscribe();
|
||||||
// }, [watch, setValue]);
|
}, [watch, setValue]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form
|
<form
|
||||||
onSubmit={handleSubmit((e) => {
|
onSubmit={handleSubmit(() => {
|
||||||
navigate(`config?name=${e.domainName}`)
|
watch('isWWW') === 'true'
|
||||||
|
? navigate(`config?name=www.${domainStr}`)
|
||||||
|
: navigate(`config?name=${domainStr}`);
|
||||||
})}
|
})}
|
||||||
className="flex flex-col gap-6 w-full"
|
className="flex flex-col gap-6 w-full"
|
||||||
>
|
>
|
||||||
@ -67,7 +67,7 @@ const SetupDomain = () => {
|
|||||||
Setup domain name
|
Setup domain name
|
||||||
</Heading>
|
</Heading>
|
||||||
<p className="text-slate-500 text-sm font-normal leading-tight">
|
<p className="text-slate-500 text-sm font-normal leading-tight">
|
||||||
Add your domain {/* and setup redirects */}
|
Add your domain and setup redirects
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ const SetupDomain = () => {
|
|||||||
label="Domain name"
|
label="Domain name"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{/* {isValid && (
|
{isValid && (
|
||||||
<div className="self-stretch flex flex-col gap-4">
|
<div className="self-stretch flex flex-col gap-4">
|
||||||
<Heading className="text-sky-950 text-lg font-medium leading-normal">
|
<Heading className="text-sky-950 text-lg font-medium leading-normal">
|
||||||
Primary domain
|
Primary domain
|
||||||
@ -99,7 +99,7 @@ const SetupDomain = () => {
|
|||||||
}. Redirect preferences can be changed later`}
|
}. Redirect preferences can be changed later`}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)} */}
|
)}
|
||||||
|
|
||||||
<div className="self-stretch">
|
<div className="self-stretch">
|
||||||
<Button disabled={!isValid} type="submit" shape="default">
|
<Button disabled={!isValid} type="submit" shape="default">
|
||||||
|
@ -1,10 +1,19 @@
|
|||||||
import { useMemo } from 'react';
|
import { useMemo } from 'react';
|
||||||
import { CustomIconProps } from '../CustomIcon';
|
import { CustomIconProps } from '../CustomIcon';
|
||||||
|
import { ReactNativeIcon } from './ReactNativeIcon';
|
||||||
import { cloneIcon } from 'utils/cloneIcon';
|
import { cloneIcon } from 'utils/cloneIcon';
|
||||||
import { PWAIcon } from './PWAIcon';
|
import { PWAIcon } from './PWAIcon';
|
||||||
import { WebAppIcon } from './WebAppIcon';
|
import { WebAppIcon } from './WebAppIcon';
|
||||||
|
import { KotlinIcon } from './KotlinIcon';
|
||||||
|
import { SwitfIcon } from './SwiftIcon';
|
||||||
|
|
||||||
const TEMPLATE_ICONS = ['pwa', 'web'] as const;
|
const TEMPLATE_ICONS = [
|
||||||
|
'react-native',
|
||||||
|
'pwa',
|
||||||
|
'web',
|
||||||
|
'kotlin',
|
||||||
|
'swift',
|
||||||
|
] as const;
|
||||||
export type TemplateIconType = (typeof TEMPLATE_ICONS)[number];
|
export type TemplateIconType = (typeof TEMPLATE_ICONS)[number];
|
||||||
|
|
||||||
export interface TemplateIconProps extends CustomIconProps {
|
export interface TemplateIconProps extends CustomIconProps {
|
||||||
@ -14,10 +23,16 @@ export interface TemplateIconProps extends CustomIconProps {
|
|||||||
export const TemplateIcon = ({ type, ...props }: TemplateIconProps) => {
|
export const TemplateIcon = ({ type, ...props }: TemplateIconProps) => {
|
||||||
const renderIcon = useMemo(() => {
|
const renderIcon = useMemo(() => {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
|
case 'react-native':
|
||||||
|
return <ReactNativeIcon />;
|
||||||
case 'pwa':
|
case 'pwa':
|
||||||
return <PWAIcon />;
|
return <PWAIcon />;
|
||||||
case 'web':
|
case 'web':
|
||||||
return <WebAppIcon />;
|
return <WebAppIcon />;
|
||||||
|
case 'kotlin':
|
||||||
|
return <KotlinIcon />;
|
||||||
|
case 'swift':
|
||||||
|
return <SwitfIcon />;
|
||||||
default:
|
default:
|
||||||
throw new Error(`Invalid template icon type: ${type}`);
|
throw new Error(`Invalid template icon type: ${type}`);
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,14 @@
|
|||||||
import { useCallback, useEffect, useState } from 'react';
|
import { useCallback, useEffect, useState } from 'react';
|
||||||
import { useParams } from 'react-router-dom';
|
import { useNavigate, useParams } from 'react-router-dom';
|
||||||
import { User } from 'gql-client';
|
import { User } from 'gql-client';
|
||||||
import { motion } from 'framer-motion';
|
import { motion } from 'framer-motion';
|
||||||
|
import { useDisconnect } from 'wagmi';
|
||||||
|
|
||||||
import { useGQLClient } from 'context/GQLClientContext';
|
import { useGQLClient } from 'context/GQLClientContext';
|
||||||
import {
|
import {
|
||||||
|
GlobeIcon,
|
||||||
LifeBuoyIcon,
|
LifeBuoyIcon,
|
||||||
|
LogoutIcon,
|
||||||
QuestionMarkRoundIcon,
|
QuestionMarkRoundIcon,
|
||||||
} from 'components/shared/CustomIcon';
|
} from 'components/shared/CustomIcon';
|
||||||
import { Tabs } from 'components/shared/Tabs';
|
import { Tabs } from 'components/shared/Tabs';
|
||||||
@ -13,9 +16,10 @@ import { Logo } from 'components/Logo';
|
|||||||
import { Avatar } from 'components/shared/Avatar';
|
import { Avatar } from 'components/shared/Avatar';
|
||||||
import { formatAddress } from 'utils/format';
|
import { formatAddress } from 'utils/format';
|
||||||
import { getInitials } from 'utils/geInitials';
|
import { getInitials } from 'utils/geInitials';
|
||||||
|
import { Button } from 'components/shared/Button';
|
||||||
import { cn } from 'utils/classnames';
|
import { cn } from 'utils/classnames';
|
||||||
import { useMediaQuery } from 'usehooks-ts';
|
import { useMediaQuery } from 'usehooks-ts';
|
||||||
import { SHOPIFY_APP_URL } from '../../../constants';
|
import { BASE_URL } from 'utils/constants';
|
||||||
|
|
||||||
interface SidebarProps {
|
interface SidebarProps {
|
||||||
mobileOpen?: boolean;
|
mobileOpen?: boolean;
|
||||||
@ -23,10 +27,12 @@ interface SidebarProps {
|
|||||||
|
|
||||||
export const Sidebar = ({ mobileOpen }: SidebarProps) => {
|
export const Sidebar = ({ mobileOpen }: SidebarProps) => {
|
||||||
const { orgSlug } = useParams();
|
const { orgSlug } = useParams();
|
||||||
|
const navigate = useNavigate();
|
||||||
const client = useGQLClient();
|
const client = useGQLClient();
|
||||||
const isDesktop = useMediaQuery('(min-width: 960px)');
|
const isDesktop = useMediaQuery('(min-width: 960px)');
|
||||||
|
|
||||||
const [user, setUser] = useState<User>();
|
const [user, setUser] = useState<User>();
|
||||||
|
const { disconnect } = useDisconnect();
|
||||||
|
|
||||||
const fetchUser = useCallback(async () => {
|
const fetchUser = useCallback(async () => {
|
||||||
const { user } = await client.getUser();
|
const { user } = await client.getUser();
|
||||||
@ -37,6 +43,16 @@ export const Sidebar = ({ mobileOpen }: SidebarProps) => {
|
|||||||
fetchUser();
|
fetchUser();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
const handleLogOut = useCallback(async () => {
|
||||||
|
await fetch(`${BASE_URL}/auth/logout`, {
|
||||||
|
method: 'POST',
|
||||||
|
credentials: 'include',
|
||||||
|
});
|
||||||
|
localStorage.clear();
|
||||||
|
disconnect();
|
||||||
|
navigate('/login');
|
||||||
|
}, [disconnect, navigate]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<motion.nav
|
<motion.nav
|
||||||
initial={{ x: -320 }}
|
initial={{ x: -320 }}
|
||||||
@ -66,21 +82,20 @@ export const Sidebar = ({ mobileOpen }: SidebarProps) => {
|
|||||||
<Tabs defaultValue="Projects" orientation="vertical">
|
<Tabs defaultValue="Projects" orientation="vertical">
|
||||||
{/* // TODO: use proper link buttons */}
|
{/* // TODO: use proper link buttons */}
|
||||||
<Tabs.List>
|
<Tabs.List>
|
||||||
<Tabs.Trigger icon={<QuestionMarkRoundIcon />} value="">
|
<Tabs.Trigger
|
||||||
<a
|
icon={<GlobeIcon />}
|
||||||
className="cursor-pointer font-mono"
|
value=""
|
||||||
href={`${SHOPIFY_APP_URL}/pages/instruction-faq`}
|
className="hidden lg:flex"
|
||||||
>
|
>
|
||||||
DOCUMENTATION
|
<a className="cursor-pointer font-mono" onClick={handleLogOut}>
|
||||||
|
LOG OUT
|
||||||
</a>
|
</a>
|
||||||
</Tabs.Trigger>
|
</Tabs.Trigger>
|
||||||
|
<Tabs.Trigger icon={<QuestionMarkRoundIcon />} value="">
|
||||||
|
<a className="cursor-pointer font-mono">DOCUMENTATION</a>
|
||||||
|
</Tabs.Trigger>
|
||||||
<Tabs.Trigger icon={<LifeBuoyIcon />} value="">
|
<Tabs.Trigger icon={<LifeBuoyIcon />} value="">
|
||||||
<a
|
<a className="cursor-pointer font-mono">SUPPORT</a>
|
||||||
className="cursor-pointer font-mono"
|
|
||||||
href="https://discord.com/invite/ukhbBemyxY"
|
|
||||||
>
|
|
||||||
SUPPORT
|
|
||||||
</a>
|
|
||||||
</Tabs.Trigger>
|
</Tabs.Trigger>
|
||||||
</Tabs.List>
|
</Tabs.List>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
@ -100,6 +115,14 @@ export const Sidebar = ({ mobileOpen }: SidebarProps) => {
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
<Button
|
||||||
|
iconOnly
|
||||||
|
variant="ghost"
|
||||||
|
className="text-elements-low-em"
|
||||||
|
onClick={handleLogOut}
|
||||||
|
>
|
||||||
|
<LogoutIcon />
|
||||||
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</motion.nav>
|
</motion.nav>
|
||||||
);
|
);
|
||||||
|
@ -1,154 +0,0 @@
|
|||||||
import { useCallback, useEffect, useState } from 'react';
|
|
||||||
import { generateNonce, SiweMessage } from 'siwe';
|
|
||||||
import axios from 'axios';
|
|
||||||
import { useNavigate } from 'react-router-dom';
|
|
||||||
|
|
||||||
import { Box, Modal } from '@mui/material';
|
|
||||||
|
|
||||||
import { BASE_URL, VITE_WALLET_IFRAME_URL } from 'utils/constants';
|
|
||||||
|
|
||||||
const axiosInstance = axios.create({
|
|
||||||
baseURL: BASE_URL,
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
'Access-Control-Allow-Origin': '*',
|
|
||||||
},
|
|
||||||
withCredentials: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
const AutoSignInIFrameModal = () => {
|
|
||||||
const navigate = useNavigate();
|
|
||||||
|
|
||||||
const [accountAddress, setAccountAddress] = useState();
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const handleSignInResponse = async (event: MessageEvent) => {
|
|
||||||
if (event.origin !== VITE_WALLET_IFRAME_URL) return;
|
|
||||||
|
|
||||||
if (event.data.type === 'SIGN_IN_RESPONSE') {
|
|
||||||
try {
|
|
||||||
const { success } = (
|
|
||||||
await axiosInstance.post('/auth/validate', {
|
|
||||||
message: event.data.data.message,
|
|
||||||
signature: event.data.data.signature,
|
|
||||||
})
|
|
||||||
).data;
|
|
||||||
|
|
||||||
if (success === true) {
|
|
||||||
navigate('/');
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Error signing in:', error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
window.addEventListener('message', handleSignInResponse);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
window.removeEventListener('message', handleSignInResponse);
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const initiateAutoSignIn = async () => {
|
|
||||||
if (!accountAddress) return;
|
|
||||||
|
|
||||||
const iframe = document.getElementById(
|
|
||||||
'autoSignInFrame',
|
|
||||||
) as HTMLIFrameElement;
|
|
||||||
|
|
||||||
if (!iframe.contentWindow) {
|
|
||||||
console.error('Iframe not found or not loaded');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const message = new SiweMessage({
|
|
||||||
version: '1',
|
|
||||||
domain: window.location.host,
|
|
||||||
uri: window.location.origin,
|
|
||||||
chainId: 1,
|
|
||||||
address: accountAddress,
|
|
||||||
nonce: generateNonce(),
|
|
||||||
// Human-readable ASCII assertion that the user will sign, and it must not contain `\n`.
|
|
||||||
statement: 'Sign in With Ethereum.',
|
|
||||||
}).prepareMessage();
|
|
||||||
|
|
||||||
iframe.contentWindow.postMessage(
|
|
||||||
{
|
|
||||||
type: 'AUTO_SIGN_IN',
|
|
||||||
chainId: '1',
|
|
||||||
message,
|
|
||||||
},
|
|
||||||
VITE_WALLET_IFRAME_URL,
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
initiateAutoSignIn();
|
|
||||||
}, [accountAddress]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const handleAccountsDataResponse = async (event: MessageEvent) => {
|
|
||||||
if (event.origin !== VITE_WALLET_IFRAME_URL) return;
|
|
||||||
|
|
||||||
if (event.data.type === 'WALLET_ACCOUNTS_DATA') {
|
|
||||||
setAccountAddress(event.data.data[0]);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
window.addEventListener('message', handleAccountsDataResponse);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
window.removeEventListener('message', handleAccountsDataResponse);
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const getAddressFromWallet = useCallback(() => {
|
|
||||||
const iframe = document.getElementById(
|
|
||||||
'autoSignInFrame',
|
|
||||||
) as HTMLIFrameElement;
|
|
||||||
|
|
||||||
if (!iframe.contentWindow) {
|
|
||||||
console.error('Iframe not found or not loaded');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
iframe.contentWindow.postMessage(
|
|
||||||
{
|
|
||||||
type: 'REQUEST_CREATE_OR_GET_ACCOUNTS',
|
|
||||||
chainId: '1',
|
|
||||||
},
|
|
||||||
VITE_WALLET_IFRAME_URL,
|
|
||||||
);
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Modal open={true} disableEscapeKeyDown keepMounted>
|
|
||||||
<Box
|
|
||||||
sx={{
|
|
||||||
position: 'absolute',
|
|
||||||
top: '50%',
|
|
||||||
left: '50%',
|
|
||||||
transform: 'translate(-50%, -50%)',
|
|
||||||
width: '90%',
|
|
||||||
maxWidth: '1200px',
|
|
||||||
height: '600px',
|
|
||||||
maxHeight: '80vh',
|
|
||||||
overflow: 'auto',
|
|
||||||
outline: 'none',
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<iframe
|
|
||||||
onLoad={getAddressFromWallet}
|
|
||||||
id="autoSignInFrame"
|
|
||||||
src={`${VITE_WALLET_IFRAME_URL}/auto-sign-in`}
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
sandbox="allow-scripts allow-same-origin"
|
|
||||||
></iframe>
|
|
||||||
</Box>
|
|
||||||
</Modal>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default AutoSignInIFrameModal;
|
|
@ -1,5 +1,3 @@
|
|||||||
export const SHORT_COMMIT_HASH_LENGTH = 8;
|
export const SHORT_COMMIT_HASH_LENGTH = 8;
|
||||||
|
|
||||||
export const SERVER_GQL_PATH = 'graphql';
|
export const SERVER_GQL_PATH = 'graphql';
|
||||||
|
|
||||||
export const SHOPIFY_APP_URL = 'https://store.laconic.com';
|
|
||||||
|
210
packages/frontend/src/context/WalletConnectContext.tsx
Normal file
210
packages/frontend/src/context/WalletConnectContext.tsx
Normal file
@ -0,0 +1,210 @@
|
|||||||
|
import {
|
||||||
|
createContext,
|
||||||
|
useCallback,
|
||||||
|
useContext,
|
||||||
|
useEffect,
|
||||||
|
useRef,
|
||||||
|
useState,
|
||||||
|
} from 'react';
|
||||||
|
|
||||||
|
import SignClient from '@walletconnect/sign-client';
|
||||||
|
import { getSdkError } from '@walletconnect/utils';
|
||||||
|
import { SessionTypes } from '@walletconnect/types';
|
||||||
|
|
||||||
|
import { walletConnectModal } from '../utils/web3modal';
|
||||||
|
import {
|
||||||
|
VITE_LACONICD_CHAIN_ID,
|
||||||
|
VITE_WALLET_CONNECT_ID,
|
||||||
|
} from 'utils/constants';
|
||||||
|
|
||||||
|
interface ClientInterface {
|
||||||
|
signClient: SignClient | undefined;
|
||||||
|
session: SessionTypes.Struct | undefined;
|
||||||
|
loadingSession: boolean;
|
||||||
|
onConnect: () => Promise<void>;
|
||||||
|
onDisconnect: () => Promise<void>;
|
||||||
|
onSessionDelete: () => void;
|
||||||
|
accounts: { address: string }[] | undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ClientContext = createContext({} as ClientInterface);
|
||||||
|
|
||||||
|
export const useWalletConnectClient = () => {
|
||||||
|
return useContext(ClientContext);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const WalletConnectClientProvider = ({
|
||||||
|
children,
|
||||||
|
}: {
|
||||||
|
children: JSX.Element;
|
||||||
|
}) => {
|
||||||
|
const [signClient, setSignClient] = useState<SignClient>();
|
||||||
|
const [session, setSession] = useState<SessionTypes.Struct>();
|
||||||
|
const [loadingSession, setLoadingSession] = useState(true);
|
||||||
|
const [accounts, setAccounts] = useState<{ address: string }[]>();
|
||||||
|
|
||||||
|
const isSignClientInitializing = useRef<boolean>(false);
|
||||||
|
|
||||||
|
const onSessionConnect = useCallback(async (session: SessionTypes.Struct) => {
|
||||||
|
setSession(session);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const subscribeToEvents = useCallback(
|
||||||
|
async (client: SignClient) => {
|
||||||
|
client.on('session_update', ({ topic, params }) => {
|
||||||
|
const { namespaces } = params;
|
||||||
|
const currentSession = client.session.get(topic);
|
||||||
|
const updatedSession = { ...currentSession, namespaces };
|
||||||
|
setSession(updatedSession);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
[setSession],
|
||||||
|
);
|
||||||
|
|
||||||
|
const onConnect = async () => {
|
||||||
|
const proposalNamespace = {
|
||||||
|
cosmos: {
|
||||||
|
methods: ['cosmos_sendTokens'],
|
||||||
|
chains: [`cosmos:${VITE_LACONICD_CHAIN_ID}`],
|
||||||
|
events: [],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
try {
|
||||||
|
const { uri, approval } = await signClient!.connect({
|
||||||
|
requiredNamespaces: proposalNamespace,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (uri) {
|
||||||
|
walletConnectModal.openModal({ uri });
|
||||||
|
const session = await approval();
|
||||||
|
onSessionConnect(session);
|
||||||
|
walletConnectModal.closeModal();
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const onDisconnect = useCallback(async () => {
|
||||||
|
if (typeof signClient === 'undefined') {
|
||||||
|
throw new Error('WalletConnect is not initialized');
|
||||||
|
}
|
||||||
|
if (typeof session === 'undefined') {
|
||||||
|
throw new Error('Session is not connected');
|
||||||
|
}
|
||||||
|
|
||||||
|
await signClient.disconnect({
|
||||||
|
topic: session.topic,
|
||||||
|
reason: getSdkError('USER_DISCONNECTED'),
|
||||||
|
});
|
||||||
|
|
||||||
|
onSessionDelete();
|
||||||
|
}, [signClient, session]);
|
||||||
|
|
||||||
|
const onSessionDelete = () => {
|
||||||
|
setAccounts(undefined);
|
||||||
|
setSession(undefined);
|
||||||
|
};
|
||||||
|
|
||||||
|
const checkPersistedState = useCallback(
|
||||||
|
async (signClient: SignClient) => {
|
||||||
|
if (typeof signClient === 'undefined') {
|
||||||
|
throw new Error('WalletConnect is not initialized');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof session !== 'undefined') return;
|
||||||
|
if (signClient.session.length) {
|
||||||
|
const lastKeyIndex = signClient.session.keys.length - 1;
|
||||||
|
const previousSsession = signClient.session.get(
|
||||||
|
signClient.session.keys[lastKeyIndex],
|
||||||
|
);
|
||||||
|
|
||||||
|
await onSessionConnect(previousSsession);
|
||||||
|
return previousSsession;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[session, onSessionConnect],
|
||||||
|
);
|
||||||
|
|
||||||
|
const createClient = useCallback(async () => {
|
||||||
|
isSignClientInitializing.current = true;
|
||||||
|
try {
|
||||||
|
const signClient = await SignClient.init({
|
||||||
|
projectId: VITE_WALLET_CONNECT_ID,
|
||||||
|
metadata: {
|
||||||
|
name: 'Deploy App',
|
||||||
|
description: '',
|
||||||
|
url: window.location.href,
|
||||||
|
icons: ['https://avatars.githubusercontent.com/u/92608123'],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
setSignClient(signClient);
|
||||||
|
await checkPersistedState(signClient);
|
||||||
|
await subscribeToEvents(signClient);
|
||||||
|
setLoadingSession(false);
|
||||||
|
} catch (e) {
|
||||||
|
console.error('error in createClient', e);
|
||||||
|
}
|
||||||
|
isSignClientInitializing.current = false;
|
||||||
|
}, [setSignClient, checkPersistedState, subscribeToEvents]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!signClient && !isSignClientInitializing.current) {
|
||||||
|
createClient();
|
||||||
|
}
|
||||||
|
}, [signClient, createClient]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const populateAccounts = async () => {
|
||||||
|
if (!session) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!session.namespaces['cosmos']) {
|
||||||
|
console.log('Accounts for cosmos namespace not found');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const cosmosAddresses = session.namespaces['cosmos'].accounts;
|
||||||
|
|
||||||
|
const cosmosAccounts = cosmosAddresses.map((address) => ({
|
||||||
|
address,
|
||||||
|
}));
|
||||||
|
|
||||||
|
const allAccounts = cosmosAccounts;
|
||||||
|
|
||||||
|
setAccounts(allAccounts);
|
||||||
|
};
|
||||||
|
|
||||||
|
populateAccounts();
|
||||||
|
}, [session]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!signClient) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
signClient.on('session_delete', onSessionDelete);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
signClient.off('session_delete', onSessionDelete);
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ClientContext.Provider
|
||||||
|
value={{
|
||||||
|
signClient,
|
||||||
|
onConnect,
|
||||||
|
onDisconnect,
|
||||||
|
onSessionDelete,
|
||||||
|
loadingSession,
|
||||||
|
session,
|
||||||
|
accounts,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</ClientContext.Provider>
|
||||||
|
);
|
||||||
|
};
|
116
packages/frontend/src/context/Web3Provider.tsx
Normal file
116
packages/frontend/src/context/Web3Provider.tsx
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
import { ReactNode } from 'react';
|
||||||
|
import assert from 'assert';
|
||||||
|
import { SiweMessage, generateNonce } from 'siwe';
|
||||||
|
import { WagmiProvider } from 'wagmi';
|
||||||
|
import { mainnet } from 'wagmi/chains';
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
import { createWeb3Modal } from '@web3modal/wagmi/react';
|
||||||
|
import { defaultWagmiConfig } from '@web3modal/wagmi/react/config';
|
||||||
|
import { createSIWEConfig } from '@web3modal/siwe';
|
||||||
|
import type {
|
||||||
|
SIWECreateMessageArgs,
|
||||||
|
SIWEVerifyMessageArgs,
|
||||||
|
} from '@web3modal/core';
|
||||||
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
||||||
|
|
||||||
|
import { VITE_WALLET_CONNECT_ID, BASE_URL } from 'utils/constants';
|
||||||
|
|
||||||
|
if (!VITE_WALLET_CONNECT_ID) {
|
||||||
|
throw new Error('Error: REACT_APP_WALLET_CONNECT_ID env config is not set');
|
||||||
|
}
|
||||||
|
assert(BASE_URL, 'VITE_SERVER_URL is not set in env');
|
||||||
|
|
||||||
|
const queryClient = new QueryClient();
|
||||||
|
const axiosInstance = axios.create({
|
||||||
|
baseURL: BASE_URL,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
'Access-Control-Allow-Origin': '*',
|
||||||
|
},
|
||||||
|
withCredentials: true,
|
||||||
|
});
|
||||||
|
const metadata = {
|
||||||
|
name: 'Deploy App Auth',
|
||||||
|
description: '',
|
||||||
|
url: window.location.origin,
|
||||||
|
icons: ['https://avatars.githubusercontent.com/u/37784886'],
|
||||||
|
};
|
||||||
|
const chains = [mainnet] as const;
|
||||||
|
const config = defaultWagmiConfig({
|
||||||
|
chains,
|
||||||
|
projectId: VITE_WALLET_CONNECT_ID,
|
||||||
|
metadata,
|
||||||
|
});
|
||||||
|
const siweConfig = createSIWEConfig({
|
||||||
|
createMessage: ({ nonce, address, chainId }: SIWECreateMessageArgs) =>
|
||||||
|
new SiweMessage({
|
||||||
|
version: '1',
|
||||||
|
domain: window.location.host,
|
||||||
|
uri: window.location.origin,
|
||||||
|
address,
|
||||||
|
chainId,
|
||||||
|
nonce,
|
||||||
|
// Human-readable ASCII assertion that the user will sign, and it must not contain `\n`.
|
||||||
|
statement: 'Sign in With Ethereum.',
|
||||||
|
}).prepareMessage(),
|
||||||
|
getNonce: async () => {
|
||||||
|
return generateNonce();
|
||||||
|
},
|
||||||
|
getSession: async () => {
|
||||||
|
try {
|
||||||
|
const session = (await axiosInstance.get('/auth/session')).data;
|
||||||
|
const { address, chainId } = session;
|
||||||
|
return { address, chainId };
|
||||||
|
} catch (err) {
|
||||||
|
if (window.location.pathname !== '/login') {
|
||||||
|
window.location.href = '/login';
|
||||||
|
}
|
||||||
|
throw new Error('Failed to get session!');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
verifyMessage: async ({ message, signature }: SIWEVerifyMessageArgs) => {
|
||||||
|
try {
|
||||||
|
const { success } = (
|
||||||
|
await axiosInstance.post('/auth/validate', {
|
||||||
|
message,
|
||||||
|
signature,
|
||||||
|
})
|
||||||
|
).data;
|
||||||
|
return success;
|
||||||
|
} catch (error) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
signOut: async () => {
|
||||||
|
try {
|
||||||
|
const { success } = (await axiosInstance.post('/auth/logout')).data;
|
||||||
|
return success;
|
||||||
|
} catch (error) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onSignOut: () => {
|
||||||
|
window.location.href = '/login';
|
||||||
|
},
|
||||||
|
onSignIn: () => {
|
||||||
|
window.location.href = '/';
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
createWeb3Modal({
|
||||||
|
siweConfig,
|
||||||
|
wagmiConfig: config,
|
||||||
|
projectId: VITE_WALLET_CONNECT_ID,
|
||||||
|
});
|
||||||
|
export default function Web3ModalProvider({
|
||||||
|
children,
|
||||||
|
}: {
|
||||||
|
children: ReactNode;
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<WagmiProvider config={config}>
|
||||||
|
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
|
||||||
|
</WagmiProvider>
|
||||||
|
);
|
||||||
|
}
|
@ -1,44 +0,0 @@
|
|||||||
import { useState, useEffect, useCallback } from 'react';
|
|
||||||
|
|
||||||
import { VITE_LACONICD_CHAIN_ID } from 'utils/constants';
|
|
||||||
|
|
||||||
const useCheckBalance = (amount: string, iframeId: string) => {
|
|
||||||
const [isBalanceSufficient, setIsBalanceSufficient] = useState<boolean>();
|
|
||||||
|
|
||||||
const checkBalance = useCallback(() => {
|
|
||||||
const iframe = document.getElementById(iframeId) as HTMLIFrameElement;
|
|
||||||
|
|
||||||
if (!iframe || !iframe.contentWindow) {
|
|
||||||
console.error(`Iframe with ID "${iframeId}" not found or not loaded`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
iframe.contentWindow.postMessage(
|
|
||||||
{
|
|
||||||
type: 'CHECK_BALANCE',
|
|
||||||
chainId: VITE_LACONICD_CHAIN_ID,
|
|
||||||
amount,
|
|
||||||
},
|
|
||||||
import.meta.env.VITE_WALLET_IFRAME_URL
|
|
||||||
);
|
|
||||||
}, [iframeId, amount]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const handleMessage = (event: MessageEvent) => {
|
|
||||||
if (event.origin !== import.meta.env.VITE_WALLET_IFRAME_URL) return;
|
|
||||||
|
|
||||||
if (event.data.type !== 'IS_SUFFICIENT') return;
|
|
||||||
|
|
||||||
setIsBalanceSufficient(event.data.data);
|
|
||||||
};
|
|
||||||
|
|
||||||
window.addEventListener('message', handleMessage);
|
|
||||||
return () => {
|
|
||||||
window.removeEventListener('message', handleMessage);
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return { isBalanceSufficient, checkBalance };
|
|
||||||
};
|
|
||||||
|
|
||||||
export default useCheckBalance;
|
|
@ -4,9 +4,10 @@ import assert from 'assert';
|
|||||||
import { GQLClient } from 'gql-client';
|
import { GQLClient } from 'gql-client';
|
||||||
|
|
||||||
import { ThemeProvider } from '@snowballtools/material-tailwind-react-fork';
|
import { ThemeProvider } from '@snowballtools/material-tailwind-react-fork';
|
||||||
|
|
||||||
|
import './index.css';
|
||||||
import '@fontsource/inter';
|
import '@fontsource/inter';
|
||||||
import '@fontsource-variable/jetbrains-mono';
|
import '@fontsource-variable/jetbrains-mono';
|
||||||
|
|
||||||
import App from './App';
|
import App from './App';
|
||||||
import reportWebVitals from './reportWebVitals';
|
import reportWebVitals from './reportWebVitals';
|
||||||
import { GQLClientProvider } from './context/GQLClientContext';
|
import { GQLClientProvider } from './context/GQLClientContext';
|
||||||
@ -14,7 +15,8 @@ import { SERVER_GQL_PATH } from './constants';
|
|||||||
import { Toaster } from 'components/shared/Toast';
|
import { Toaster } from 'components/shared/Toast';
|
||||||
import { LogErrorBoundary } from 'utils/log-error';
|
import { LogErrorBoundary } from 'utils/log-error';
|
||||||
import { BASE_URL } from 'utils/constants';
|
import { BASE_URL } from 'utils/constants';
|
||||||
import './index.css';
|
import Web3ModalProvider from './context/Web3Provider';
|
||||||
|
import { WalletConnectClientProvider } from 'context/WalletConnectContext';
|
||||||
|
|
||||||
console.log(`v-0.0.9`);
|
console.log(`v-0.0.9`);
|
||||||
|
|
||||||
@ -30,12 +32,16 @@ const gqlClient = new GQLClient({ gqlEndpoint });
|
|||||||
root.render(
|
root.render(
|
||||||
<LogErrorBoundary>
|
<LogErrorBoundary>
|
||||||
<React.StrictMode>
|
<React.StrictMode>
|
||||||
|
<WalletConnectClientProvider>
|
||||||
<ThemeProvider>
|
<ThemeProvider>
|
||||||
|
<Web3ModalProvider>
|
||||||
<GQLClientProvider client={gqlClient}>
|
<GQLClientProvider client={gqlClient}>
|
||||||
<App />
|
<App />
|
||||||
<Toaster />
|
<Toaster />
|
||||||
</GQLClientProvider>
|
</GQLClientProvider>
|
||||||
|
</Web3ModalProvider>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
</WalletConnectClientProvider>
|
||||||
</React.StrictMode>
|
</React.StrictMode>
|
||||||
</LogErrorBoundary>,
|
</LogErrorBoundary>,
|
||||||
);
|
);
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import AutoSignInIFrameModal from 'components/shared/auth/AutoSignInIFrameModal';
|
import { Login } from './auth/Login';
|
||||||
|
|
||||||
const AuthPage = () => {
|
const AuthPage = () => {
|
||||||
return (
|
return (
|
||||||
@ -13,7 +13,9 @@ const AuthPage = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="pb-12 relative z-10 flex-1 flex-center">
|
<div className="pb-12 relative z-10 flex-1 flex-center">
|
||||||
<AutoSignInIFrameModal />
|
<div className="max-w-[520px] w-full dark:bg-overlay bg-white rounded-xl shadow">
|
||||||
|
<Login />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -1,38 +0,0 @@
|
|||||||
import { useEffect, useState } from 'react';
|
|
||||||
import { useNavigate } from 'react-router-dom';
|
|
||||||
import { useMediaQuery } from 'usehooks-ts';
|
|
||||||
|
|
||||||
import { Button } from 'components/shared';
|
|
||||||
import CheckBalanceIframe from 'components/projects/create/CheckBalanceIframe';
|
|
||||||
import { SHOPIFY_APP_URL } from '../constants';
|
|
||||||
|
|
||||||
const BuyPrepaidService = () => {
|
|
||||||
const navigate = useNavigate();
|
|
||||||
|
|
||||||
const [isBalanceSufficient, setIsBalanceSufficient] = useState<boolean>();
|
|
||||||
|
|
||||||
const isTabletView = useMediaQuery('(min-width: 720px)'); // md:
|
|
||||||
const buttonSize = isTabletView ? { size: 'lg' as const } : {};
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (isBalanceSufficient === true) {
|
|
||||||
navigate('/');
|
|
||||||
}
|
|
||||||
}, [isBalanceSufficient]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="dark:bg-background flex flex-col min-h-screen">
|
|
||||||
<div className="pb-12 relative z-10 flex-1 flex-center">
|
|
||||||
<Button {...buttonSize} shape={'default'}>
|
|
||||||
<a href={SHOPIFY_APP_URL} target="_blank">
|
|
||||||
Buy prepaid service
|
|
||||||
</a>
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<CheckBalanceIframe onBalanceChange={setIsBalanceSufficient} isPollingEnabled={true} amount='1'/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default BuyPrepaidService;
|
|
@ -9,6 +9,12 @@ export const Login = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<WavyBorder className="self-stretch" variant="stroke" />
|
<WavyBorder className="self-stretch" variant="stroke" />
|
||||||
|
|
||||||
|
<div className="self-stretch p-4 xs:p-6 flex-col justify-center items-center gap-8 flex">
|
||||||
|
<div className="self-stretch flex-col justify-center items-center gap-3 flex">
|
||||||
|
<w3m-button />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -10,7 +10,6 @@ import { DeleteVariableDialog } from 'components/projects/Dialog/DeleteVariableD
|
|||||||
import { DeleteDomainDialog } from 'components/projects/Dialog/DeleteDomainDialog';
|
import { DeleteDomainDialog } from 'components/projects/Dialog/DeleteDomainDialog';
|
||||||
import { CancelDeploymentDialog } from 'components/projects/Dialog/CancelDeploymentDialog';
|
import { CancelDeploymentDialog } from 'components/projects/Dialog/CancelDeploymentDialog';
|
||||||
import {
|
import {
|
||||||
AppDeploymentRecordAttributes,
|
|
||||||
Deployment,
|
Deployment,
|
||||||
DeploymentStatus,
|
DeploymentStatus,
|
||||||
Domain,
|
Domain,
|
||||||
@ -21,6 +20,15 @@ import { ChangeStateToProductionDialog } from 'components/projects/Dialog/Change
|
|||||||
|
|
||||||
const deployment: Deployment = {
|
const deployment: Deployment = {
|
||||||
id: '1',
|
id: '1',
|
||||||
|
domain: {
|
||||||
|
id: 'domain1',
|
||||||
|
branch: 'main',
|
||||||
|
name: 'example.com',
|
||||||
|
status: DomainStatus.Live,
|
||||||
|
redirectTo: null,
|
||||||
|
createdAt: '1677609600', // 2023-02-25T12:00:00Z
|
||||||
|
updatedAt: '1677613200', // 2023-02-25T13:00:00Z
|
||||||
|
},
|
||||||
branch: 'main',
|
branch: 'main',
|
||||||
commitHash: 'a1b2c3d',
|
commitHash: 'a1b2c3d',
|
||||||
commitMessage:
|
commitMessage:
|
||||||
@ -49,7 +57,6 @@ const deployment: Deployment = {
|
|||||||
updatedAt: '1677680400', // 2023-03-01T13:00:00Z
|
updatedAt: '1677680400', // 2023-03-01T13:00:00Z
|
||||||
applicationDeploymentRequestId:
|
applicationDeploymentRequestId:
|
||||||
'bafyreiaycvq6imoppnpwdve4smj6t6ql5svt5zl3x6rimu4qwyzgjorize',
|
'bafyreiaycvq6imoppnpwdve4smj6t6ql5svt5zl3x6rimu4qwyzgjorize',
|
||||||
applicationDeploymentRecordData: {} as AppDeploymentRecordAttributes,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const domains: Domain[] = [
|
const domains: Domain[] = [
|
||||||
@ -245,7 +252,7 @@ const ModalsPage: React.FC = () => {
|
|||||||
setRedeployToProduction((preVal) => !preVal)
|
setRedeployToProduction((preVal) => !preVal)
|
||||||
}
|
}
|
||||||
deployment={deployment}
|
deployment={deployment}
|
||||||
domains={domains}
|
domains={deployment.domain ? [deployment.domain] : []}
|
||||||
/>
|
/>
|
||||||
{/* Rollback to this deployment */}
|
{/* Rollback to this deployment */}
|
||||||
<Button onClick={() => setRollbackDeployment(true)}>
|
<Button onClick={() => setRollbackDeployment(true)}>
|
||||||
@ -261,7 +268,7 @@ const ModalsPage: React.FC = () => {
|
|||||||
}
|
}
|
||||||
deployment={deployment}
|
deployment={deployment}
|
||||||
newDeployment={deployment}
|
newDeployment={deployment}
|
||||||
domains={domains}
|
domains={deployment.domain ? [deployment.domain] : []}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,20 +1,16 @@
|
|||||||
import { useCallback, useEffect, useState } from 'react';
|
import { useCallback, useEffect, useState } from 'react';
|
||||||
import { Link, useNavigate, useParams } from 'react-router-dom';
|
import { Link, useParams } from 'react-router-dom';
|
||||||
|
|
||||||
import { ProjectCard } from 'components/projects/ProjectCard';
|
import { ProjectCard } from 'components/projects/ProjectCard';
|
||||||
import { Heading, Badge, Button } from 'components/shared';
|
import { Heading, Badge, Button } from 'components/shared';
|
||||||
import { PlusIcon } from 'components/shared/CustomIcon';
|
import { PlusIcon } from 'components/shared/CustomIcon';
|
||||||
import { useGQLClient } from 'context/GQLClientContext';
|
import { useGQLClient } from 'context/GQLClientContext';
|
||||||
import { Project } from 'gql-client';
|
import { Project } from 'gql-client';
|
||||||
import CheckBalanceIframe from 'components/projects/create/CheckBalanceIframe';
|
|
||||||
|
|
||||||
const Projects = () => {
|
const Projects = () => {
|
||||||
const [isBalanceSufficient, setIsBalanceSufficient] = useState<boolean>();
|
|
||||||
const [projects, setProjects] = useState<Project[]>([]);
|
|
||||||
|
|
||||||
const navigate = useNavigate();
|
|
||||||
const client = useGQLClient();
|
const client = useGQLClient();
|
||||||
const { orgSlug } = useParams();
|
const { orgSlug } = useParams();
|
||||||
|
const [projects, setProjects] = useState<Project[]>([]);
|
||||||
|
|
||||||
const fetchProjects = useCallback(async () => {
|
const fetchProjects = useCallback(async () => {
|
||||||
const { projectsInOrganization } = await client.getProjectsInOrganization(
|
const { projectsInOrganization } = await client.getProjectsInOrganization(
|
||||||
@ -27,12 +23,6 @@ const Projects = () => {
|
|||||||
fetchProjects();
|
fetchProjects();
|
||||||
}, [orgSlug]);
|
}, [orgSlug]);
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (isBalanceSufficient === false) {
|
|
||||||
navigate('/buy-prepaid-service');
|
|
||||||
}
|
|
||||||
}, [isBalanceSufficient]);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section className="px-4 md:px-6 py-6 flex flex-col gap-6">
|
<section className="px-4 md:px-6 py-6 flex flex-col gap-6">
|
||||||
{/* Header */}
|
{/* Header */}
|
||||||
@ -59,8 +49,6 @@ const Projects = () => {
|
|||||||
return <ProjectCard project={project} key={key} />;
|
return <ProjectCard project={project} key={key} />;
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<CheckBalanceIframe onBalanceChange={setIsBalanceSufficient} isPollingEnabled={false} amount='1' />
|
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -60,9 +60,9 @@ const Id = () => {
|
|||||||
fetchProject(id);
|
fetchProject(id);
|
||||||
}, [id]);
|
}, [id]);
|
||||||
|
|
||||||
const onUpdate = useCallback(async () => {
|
const onUpdate = async () => {
|
||||||
await fetchProject(id);
|
await fetchProject(id);
|
||||||
}, [fetchProject, id]);
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="h-full">
|
<div className="h-full">
|
||||||
@ -118,11 +118,9 @@ const Id = () => {
|
|||||||
<Tabs.Trigger value="deployments">
|
<Tabs.Trigger value="deployments">
|
||||||
<Link to="deployments">Deployments</Link>
|
<Link to="deployments">Deployments</Link>
|
||||||
</Tabs.Trigger>
|
</Tabs.Trigger>
|
||||||
{/*
|
|
||||||
<Tabs.Trigger value="integrations">
|
<Tabs.Trigger value="integrations">
|
||||||
<Link to="integrations">Integrations</Link>
|
<Link to="integrations">Integrations</Link>
|
||||||
</Tabs.Trigger>
|
</Tabs.Trigger>
|
||||||
*/}
|
|
||||||
<Tabs.Trigger value="settings">
|
<Tabs.Trigger value="settings">
|
||||||
<Link to="settings">Settings</Link>
|
<Link to="settings">Settings</Link>
|
||||||
</Tabs.Trigger>
|
</Tabs.Trigger>
|
||||||
|
@ -57,7 +57,7 @@ const CreateWithTemplate = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col items-center gap-6 lg:gap-10 mx-auto w-full lg:w-5/6">
|
<div className="flex flex-col items-center gap-6 lg:gap-10 mx-auto w-full lg:w-5/6">
|
||||||
<div className="flex flex-col lg:flex-row justify-between w-full my-4 bg-base-bg-alternate dark:bg-overlay rounded-xl p-6 gap-3 items-start lg:items-center">
|
<div className="flex flex-col lg:flex-row justify-between w-full my-4 bg-base-bg-alternate rounded-xl p-6 gap-3 items-start lg:items-center">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<TemplateIcon type={template?.icon as TemplateIconType} size={48} />
|
<TemplateIcon type={template?.icon as TemplateIconType} size={48} />
|
||||||
<Heading className="font-medium">{template?.name}</Heading>
|
<Heading className="font-medium">{template?.name}</Heading>
|
||||||
|
@ -1,14 +1,12 @@
|
|||||||
import { ComponentPropsWithoutRef } from 'react';
|
import { ComponentPropsWithoutRef } from 'react';
|
||||||
import { Link, Outlet, useParams } from 'react-router-dom';
|
import { Link, Outlet, useParams } from 'react-router-dom';
|
||||||
import { useMediaQuery } from 'usehooks-ts';
|
|
||||||
|
|
||||||
import * as Dialog from '@radix-ui/react-dialog';
|
|
||||||
|
|
||||||
import { Heading } from 'components/shared/Heading';
|
import { Heading } from 'components/shared/Heading';
|
||||||
import { WavyBorder } from 'components/shared/WavyBorder';
|
import { WavyBorder } from 'components/shared/WavyBorder';
|
||||||
import { Button } from 'components/shared/Button';
|
import { Button } from 'components/shared/Button';
|
||||||
import { CrossIcon } from 'components/shared/CustomIcon';
|
import { CrossIcon } from 'components/shared/CustomIcon';
|
||||||
import { cn } from 'utils/classnames';
|
import { cn } from 'utils/classnames';
|
||||||
|
import * as Dialog from '@radix-ui/react-dialog';
|
||||||
|
|
||||||
export interface CreateProjectLayoutProps
|
export interface CreateProjectLayoutProps
|
||||||
extends ComponentPropsWithoutRef<'section'> {}
|
extends ComponentPropsWithoutRef<'section'> {}
|
||||||
@ -18,7 +16,6 @@ export const CreateProjectLayout = ({
|
|||||||
...props
|
...props
|
||||||
}: CreateProjectLayoutProps) => {
|
}: CreateProjectLayoutProps) => {
|
||||||
const { orgSlug } = useParams();
|
const { orgSlug } = useParams();
|
||||||
const isDesktopView = useMediaQuery('(min-width: 720px)'); // md:
|
|
||||||
|
|
||||||
const closeBtnLink = `/${orgSlug}`;
|
const closeBtnLink = `/${orgSlug}`;
|
||||||
|
|
||||||
@ -31,8 +28,9 @@ export const CreateProjectLayout = ({
|
|||||||
</Heading>
|
</Heading>
|
||||||
);
|
);
|
||||||
|
|
||||||
return isDesktopView ? (
|
return (
|
||||||
// Desktop
|
<>
|
||||||
|
{/* Desktop */}
|
||||||
<section
|
<section
|
||||||
{...props}
|
{...props}
|
||||||
className={cn(
|
className={cn(
|
||||||
@ -56,13 +54,14 @@ export const CreateProjectLayout = ({
|
|||||||
</div>
|
</div>
|
||||||
<WavyBorder />
|
<WavyBorder />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section className="px-6 h-full flex-1 py-6 overflow-y-auto">
|
<section className="px-6 h-full flex-1 py-6 overflow-y-auto">
|
||||||
<Outlet />
|
<Outlet />
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
) : (
|
|
||||||
// Mobile
|
{/* Mobile */}
|
||||||
// Setting modal={false} so even if modal is active on desktop, it doesn't block clicks
|
{/* Setting modal={false} so even if modal is active on desktop, it doesn't block clicks */}
|
||||||
<Dialog.Root modal={false} open={true}>
|
<Dialog.Root modal={false} open={true}>
|
||||||
<Dialog.Portal>
|
<Dialog.Portal>
|
||||||
{/* Not using <Dialog.Overlay> since modal={false} disables it and its content will not show */}
|
{/* Not using <Dialog.Overlay> since modal={false} disables it and its content will not show */}
|
||||||
@ -95,5 +94,6 @@ export const CreateProjectLayout = ({
|
|||||||
</div>
|
</div>
|
||||||
</Dialog.Portal>
|
</Dialog.Portal>
|
||||||
</Dialog.Root>
|
</Dialog.Root>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -55,7 +55,7 @@ const Id = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Card */}
|
{/* Card */}
|
||||||
<div className="bg-base-bg-alternate dark:bg-overlay2 rounded-xl shadow-inset w-full px-1 py-1">
|
<div className="bg-base-bg-alternate rounded-xl shadow-inset w-full px-1 py-1">
|
||||||
{/* Trigger question */}
|
{/* Trigger question */}
|
||||||
<div className="flex gap-2 justify-center items-center py-3">
|
<div className="flex gap-2 justify-center items-center py-3">
|
||||||
<div className="h-5 w-5">
|
<div className="h-5 w-5">
|
||||||
@ -67,7 +67,7 @@ const Id = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* CTA card */}
|
{/* CTA card */}
|
||||||
<div className="bg-surface-card dark:bg-overlay rounded-xl shadow-card-sm dark:shadow-background px-4 py-4">
|
<div className="bg-surface-card rounded-xl shadow-card-sm px-4 py-4">
|
||||||
<div className="flex gap-2">
|
<div className="flex gap-2">
|
||||||
<Badge variant="secondary">1</Badge>
|
<Badge variant="secondary">1</Badge>
|
||||||
<div className="space-y-3">
|
<div className="space-y-3">
|
||||||
@ -75,7 +75,7 @@ const Id = () => {
|
|||||||
<Heading as="h6" className="text-sm font-sans">
|
<Heading as="h6" className="text-sm font-sans">
|
||||||
Add a custom domain
|
Add a custom domain
|
||||||
</Heading>
|
</Heading>
|
||||||
<p className="text-xs text-elements-low-em dark:text-foreground-secondary font-sans">
|
<p className="text-xs text-elements-low-em font-sans">
|
||||||
Make it easy for your visitors to remember your URL with a
|
Make it easy for your visitors to remember your URL with a
|
||||||
custom domain.
|
custom domain.
|
||||||
</p>
|
</p>
|
||||||
|
@ -135,7 +135,7 @@ const CreateRepo = () => {
|
|||||||
framework: 'React',
|
framework: 'React',
|
||||||
repoName: '',
|
repoName: '',
|
||||||
isPrivate: false,
|
isPrivate: false,
|
||||||
account: '',
|
account: gitAccounts[0],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -152,18 +152,13 @@ const CreateRepo = () => {
|
|||||||
<Heading as="h3" className="text-lg font-medium">
|
<Heading as="h3" className="text-lg font-medium">
|
||||||
Create a repository
|
Create a repository
|
||||||
</Heading>
|
</Heading>
|
||||||
<Heading
|
<Heading as="h5" className="text-sm font-sans text-elements-low-em">
|
||||||
as="h5"
|
|
||||||
className="text-sm font-sans text-elements-low-em dark:text-foreground-secondary"
|
|
||||||
>
|
|
||||||
The project will be cloned into this repository
|
The project will be cloned into this repository
|
||||||
</Heading>
|
</Heading>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex flex-col justify-start gap-3">
|
<div className="flex flex-col justify-start gap-3">
|
||||||
<span className="text-sm text-elements-high-em dark:text-foreground">
|
<span className="text-sm text-elements-high-em">Git account</span>
|
||||||
Git account
|
|
||||||
</span>
|
|
||||||
{gitAccounts.length > 0 ? (
|
{gitAccounts.length > 0 ? (
|
||||||
<Controller
|
<Controller
|
||||||
name="account"
|
name="account"
|
||||||
@ -186,9 +181,7 @@ const CreateRepo = () => {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col justify-start gap-3">
|
<div className="flex flex-col justify-start gap-3">
|
||||||
<span className="text-sm text-elements-high-em dark:text-foreground">
|
<span className="text-sm text-elements-high-em">Name the repo</span>
|
||||||
Name the repo
|
|
||||||
</span>
|
|
||||||
<Controller
|
<Controller
|
||||||
name="repoName"
|
name="repoName"
|
||||||
control={control}
|
control={control}
|
||||||
|
@ -1,55 +1,40 @@
|
|||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import {
|
import { Link, useNavigate, useOutletContext } from 'react-router-dom';
|
||||||
Link,
|
|
||||||
useOutletContext,
|
|
||||||
} from 'react-router-dom';
|
|
||||||
import { RequestError } from 'octokit';
|
import { RequestError } from 'octokit';
|
||||||
|
|
||||||
import {
|
import { useOctokit } from 'context/OctokitContext';
|
||||||
Heading,
|
import { GitCommitWithBranch, OutletContextType } from '../../../../types';
|
||||||
Avatar,
|
import { useGQLClient } from 'context/GQLClientContext';
|
||||||
} from 'components/shared';
|
import { Button, Heading, Avatar, Tag } from 'components/shared';
|
||||||
|
import { getInitials } from 'utils/geInitials';
|
||||||
import {
|
import {
|
||||||
BranchStrokeIcon,
|
BranchStrokeIcon,
|
||||||
|
CheckRoundFilledIcon,
|
||||||
|
ClockIcon,
|
||||||
CursorBoxIcon,
|
CursorBoxIcon,
|
||||||
GithubStrokeIcon,
|
GithubStrokeIcon,
|
||||||
|
GlobeIcon,
|
||||||
LinkIcon,
|
LinkIcon,
|
||||||
CalendarDaysIcon,
|
CalendarDaysIcon,
|
||||||
} from 'components/shared/CustomIcon';
|
} from 'components/shared/CustomIcon';
|
||||||
import { useOctokit } from 'context/OctokitContext';
|
|
||||||
import { GitCommitWithBranch, OutletContextType } from '../../../../types';
|
|
||||||
import { getInitials } from 'utils/geInitials';
|
|
||||||
import { Activity } from 'components/projects/project/overview/Activity';
|
import { Activity } from 'components/projects/project/overview/Activity';
|
||||||
import { OverviewInfo } from 'components/projects/project/overview/OverviewInfo';
|
import { OverviewInfo } from 'components/projects/project/overview/OverviewInfo';
|
||||||
import { relativeTimeMs } from 'utils/time';
|
import { relativeTimeMs } from 'utils/time';
|
||||||
|
import { Domain, DomainStatus } from 'gql-client';
|
||||||
import { AuctionCard } from 'components/projects/project/overview/Activity/AuctionCard';
|
import { AuctionCard } from 'components/projects/project/overview/Activity/AuctionCard';
|
||||||
|
|
||||||
// NOTE: Commented code for verify domain functionality
|
|
||||||
// import { useGQLClient } from 'context/GQLClientContext';
|
|
||||||
// import { Domain, DomainStatus } from 'gql-client';
|
|
||||||
// import {
|
|
||||||
// CheckRoundFilledIcon,
|
|
||||||
// ClockIcon,
|
|
||||||
// GlobeIcon,
|
|
||||||
// } from 'components/shared/CustomIcon';
|
|
||||||
// import {
|
|
||||||
// Button,
|
|
||||||
// Tag,
|
|
||||||
// } from 'components/shared';
|
|
||||||
// import { useNavigate } from 'react-router-dom';
|
|
||||||
|
|
||||||
const COMMITS_PER_PAGE = 4;
|
const COMMITS_PER_PAGE = 4;
|
||||||
const PROJECT_UPDATE_WAIT_MS = 5000;
|
|
||||||
|
|
||||||
const OverviewTabPanel = () => {
|
const OverviewTabPanel = () => {
|
||||||
const { octokit } = useOctokit();
|
const { octokit } = useOctokit();
|
||||||
// const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
const [activities, setActivities] = useState<GitCommitWithBranch[]>([]);
|
const [activities, setActivities] = useState<GitCommitWithBranch[]>([]);
|
||||||
const [fetchingActivities, setFetchingActivities] = useState(true);
|
const [fetchingActivities, setFetchingActivities] = useState(true);
|
||||||
// const [liveDomain, setLiveDomain] = useState<Domain>();
|
const [liveDomain, setLiveDomain] = useState<Domain>();
|
||||||
|
|
||||||
// const client = useGQLClient();
|
const client = useGQLClient();
|
||||||
const { project, onUpdate } = useOutletContext<OutletContextType>();
|
|
||||||
|
const { project } = useOutletContext<OutletContextType>();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setFetchingActivities(true);
|
setFetchingActivities(true);
|
||||||
@ -111,33 +96,24 @@ const OverviewTabPanel = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
fetchRepoActivity();
|
fetchRepoActivity();
|
||||||
}, [project.repository]);
|
}, [octokit, project]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
onUpdate();
|
const fetchLiveProdDomain = async () => {
|
||||||
const timerId = setInterval(() => {
|
const { domains } = await client.getDomains(project.id, {
|
||||||
onUpdate();
|
branch: project.prodBranch,
|
||||||
}, PROJECT_UPDATE_WAIT_MS);
|
status: DomainStatus.Live,
|
||||||
|
});
|
||||||
|
|
||||||
return () => clearInterval(timerId);
|
if (domains.length === 0) {
|
||||||
}, [onUpdate]);
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// useEffect(() => {
|
setLiveDomain(domains[0]);
|
||||||
// const fetchLiveProdDomain = async () => {
|
};
|
||||||
// const { domains } = await client.getDomains(project.id, {
|
|
||||||
// branch: project.prodBranch,
|
|
||||||
// status: DomainStatus.Live,
|
|
||||||
// });
|
|
||||||
|
|
||||||
// if (domains.length === 0) {
|
fetchLiveProdDomain();
|
||||||
// return;
|
}, [project]);
|
||||||
// }
|
|
||||||
|
|
||||||
// setLiveDomain(domains[0]);
|
|
||||||
// };
|
|
||||||
|
|
||||||
// fetchLiveProdDomain();
|
|
||||||
// }, [project]);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="grid grid-cols-5 gap-6 md:gap-[72px]">
|
<div className="grid grid-cols-5 gap-6 md:gap-[72px]">
|
||||||
@ -156,16 +132,19 @@ const OverviewTabPanel = () => {
|
|||||||
{project.deployments &&
|
{project.deployments &&
|
||||||
project.deployments.length > 0 &&
|
project.deployments.length > 0 &&
|
||||||
project.deployments.map((deployment, index) => (
|
project.deployments.map((deployment, index) => (
|
||||||
<p
|
<p>
|
||||||
|
<a
|
||||||
key={index}
|
key={index}
|
||||||
|
href={`https://${project.name.toLowerCase()}.${deployment.deployer.baseDomain}`}
|
||||||
className="text-sm text-elements-low-em dark:text-foreground tracking-tight truncate"
|
className="text-sm text-elements-low-em dark:text-foreground tracking-tight truncate"
|
||||||
>
|
>
|
||||||
{deployment.deployer.baseDomain}
|
{deployment.deployer.baseDomain}
|
||||||
|
</a>
|
||||||
</p>
|
</p>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/* <OverviewInfo label="Domain" icon={<GlobeIcon />}>
|
<OverviewInfo label="Domain" icon={<GlobeIcon />}>
|
||||||
{liveDomain ? (
|
{liveDomain ? (
|
||||||
<Tag type="positive" size="xs" leftIcon={<CheckRoundFilledIcon />}>
|
<Tag type="positive" size="xs" leftIcon={<CheckRoundFilledIcon />}>
|
||||||
Connected
|
Connected
|
||||||
@ -186,7 +165,7 @@ const OverviewTabPanel = () => {
|
|||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</OverviewInfo> */}
|
</OverviewInfo>
|
||||||
{project.deployments.length !== 0 ? (
|
{project.deployments.length !== 0 ? (
|
||||||
<>
|
<>
|
||||||
{/* SOURCE */}
|
{/* SOURCE */}
|
||||||
@ -205,9 +184,11 @@ const OverviewTabPanel = () => {
|
|||||||
project.deployments.length > 0 &&
|
project.deployments.length > 0 &&
|
||||||
project.deployments.map((deployment) => (
|
project.deployments.map((deployment) => (
|
||||||
<div className="flex gap-2 items-center">
|
<div className="flex gap-2 items-center">
|
||||||
<Link to={deployment.applicationDeploymentRecordData.url}>
|
<Link
|
||||||
|
to={`https://${project.name.toLowerCase()}.${deployment.deployer.baseDomain}`}
|
||||||
|
>
|
||||||
<span className="text-controls-primary dark:text-foreground group hover:border-controls-primary transition-colors border-b border-b-transparent flex gap-2 items-center text-sm tracking-tight">
|
<span className="text-controls-primary dark:text-foreground group hover:border-controls-primary transition-colors border-b border-b-transparent flex gap-2 items-center text-sm tracking-tight">
|
||||||
{deployment.applicationDeploymentRecordData.url}
|
{`https://${project.name.toLowerCase()}.${deployment.deployer.baseDomain}`}
|
||||||
<LinkIcon className="group-hover:rotate-45 transition-transform" />
|
<LinkIcon className="group-hover:rotate-45 transition-transform" />
|
||||||
</span>
|
</span>
|
||||||
</Link>
|
</Link>
|
||||||
|
@ -10,7 +10,7 @@ import {
|
|||||||
} from 'components/shared/Tabs';
|
} from 'components/shared/Tabs';
|
||||||
import {
|
import {
|
||||||
BranchStrokeIcon,
|
BranchStrokeIcon,
|
||||||
//CollaboratorsIcon,
|
CollaboratorsIcon,
|
||||||
GearIcon,
|
GearIcon,
|
||||||
GlobeIcon,
|
GlobeIcon,
|
||||||
SwitchIcon,
|
SwitchIcon,
|
||||||
@ -37,11 +37,11 @@ const tabsData = [
|
|||||||
icon: <SwitchIcon />,
|
icon: <SwitchIcon />,
|
||||||
value: 'environment-variables',
|
value: 'environment-variables',
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// label: 'Collaborators',
|
label: 'Collaborators',
|
||||||
// icon: <CollaboratorsIcon />,
|
icon: <CollaboratorsIcon />,
|
||||||
// value: 'collaborators',
|
value: 'collaborators',
|
||||||
// },
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const SettingsTabPanel = () => {
|
const SettingsTabPanel = () => {
|
||||||
|
@ -60,8 +60,7 @@ const Domains = () => {
|
|||||||
return (
|
return (
|
||||||
<ProjectSettingContainer
|
<ProjectSettingContainer
|
||||||
headingText="Domains"
|
headingText="Domains"
|
||||||
{...(!project.auctionId && {
|
button={
|
||||||
button: (
|
|
||||||
<Button
|
<Button
|
||||||
as="a"
|
as="a"
|
||||||
href="add"
|
href="add"
|
||||||
@ -71,15 +70,9 @@ const Domains = () => {
|
|||||||
>
|
>
|
||||||
Add domain
|
Add domain
|
||||||
</Button>
|
</Button>
|
||||||
),
|
}
|
||||||
})}
|
|
||||||
>
|
>
|
||||||
{project.auctionId ? (
|
{domains.map((domain) => {
|
||||||
<p className="text-gray-500">
|
|
||||||
Custom domains not supported for auction driven deployments.
|
|
||||||
</p>
|
|
||||||
) : (
|
|
||||||
domains.map((domain) => {
|
|
||||||
return (
|
return (
|
||||||
<DomainCard
|
<DomainCard
|
||||||
domains={domains}
|
domains={domains}
|
||||||
@ -91,8 +84,7 @@ const Domains = () => {
|
|||||||
onUpdate={fetchDomains}
|
onUpdate={fetchDomains}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
})
|
})}
|
||||||
)}
|
|
||||||
</ProjectSettingContainer>
|
</ProjectSettingContainer>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -1,15 +1,11 @@
|
|||||||
import { useEffect, useMemo } from 'react';
|
import { useEffect, useMemo } from 'react';
|
||||||
import { useFieldArray, useFormContext } from 'react-hook-form';
|
import { useFieldArray, useFormContext } from 'react-hook-form';
|
||||||
|
|
||||||
// TODO: Use custom checkbox component
|
|
||||||
// Custom checkbox component does not work with react-hook-form
|
|
||||||
import { Checkbox } from '@snowballtools/material-tailwind-react-fork';
|
|
||||||
// import { Checkbox } from 'components/shared/Checkbox';
|
|
||||||
|
|
||||||
import { Button } from 'components/shared/Button';
|
import { Button } from 'components/shared/Button';
|
||||||
import { InlineNotification } from 'components/shared/InlineNotification';
|
import { InlineNotification } from 'components/shared/InlineNotification';
|
||||||
import AddEnvironmentVariableRow from 'components/projects/project/settings/AddEnvironmentVariableRow';
|
import AddEnvironmentVariableRow from 'components/projects/project/settings/AddEnvironmentVariableRow';
|
||||||
import { EnvironmentVariablesFormValues } from 'types/types';
|
import { EnvironmentVariablesFormValues } from 'types/types';
|
||||||
|
import { Checkbox } from 'components/shared/Checkbox';
|
||||||
|
|
||||||
const EnvironmentVariablesForm = () => {
|
const EnvironmentVariablesForm = () => {
|
||||||
const {
|
const {
|
||||||
@ -71,19 +67,10 @@ const EnvironmentVariablesForm = () => {
|
|||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
<div className="flex gap-2 p-2">
|
<div className="flex gap-2 p-2">
|
||||||
<Checkbox
|
<Checkbox label="Production" {...register('environment.production')} />
|
||||||
label="Production"
|
<Checkbox label="Preview" {...register('environment.preview')} />
|
||||||
labelProps={{ className: 'text-gray-900 dark:text-white' }}
|
|
||||||
{...register('environment.production')}
|
|
||||||
/>
|
|
||||||
<Checkbox
|
|
||||||
label="Preview"
|
|
||||||
labelProps={{ className: 'text-gray-900 dark:text-white' }}
|
|
||||||
{...register('environment.preview')}
|
|
||||||
/>
|
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label="Development"
|
label="Development"
|
||||||
labelProps={{ className: 'text-gray-900 dark:text-white' }}
|
|
||||||
{...register('environment.development')}
|
{...register('environment.development')}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -18,6 +18,7 @@ const GeneralTabPanel = () => {
|
|||||||
const client = useGQLClient();
|
const client = useGQLClient();
|
||||||
const { toast } = useToast();
|
const { toast } = useToast();
|
||||||
const { project, onUpdate } = useOutletContext<OutletContextType>();
|
const { project, onUpdate } = useOutletContext<OutletContextType>();
|
||||||
|
console.log(project);
|
||||||
|
|
||||||
const [transferOrganizations, setTransferOrganizations] = useState<
|
const [transferOrganizations, setTransferOrganizations] = useState<
|
||||||
SelectOption[]
|
SelectOption[]
|
||||||
|
@ -7,8 +7,6 @@ import { InlineNotification } from 'components/shared/InlineNotification';
|
|||||||
import { ArrowRightCircleIcon } from 'components/shared/CustomIcon';
|
import { ArrowRightCircleIcon } from 'components/shared/CustomIcon';
|
||||||
import { ProjectSettingContainer } from 'components/projects/project/settings/ProjectSettingContainer';
|
import { ProjectSettingContainer } from 'components/projects/project/settings/ProjectSettingContainer';
|
||||||
import { useToast } from 'components/shared/Toast';
|
import { useToast } from 'components/shared/Toast';
|
||||||
import { useEffect, useState } from 'react';
|
|
||||||
import { DNSRecordAttributes } from 'gql-client';
|
|
||||||
|
|
||||||
const Config = () => {
|
const Config = () => {
|
||||||
const { id, orgSlug } = useParams();
|
const { id, orgSlug } = useParams();
|
||||||
@ -18,8 +16,6 @@ const Config = () => {
|
|||||||
const primaryDomainName = searchParams.get('name');
|
const primaryDomainName = searchParams.get('name');
|
||||||
const { toast, dismiss } = useToast();
|
const { toast, dismiss } = useToast();
|
||||||
|
|
||||||
const [dnsRecord, setDnsRecord] = useState<DNSRecordAttributes | null>(null);
|
|
||||||
|
|
||||||
const handleSubmitDomain = async () => {
|
const handleSubmitDomain = async () => {
|
||||||
if (primaryDomainName === null) {
|
if (primaryDomainName === null) {
|
||||||
toast({
|
toast({
|
||||||
@ -63,33 +59,14 @@ const Config = () => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const fetchDNSData = async () => {
|
|
||||||
if (id === undefined) {
|
|
||||||
toast({
|
|
||||||
id: 'domain_cannot_find_project',
|
|
||||||
title: 'Cannot find project',
|
|
||||||
variant: 'error',
|
|
||||||
onDismiss: dismiss,
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const dnsRecordResponse = await client.getLatestDNSRecordByProjectId(id);
|
|
||||||
|
|
||||||
setDnsRecord(dnsRecordResponse.latestDNSRecord);
|
|
||||||
};
|
|
||||||
|
|
||||||
fetchDNSData();
|
|
||||||
}, [id, client]);
|
|
||||||
|
|
||||||
// TODO: Figure out DNS Provider if possible and update appropriatly
|
// TODO: Figure out DNS Provider if possible and update appropriatly
|
||||||
return (
|
return (
|
||||||
<ProjectSettingContainer headingText="Setup domain name">
|
<ProjectSettingContainer headingText="Setup domain name">
|
||||||
{dnsRecord ? (
|
|
||||||
<>
|
|
||||||
<p className="text-blue-gray-500">
|
<p className="text-blue-gray-500">
|
||||||
Add the following records to your domain.
|
Add the following records to your domain.
|
||||||
|
<a href="https://www.namecheap.com/" target="_blank" rel="noreferrer">
|
||||||
|
<span className="underline">Go to NameCheap</span>
|
||||||
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<Table>
|
<Table>
|
||||||
@ -103,29 +80,26 @@ const Config = () => {
|
|||||||
|
|
||||||
<Table.Body>
|
<Table.Body>
|
||||||
<Table.Row>
|
<Table.Row>
|
||||||
<Table.RowHeaderCell>
|
<Table.RowHeaderCell>A</Table.RowHeaderCell>
|
||||||
{dnsRecord.resourceType}
|
|
||||||
</Table.RowHeaderCell>
|
|
||||||
<Table.Cell>@</Table.Cell>
|
<Table.Cell>@</Table.Cell>
|
||||||
<Table.Cell>
|
<Table.Cell>56.49.19.21</Table.Cell>
|
||||||
<p className={!dnsRecord.value ? 'text-red-500' : ''}>
|
</Table.Row>
|
||||||
{dnsRecord.value ?? 'Not available'}
|
|
||||||
</p>
|
<Table.Row>
|
||||||
</Table.Cell>
|
<Table.RowHeaderCell>CNAME</Table.RowHeaderCell>
|
||||||
|
<Table.Cell>www</Table.Cell>
|
||||||
|
<Table.Cell>cname.snowballtools.xyz</Table.Cell>
|
||||||
</Table.Row>
|
</Table.Row>
|
||||||
</Table.Body>
|
</Table.Body>
|
||||||
</Table>
|
</Table>
|
||||||
|
|
||||||
{dnsRecord?.value && (
|
|
||||||
<InlineNotification
|
<InlineNotification
|
||||||
variant="info"
|
variant="info"
|
||||||
title={`It can take up to 48 hours for these updates to reflect
|
title={`It can take up to 48 hours for these updates to reflect
|
||||||
globally.`}
|
globally.`}
|
||||||
/>
|
/>
|
||||||
)}
|
|
||||||
<Button
|
<Button
|
||||||
className="w-fit"
|
className="w-fit"
|
||||||
disabled={!dnsRecord?.value}
|
|
||||||
onClick={handleSubmitDomain}
|
onClick={handleSubmitDomain}
|
||||||
variant="primary"
|
variant="primary"
|
||||||
shape="default"
|
shape="default"
|
||||||
@ -133,10 +107,6 @@ const Config = () => {
|
|||||||
>
|
>
|
||||||
FINISH
|
FINISH
|
||||||
</Button>
|
</Button>
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<p className={'text-red-500'}>DNS record data not available</p>
|
|
||||||
)}
|
|
||||||
</ProjectSettingContainer>
|
</ProjectSettingContainer>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -49,6 +49,9 @@ const AddDomain = () => {
|
|||||||
<div className=" w-2/3 mx-auto">
|
<div className=" w-2/3 mx-auto">
|
||||||
<div className="bg-blue-gray-50 dark:bg-overlay rounded-lg mt-6 mb-10">
|
<div className="bg-blue-gray-50 dark:bg-overlay rounded-lg mt-6 mb-10">
|
||||||
<div className="flex justify-start gap-3 p-5">
|
<div className="flex justify-start gap-3 p-5">
|
||||||
|
<i className="bg-gray-100 dark:bg-overlay dark:text-foreground w-12 h-12 rounded-lg">
|
||||||
|
^
|
||||||
|
</i>
|
||||||
<Typography
|
<Typography
|
||||||
className="my-auto w-1/3 dark:text-foreground"
|
className="my-auto w-1/3 dark:text-foreground"
|
||||||
variant="h5"
|
variant="h5"
|
||||||
|
@ -12,7 +12,6 @@ import {
|
|||||||
Domain,
|
Domain,
|
||||||
Environment,
|
Environment,
|
||||||
Permission,
|
Permission,
|
||||||
AppDeploymentRecordAttributes,
|
|
||||||
} from 'gql-client';
|
} from 'gql-client';
|
||||||
|
|
||||||
export const user: User = {
|
export const user: User = {
|
||||||
@ -100,6 +99,7 @@ export const deployment0: Deployment = {
|
|||||||
environment: Environment.Development,
|
environment: Environment.Development,
|
||||||
isCurrent: true,
|
isCurrent: true,
|
||||||
commitHash: 'Commit Hash',
|
commitHash: 'Commit Hash',
|
||||||
|
domain: domain0,
|
||||||
commitMessage: 'Commit Message',
|
commitMessage: 'Commit Message',
|
||||||
createdBy: user,
|
createdBy: user,
|
||||||
deployer: {
|
deployer: {
|
||||||
@ -111,7 +111,6 @@ export const deployment0: Deployment = {
|
|||||||
},
|
},
|
||||||
applicationDeploymentRequestId:
|
applicationDeploymentRequestId:
|
||||||
'bafyreiaycvq6imoppnpwdve4smj6t6ql5svt5zl3x6rimu4qwyzgjorize',
|
'bafyreiaycvq6imoppnpwdve4smj6t6ql5svt5zl3x6rimu4qwyzgjorize',
|
||||||
applicationDeploymentRecordData: {} as AppDeploymentRecordAttributes,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const project: Project = {
|
export const project: Project = {
|
||||||
|
@ -5,10 +5,8 @@ export const VITE_GITHUB_PWA_TEMPLATE_REPO = import.meta.env
|
|||||||
.VITE_GITHUB_PWA_TEMPLATE_REPO;
|
.VITE_GITHUB_PWA_TEMPLATE_REPO;
|
||||||
export const VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO = import.meta.env
|
export const VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO = import.meta.env
|
||||||
.VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO;
|
.VITE_GITHUB_IMAGE_UPLOAD_PWA_TEMPLATE_REPO;
|
||||||
export const VITE_GITHUB_NEXT_APP_TEMPLATE_REPO = import.meta.env
|
|
||||||
.VITE_GITHUB_NEXT_APP_TEMPLATE_REPO;
|
|
||||||
export const VITE_GITHUB_CLIENT_ID = import.meta.env.VITE_GITHUB_CLIENT_ID;
|
export const VITE_GITHUB_CLIENT_ID = import.meta.env.VITE_GITHUB_CLIENT_ID;
|
||||||
|
export const VITE_WALLET_CONNECT_ID = import.meta.env.VITE_WALLET_CONNECT_ID;
|
||||||
export const VITE_BUGSNAG_API_KEY = import.meta.env.VITE_BUGSNAG_API_KEY;
|
export const VITE_BUGSNAG_API_KEY = import.meta.env.VITE_BUGSNAG_API_KEY;
|
||||||
export const VITE_LIT_RELAY_API_KEY = import.meta.env.VITE_LIT_RELAY_API_KEY;
|
export const VITE_LIT_RELAY_API_KEY = import.meta.env.VITE_LIT_RELAY_API_KEY;
|
||||||
export const VITE_LACONICD_CHAIN_ID = import.meta.env.VITE_LACONICD_CHAIN_ID;
|
export const VITE_LACONICD_CHAIN_ID = import.meta.env.VITE_LACONICD_CHAIN_ID;
|
||||||
export const VITE_WALLET_IFRAME_URL = import.meta.env.VITE_WALLET_IFRAME_URL;
|
|
||||||
|
8
packages/frontend/src/utils/web3modal.ts
Normal file
8
packages/frontend/src/utils/web3modal.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import { WalletConnectModal } from '@walletconnect/modal';
|
||||||
|
|
||||||
|
import { VITE_WALLET_CONNECT_ID } from 'utils/constants';
|
||||||
|
|
||||||
|
export const walletConnectModal = new WalletConnectModal({
|
||||||
|
projectId: VITE_WALLET_CONNECT_ID,
|
||||||
|
chains: [],
|
||||||
|
});
|
@ -453,15 +453,4 @@ export class GQLClient {
|
|||||||
|
|
||||||
return data.verifyTx;
|
return data.verifyTx;
|
||||||
}
|
}
|
||||||
|
|
||||||
async getLatestDNSRecordByProjectId(projectId: string): Promise<types.GetLatestDNSDataResponse> {
|
|
||||||
const { data } = await this.client.query({
|
|
||||||
query: queries.getLatestDNSRecordByProjectId,
|
|
||||||
variables: {
|
|
||||||
projectId,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -57,12 +57,17 @@ query ($projectId: String!) {
|
|||||||
commitHash
|
commitHash
|
||||||
createdAt
|
createdAt
|
||||||
environment
|
environment
|
||||||
applicationDeploymentRecordData {
|
|
||||||
url
|
|
||||||
}
|
|
||||||
deployer {
|
deployer {
|
||||||
baseDomain
|
baseDomain
|
||||||
}
|
}
|
||||||
|
domain {
|
||||||
|
status
|
||||||
|
branch
|
||||||
|
createdAt
|
||||||
|
updatedAt
|
||||||
|
id
|
||||||
|
name
|
||||||
|
}
|
||||||
createdBy {
|
createdBy {
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
@ -107,8 +112,13 @@ query ($organizationSlug: String!) {
|
|||||||
commitMessage
|
commitMessage
|
||||||
createdAt
|
createdAt
|
||||||
environment
|
environment
|
||||||
applicationDeploymentRecordData {
|
domain {
|
||||||
url
|
status
|
||||||
|
branch
|
||||||
|
createdAt
|
||||||
|
updatedAt
|
||||||
|
id
|
||||||
|
name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -131,6 +141,14 @@ export const getDeployments = gql`
|
|||||||
query ($projectId: String!) {
|
query ($projectId: String!) {
|
||||||
deployments(projectId: $projectId) {
|
deployments(projectId: $projectId) {
|
||||||
id
|
id
|
||||||
|
domain{
|
||||||
|
branch
|
||||||
|
createdAt
|
||||||
|
id
|
||||||
|
name
|
||||||
|
status
|
||||||
|
updatedAt
|
||||||
|
}
|
||||||
branch
|
branch
|
||||||
commitHash
|
commitHash
|
||||||
commitMessage
|
commitMessage
|
||||||
@ -325,15 +343,3 @@ query ($txHash: String!, $amount: String!, $senderAddress: String!) {
|
|||||||
verifyTx(txHash: $txHash, amount: $amount, senderAddress: $senderAddress)
|
verifyTx(txHash: $txHash, amount: $amount, senderAddress: $senderAddress)
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const getLatestDNSRecordByProjectId = gql`
|
|
||||||
query($projectId: String!) {
|
|
||||||
latestDNSRecord(projectId: $projectId) {
|
|
||||||
name
|
|
||||||
value
|
|
||||||
request
|
|
||||||
resourceType
|
|
||||||
version
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
@ -99,6 +99,7 @@ export type User = {
|
|||||||
|
|
||||||
export type Deployment = {
|
export type Deployment = {
|
||||||
id: string;
|
id: string;
|
||||||
|
domain: Domain;
|
||||||
branch: string;
|
branch: string;
|
||||||
commitHash: string;
|
commitHash: string;
|
||||||
commitMessage: string;
|
commitMessage: string;
|
||||||
@ -107,7 +108,6 @@ export type Deployment = {
|
|||||||
environment: Environment;
|
environment: Environment;
|
||||||
isCurrent: boolean;
|
isCurrent: boolean;
|
||||||
baseDomain?: string;
|
baseDomain?: string;
|
||||||
applicationDeploymentRecordData: AppDeploymentRecordAttributes;
|
|
||||||
status: DeploymentStatus;
|
status: DeploymentStatus;
|
||||||
createdBy: User;
|
createdBy: User;
|
||||||
createdAt: string;
|
createdAt: string;
|
||||||
@ -376,28 +376,3 @@ export type AuctionParams = {
|
|||||||
maxPrice: string;
|
maxPrice: string;
|
||||||
numProviders: number;
|
numProviders: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type DNSRecordAttributes = {
|
|
||||||
name: string;
|
|
||||||
value: string;
|
|
||||||
request: string;
|
|
||||||
resourceType: string;
|
|
||||||
version: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type GetLatestDNSDataResponse = {
|
|
||||||
latestDNSRecord: DNSRecordAttributes | null
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface AppDeploymentRecordAttributes {
|
|
||||||
application: string;
|
|
||||||
auction: string;
|
|
||||||
deployer: string;
|
|
||||||
dns: string;
|
|
||||||
meta: string;
|
|
||||||
name: string;
|
|
||||||
request: string;
|
|
||||||
type: string;
|
|
||||||
url: string;
|
|
||||||
version: string;
|
|
||||||
}
|
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
# Initial Commit for QWRK UX Changes
|
|
||||||
|
|
||||||
This is the first commit for QWRK UX changes to a fork of the `snowballtools-base` repository in Gitea. This commit sets the foundation for the upcoming user experience improvements and modifications.
|
|
||||||
|
|
||||||
- Repository: `snowballtools-base`
|
|
||||||
- Platform: Gitea
|
|
||||||
- Purpose: QWRK UX changes
|
|
Loading…
Reference in New Issue
Block a user