mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-18 04:15:23 +02:00
Compare commits
1 Commits
fix/log-vi
...
claude/thi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dfff91c6f3 |
9
.github/workflows/dokploy.yml
vendored
9
.github/workflows/dokploy.yml
vendored
@@ -152,14 +152,6 @@ jobs:
|
|||||||
VERSION=$(node -p "require('./apps/dokploy/package.json').version")
|
VERSION=$(node -p "require('./apps/dokploy/package.json').version")
|
||||||
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Fetch install.sh
|
|
||||||
run: |
|
|
||||||
curl -fsSL https://raw.githubusercontent.com/Dokploy/website/main/apps/website/public/install.sh -o install.sh
|
|
||||||
head -1 install.sh | grep -q '^#!' || { echo "Downloaded install.sh is not a shell script"; exit 1; }
|
|
||||||
grep -q 'DOKPLOY_VERSION' install.sh || { echo "install.sh no longer supports DOKPLOY_VERSION pinning"; exit 1; }
|
|
||||||
{ head -1 install.sh; echo "DOKPLOY_VERSION=\"\${DOKPLOY_VERSION:-${{ steps.get_version.outputs.version }}}\""; tail -n +2 install.sh; } > install-pinned.sh
|
|
||||||
mv install-pinned.sh install.sh
|
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
@@ -168,7 +160,6 @@ jobs:
|
|||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
files: install.sh
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
|||||||
@@ -69,5 +69,4 @@ EXPOSE 3000
|
|||||||
HEALTHCHECK --interval=30s --timeout=5s --start-period=60s --retries=5 \
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=60s --retries=5 \
|
||||||
CMD curl -fs http://localhost:3000/api/trpc/settings.health || exit 1
|
CMD curl -fs http://localhost:3000/api/trpc/settings.health || exit 1
|
||||||
|
|
||||||
# Ejecutar node directamente: pnpm como wrapper queda residente (~100MB RSS)
|
CMD ["sh", "-c", "pnpm run wait-for-postgres && exec pnpm start"]
|
||||||
CMD ["sh", "-c", "node -r dotenv/config dist/wait-for-postgres.mjs && node -r dotenv/config dist/migration.mjs && exec node -r dotenv/config dist/server.mjs"]
|
|
||||||
|
|||||||
@@ -17,17 +17,17 @@
|
|||||||
"hono": "^4.11.7",
|
"hono": "^4.11.7",
|
||||||
"pino": "9.4.0",
|
"pino": "9.4.0",
|
||||||
"pino-pretty": "11.2.2",
|
"pino-pretty": "11.2.2",
|
||||||
"react": "19.2.7",
|
"react": "18.2.0",
|
||||||
"react-dom": "19.2.7",
|
"react-dom": "18.2.0",
|
||||||
"redis": "4.7.0",
|
"redis": "4.7.0",
|
||||||
"zod": "^4.3.6"
|
"zod": "^4.3.6"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^24.4.0",
|
"@types/node": "^24.4.0",
|
||||||
"@types/react": "^19.2.0",
|
"@types/react": "^18.2.37",
|
||||||
"@types/react-dom": "^19.2.0",
|
"@types/react-dom": "^18.2.15",
|
||||||
"rimraf": "6.1.3",
|
"rimraf": "6.1.3",
|
||||||
"tsx": "^4.22.4",
|
"tsx": "^4.16.2",
|
||||||
"typescript": "^5.8.3"
|
"typescript": "^5.8.3"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@10.22.0",
|
"packageManager": "pnpm@10.22.0",
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
import { describe, expect, it } from "vitest";
|
|
||||||
import { API_KEY_NAME_MAX_LENGTH, apiKeyNameSchema } from "@/lib/api-keys";
|
|
||||||
|
|
||||||
describe("apiKeyNameSchema", () => {
|
|
||||||
it("rejects an empty name", () => {
|
|
||||||
const result = apiKeyNameSchema.safeParse("");
|
|
||||||
expect(result.success).toBe(false);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("accepts a name at the maximum length", () => {
|
|
||||||
const name = "a".repeat(API_KEY_NAME_MAX_LENGTH);
|
|
||||||
const result = apiKeyNameSchema.safeParse(name);
|
|
||||||
expect(result.success).toBe(true);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("rejects a name over the maximum length instead of passing it to better-auth", () => {
|
|
||||||
const name = "a".repeat(API_KEY_NAME_MAX_LENGTH + 1);
|
|
||||||
const result = apiKeyNameSchema.safeParse(name);
|
|
||||||
expect(result.success).toBe(false);
|
|
||||||
if (!result.success) {
|
|
||||||
expect(result.error.issues[0]?.message).toBe(
|
|
||||||
`Name must be at most ${API_KEY_NAME_MAX_LENGTH} characters`,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
import { redactRcloneCredentials } from "@dokploy/server/utils/backups/redact";
|
|
||||||
import { describe, expect, it } from "vitest";
|
|
||||||
|
|
||||||
describe("redactRcloneCredentials (#4621)", () => {
|
|
||||||
it("should redact access key in rclone command", () => {
|
|
||||||
const cmd =
|
|
||||||
'rclone rcat --s3-access-key-id="AKIAIOSFODNN7EXAMPLE" --s3-secret-access-key="wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" :s3:bucket/file.gz';
|
|
||||||
const redacted = redactRcloneCredentials(cmd);
|
|
||||||
expect(redacted).not.toContain("AKIAIOSFODNN7EXAMPLE");
|
|
||||||
expect(redacted).toContain('--s3-access-key-id="[REDACTED]"');
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should redact secret access key in rclone command", () => {
|
|
||||||
const cmd =
|
|
||||||
'rclone rcat --s3-access-key-id="key" --s3-secret-access-key="supersecret" :s3:bucket/file.gz';
|
|
||||||
const redacted = redactRcloneCredentials(cmd);
|
|
||||||
expect(redacted).not.toContain("supersecret");
|
|
||||||
expect(redacted).toContain('--s3-secret-access-key="[REDACTED]"');
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should redact both credentials simultaneously", () => {
|
|
||||||
const cmd =
|
|
||||||
'rclone lsf --s3-access-key-id="AKIA123" --s3-secret-access-key="secret456" --s3-region="us-east-1" :s3:bucket/';
|
|
||||||
const redacted = redactRcloneCredentials(cmd);
|
|
||||||
expect(redacted).not.toContain("AKIA123");
|
|
||||||
expect(redacted).not.toContain("secret456");
|
|
||||||
expect(redacted).toContain('--s3-region="us-east-1"');
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should not modify non-credential flags", () => {
|
|
||||||
const cmd =
|
|
||||||
'rclone rcat --s3-region="eu-west-1" --s3-endpoint="https://s3.example.com" --s3-no-check-bucket :s3:bucket/file.gz';
|
|
||||||
const redacted = redactRcloneCredentials(cmd);
|
|
||||||
expect(redacted).toBe(cmd);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should handle commands with no credentials", () => {
|
|
||||||
const cmd = "rclone lsf :s3:bucket/";
|
|
||||||
expect(redactRcloneCredentials(cmd)).toBe(cmd);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should handle error strings containing credentials", () => {
|
|
||||||
const errorStr =
|
|
||||||
'Error: Command failed: rclone lsf --s3-access-key-id="MYKEY" --s3-secret-access-key="MYSECRET" :s3:bucket/';
|
|
||||||
const redacted = redactRcloneCredentials(errorStr);
|
|
||||||
expect(redacted).not.toContain("MYKEY");
|
|
||||||
expect(redacted).not.toContain("MYSECRET");
|
|
||||||
expect(redacted).toContain("[REDACTED]");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,323 +0,0 @@
|
|||||||
import type { NextApiRequest, NextApiResponse } from "next";
|
|
||||||
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
||||||
|
|
||||||
const mocks = vi.hoisted(() => ({
|
|
||||||
eq: vi.fn((field: string, value: unknown) => ({ field, value })),
|
|
||||||
and: vi.fn((...conditions: Array<{ field: string; value: unknown }>) => ({
|
|
||||||
conditions,
|
|
||||||
})),
|
|
||||||
githubFindFirst: vi.fn(),
|
|
||||||
applicationsFindMany: vi.fn(),
|
|
||||||
composeFindMany: vi.fn(),
|
|
||||||
queueAdd: vi.fn(),
|
|
||||||
verify: vi.fn(),
|
|
||||||
shouldDeploy: vi.fn(),
|
|
||||||
}));
|
|
||||||
|
|
||||||
vi.mock("drizzle-orm", () => ({
|
|
||||||
eq: mocks.eq,
|
|
||||||
and: mocks.and,
|
|
||||||
}));
|
|
||||||
|
|
||||||
vi.mock("@/server/db/schema", () => ({
|
|
||||||
applications: {
|
|
||||||
sourceType: "application.sourceType",
|
|
||||||
autoDeploy: "application.autoDeploy",
|
|
||||||
triggerType: "application.triggerType",
|
|
||||||
branch: "application.branch",
|
|
||||||
repository: "application.repository",
|
|
||||||
owner: "application.owner",
|
|
||||||
githubId: "application.githubId",
|
|
||||||
isPreviewDeploymentsActive: "application.isPreviewDeploymentsActive",
|
|
||||||
},
|
|
||||||
compose: {
|
|
||||||
sourceType: "compose.sourceType",
|
|
||||||
autoDeploy: "compose.autoDeploy",
|
|
||||||
triggerType: "compose.triggerType",
|
|
||||||
branch: "compose.branch",
|
|
||||||
repository: "compose.repository",
|
|
||||||
owner: "compose.owner",
|
|
||||||
githubId: "compose.githubId",
|
|
||||||
},
|
|
||||||
github: {
|
|
||||||
githubInstallationId: "github.githubInstallationId",
|
|
||||||
},
|
|
||||||
}));
|
|
||||||
|
|
||||||
vi.mock("@dokploy/server/db", () => ({
|
|
||||||
db: {
|
|
||||||
query: {
|
|
||||||
github: {
|
|
||||||
findFirst: mocks.githubFindFirst,
|
|
||||||
},
|
|
||||||
applications: {
|
|
||||||
findMany: mocks.applicationsFindMany,
|
|
||||||
},
|
|
||||||
compose: {
|
|
||||||
findMany: mocks.composeFindMany,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}));
|
|
||||||
|
|
||||||
vi.mock("@dokploy/server", () => ({
|
|
||||||
IS_CLOUD: false,
|
|
||||||
shouldDeploy: mocks.shouldDeploy,
|
|
||||||
checkUserRepositoryPermissions: vi.fn(),
|
|
||||||
createPreviewDeployment: vi.fn(),
|
|
||||||
createSecurityBlockedComment: vi.fn(),
|
|
||||||
findGithubById: vi.fn(),
|
|
||||||
findPreviewDeploymentByApplicationId: vi.fn(),
|
|
||||||
findPreviewDeploymentsByPullRequestId: vi.fn(),
|
|
||||||
getBitbucketHeaders: vi.fn(() => ({})),
|
|
||||||
removePreviewDeployment: vi.fn(),
|
|
||||||
}));
|
|
||||||
|
|
||||||
vi.mock("@octokit/webhooks", () => ({
|
|
||||||
Webhooks: vi.fn().mockImplementation(function Webhooks() {
|
|
||||||
return {
|
|
||||||
verify: mocks.verify,
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
}));
|
|
||||||
|
|
||||||
vi.mock("@/server/queues/queueSetup", () => ({
|
|
||||||
myQueue: {
|
|
||||||
add: mocks.queueAdd,
|
|
||||||
},
|
|
||||||
}));
|
|
||||||
|
|
||||||
vi.mock("@/server/utils/deploy", () => ({
|
|
||||||
deploy: vi.fn(),
|
|
||||||
}));
|
|
||||||
|
|
||||||
import handler from "@/pages/api/deploy/github";
|
|
||||||
|
|
||||||
const getConditionValue = (
|
|
||||||
where: { conditions?: Array<{ field: string; value: unknown }> } | undefined,
|
|
||||||
field: string,
|
|
||||||
) => where?.conditions?.find((condition) => condition.field === field)?.value;
|
|
||||||
|
|
||||||
const createResponse = () => {
|
|
||||||
const res = {
|
|
||||||
status: vi.fn(),
|
|
||||||
json: vi.fn(),
|
|
||||||
} as unknown as NextApiResponse & {
|
|
||||||
status: ReturnType<typeof vi.fn>;
|
|
||||||
json: ReturnType<typeof vi.fn>;
|
|
||||||
};
|
|
||||||
|
|
||||||
res.status.mockImplementation(() => res);
|
|
||||||
res.json.mockImplementation(() => res);
|
|
||||||
|
|
||||||
return res;
|
|
||||||
};
|
|
||||||
|
|
||||||
const createPushRequest = (
|
|
||||||
branch: string,
|
|
||||||
owner: { login?: string; name?: string } = { login: "agentHits" },
|
|
||||||
) =>
|
|
||||||
({
|
|
||||||
headers: {
|
|
||||||
"x-hub-signature-256": "sha256=test-signature",
|
|
||||||
"x-github-event": "push",
|
|
||||||
},
|
|
||||||
body: {
|
|
||||||
installation: {
|
|
||||||
id: 12345,
|
|
||||||
},
|
|
||||||
ref: `refs/heads/${branch}`,
|
|
||||||
after: "abc123",
|
|
||||||
head_commit: {
|
|
||||||
message: "fix: trigger deployment",
|
|
||||||
},
|
|
||||||
commits: [
|
|
||||||
{
|
|
||||||
modified: ["src/index.ts"],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
repository: {
|
|
||||||
name: "dokploy",
|
|
||||||
full_name: "agentHits/dokploy",
|
|
||||||
clone_url: "https://github.com/agentHits/dokploy.git",
|
|
||||||
html_url: "https://github.com/agentHits/dokploy",
|
|
||||||
owner,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}) as unknown as NextApiRequest;
|
|
||||||
|
|
||||||
const createTagRequest = (tagName: string) => {
|
|
||||||
const req = createPushRequest("main") as unknown as {
|
|
||||||
body: { ref: string; head_commit: { message: string } };
|
|
||||||
};
|
|
||||||
|
|
||||||
req.body.ref = `refs/tags/${tagName}`;
|
|
||||||
req.body.head_commit.message = `release: ${tagName}`;
|
|
||||||
|
|
||||||
return req as unknown as NextApiRequest;
|
|
||||||
};
|
|
||||||
|
|
||||||
describe("GitHub app webhook auto-deploy", () => {
|
|
||||||
beforeEach(() => {
|
|
||||||
vi.clearAllMocks();
|
|
||||||
mocks.githubFindFirst.mockResolvedValue({
|
|
||||||
githubId: "github-provider-id",
|
|
||||||
githubInstallationId: 12345,
|
|
||||||
githubWebhookSecret: "webhook-secret",
|
|
||||||
});
|
|
||||||
mocks.verify.mockResolvedValue(true);
|
|
||||||
mocks.shouldDeploy.mockReturnValue(true);
|
|
||||||
mocks.composeFindMany.mockResolvedValue([]);
|
|
||||||
mocks.queueAdd.mockResolvedValue({ id: "job-id" });
|
|
||||||
|
|
||||||
mocks.applicationsFindMany.mockImplementation(({ where }) => {
|
|
||||||
const matches =
|
|
||||||
getConditionValue(where, "application.sourceType") === "github" &&
|
|
||||||
getConditionValue(where, "application.autoDeploy") === true &&
|
|
||||||
getConditionValue(where, "application.triggerType") === "push" &&
|
|
||||||
getConditionValue(where, "application.branch") === "main" &&
|
|
||||||
getConditionValue(where, "application.repository") === "dokploy" &&
|
|
||||||
getConditionValue(where, "application.owner") === "agentHits" &&
|
|
||||||
getConditionValue(where, "application.githubId") ===
|
|
||||||
"github-provider-id";
|
|
||||||
|
|
||||||
return Promise.resolve(
|
|
||||||
matches
|
|
||||||
? [
|
|
||||||
{
|
|
||||||
applicationId: "application-id",
|
|
||||||
serverId: null,
|
|
||||||
watchPaths: null,
|
|
||||||
},
|
|
||||||
]
|
|
||||||
: [],
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it("matches push events using repository owner name when available", async () => {
|
|
||||||
const res = createResponse();
|
|
||||||
|
|
||||||
await handler(
|
|
||||||
createPushRequest("main", {
|
|
||||||
login: "agentHits-login",
|
|
||||||
name: "agentHits",
|
|
||||||
}),
|
|
||||||
res,
|
|
||||||
);
|
|
||||||
|
|
||||||
expect(mocks.queueAdd).toHaveBeenCalledWith(
|
|
||||||
"deployments",
|
|
||||||
expect.objectContaining({
|
|
||||||
applicationId: "application-id",
|
|
||||||
applicationType: "application",
|
|
||||||
type: "deploy",
|
|
||||||
}),
|
|
||||||
expect.objectContaining({
|
|
||||||
removeOnComplete: true,
|
|
||||||
removeOnFail: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
expect(res.status).toHaveBeenCalledWith(200);
|
|
||||||
expect(res.json).toHaveBeenCalledWith({ message: "Deployed 1 apps" });
|
|
||||||
});
|
|
||||||
|
|
||||||
it("matches compose push events using repository owner login fallback", async () => {
|
|
||||||
mocks.applicationsFindMany.mockResolvedValue([]);
|
|
||||||
mocks.composeFindMany.mockImplementation(({ where }) => {
|
|
||||||
const matches =
|
|
||||||
getConditionValue(where, "compose.sourceType") === "github" &&
|
|
||||||
getConditionValue(where, "compose.autoDeploy") === true &&
|
|
||||||
getConditionValue(where, "compose.triggerType") === "push" &&
|
|
||||||
getConditionValue(where, "compose.branch") === "main" &&
|
|
||||||
getConditionValue(where, "compose.repository") === "dokploy" &&
|
|
||||||
getConditionValue(where, "compose.owner") === "agentHits" &&
|
|
||||||
getConditionValue(where, "compose.githubId") === "github-provider-id";
|
|
||||||
|
|
||||||
return Promise.resolve(
|
|
||||||
matches
|
|
||||||
? [
|
|
||||||
{
|
|
||||||
composeId: "compose-id",
|
|
||||||
serverId: null,
|
|
||||||
watchPaths: null,
|
|
||||||
},
|
|
||||||
]
|
|
||||||
: [],
|
|
||||||
);
|
|
||||||
});
|
|
||||||
const res = createResponse();
|
|
||||||
|
|
||||||
await handler(createPushRequest("main"), res);
|
|
||||||
|
|
||||||
expect(mocks.queueAdd).toHaveBeenCalledWith(
|
|
||||||
"deployments",
|
|
||||||
expect.objectContaining({
|
|
||||||
applicationType: "compose",
|
|
||||||
composeId: "compose-id",
|
|
||||||
type: "deploy",
|
|
||||||
}),
|
|
||||||
expect.objectContaining({
|
|
||||||
removeOnComplete: true,
|
|
||||||
removeOnFail: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
expect(res.status).toHaveBeenCalledWith(200);
|
|
||||||
expect(res.json).toHaveBeenCalledWith({ message: "Deployed 1 apps" });
|
|
||||||
});
|
|
||||||
|
|
||||||
it("matches tag events using repository owner login fallback", async () => {
|
|
||||||
mocks.applicationsFindMany.mockImplementation(({ where }) => {
|
|
||||||
const matches =
|
|
||||||
getConditionValue(where, "application.sourceType") === "github" &&
|
|
||||||
getConditionValue(where, "application.autoDeploy") === true &&
|
|
||||||
getConditionValue(where, "application.triggerType") === "tag" &&
|
|
||||||
getConditionValue(where, "application.repository") === "dokploy" &&
|
|
||||||
getConditionValue(where, "application.owner") === "agentHits" &&
|
|
||||||
getConditionValue(where, "application.githubId") ===
|
|
||||||
"github-provider-id";
|
|
||||||
|
|
||||||
return Promise.resolve(
|
|
||||||
matches
|
|
||||||
? [
|
|
||||||
{
|
|
||||||
applicationId: "application-id",
|
|
||||||
serverId: null,
|
|
||||||
},
|
|
||||||
]
|
|
||||||
: [],
|
|
||||||
);
|
|
||||||
});
|
|
||||||
const res = createResponse();
|
|
||||||
|
|
||||||
await handler(createTagRequest("v1.0.0"), res);
|
|
||||||
|
|
||||||
expect(mocks.queueAdd).toHaveBeenCalledWith(
|
|
||||||
"deployments",
|
|
||||||
expect.objectContaining({
|
|
||||||
applicationId: "application-id",
|
|
||||||
applicationType: "application",
|
|
||||||
titleLog: "Tag created: v1.0.0",
|
|
||||||
type: "deploy",
|
|
||||||
}),
|
|
||||||
expect.objectContaining({
|
|
||||||
removeOnComplete: true,
|
|
||||||
removeOnFail: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
expect(res.status).toHaveBeenCalledWith(200);
|
|
||||||
expect(res.json).toHaveBeenCalledWith({
|
|
||||||
message: "Deployed 1 apps based on tag v1.0.0",
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it("does not deploy when the pushed branch does not match", async () => {
|
|
||||||
const res = createResponse();
|
|
||||||
|
|
||||||
await handler(createPushRequest("feature"), res);
|
|
||||||
|
|
||||||
expect(mocks.queueAdd).not.toHaveBeenCalled();
|
|
||||||
expect(res.status).toHaveBeenCalledWith(200);
|
|
||||||
expect(res.json).toHaveBeenCalledWith({ message: "No apps to deploy" });
|
|
||||||
});
|
|
||||||
});
|
|
||||||
93
apps/dokploy/__test__/env/encryption.test.ts
vendored
93
apps/dokploy/__test__/env/encryption.test.ts
vendored
@@ -1,93 +0,0 @@
|
|||||||
import {
|
|
||||||
decryptValue,
|
|
||||||
encryptValue,
|
|
||||||
exportEncryptionKeys,
|
|
||||||
isEncrypted,
|
|
||||||
} from "@dokploy/server/lib/encryption";
|
|
||||||
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
||||||
|
|
||||||
describe("encryptValue / decryptValue", () => {
|
|
||||||
it("round-trips a value", () => {
|
|
||||||
const value =
|
|
||||||
"DATABASE_URL=postgres://user:secret@host:5432/db\nAPI_KEY=123";
|
|
||||||
const encrypted = encryptValue(value);
|
|
||||||
|
|
||||||
expect(encrypted).not.toBe(value);
|
|
||||||
expect(isEncrypted(encrypted)).toBe(true);
|
|
||||||
expect(encrypted).not.toContain("secret");
|
|
||||||
expect(decryptValue(encrypted)).toBe(value);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("uses a random IV so equal inputs produce different ciphertexts", () => {
|
|
||||||
const value = "KEY=value";
|
|
||||||
expect(encryptValue(value)).not.toBe(encryptValue(value));
|
|
||||||
});
|
|
||||||
|
|
||||||
it("passes legacy plaintext through on decrypt", () => {
|
|
||||||
const plaintext = "KEY=legacy-plaintext-value";
|
|
||||||
expect(decryptValue(plaintext)).toBe(plaintext);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("passes empty values through unchanged", () => {
|
|
||||||
expect(encryptValue("")).toBe("");
|
|
||||||
expect(decryptValue("")).toBe("");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("does not double-encrypt an already encrypted value", () => {
|
|
||||||
const encrypted = encryptValue("KEY=value");
|
|
||||||
expect(encryptValue(encrypted)).toBe(encrypted);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("throws a descriptive error on tampered ciphertext", () => {
|
|
||||||
const encrypted = encryptValue("KEY=value");
|
|
||||||
const tampered = `${encrypted.slice(0, -4)}AAAA`;
|
|
||||||
expect(() => decryptValue(tampered)).toThrow(/BETTER_AUTH_SECRET/);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("exports the derived keys as 32-byte hex lines for backups", () => {
|
|
||||||
expect(exportEncryptionKeys()).toMatch(/^[0-9a-f]{64}(\n[0-9a-f]{64})*$/);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("dedicated ENCRYPTION_KEY", () => {
|
|
||||||
afterEach(() => {
|
|
||||||
vi.unstubAllEnvs();
|
|
||||||
vi.resetModules();
|
|
||||||
});
|
|
||||||
|
|
||||||
const loadWithEncryptionKey = async (key: string) => {
|
|
||||||
vi.stubEnv("ENCRYPTION_KEY", key);
|
|
||||||
vi.resetModules();
|
|
||||||
return await import("@dokploy/server/lib/encryption");
|
|
||||||
};
|
|
||||||
|
|
||||||
it("encrypts with the dedicated key when set", async () => {
|
|
||||||
const withKey = await loadWithEncryptionKey("my-dedicated-key");
|
|
||||||
const encrypted = withKey.encryptValue("KEY=value");
|
|
||||||
|
|
||||||
expect(withKey.decryptValue(encrypted)).toBe("KEY=value");
|
|
||||||
// The default (auth-secret derived) module cannot read it
|
|
||||||
expect(() => decryptValue(encrypted)).toThrow(/ENCRYPTION_KEY/);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("still decrypts legacy values via the auth-secret fallback", async () => {
|
|
||||||
// Encrypted before the install adopted a dedicated key
|
|
||||||
const legacyEncrypted = encryptValue("KEY=legacy-value");
|
|
||||||
|
|
||||||
const withKey = await loadWithEncryptionKey("my-dedicated-key");
|
|
||||||
expect(withKey.decryptValue(legacyEncrypted)).toBe("KEY=legacy-value");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("re-encrypts with the dedicated key on write", async () => {
|
|
||||||
const withKey = await loadWithEncryptionKey("my-dedicated-key");
|
|
||||||
const reEncrypted = withKey.encryptValue(
|
|
||||||
withKey.decryptValue(encryptValue("KEY=migrated")),
|
|
||||||
);
|
|
||||||
|
|
||||||
const other = await loadWithEncryptionKey("another-key");
|
|
||||||
// Readable only by the dedicated key (or its own fallback), proving
|
|
||||||
// the write used the primary key, not the legacy one
|
|
||||||
expect(withKey.decryptValue(reEncrypted)).toBe("KEY=migrated");
|
|
||||||
expect(() => other.decryptValue(reEncrypted)).toThrow();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
||||||
import {
|
import {
|
||||||
canEditDeployGitSource,
|
canEditDeployGitSource,
|
||||||
getAccessibleGitProviderIds,
|
getAccessibleGitProviderIds,
|
||||||
} from "@dokploy/server/services/git-provider";
|
} from "@dokploy/server/services/git-provider";
|
||||||
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
||||||
|
|
||||||
const mockDb = vi.hoisted(() => ({
|
const mockDb = vi.hoisted(() => ({
|
||||||
query: {
|
query: {
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||
import { getLogType } from "@/components/dashboard/docker/logs/utils";
|
|
||||||
import { expect, test } from "vitest";
|
|
||||||
|
|
||||||
test("classifies real failures as error", () => {
|
|
||||||
expect(getLogType("Error: connection refused at db:5432").type).toBe("error");
|
|
||||||
expect(getLogType("[ERROR] something went wrong").type).toBe("error");
|
|
||||||
expect(getLogType("Deployment failed").type).toBe("error");
|
|
||||||
expect(
|
|
||||||
getLogType(
|
|
||||||
'NOTICE [Job "sync-1m" (e1305c5b54b1)] Finished in "326ms", failed: true, skipped: false, error: exit code 1',
|
|
||||||
).type,
|
|
||||||
).toBe("error");
|
|
||||||
});
|
|
||||||
|
|
||||||
test("does not classify explicit non-error key/values as error (#4538)", () => {
|
|
||||||
// ofelia job-completion summary for a successful run
|
|
||||||
expect(
|
|
||||||
getLogType(
|
|
||||||
'NOTICE [Job "sync-1m" (e1305c5b54b1)] Finished in "326.16795ms", failed: false, skipped: false, error: none',
|
|
||||||
).type,
|
|
||||||
).not.toBe("error");
|
|
||||||
|
|
||||||
expect(getLogType("request done, error: null").type).not.toBe("error");
|
|
||||||
expect(getLogType("checks passed, failures=0").type).not.toBe("error");
|
|
||||||
expect(getLogType('shutdown clean, error=""').type).not.toBe("error");
|
|
||||||
});
|
|
||||||
|
|
||||||
test("keeps statusCode-based classification", () => {
|
|
||||||
expect(getLogType('{"statusCode": "500"}').type).toBe("error");
|
|
||||||
expect(getLogType('{"statusCode": "204"}').type).toBe("success");
|
|
||||||
});
|
|
||||||
@@ -183,29 +183,4 @@ describe("legacy boolean overrides for member", () => {
|
|||||||
memberToReturn = mockMemberData("member");
|
memberToReturn = mockMemberData("member");
|
||||||
await expect(checkPermission(ctx, { docker: ["read"] })).rejects.toThrow();
|
await expect(checkPermission(ctx, { docker: ["read"] })).rejects.toThrow();
|
||||||
});
|
});
|
||||||
|
|
||||||
it("member passes gitProviders.create with canAccessToGitProviders=true", async () => {
|
|
||||||
memberToReturn = mockMemberData("member", {
|
|
||||||
canAccessToGitProviders: true,
|
|
||||||
});
|
|
||||||
await expect(
|
|
||||||
checkPermission(ctx, { gitProviders: ["create"] }),
|
|
||||||
).resolves.toBeUndefined();
|
|
||||||
});
|
|
||||||
|
|
||||||
it("member passes gitProviders.delete with canAccessToGitProviders=true", async () => {
|
|
||||||
memberToReturn = mockMemberData("member", {
|
|
||||||
canAccessToGitProviders: true,
|
|
||||||
});
|
|
||||||
await expect(
|
|
||||||
checkPermission(ctx, { gitProviders: ["delete"] }),
|
|
||||||
).resolves.toBeUndefined();
|
|
||||||
});
|
|
||||||
|
|
||||||
it("member fails gitProviders.create with canAccessToGitProviders=false", async () => {
|
|
||||||
memberToReturn = mockMemberData("member");
|
|
||||||
await expect(
|
|
||||||
checkPermission(ctx, { gitProviders: ["create"] }),
|
|
||||||
).rejects.toThrow();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -143,24 +143,6 @@ describe("free-tier resources for member", () => {
|
|||||||
const perms = await resolvePermissions(ctx);
|
const perms = await resolvePermissions(ctx);
|
||||||
expect(perms.docker.read).toBe(true);
|
expect(perms.docker.read).toBe(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("member gets gitProviders create/delete=false without legacy override", async () => {
|
|
||||||
memberToReturn = mockMemberData("member");
|
|
||||||
const perms = await resolvePermissions(ctx);
|
|
||||||
expect(perms.gitProviders.read).toBe(false);
|
|
||||||
expect(perms.gitProviders.create).toBe(false);
|
|
||||||
expect(perms.gitProviders.delete).toBe(false);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("member gets gitProviders read/create/delete=true with canAccessToGitProviders", async () => {
|
|
||||||
memberToReturn = mockMemberData("member", {
|
|
||||||
canAccessToGitProviders: true,
|
|
||||||
});
|
|
||||||
const perms = await resolvePermissions(ctx);
|
|
||||||
expect(perms.gitProviders.read).toBe(true);
|
|
||||||
expect(perms.gitProviders.create).toBe(true);
|
|
||||||
expect(perms.gitProviders.delete).toBe(true);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("free-tier resources for owner", () => {
|
describe("free-tier resources for owner", () => {
|
||||||
|
|||||||
@@ -1,81 +0,0 @@
|
|||||||
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
||||||
|
|
||||||
const getWebServerSettings = vi.fn();
|
|
||||||
const findFirstServer = vi.fn();
|
|
||||||
|
|
||||||
vi.mock("@dokploy/server/db", () => ({
|
|
||||||
db: {
|
|
||||||
query: {
|
|
||||||
server: {
|
|
||||||
findFirst: (...args: unknown[]) => findFirstServer(...args),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}));
|
|
||||||
|
|
||||||
vi.mock("@dokploy/server/db/schema", () => ({
|
|
||||||
server: {},
|
|
||||||
}));
|
|
||||||
|
|
||||||
vi.mock("@dokploy/server/services/web-server-settings", () => ({
|
|
||||||
getWebServerSettings: (...args: unknown[]) => getWebServerSettings(...args),
|
|
||||||
}));
|
|
||||||
|
|
||||||
vi.mock("drizzle-orm", () => ({ eq: vi.fn() }));
|
|
||||||
|
|
||||||
import { resolveBuildsConcurrency } from "../../server/queues/concurrency";
|
|
||||||
import { LOCAL_PARTITION } from "../../server/queues/in-memory-queue";
|
|
||||||
|
|
||||||
describe("resolveBuildsConcurrency", () => {
|
|
||||||
beforeEach(() => {
|
|
||||||
vi.clearAllMocks();
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("local web server partition", () => {
|
|
||||||
it("returns the configured concurrency", async () => {
|
|
||||||
getWebServerSettings.mockResolvedValue({ buildsConcurrency: 5 });
|
|
||||||
|
|
||||||
await expect(resolveBuildsConcurrency(LOCAL_PARTITION)).resolves.toBe(5);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("does not cap high values", async () => {
|
|
||||||
getWebServerSettings.mockResolvedValue({ buildsConcurrency: 999 });
|
|
||||||
|
|
||||||
await expect(resolveBuildsConcurrency(LOCAL_PARTITION)).resolves.toBe(
|
|
||||||
999,
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("floors values below 1 to 1", async () => {
|
|
||||||
getWebServerSettings.mockResolvedValue({ buildsConcurrency: 0 });
|
|
||||||
|
|
||||||
await expect(resolveBuildsConcurrency(LOCAL_PARTITION)).resolves.toBe(1);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("defaults to 1 when settings are missing", async () => {
|
|
||||||
getWebServerSettings.mockResolvedValue(undefined);
|
|
||||||
|
|
||||||
await expect(resolveBuildsConcurrency(LOCAL_PARTITION)).resolves.toBe(1);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("remote server partition", () => {
|
|
||||||
it("returns the server concurrency", async () => {
|
|
||||||
findFirstServer.mockResolvedValue({ buildsConcurrency: 4 });
|
|
||||||
|
|
||||||
await expect(resolveBuildsConcurrency("server-1")).resolves.toBe(4);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("defaults to 1 for an unknown server", async () => {
|
|
||||||
findFirstServer.mockResolvedValue(undefined);
|
|
||||||
|
|
||||||
await expect(resolveBuildsConcurrency("ghost")).resolves.toBe(1);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it("falls back to 1 if resolution throws", async () => {
|
|
||||||
getWebServerSettings.mockRejectedValue(new Error("db down"));
|
|
||||||
|
|
||||||
await expect(resolveBuildsConcurrency(LOCAL_PARTITION)).resolves.toBe(1);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,337 +0,0 @@
|
|||||||
import { beforeEach, describe, expect, it } from "vitest";
|
|
||||||
import {
|
|
||||||
getGroup,
|
|
||||||
getPartition,
|
|
||||||
InMemoryQueue,
|
|
||||||
LOCAL_PARTITION,
|
|
||||||
} from "../../server/queues/in-memory-queue";
|
|
||||||
import type { DeploymentJob } from "../../server/queues/queue-types";
|
|
||||||
|
|
||||||
const appJob = (applicationId: string, serverId?: string): DeploymentJob => ({
|
|
||||||
applicationId,
|
|
||||||
titleLog: "deploy",
|
|
||||||
descriptionLog: "",
|
|
||||||
type: "deploy",
|
|
||||||
applicationType: "application",
|
|
||||||
serverId,
|
|
||||||
});
|
|
||||||
|
|
||||||
const composeJob = (composeId: string, serverId?: string): DeploymentJob => ({
|
|
||||||
composeId,
|
|
||||||
titleLog: "deploy",
|
|
||||||
descriptionLog: "",
|
|
||||||
type: "deploy",
|
|
||||||
applicationType: "compose",
|
|
||||||
serverId,
|
|
||||||
});
|
|
||||||
|
|
||||||
/** A controllable async task: resolves only when `release()` is called. */
|
|
||||||
const deferred = () => {
|
|
||||||
let resolve!: () => void;
|
|
||||||
const promise = new Promise<void>((r) => {
|
|
||||||
resolve = r;
|
|
||||||
});
|
|
||||||
return { promise, release: resolve };
|
|
||||||
};
|
|
||||||
|
|
||||||
const flush = () => new Promise((r) => setTimeout(r, 0));
|
|
||||||
|
|
||||||
describe("getPartition / getGroup", () => {
|
|
||||||
it("partitions by serverId, falling back to the local partition", () => {
|
|
||||||
expect(getPartition(appJob("a"))).toBe(LOCAL_PARTITION);
|
|
||||||
expect(getPartition(appJob("a", "server-1"))).toBe("server-1");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("groups applications and compose by their id", () => {
|
|
||||||
expect(getGroup(appJob("a"))).toBe("application:a");
|
|
||||||
expect(getGroup(composeJob("c"))).toBe("compose:c");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("InMemoryQueue concurrency", () => {
|
|
||||||
let nowValue = 0;
|
|
||||||
const now = () => ++nowValue;
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
nowValue = 0;
|
|
||||||
});
|
|
||||||
|
|
||||||
it("runs different applications concurrently up to the limit", async () => {
|
|
||||||
const tasks = new Map<string, ReturnType<typeof deferred>>();
|
|
||||||
const started: string[] = [];
|
|
||||||
|
|
||||||
const queue = new InMemoryQueue({ resolveConcurrency: () => 2, now });
|
|
||||||
queue.process(async (job) => {
|
|
||||||
const id = (job.data as any).applicationId;
|
|
||||||
started.push(id);
|
|
||||||
const d = deferred();
|
|
||||||
tasks.set(id, d);
|
|
||||||
await d.promise;
|
|
||||||
});
|
|
||||||
await queue.run();
|
|
||||||
|
|
||||||
await queue.add(appJob("a"));
|
|
||||||
await queue.add(appJob("b"));
|
|
||||||
await queue.add(appJob("c"));
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
// Concurrency 2 -> only a and b start, c waits.
|
|
||||||
expect(started).toEqual(["a", "b"]);
|
|
||||||
|
|
||||||
tasks.get("a")!.release();
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
// A slot freed -> c starts.
|
|
||||||
expect(started).toEqual(["a", "b", "c"]);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("serializes jobs of the same application (per-group FIFO)", async () => {
|
|
||||||
const tasks: Array<ReturnType<typeof deferred>> = [];
|
|
||||||
const started: number[] = [];
|
|
||||||
let counter = 0;
|
|
||||||
|
|
||||||
const queue = new InMemoryQueue({ resolveConcurrency: () => 5, now });
|
|
||||||
queue.process(async () => {
|
|
||||||
started.push(++counter);
|
|
||||||
const d = deferred();
|
|
||||||
tasks.push(d);
|
|
||||||
await d.promise;
|
|
||||||
});
|
|
||||||
await queue.run();
|
|
||||||
|
|
||||||
// Two deploys of the SAME app, even with concurrency 5.
|
|
||||||
await queue.add(appJob("same"));
|
|
||||||
await queue.add(appJob("same"));
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
// Only the first one runs; the second waits for the group to free.
|
|
||||||
expect(started).toEqual([1]);
|
|
||||||
|
|
||||||
tasks[0]!.release();
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
expect(started).toEqual([1, 2]);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("isolates concurrency per server partition", async () => {
|
|
||||||
const started: string[] = [];
|
|
||||||
const tasks = new Map<string, ReturnType<typeof deferred>>();
|
|
||||||
|
|
||||||
// server-1 allows 1, server-2 allows 1, but they are independent.
|
|
||||||
const queue = new InMemoryQueue({
|
|
||||||
resolveConcurrency: () => 1,
|
|
||||||
now,
|
|
||||||
});
|
|
||||||
queue.process(async (job) => {
|
|
||||||
const id = `${job.data.serverId}:${(job.data as any).applicationId}`;
|
|
||||||
started.push(id);
|
|
||||||
const d = deferred();
|
|
||||||
tasks.set(id, d);
|
|
||||||
await d.promise;
|
|
||||||
});
|
|
||||||
await queue.run();
|
|
||||||
|
|
||||||
await queue.add(appJob("a", "server-1"));
|
|
||||||
await queue.add(appJob("b", "server-2"));
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
// One per partition runs in parallel despite concurrency 1 each.
|
|
||||||
expect(started.sort()).toEqual(["server-1:a", "server-2:b"]);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("honors a different concurrency per server", async () => {
|
|
||||||
const started: string[] = [];
|
|
||||||
const tasks = new Map<string, ReturnType<typeof deferred>>();
|
|
||||||
|
|
||||||
// server-fast allows 2, server-slow allows 1.
|
|
||||||
const queue = new InMemoryQueue({
|
|
||||||
resolveConcurrency: (partition) => (partition === "server-fast" ? 2 : 1),
|
|
||||||
now,
|
|
||||||
});
|
|
||||||
queue.process(async (job) => {
|
|
||||||
const id = `${job.data.serverId}:${(job.data as any).applicationId}`;
|
|
||||||
started.push(id);
|
|
||||||
const d = deferred();
|
|
||||||
tasks.set(id, d);
|
|
||||||
await d.promise;
|
|
||||||
});
|
|
||||||
await queue.run();
|
|
||||||
|
|
||||||
await queue.add(appJob("a", "server-fast"));
|
|
||||||
await queue.add(appJob("b", "server-fast"));
|
|
||||||
await queue.add(appJob("c", "server-slow"));
|
|
||||||
await queue.add(appJob("d", "server-slow"));
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
// server-fast runs 2 in parallel; server-slow only 1.
|
|
||||||
expect(started.sort()).toEqual([
|
|
||||||
"server-fast:a",
|
|
||||||
"server-fast:b",
|
|
||||||
"server-slow:c",
|
|
||||||
]);
|
|
||||||
|
|
||||||
// Free a server-slow slot -> its queued app starts.
|
|
||||||
tasks.get("server-slow:c")!.release();
|
|
||||||
await flush();
|
|
||||||
expect(started).toContain("server-slow:d");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("serializes the same app on a server even with spare concurrency", async () => {
|
|
||||||
const started: number[] = [];
|
|
||||||
const tasks: Array<ReturnType<typeof deferred>> = [];
|
|
||||||
let counter = 0;
|
|
||||||
|
|
||||||
// Plenty of room (concurrency 2) but two deploys of the SAME app.
|
|
||||||
const queue = new InMemoryQueue({ resolveConcurrency: () => 2, now });
|
|
||||||
queue.process(async () => {
|
|
||||||
started.push(++counter);
|
|
||||||
const d = deferred();
|
|
||||||
tasks.push(d);
|
|
||||||
await d.promise;
|
|
||||||
});
|
|
||||||
await queue.run();
|
|
||||||
|
|
||||||
await queue.add(appJob("app-x", "server-1"));
|
|
||||||
await queue.add(appJob("app-x", "server-1"));
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
// Only one build of app-x runs despite 2 free slots.
|
|
||||||
expect(started).toEqual([1]);
|
|
||||||
|
|
||||||
tasks[0]!.release();
|
|
||||||
await flush();
|
|
||||||
expect(started).toEqual([1, 2]);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("clamps concurrency below 1 up to 1 (license-disabled behaviour)", async () => {
|
|
||||||
const started: string[] = [];
|
|
||||||
const tasks = new Map<string, ReturnType<typeof deferred>>();
|
|
||||||
|
|
||||||
// Simulate a non-licensed resolver returning 0 — must still run 1.
|
|
||||||
const queue = new InMemoryQueue({ resolveConcurrency: () => 0, now });
|
|
||||||
queue.process(async (job) => {
|
|
||||||
const id = (job.data as any).applicationId;
|
|
||||||
started.push(id);
|
|
||||||
const d = deferred();
|
|
||||||
tasks.set(id, d);
|
|
||||||
await d.promise;
|
|
||||||
});
|
|
||||||
await queue.run();
|
|
||||||
|
|
||||||
await queue.add(appJob("a"));
|
|
||||||
await queue.add(appJob("b"));
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
expect(started).toEqual(["a"]);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("picks up concurrency changes between scheduling ticks", async () => {
|
|
||||||
const started: string[] = [];
|
|
||||||
const tasks = new Map<string, ReturnType<typeof deferred>>();
|
|
||||||
let limit = 1;
|
|
||||||
|
|
||||||
const queue = new InMemoryQueue({
|
|
||||||
resolveConcurrency: () => limit,
|
|
||||||
now,
|
|
||||||
});
|
|
||||||
queue.process(async (job) => {
|
|
||||||
const id = (job.data as any).applicationId;
|
|
||||||
started.push(id);
|
|
||||||
const d = deferred();
|
|
||||||
tasks.set(id, d);
|
|
||||||
await d.promise;
|
|
||||||
});
|
|
||||||
await queue.run();
|
|
||||||
|
|
||||||
await queue.add(appJob("a"));
|
|
||||||
await queue.add(appJob("b"));
|
|
||||||
await flush();
|
|
||||||
expect(started).toEqual(["a"]);
|
|
||||||
|
|
||||||
// Raise the limit (e.g. license activated) and release the running job
|
|
||||||
// so a new tick observes the new concurrency.
|
|
||||||
limit = 2;
|
|
||||||
tasks.get("a")!.release();
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
expect(started).toContain("b");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("InMemoryQueue job management", () => {
|
|
||||||
it("lists waiting jobs and removes them by predicate", async () => {
|
|
||||||
const block = deferred();
|
|
||||||
const queue = new InMemoryQueue({ resolveConcurrency: () => 1 });
|
|
||||||
queue.process(async () => {
|
|
||||||
await block.promise;
|
|
||||||
});
|
|
||||||
await queue.run();
|
|
||||||
|
|
||||||
await queue.add(appJob("running"));
|
|
||||||
await queue.add(appJob("waiting-1"));
|
|
||||||
await queue.add(composeJob("waiting-2"));
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
const waiting = await queue.getJobs(["waiting"]);
|
|
||||||
expect(waiting.map((j) => j.data)).toHaveLength(2);
|
|
||||||
|
|
||||||
const removed = queue.removeWaiting(
|
|
||||||
(data) => (data as any).applicationId === "waiting-1",
|
|
||||||
);
|
|
||||||
expect(removed).toBe(1);
|
|
||||||
|
|
||||||
const after = await queue.getJobs(["waiting"]);
|
|
||||||
expect(after).toHaveLength(1);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("clears all waiting jobs", async () => {
|
|
||||||
const block = deferred();
|
|
||||||
const queue = new InMemoryQueue({ resolveConcurrency: () => 1 });
|
|
||||||
queue.process(async () => {
|
|
||||||
await block.promise;
|
|
||||||
});
|
|
||||||
await queue.run();
|
|
||||||
|
|
||||||
await queue.add(appJob("running"));
|
|
||||||
await queue.add(appJob("waiting-1"));
|
|
||||||
await queue.add(appJob("waiting-2"));
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
expect(queue.clearWaiting()).toBe(2);
|
|
||||||
expect(await queue.getJobs(["waiting"])).toHaveLength(0);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("starts processing as soon as a processor is registered", async () => {
|
|
||||||
const started: string[] = [];
|
|
||||||
const queue = new InMemoryQueue({ resolveConcurrency: () => 5 });
|
|
||||||
|
|
||||||
// No processor yet -> jobs queue but do not run.
|
|
||||||
await queue.add(appJob("a"));
|
|
||||||
await flush();
|
|
||||||
expect(started).toEqual([]);
|
|
||||||
|
|
||||||
// Registering the processor auto-starts the queue (no separate run()).
|
|
||||||
queue.process(async (job) => {
|
|
||||||
started.push((job.data as any).applicationId);
|
|
||||||
});
|
|
||||||
await flush();
|
|
||||||
expect(started).toEqual(["a"]);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("continues scheduling after a job throws", async () => {
|
|
||||||
const started: string[] = [];
|
|
||||||
const queue = new InMemoryQueue({ resolveConcurrency: () => 1 });
|
|
||||||
queue.process(async (job) => {
|
|
||||||
const id = (job.data as any).applicationId;
|
|
||||||
started.push(id);
|
|
||||||
if (id === "a") throw new Error("boom");
|
|
||||||
});
|
|
||||||
await queue.run();
|
|
||||||
|
|
||||||
await queue.add(appJob("a"));
|
|
||||||
await queue.add(appJob("b"));
|
|
||||||
await flush();
|
|
||||||
|
|
||||||
expect(started).toEqual(["a", "b"]);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,75 +0,0 @@
|
|||||||
import { apiCreateRegistry, apiTestRegistry } from "@dokploy/server/db/schema";
|
|
||||||
import { describe, expect, it } from "vitest";
|
|
||||||
|
|
||||||
describe("Registry Schema - Username case preservation (#4632)", () => {
|
|
||||||
const validBase = {
|
|
||||||
registryName: "AWS ECR",
|
|
||||||
password: "dXNlcm5hbWU6cGFzc3dvcmQ=", // dummy base64 token
|
|
||||||
registryUrl: "123456789.dkr.ecr.us-east-1.amazonaws.com",
|
|
||||||
registryType: "cloud" as const,
|
|
||||||
imagePrefix: null,
|
|
||||||
};
|
|
||||||
|
|
||||||
it("should preserve uppercase username (AWS ECR requires 'AWS')", () => {
|
|
||||||
const result = apiCreateRegistry.safeParse({
|
|
||||||
...validBase,
|
|
||||||
username: "AWS",
|
|
||||||
});
|
|
||||||
expect(result.success).toBe(true);
|
|
||||||
if (result.success) {
|
|
||||||
expect(result.data.username).toBe("AWS");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should not lowercase mixed-case usernames", () => {
|
|
||||||
const result = apiCreateRegistry.safeParse({
|
|
||||||
...validBase,
|
|
||||||
username: "MyUser",
|
|
||||||
});
|
|
||||||
expect(result.success).toBe(true);
|
|
||||||
if (result.success) {
|
|
||||||
expect(result.data.username).toBe("MyUser");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should still trim whitespace from username", () => {
|
|
||||||
const result = apiCreateRegistry.safeParse({
|
|
||||||
...validBase,
|
|
||||||
username: " AWS ",
|
|
||||||
});
|
|
||||||
expect(result.success).toBe(true);
|
|
||||||
if (result.success) {
|
|
||||||
expect(result.data.username).toBe("AWS");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should reject empty username", () => {
|
|
||||||
const result = apiCreateRegistry.safeParse({
|
|
||||||
...validBase,
|
|
||||||
username: "",
|
|
||||||
});
|
|
||||||
expect(result.success).toBe(false);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should also preserve case in apiTestRegistry", () => {
|
|
||||||
const result = apiTestRegistry.safeParse({
|
|
||||||
...validBase,
|
|
||||||
username: "AWS",
|
|
||||||
});
|
|
||||||
expect(result.success).toBe(true);
|
|
||||||
if (result.success) {
|
|
||||||
expect(result.data.username).toBe("AWS");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should accept lowercase usernames too (backward compat)", () => {
|
|
||||||
const result = apiCreateRegistry.safeParse({
|
|
||||||
...validBase,
|
|
||||||
username: "myuser",
|
|
||||||
});
|
|
||||||
expect(result.success).toBe(true);
|
|
||||||
if (result.success) {
|
|
||||||
expect(result.data.username).toBe("myuser");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,98 +0,0 @@
|
|||||||
import { execFileSync, execSync } from "node:child_process";
|
|
||||||
import { chmodSync, mkdtempSync, writeFileSync } from "node:fs";
|
|
||||||
import { tmpdir } from "node:os";
|
|
||||||
import path from "node:path";
|
|
||||||
import { defaultCommand, reportDockerVersion } from "@dokploy/server";
|
|
||||||
import { describe, expect, it } from "vitest";
|
|
||||||
|
|
||||||
const resolveBin = (name: string) =>
|
|
||||||
execSync(`command -v ${name}`, { encoding: "utf8" }).trim();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Build a sandbox PATH so `command -v docker` only sees our fake docker
|
|
||||||
* binary (or nothing), regardless of what the host has installed.
|
|
||||||
*/
|
|
||||||
const makeSandbox = (dockerShim?: string) => {
|
|
||||||
const dir = mkdtempSync(path.join(tmpdir(), "dokploy-server-setup-"));
|
|
||||||
for (const tool of ["awk", "tr"]) {
|
|
||||||
const shim = path.join(dir, tool);
|
|
||||||
writeFileSync(shim, `#!/bin/sh\nexec ${resolveBin(tool)} "$@"\n`);
|
|
||||||
chmodSync(shim, 0o755);
|
|
||||||
}
|
|
||||||
if (dockerShim) {
|
|
||||||
const shim = path.join(dir, "docker");
|
|
||||||
writeFileSync(shim, dockerShim);
|
|
||||||
chmodSync(shim, 0o755);
|
|
||||||
}
|
|
||||||
return dir;
|
|
||||||
};
|
|
||||||
|
|
||||||
const runReport = (sandboxPath: string) => {
|
|
||||||
const script = [
|
|
||||||
"DOCKER_VERSION=28.5.0",
|
|
||||||
reportDockerVersion(),
|
|
||||||
'echo "$DOCKER_VERSION_REPORT"',
|
|
||||||
].join("\n");
|
|
||||||
return execFileSync(resolveBin("bash"), ["-c", script], {
|
|
||||||
encoding: "utf8",
|
|
||||||
env: { ...process.env, PATH: sandboxPath },
|
|
||||||
})
|
|
||||||
.trim()
|
|
||||||
.split("\n")
|
|
||||||
.pop();
|
|
||||||
};
|
|
||||||
|
|
||||||
describe("reportDockerVersion", () => {
|
|
||||||
it("reports the engine version when docker and its daemon are available", () => {
|
|
||||||
const sandbox = makeSandbox(
|
|
||||||
[
|
|
||||||
"#!/bin/sh",
|
|
||||||
'if [ "$1" = "--version" ]; then',
|
|
||||||
' echo "Docker version 25.0.0, build aaaaaaa"',
|
|
||||||
" exit 0",
|
|
||||||
"fi",
|
|
||||||
'if [ "$1" = "version" ]; then',
|
|
||||||
' echo "29.4.3"',
|
|
||||||
" exit 0",
|
|
||||||
"fi",
|
|
||||||
"exit 1",
|
|
||||||
].join("\n"),
|
|
||||||
);
|
|
||||||
expect(runReport(sandbox)).toBe("29.4.3 (already installed)");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("falls back to the client version when the daemon is unreachable", () => {
|
|
||||||
const sandbox = makeSandbox(
|
|
||||||
[
|
|
||||||
"#!/bin/sh",
|
|
||||||
'if [ "$1" = "--version" ]; then',
|
|
||||||
' echo "Docker version 29.4.3, build 055a478"',
|
|
||||||
" exit 0",
|
|
||||||
"fi",
|
|
||||||
'echo "Cannot connect to the Docker daemon" >&2',
|
|
||||||
"exit 1",
|
|
||||||
].join("\n"),
|
|
||||||
);
|
|
||||||
expect(runReport(sandbox)).toBe("29.4.3 (already installed)");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("reports the pinned version to be installed when docker is missing", () => {
|
|
||||||
expect(runReport(makeSandbox())).toBe("28.5.0 (will be installed)");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("defaultCommand", () => {
|
|
||||||
it.each([false, true])(
|
|
||||||
"prints the detected Docker version in the setup banner (isBuildServer=%s)",
|
|
||||||
(isBuildServer) => {
|
|
||||||
const script = defaultCommand(isBuildServer);
|
|
||||||
expect(script).toContain(reportDockerVersion());
|
|
||||||
expect(script).toContain(
|
|
||||||
'echo "| Docker | $DOCKER_VERSION_REPORT"',
|
|
||||||
);
|
|
||||||
expect(script).not.toContain(
|
|
||||||
'echo "| Docker | $DOCKER_VERSION"',
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@@ -25,7 +25,6 @@ const baseSettings: WebServerSettings = {
|
|||||||
letsEncryptEmail: null,
|
letsEncryptEmail: null,
|
||||||
sshPrivateKey: null,
|
sshPrivateKey: null,
|
||||||
enableDockerCleanup: false,
|
enableDockerCleanup: false,
|
||||||
buildsConcurrency: 1,
|
|
||||||
logCleanupCron: null,
|
logCleanupCron: null,
|
||||||
metricsConfig: {
|
metricsConfig: {
|
||||||
containers: {
|
containers: {
|
||||||
|
|||||||
@@ -1,46 +0,0 @@
|
|||||||
import { VALID_HOSTNAME_REGEX } from "@dokploy/server";
|
|
||||||
import { describe, expect, it } from "vitest";
|
|
||||||
|
|
||||||
describe("VALID_HOSTNAME_REGEX", () => {
|
|
||||||
it.each([
|
|
||||||
"example.com",
|
|
||||||
"sub.example.com",
|
|
||||||
"bbn-client.example.com",
|
|
||||||
"a.b.c.example.co",
|
|
||||||
"xn--80ak6aa92e.com",
|
|
||||||
"123.example.com",
|
|
||||||
])("accepts valid hostname %s", (host) => {
|
|
||||||
expect(VALID_HOSTNAME_REGEX.test(host)).toBe(true);
|
|
||||||
});
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
"bbn_client.example.com",
|
|
||||||
"-example.com",
|
|
||||||
"example-.com",
|
|
||||||
"example",
|
|
||||||
"exa mple.com",
|
|
||||||
"example..com",
|
|
||||||
"",
|
|
||||||
`a${"a".repeat(63)}.com`,
|
|
||||||
])("rejects invalid hostname %s", (host) => {
|
|
||||||
expect(VALID_HOSTNAME_REGEX.test(host)).toBe(false);
|
|
||||||
});
|
|
||||||
|
|
||||||
// IDNs (Cyrillic, German umlauts, etc.) must be submitted in their
|
|
||||||
// ACME/punycode form ("xn--...") — that's what Let's Encrypt issues
|
|
||||||
// certificates for, so raw Unicode labels are rejected here.
|
|
||||||
it.each(["пример.рф", "bücher.de", "日本語.jp"])(
|
|
||||||
"rejects raw unicode IDN %s",
|
|
||||||
(host) => {
|
|
||||||
expect(VALID_HOSTNAME_REGEX.test(host)).toBe(false);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
"xn--e1afmkfd.xn--p1ai", // punycode for пример.рф
|
|
||||||
"xn--bcher-kva.de", // punycode for bücher.de
|
|
||||||
"xn--wgv71a119e.jp", // punycode for 日本語.jp
|
|
||||||
])("accepts punycode-encoded IDN %s", (host) => {
|
|
||||||
expect(VALID_HOSTNAME_REGEX.test(host)).toBe(true);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,22 +1,17 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://ui.shadcn.com/schema.json",
|
"$schema": "https://ui.shadcn.com/schema.json",
|
||||||
"style": "radix-nova",
|
"style": "default",
|
||||||
"rsc": false,
|
"rsc": false,
|
||||||
"tsx": true,
|
"tsx": true,
|
||||||
"tailwind": {
|
"tailwind": {
|
||||||
"config": "",
|
"config": "tailwind.config.ts",
|
||||||
"css": "styles/globals.css",
|
"css": "styles/globals.css",
|
||||||
"baseColor": "neutral",
|
"baseColor": "zinc",
|
||||||
"cssVariables": true,
|
"cssVariables": true,
|
||||||
"prefix": ""
|
"prefix": ""
|
||||||
},
|
},
|
||||||
"aliases": {
|
"aliases": {
|
||||||
"components": "@/components",
|
"components": "@/components",
|
||||||
"utils": "@/lib/utils"
|
"utils": "@/lib/utils"
|
||||||
},
|
}
|
||||||
"iconLibrary": "lucide",
|
|
||||||
"rtl": false,
|
|
||||||
"menuColor": "default",
|
|
||||||
"menuAccent": "subtle",
|
|
||||||
"registries": {}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ export const AddSwarmSettings = ({ id, type }: Props) => {
|
|||||||
|
|
||||||
<div className="flex gap-4 h-[60vh] py-4">
|
<div className="flex gap-4 h-[60vh] py-4">
|
||||||
{/* Left Column - Menu */}
|
{/* Left Column - Menu */}
|
||||||
<div className="w-64 shrink-0 border-r pr-4 overflow-y-auto">
|
<div className="w-64 flex-shrink-0 border-r pr-4 overflow-y-auto">
|
||||||
<nav className="space-y-1">
|
<nav className="space-y-1">
|
||||||
<TooltipProvider>
|
<TooltipProvider>
|
||||||
{menuItems.map((item) => (
|
{menuItems.map((item) => (
|
||||||
|
|||||||
@@ -229,7 +229,7 @@ export const ShowImport = ({ composeId }: Props) => {
|
|||||||
(domain, index) => (
|
(domain, index) => (
|
||||||
<div
|
<div
|
||||||
key={index}
|
key={index}
|
||||||
className="rounded-lg border bg-card p-3 text-card-foreground shadow-xs"
|
className="rounded-lg border bg-card p-3 text-card-foreground shadow-sm"
|
||||||
>
|
>
|
||||||
<div className="font-medium">
|
<div className="font-medium">
|
||||||
{domain.serviceName}
|
{domain.serviceName}
|
||||||
|
|||||||
@@ -246,7 +246,7 @@ export const HandleRedirect = ({
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="permanent"
|
name="permanent"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-xs">
|
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-sm">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>Permanent</FormLabel>
|
<FormLabel>Permanent</FormLabel>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ export const ShowTraefikConfig = ({ applicationId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div className="flex flex-col pt-2 relative">
|
<div className="flex flex-col pt-2 relative">
|
||||||
<div className="flex flex-col gap-6 max-h-140 min-h-40 overflow-y-auto">
|
<div className="flex flex-col gap-6 max-h-[35rem] min-h-[10rem] overflow-y-auto">
|
||||||
<CodeEditor
|
<CodeEditor
|
||||||
lineWrapping
|
lineWrapping
|
||||||
value={data || "Empty"}
|
value={data || "Empty"}
|
||||||
|
|||||||
@@ -155,7 +155,7 @@ export const UpdateTraefikConfig = ({ applicationId }: Props) => {
|
|||||||
<FormControl>
|
<FormControl>
|
||||||
<CodeEditor
|
<CodeEditor
|
||||||
lineWrapping
|
lineWrapping
|
||||||
wrapperClassName="h-140 font-mono"
|
wrapperClassName="h-[35rem] font-mono"
|
||||||
placeholder={`http:
|
placeholder={`http:
|
||||||
routers:
|
routers:
|
||||||
router-name:
|
router-name:
|
||||||
|
|||||||
@@ -220,7 +220,7 @@ export const AddVolumes = ({
|
|||||||
/>
|
/>
|
||||||
<Label
|
<Label
|
||||||
htmlFor="bind"
|
htmlFor="bind"
|
||||||
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary has-data-[state=checked]:border-primary cursor-pointer"
|
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary [&:has([data-state=checked])]:border-primary cursor-pointer"
|
||||||
>
|
>
|
||||||
Bind Mount
|
Bind Mount
|
||||||
</Label>
|
</Label>
|
||||||
@@ -240,7 +240,7 @@ export const AddVolumes = ({
|
|||||||
/>
|
/>
|
||||||
<Label
|
<Label
|
||||||
htmlFor="volume"
|
htmlFor="volume"
|
||||||
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary has-data-[state=checked]:border-primary cursor-pointer"
|
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary [&:has([data-state=checked])]:border-primary cursor-pointer"
|
||||||
>
|
>
|
||||||
Volume Mount
|
Volume Mount
|
||||||
</Label>
|
</Label>
|
||||||
@@ -264,7 +264,7 @@ export const AddVolumes = ({
|
|||||||
/>
|
/>
|
||||||
<Label
|
<Label
|
||||||
htmlFor="file"
|
htmlFor="file"
|
||||||
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary has-data-[state=checked]:border-primary cursor-pointer"
|
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary [&:has([data-state=checked])]:border-primary cursor-pointer"
|
||||||
>
|
>
|
||||||
File Mount
|
File Mount
|
||||||
</Label>
|
</Label>
|
||||||
@@ -324,7 +324,7 @@ export const AddVolumes = ({
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="content"
|
name="content"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="max-w-full max-w-180">
|
<FormItem className="max-w-full max-w-[45rem]">
|
||||||
<FormLabel>Content</FormLabel>
|
<FormLabel>Content</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ export const ShowVolumes = ({ id, type }: Props) => {
|
|||||||
{mount.type === "file" && (
|
{mount.type === "file" && (
|
||||||
<div className="flex flex-col gap-1">
|
<div className="flex flex-col gap-1">
|
||||||
<span className="font-medium">Content</span>
|
<span className="font-medium">Content</span>
|
||||||
<span className="text-sm text-muted-foreground line-clamp-10 whitespace-break-spaces">
|
<span className="text-sm text-muted-foreground line-clamp-[10] whitespace-break-spaces">
|
||||||
{mount.content}
|
{mount.content}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -253,7 +253,7 @@ export const UpdateVolume = ({
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="content"
|
name="content"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="w-full max-w-180">
|
<FormItem className="w-full max-w-[45rem]">
|
||||||
<FormLabel>Content</FormLabel>
|
<FormLabel>Content</FormLabel>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
|
|||||||
@@ -191,7 +191,7 @@ export const ShowDeployment = ({
|
|||||||
<div
|
<div
|
||||||
ref={scrollRef}
|
ref={scrollRef}
|
||||||
onScroll={handleScroll}
|
onScroll={handleScroll}
|
||||||
className="h-[720px] overflow-y-auto space-y-0 border p-4 bg-background rounded custom-logs-scrollbar"
|
className="h-[720px] overflow-y-auto space-y-0 border p-4 bg-[#fafafa] dark:bg-[#050506] rounded custom-logs-scrollbar"
|
||||||
>
|
>
|
||||||
{" "}
|
{" "}
|
||||||
{filteredLogs.length > 0 ? (
|
{filteredLogs.length > 0 ? (
|
||||||
|
|||||||
@@ -147,7 +147,7 @@ export const ShowDeployments = ({
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Card className="bg-background border-0">
|
<Card className="bg-background border-none">
|
||||||
<CardHeader className="flex flex-row items-center justify-between flex-wrap gap-2">
|
<CardHeader className="flex flex-row items-center justify-between flex-wrap gap-2">
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<CardTitle className="text-xl">Deployments</CardTitle>
|
<CardTitle className="text-xl">Deployments</CardTitle>
|
||||||
@@ -233,6 +233,7 @@ export const ShowDeployments = ({
|
|||||||
<span>Webhook URL: </span>
|
<span>Webhook URL: </span>
|
||||||
<div className="flex flex-row items-center gap-2">
|
<div className="flex flex-row items-center gap-2">
|
||||||
<Badge
|
<Badge
|
||||||
|
role="button"
|
||||||
tabIndex={0}
|
tabIndex={0}
|
||||||
aria-label="Copy webhook URL to clipboard"
|
aria-label="Copy webhook URL to clipboard"
|
||||||
className="p-2 rounded-md ml-1 mr-1 hover:border-primary hover:text-primary-foreground hover:bg-primary hover:cursor-pointer whitespace-normal break-all"
|
className="p-2 rounded-md ml-1 mr-1 hover:border-primary hover:text-primary-foreground hover:bg-primary hover:cursor-pointer whitespace-normal break-all"
|
||||||
@@ -300,7 +301,7 @@ export const ShowDeployments = ({
|
|||||||
</span>
|
</span>
|
||||||
|
|
||||||
<div className="flex flex-col gap-1">
|
<div className="flex flex-col gap-1">
|
||||||
<span className="wrap-break-word text-sm text-muted-foreground whitespace-pre-wrap">
|
<span className="break-words text-sm text-muted-foreground whitespace-pre-wrap">
|
||||||
{isExpanded || !needsTruncation
|
{isExpanded || !needsTruncation
|
||||||
? titleText
|
? titleText
|
||||||
: truncateDescription(titleText)}
|
: truncateDescription(titleText)}
|
||||||
|
|||||||
@@ -1,7 +1,3 @@
|
|||||||
import {
|
|
||||||
INVALID_HOSTNAME_MESSAGE,
|
|
||||||
VALID_HOSTNAME_REGEX,
|
|
||||||
} from "@dokploy/server/utils/hostname-validation";
|
|
||||||
import { standardSchemaResolver as zodResolver } from "@hookform/resolvers/standard-schema";
|
import { standardSchemaResolver as zodResolver } from "@hookform/resolvers/standard-schema";
|
||||||
import { DatabaseZap, Dices, RefreshCw, X } from "lucide-react";
|
import { DatabaseZap, Dices, RefreshCw, X } from "lucide-react";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
@@ -57,10 +53,7 @@ export const domain = z
|
|||||||
.refine((val) => val === val.trim(), {
|
.refine((val) => val === val.trim(), {
|
||||||
message: "Domain name cannot have leading or trailing spaces",
|
message: "Domain name cannot have leading or trailing spaces",
|
||||||
})
|
})
|
||||||
.transform((val) => val.trim())
|
.transform((val) => val.trim()),
|
||||||
.refine((val) => VALID_HOSTNAME_REGEX.test(val), {
|
|
||||||
message: INVALID_HOSTNAME_MESSAGE,
|
|
||||||
}),
|
|
||||||
path: z.string().min(1).optional(),
|
path: z.string().min(1).optional(),
|
||||||
internalPath: z.string().optional(),
|
internalPath: z.string().optional(),
|
||||||
stripPath: z.boolean().optional(),
|
stripPath: z.boolean().optional(),
|
||||||
@@ -356,7 +349,10 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
|
|||||||
{domainType === "compose" && (
|
{domainType === "compose" && (
|
||||||
<div className="flex flex-col gap-2 w-full">
|
<div className="flex flex-col gap-2 w-full">
|
||||||
{errorServices && (
|
{errorServices && (
|
||||||
<AlertBlock type="warning" className="wrap-anywhere">
|
<AlertBlock
|
||||||
|
type="warning"
|
||||||
|
className="[overflow-wrap:anywhere]"
|
||||||
|
>
|
||||||
{errorServices?.message}
|
{errorServices?.message}
|
||||||
</AlertBlock>
|
</AlertBlock>
|
||||||
)}
|
)}
|
||||||
@@ -424,7 +420,7 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Fetch: Will clone the repository and
|
Fetch: Will clone the repository and
|
||||||
@@ -454,7 +450,7 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Cache: If you previously deployed this
|
Cache: If you previously deployed this
|
||||||
@@ -492,7 +488,7 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
{isManualInput
|
{isManualInput
|
||||||
@@ -569,7 +565,7 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>Generate sslip.io domain</p>
|
<p>Generate sslip.io domain</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
@@ -622,7 +618,7 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="stripPath"
|
name="stripPath"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="flex flex-row items-center justify-between p-3 border rounded-lg shadow-xs">
|
<FormItem className="flex flex-row items-center justify-between p-3 border rounded-lg shadow-sm">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>Strip Path</FormLabel>
|
<FormLabel>Strip Path</FormLabel>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
@@ -666,7 +662,7 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="useCustomEntrypoint"
|
name="useCustomEntrypoint"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-xs">
|
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-sm">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>Custom Entrypoint</FormLabel>
|
<FormLabel>Custom Entrypoint</FormLabel>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
@@ -715,7 +711,7 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="https"
|
name="https"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-xs">
|
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-sm">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>HTTPS</FormLabel>
|
<FormLabel>HTTPS</FormLabel>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
@@ -767,37 +763,6 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
|
|||||||
<SelectItem value={"custom"}>Custom</SelectItem>
|
<SelectItem value={"custom"}>Custom</SelectItem>
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
<FormDescription>
|
|
||||||
{field.value === "none" && (
|
|
||||||
<>
|
|
||||||
<strong>None</strong> serves TLS using any
|
|
||||||
certificate you created in the{" "}
|
|
||||||
<Link
|
|
||||||
href="/dashboard/settings/certificates"
|
|
||||||
className="text-primary"
|
|
||||||
>
|
|
||||||
Certificates
|
|
||||||
</Link>{" "}
|
|
||||||
section whose CN/SAN matches this host —
|
|
||||||
Traefik selects it automatically via SNI.
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
{field.value === "letsencrypt" && (
|
|
||||||
<>
|
|
||||||
<strong>Let's Encrypt</strong> auto-provisions
|
|
||||||
a certificate automatically for this host.
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
{field.value === "custom" && (
|
|
||||||
<>
|
|
||||||
<strong>Custom</strong> uses a Traefik cert
|
|
||||||
resolver by name (defined in your static
|
|
||||||
configuration).
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
{!field.value &&
|
|
||||||
"Select a certificate provider to see how TLS will be served for this host."}
|
|
||||||
</FormDescription>
|
|
||||||
<FormMessage />
|
<FormMessage />
|
||||||
</FormItem>
|
</FormItem>
|
||||||
);
|
);
|
||||||
@@ -812,19 +777,10 @@ export const AddDomain = ({ id, type, domainId = "", children }: Props) => {
|
|||||||
return (
|
return (
|
||||||
<FormItem>
|
<FormItem>
|
||||||
<FormLabel>Custom Certificate Resolver</FormLabel>
|
<FormLabel>Custom Certificate Resolver</FormLabel>
|
||||||
<FormDescription>
|
|
||||||
Enter the <strong>name</strong> of a Traefik
|
|
||||||
cert resolver defined in your static
|
|
||||||
configuration (e.g. <code>letsencrypt</code>) —
|
|
||||||
not certificate or private key content. To use a
|
|
||||||
certificate you pasted in the Certificates
|
|
||||||
section, choose <strong>None</strong> instead
|
|
||||||
and Traefik will match it by SNI.
|
|
||||||
</FormDescription>
|
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<Input
|
<Input
|
||||||
className="w-full"
|
className="w-full"
|
||||||
placeholder="e.g. letsencrypt"
|
placeholder="Enter your custom certificate resolver"
|
||||||
{...field}
|
{...field}
|
||||||
value={field.value || ""}
|
value={field.value || ""}
|
||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
|
|||||||
@@ -189,7 +189,7 @@ export const ShowEnvironment = ({ applicationId }: Props) => {
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="createEnvFile"
|
name="createEnvFile"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="flex flex-row items-center justify-between p-3 border rounded-lg shadow-xs">
|
<FormItem className="flex flex-row items-center justify-between p-3 border rounded-lg shadow-sm">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>Create Environment File</FormLabel>
|
<FormLabel>Create Environment File</FormLabel>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
|
|||||||
@@ -188,9 +188,6 @@ export const SaveBitbucketProvider = ({ applicationId }: Props) => {
|
|||||||
<FormLabel>Bitbucket Account</FormLabel>
|
<FormLabel>Bitbucket Account</FormLabel>
|
||||||
<Select
|
<Select
|
||||||
onValueChange={(value) => {
|
onValueChange={(value) => {
|
||||||
if (!value) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
field.onChange(value);
|
field.onChange(value);
|
||||||
form.setValue("repository", {
|
form.setValue("repository", {
|
||||||
owner: "",
|
owner: "",
|
||||||
@@ -199,6 +196,7 @@ export const SaveBitbucketProvider = ({ applicationId }: Props) => {
|
|||||||
});
|
});
|
||||||
form.setValue("branch", "");
|
form.setValue("branch", "");
|
||||||
}}
|
}}
|
||||||
|
defaultValue={field.value}
|
||||||
value={field.value}
|
value={field.value}
|
||||||
>
|
>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
@@ -247,7 +245,7 @@ export const SaveBitbucketProvider = ({ applicationId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -335,7 +333,7 @@ export const SaveBitbucketProvider = ({ applicationId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
" w-full justify-between",
|
" w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -500,7 +498,7 @@ export const SaveBitbucketProvider = ({ applicationId }: Props) => {
|
|||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormLabel className="mt-0!">Enable Submodules</FormLabel>
|
<FormLabel className="!mt-0">Enable Submodules</FormLabel>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -305,7 +305,7 @@ export const SaveGitProvider = ({ applicationId }: Props) => {
|
|||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormLabel className="mt-0!">Enable Submodules</FormLabel>
|
<FormLabel className="!mt-0">Enable Submodules</FormLabel>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -201,9 +201,6 @@ export const SaveGiteaProvider = ({ applicationId }: Props) => {
|
|||||||
<FormLabel>Gitea Account</FormLabel>
|
<FormLabel>Gitea Account</FormLabel>
|
||||||
<Select
|
<Select
|
||||||
onValueChange={(value) => {
|
onValueChange={(value) => {
|
||||||
if (!value) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
field.onChange(value);
|
field.onChange(value);
|
||||||
form.setValue("repository", {
|
form.setValue("repository", {
|
||||||
owner: "",
|
owner: "",
|
||||||
@@ -211,6 +208,7 @@ export const SaveGiteaProvider = ({ applicationId }: Props) => {
|
|||||||
});
|
});
|
||||||
form.setValue("branch", "");
|
form.setValue("branch", "");
|
||||||
}}
|
}}
|
||||||
|
defaultValue={field.value}
|
||||||
value={field.value}
|
value={field.value}
|
||||||
>
|
>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
@@ -260,7 +258,7 @@ export const SaveGiteaProvider = ({ applicationId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -355,7 +353,7 @@ export const SaveGiteaProvider = ({ applicationId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
" w-full justify-between",
|
" w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -527,7 +525,7 @@ export const SaveGiteaProvider = ({ applicationId }: Props) => {
|
|||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormLabel className="mt-0!">Enable Submodules</FormLabel>
|
<FormLabel className="!mt-0">Enable Submodules</FormLabel>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -177,9 +177,6 @@ export const SaveGithubProvider = ({ applicationId }: Props) => {
|
|||||||
<FormLabel>Github Account</FormLabel>
|
<FormLabel>Github Account</FormLabel>
|
||||||
<Select
|
<Select
|
||||||
onValueChange={(value) => {
|
onValueChange={(value) => {
|
||||||
if (!value) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
field.onChange(value);
|
field.onChange(value);
|
||||||
form.setValue("repository", {
|
form.setValue("repository", {
|
||||||
owner: "",
|
owner: "",
|
||||||
@@ -192,14 +189,7 @@ export const SaveGithubProvider = ({ applicationId }: Props) => {
|
|||||||
>
|
>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<SelectTrigger>
|
<SelectTrigger>
|
||||||
<SelectValue placeholder="Select a Github Account">
|
<SelectValue placeholder="Select a Github Account" />
|
||||||
{
|
|
||||||
githubProviders?.find(
|
|
||||||
(githubProvider) =>
|
|
||||||
githubProvider.githubId === field.value,
|
|
||||||
)?.gitProvider.name
|
|
||||||
}
|
|
||||||
</SelectValue>
|
|
||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
@@ -243,7 +233,7 @@ export const SaveGithubProvider = ({ applicationId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -253,7 +243,7 @@ export const SaveGithubProvider = ({ applicationId }: Props) => {
|
|||||||
? "Loading...."
|
? "Loading...."
|
||||||
: (repositories?.find(
|
: (repositories?.find(
|
||||||
(repo) => repo.name === field.value.repo,
|
(repo) => repo.name === field.value.repo,
|
||||||
)?.name ?? field.value.repo)}
|
)?.name ?? "Select repository")}
|
||||||
|
|
||||||
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
||||||
</Button>
|
</Button>
|
||||||
@@ -330,16 +320,16 @@ export const SaveGithubProvider = ({ applicationId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
" w-full justify-between",
|
" w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{status === "pending" && fetchStatus === "fetching"
|
{status === "pending" && fetchStatus === "fetching"
|
||||||
? "Loading...."
|
? "Loading...."
|
||||||
: field.value
|
: field.value
|
||||||
? (branches?.find(
|
? branches?.find(
|
||||||
(branch) => branch.name === field.value,
|
(branch) => branch.name === field.value,
|
||||||
)?.name ?? field.value)
|
)?.name
|
||||||
: "Select branch"}
|
: "Select branch"}
|
||||||
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
||||||
</Button>
|
</Button>
|
||||||
@@ -541,7 +531,7 @@ export const SaveGithubProvider = ({ applicationId }: Props) => {
|
|||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormLabel className="mt-0!">Enable Submodules</FormLabel>
|
<FormLabel className="!mt-0">Enable Submodules</FormLabel>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -196,9 +196,6 @@ export const SaveGitlabProvider = ({ applicationId }: Props) => {
|
|||||||
<FormLabel>Gitlab Account</FormLabel>
|
<FormLabel>Gitlab Account</FormLabel>
|
||||||
<Select
|
<Select
|
||||||
onValueChange={(value) => {
|
onValueChange={(value) => {
|
||||||
if (!value) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
field.onChange(value);
|
field.onChange(value);
|
||||||
form.setValue("repository", {
|
form.setValue("repository", {
|
||||||
owner: "",
|
owner: "",
|
||||||
@@ -208,6 +205,7 @@ export const SaveGitlabProvider = ({ applicationId }: Props) => {
|
|||||||
});
|
});
|
||||||
form.setValue("branch", "");
|
form.setValue("branch", "");
|
||||||
}}
|
}}
|
||||||
|
defaultValue={field.value}
|
||||||
value={field.value}
|
value={field.value}
|
||||||
>
|
>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
@@ -256,7 +254,7 @@ export const SaveGitlabProvider = ({ applicationId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -353,7 +351,7 @@ export const SaveGitlabProvider = ({ applicationId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
" w-full justify-between",
|
" w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -520,7 +518,7 @@ export const SaveGitlabProvider = ({ applicationId }: Props) => {
|
|||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormLabel className="mt-0!">Enable Submodules</FormLabel>
|
<FormLabel className="!mt-0">Enable Submodules</FormLabel>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -154,10 +154,7 @@ export const ShowProviderForm = ({ applicationId }: Props) => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div className="flex flex-row items-center justify-between w-full overflow-auto">
|
<div className="flex flex-row items-center justify-between w-full overflow-auto">
|
||||||
<TabsList
|
<TabsList className="flex gap-4 justify-start bg-transparent">
|
||||||
variant="line"
|
|
||||||
className="flex gap-4 justify-start bg-transparent"
|
|
||||||
>
|
|
||||||
<TabsTrigger
|
<TabsTrigger
|
||||||
value="github"
|
value="github"
|
||||||
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
||||||
import {
|
import {
|
||||||
Ban,
|
Ban,
|
||||||
CheckCircle2,
|
CheckCircle2,
|
||||||
@@ -7,7 +8,6 @@ import {
|
|||||||
Terminal,
|
Terminal,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
import { Tooltip as TooltipPrimitive } from "radix-ui";
|
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { ShowBuildChooseForm } from "@/components/dashboard/application/build/show";
|
import { ShowBuildChooseForm } from "@/components/dashboard/application/build/show";
|
||||||
import { ShowProviderForm } from "@/components/dashboard/application/general/generic/show";
|
import { ShowProviderForm } from "@/components/dashboard/application/general/generic/show";
|
||||||
@@ -94,7 +94,7 @@ export const ShowGeneralApplication = ({ applicationId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Downloads the source code and performs a complete
|
Downloads the source code and performs a complete
|
||||||
build
|
build
|
||||||
@@ -137,7 +137,7 @@ export const ShowGeneralApplication = ({ applicationId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Reload the application without rebuilding it</p>
|
<p>Reload the application without rebuilding it</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -176,7 +176,7 @@ export const ShowGeneralApplication = ({ applicationId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Only rebuilds the application without downloading new
|
Only rebuilds the application without downloading new
|
||||||
code
|
code
|
||||||
@@ -219,7 +219,7 @@ export const ShowGeneralApplication = ({ applicationId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Start the application (requires a previous successful
|
Start the application (requires a previous successful
|
||||||
build)
|
build)
|
||||||
@@ -259,7 +259,7 @@ export const ShowGeneralApplication = ({ applicationId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Stop the currently running application</p>
|
<p>Stop the currently running application</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
|
|||||||
@@ -200,7 +200,7 @@ export const AddPreviewDomain = ({
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>Generate sslip.io domain</p>
|
<p>Generate sslip.io domain</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
@@ -249,7 +249,7 @@ export const AddPreviewDomain = ({
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="https"
|
name="https"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-xs">
|
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-sm">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>HTTPS</FormLabel>
|
<FormLabel>HTTPS</FormLabel>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
||||||
import {
|
import {
|
||||||
ExternalLink,
|
ExternalLink,
|
||||||
FileText,
|
FileText,
|
||||||
@@ -8,7 +9,6 @@ import {
|
|||||||
RocketIcon,
|
RocketIcon,
|
||||||
Trash2,
|
Trash2,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import { Tooltip as TooltipPrimitive } from "radix-ui";
|
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { GithubIcon } from "@/components/icons/data-tools-icons";
|
import { GithubIcon } from "@/components/icons/data-tools-icons";
|
||||||
import { DateTooltip } from "@/components/shared/date-tooltip";
|
import { DateTooltip } from "@/components/shared/date-tooltip";
|
||||||
@@ -132,7 +132,7 @@ export const ShowPreviewDeployments = ({ applicationId }: Props) => {
|
|||||||
<div className="p-4">
|
<div className="p-4">
|
||||||
<div className="flex items-start justify-between mb-3">
|
<div className="flex items-start justify-between mb-3">
|
||||||
<div className="flex items-start gap-3">
|
<div className="flex items-start gap-3">
|
||||||
<GitPullRequest className="size-5 text-muted-foreground mt-1 shrink-0" />
|
<GitPullRequest className="size-5 text-muted-foreground mt-1 flex-shrink-0" />
|
||||||
<div>
|
<div>
|
||||||
<div className="font-medium text-sm">
|
<div className="font-medium text-sm">
|
||||||
{deployment.pullRequestTitle}
|
{deployment.pullRequestTitle}
|
||||||
@@ -152,7 +152,7 @@ export const ShowPreviewDeployments = ({ applicationId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="pl-8 space-y-3">
|
<div className="pl-8 space-y-3">
|
||||||
<div className="relative grow">
|
<div className="relative flex-grow">
|
||||||
<Input
|
<Input
|
||||||
value={deploymentUrl}
|
value={deploymentUrl}
|
||||||
readOnly
|
readOnly
|
||||||
@@ -244,7 +244,7 @@ export const ShowPreviewDeployments = ({ applicationId }: Props) => {
|
|||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent
|
<TooltipContent
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="z-60"
|
className="z-[60]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Rebuild the preview deployment without
|
Rebuild the preview deployment without
|
||||||
|
|||||||
@@ -325,7 +325,7 @@ export const ShowPreviewSettings = ({ applicationId }: Props) => {
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="previewHttps"
|
name="previewHttps"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-xs">
|
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-sm">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>HTTPS</FormLabel>
|
<FormLabel>HTTPS</FormLabel>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
@@ -431,7 +431,7 @@ export const ShowPreviewSettings = ({ applicationId }: Props) => {
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="previewRequireCollaboratorPermissions"
|
name="previewRequireCollaboratorPermissions"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-xs col-span-2">
|
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-sm col-span-2">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>
|
<FormLabel>
|
||||||
Require Collaborator Permissions
|
Require Collaborator Permissions
|
||||||
|
|||||||
@@ -355,7 +355,10 @@ export const HandleSchedules = ({ id, scheduleId, scheduleType }: Props) => {
|
|||||||
{scheduleTypeForm === "compose" && (
|
{scheduleTypeForm === "compose" && (
|
||||||
<div className="flex flex-col w-full gap-4">
|
<div className="flex flex-col w-full gap-4">
|
||||||
{errorServices && (
|
{errorServices && (
|
||||||
<AlertBlock type="warning" className="wrap-anywhere">
|
<AlertBlock
|
||||||
|
type="warning"
|
||||||
|
className="[overflow-wrap:anywhere]"
|
||||||
|
>
|
||||||
{errorServices?.message}
|
{errorServices?.message}
|
||||||
</AlertBlock>
|
</AlertBlock>
|
||||||
)}
|
)}
|
||||||
@@ -411,7 +414,7 @@ export const HandleSchedules = ({ id, scheduleId, scheduleType }: Props) => {
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Fetch: Will clone the repository and load the
|
Fetch: Will clone the repository and load the
|
||||||
@@ -441,7 +444,7 @@ export const HandleSchedules = ({ id, scheduleId, scheduleType }: Props) => {
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Cache: If you previously deployed this compose,
|
Cache: If you previously deployed this compose,
|
||||||
@@ -531,7 +534,7 @@ export const HandleSchedules = ({ id, scheduleId, scheduleType }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ export const ShowSchedules = ({ id, scheduleType = "application" }: Props) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Card className=" px-6 shadow-none bg-transparent h-full min-h-[50vh]">
|
<Card className="border px-6 shadow-none bg-transparent h-full min-h-[50vh]">
|
||||||
<CardHeader className="px-0">
|
<CardHeader className="px-0">
|
||||||
<div className="flex justify-between items-center gap-y-2 flex-wrap">
|
<div className="flex justify-between items-center gap-y-2 flex-wrap">
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
@@ -110,12 +110,12 @@ export const ShowSchedules = ({ id, scheduleType = "application" }: Props) => {
|
|||||||
className="flex flex-col sm:flex-row sm:items-center flex-wrap sm:flex-nowrap gap-y-2 justify-between rounded-lg border p-3 transition-colors bg-muted/50 w-full"
|
className="flex flex-col sm:flex-row sm:items-center flex-wrap sm:flex-nowrap gap-y-2 justify-between rounded-lg border p-3 transition-colors bg-muted/50 w-full"
|
||||||
>
|
>
|
||||||
<div className="flex items-start gap-3 w-full sm:w-auto">
|
<div className="flex items-start gap-3 w-full sm:w-auto">
|
||||||
<div className="flex shrink-0 h-9 w-9 items-center justify-center rounded-full bg-primary/5">
|
<div className="flex flex-shrink-0 h-9 w-9 items-center justify-center rounded-full bg-primary/5">
|
||||||
<Clock className="size-4 text-primary/70" />
|
<Clock className="size-4 text-primary/70" />
|
||||||
</div>
|
</div>
|
||||||
<div className="space-y-1.5 w-full sm:w-auto">
|
<div className="space-y-1.5 w-full sm:w-auto">
|
||||||
<div className="flex items-center gap-2 flex-wrap">
|
<div className="flex items-center gap-2 flex-wrap">
|
||||||
<h3 className="text-sm font-medium leading-none wrap-anywhere line-clamp-3">
|
<h3 className="text-sm font-medium leading-none [overflow-wrap:anywhere] line-clamp-3">
|
||||||
{schedule.name}
|
{schedule.name}
|
||||||
</h3>
|
</h3>
|
||||||
<Badge
|
<Badge
|
||||||
@@ -126,7 +126,7 @@ export const ShowSchedules = ({ id, scheduleType = "application" }: Props) => {
|
|||||||
</Badge>
|
</Badge>
|
||||||
</div>
|
</div>
|
||||||
{schedule.description && (
|
{schedule.description && (
|
||||||
<p className="text-xs text-muted-foreground/70 wrap-anywhere line-clamp-2">
|
<p className="text-xs text-muted-foreground/70 [overflow-wrap:anywhere] line-clamp-2">
|
||||||
{schedule.description}
|
{schedule.description}
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
@@ -154,7 +154,7 @@ export const ShowSchedules = ({ id, scheduleType = "application" }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
{schedule.command && (
|
{schedule.command && (
|
||||||
<div className="flex items-start gap-2 max-w-full">
|
<div className="flex items-start gap-2 max-w-full">
|
||||||
<Terminal className="size-3.5 text-muted-foreground/70 shrink-0 mt-0.5" />
|
<Terminal className="size-3.5 text-muted-foreground/70 flex-shrink-0 mt-0.5" />
|
||||||
<code className="font-mono text-[10px] text-muted-foreground/70 break-all max-w-[calc(100%-20px)]">
|
<code className="font-mono text-[10px] text-muted-foreground/70 break-all max-w-[calc(100%-20px)]">
|
||||||
{schedule.command}
|
{schedule.command}
|
||||||
</code>
|
</code>
|
||||||
|
|||||||
@@ -349,7 +349,10 @@ export const HandleVolumeBackups = ({
|
|||||||
<>
|
<>
|
||||||
<div className="flex flex-col w-full gap-4">
|
<div className="flex flex-col w-full gap-4">
|
||||||
{errorServices && (
|
{errorServices && (
|
||||||
<AlertBlock type="warning" className="wrap-anywhere">
|
<AlertBlock
|
||||||
|
type="warning"
|
||||||
|
className="[overflow-wrap:anywhere]"
|
||||||
|
>
|
||||||
{errorServices?.message}
|
{errorServices?.message}
|
||||||
</AlertBlock>
|
</AlertBlock>
|
||||||
)}
|
)}
|
||||||
@@ -405,7 +408,7 @@ export const HandleVolumeBackups = ({
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Fetch: Will clone the repository and load the
|
Fetch: Will clone the repository and load the
|
||||||
@@ -435,7 +438,7 @@ export const HandleVolumeBackups = ({
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Cache: If you previously deployed this
|
Cache: If you previously deployed this
|
||||||
@@ -507,20 +510,11 @@ export const HandleVolumeBackups = ({
|
|||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
{mounts && mounts.length > 0 ? (
|
{mounts?.map((mount) => (
|
||||||
mounts.map((mount) => (
|
<SelectItem key={mount.Name} value={mount.Name || ""}>
|
||||||
<SelectItem
|
|
||||||
key={mount.Name}
|
|
||||||
value={mount.Name || ""}
|
|
||||||
>
|
|
||||||
{mount.Name}
|
{mount.Name}
|
||||||
</SelectItem>
|
</SelectItem>
|
||||||
))
|
))}
|
||||||
) : (
|
|
||||||
<SelectItem value="none" disabled>
|
|
||||||
No volumes found
|
|
||||||
</SelectItem>
|
|
||||||
)}
|
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
|
|||||||
@@ -181,7 +181,7 @@ export const RestoreVolumeBackups = ({ id, type, serverId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -263,7 +263,7 @@ export const RestoreVolumeBackups = ({ id, type, serverId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ export const ShowVolumeBackups = ({
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Card className=" px-6 shadow-none bg-transparent h-full min-h-[50vh]">
|
<Card className="border px-6 shadow-none bg-transparent h-full min-h-[50vh]">
|
||||||
<CardHeader className="px-0">
|
<CardHeader className="px-0">
|
||||||
<div className="flex justify-between items-center flex-wrap gap-2">
|
<div className="flex justify-between items-center flex-wrap gap-2">
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
|
|||||||
@@ -160,7 +160,7 @@ export const IsolatedDeploymentTab = ({ composeId }: Props) => {
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="isolatedDeployment"
|
name="isolatedDeployment"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="mt-4 flex flex-row items-center justify-between rounded-lg border p-3 shadow-xs">
|
<FormItem className="mt-4 flex flex-row items-center justify-between rounded-lg border p-3 shadow-sm">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>
|
<FormLabel>
|
||||||
Enable Isolated Deployment ({data?.appName})
|
Enable Isolated Deployment ({data?.appName})
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
||||||
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
import { Tooltip as TooltipPrimitive } from "radix-ui";
|
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { DialogAction } from "@/components/shared/dialog-action";
|
import { DialogAction } from "@/components/shared/dialog-action";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
@@ -72,7 +72,7 @@ export const ComposeActions = ({ composeId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Downloads the source code and performs a complete build
|
Downloads the source code and performs a complete build
|
||||||
</p>
|
</p>
|
||||||
@@ -113,7 +113,7 @@ export const ComposeActions = ({ composeId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Reload the compose without rebuilding it</p>
|
<p>Reload the compose without rebuilding it</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -154,7 +154,7 @@ export const ComposeActions = ({ composeId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Start the compose (requires a previous successful build)
|
Start the compose (requires a previous successful build)
|
||||||
</p>
|
</p>
|
||||||
@@ -193,7 +193,7 @@ export const ComposeActions = ({ composeId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Stop the currently running compose</p>
|
<p>Stop the currently running compose</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ export const ComposeFileEditor = ({ composeId }: Props) => {
|
|||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="overflow-auto">
|
<FormItem className="overflow-auto">
|
||||||
<FormControl className="">
|
<FormControl className="">
|
||||||
<div className="flex flex-col gap-4 w-full outline-hidden focus:outline-hidden overflow-auto">
|
<div className="flex flex-col gap-4 w-full outline-none focus:outline-none overflow-auto">
|
||||||
<CodeEditor
|
<CodeEditor
|
||||||
// disabled
|
// disabled
|
||||||
language="yaml"
|
language="yaml"
|
||||||
|
|||||||
@@ -190,9 +190,6 @@ export const SaveBitbucketProviderCompose = ({ composeId }: Props) => {
|
|||||||
<FormLabel>Bitbucket Account</FormLabel>
|
<FormLabel>Bitbucket Account</FormLabel>
|
||||||
<Select
|
<Select
|
||||||
onValueChange={(value) => {
|
onValueChange={(value) => {
|
||||||
if (!value) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
field.onChange(value);
|
field.onChange(value);
|
||||||
form.setValue("repository", {
|
form.setValue("repository", {
|
||||||
owner: "",
|
owner: "",
|
||||||
@@ -201,6 +198,7 @@ export const SaveBitbucketProviderCompose = ({ composeId }: Props) => {
|
|||||||
});
|
});
|
||||||
form.setValue("branch", "");
|
form.setValue("branch", "");
|
||||||
}}
|
}}
|
||||||
|
defaultValue={field.value}
|
||||||
value={field.value}
|
value={field.value}
|
||||||
>
|
>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
@@ -249,7 +247,7 @@ export const SaveBitbucketProviderCompose = ({ composeId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -337,7 +335,7 @@ export const SaveBitbucketProviderCompose = ({ composeId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
" w-full justify-between",
|
" w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -504,7 +502,7 @@ export const SaveBitbucketProviderCompose = ({ composeId }: Props) => {
|
|||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormLabel className="mt-0!">Enable Submodules</FormLabel>
|
<FormLabel className="!mt-0">Enable Submodules</FormLabel>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -313,7 +313,7 @@ export const SaveGitProviderCompose = ({ composeId }: Props) => {
|
|||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormLabel className="mt-0!">Enable Submodules</FormLabel>
|
<FormLabel className="!mt-0">Enable Submodules</FormLabel>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -188,9 +188,6 @@ export const SaveGiteaProviderCompose = ({ composeId }: Props) => {
|
|||||||
<FormLabel>Gitea Account</FormLabel>
|
<FormLabel>Gitea Account</FormLabel>
|
||||||
<Select
|
<Select
|
||||||
onValueChange={(value) => {
|
onValueChange={(value) => {
|
||||||
if (!value) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
field.onChange(value);
|
field.onChange(value);
|
||||||
form.setValue("repository", {
|
form.setValue("repository", {
|
||||||
owner: "",
|
owner: "",
|
||||||
@@ -198,6 +195,7 @@ export const SaveGiteaProviderCompose = ({ composeId }: Props) => {
|
|||||||
});
|
});
|
||||||
form.setValue("branch", "");
|
form.setValue("branch", "");
|
||||||
}}
|
}}
|
||||||
|
defaultValue={field.value}
|
||||||
value={field.value}
|
value={field.value}
|
||||||
>
|
>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
@@ -246,7 +244,7 @@ export const SaveGiteaProviderCompose = ({ composeId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -333,7 +331,7 @@ export const SaveGiteaProviderCompose = ({ composeId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -493,7 +491,7 @@ export const SaveGiteaProviderCompose = ({ composeId }: Props) => {
|
|||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormLabel className="mt-0!">Enable Submodules</FormLabel>
|
<FormLabel className="!mt-0">Enable Submodules</FormLabel>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -138,7 +138,7 @@ export const SaveGithubProviderCompose = ({ composeId }: Props) => {
|
|||||||
enableSubmodules: data.enableSubmodules ?? false,
|
enableSubmodules: data.enableSubmodules ?? false,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}, [form.reset, data]);
|
}, [form.reset, data?.composeId, form]);
|
||||||
|
|
||||||
const onSubmit = async (data: GithubProvider) => {
|
const onSubmit = async (data: GithubProvider) => {
|
||||||
await mutateAsync({
|
await mutateAsync({
|
||||||
@@ -179,9 +179,6 @@ export const SaveGithubProviderCompose = ({ composeId }: Props) => {
|
|||||||
<FormLabel>Github Account</FormLabel>
|
<FormLabel>Github Account</FormLabel>
|
||||||
<Select
|
<Select
|
||||||
onValueChange={(value) => {
|
onValueChange={(value) => {
|
||||||
if (!value) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
field.onChange(value);
|
field.onChange(value);
|
||||||
form.setValue("repository", {
|
form.setValue("repository", {
|
||||||
owner: "",
|
owner: "",
|
||||||
@@ -189,6 +186,7 @@ export const SaveGithubProviderCompose = ({ composeId }: Props) => {
|
|||||||
});
|
});
|
||||||
form.setValue("branch", "");
|
form.setValue("branch", "");
|
||||||
}}
|
}}
|
||||||
|
defaultValue={field.value}
|
||||||
value={field.value}
|
value={field.value}
|
||||||
>
|
>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
@@ -236,7 +234,7 @@ export const SaveGithubProviderCompose = ({ composeId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -246,7 +244,7 @@ export const SaveGithubProviderCompose = ({ composeId }: Props) => {
|
|||||||
? "Loading...."
|
? "Loading...."
|
||||||
: (repositories?.find(
|
: (repositories?.find(
|
||||||
(repo) => repo.name === field.value.repo,
|
(repo) => repo.name === field.value.repo,
|
||||||
)?.name ?? field.value.repo)}
|
)?.name ?? "Select repository")}
|
||||||
|
|
||||||
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
||||||
</Button>
|
</Button>
|
||||||
@@ -323,16 +321,16 @@ export const SaveGithubProviderCompose = ({ composeId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
" w-full justify-between",
|
" w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{status === "pending" && fetchStatus === "fetching"
|
{status === "pending" && fetchStatus === "fetching"
|
||||||
? "Loading...."
|
? "Loading...."
|
||||||
: field.value
|
: field.value
|
||||||
? (branches?.find(
|
? branches?.find(
|
||||||
(branch) => branch.name === field.value,
|
(branch) => branch.name === field.value,
|
||||||
)?.name ?? field.value)
|
)?.name
|
||||||
: "Select branch"}
|
: "Select branch"}
|
||||||
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
<ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
||||||
</Button>
|
</Button>
|
||||||
@@ -536,7 +534,7 @@ export const SaveGithubProviderCompose = ({ composeId }: Props) => {
|
|||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormLabel className="mt-0!">Enable Submodules</FormLabel>
|
<FormLabel className="!mt-0">Enable Submodules</FormLabel>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -199,9 +199,6 @@ export const SaveGitlabProviderCompose = ({ composeId }: Props) => {
|
|||||||
<FormLabel>Gitlab Account</FormLabel>
|
<FormLabel>Gitlab Account</FormLabel>
|
||||||
<Select
|
<Select
|
||||||
onValueChange={(value) => {
|
onValueChange={(value) => {
|
||||||
if (!value) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
field.onChange(value);
|
field.onChange(value);
|
||||||
form.setValue("repository", {
|
form.setValue("repository", {
|
||||||
owner: "",
|
owner: "",
|
||||||
@@ -211,6 +208,7 @@ export const SaveGitlabProviderCompose = ({ composeId }: Props) => {
|
|||||||
});
|
});
|
||||||
form.setValue("branch", "");
|
form.setValue("branch", "");
|
||||||
}}
|
}}
|
||||||
|
defaultValue={field.value}
|
||||||
value={field.value}
|
value={field.value}
|
||||||
>
|
>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
@@ -258,7 +256,7 @@ export const SaveGitlabProviderCompose = ({ composeId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -355,7 +353,7 @@ export const SaveGitlabProviderCompose = ({ composeId }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
" w-full justify-between",
|
" w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -522,7 +520,7 @@ export const SaveGitlabProviderCompose = ({ composeId }: Props) => {
|
|||||||
onCheckedChange={field.onChange}
|
onCheckedChange={field.onChange}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormLabel className="mt-0!">Enable Submodules</FormLabel>
|
<FormLabel className="!mt-0">Enable Submodules</FormLabel>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -143,10 +143,7 @@ export const ShowProviderFormCompose = ({ composeId }: Props) => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div className="flex flex-row items-center justify-between w-full overflow-auto">
|
<div className="flex flex-row items-center justify-between w-full overflow-auto">
|
||||||
<TabsList
|
<TabsList className="flex gap-4 justify-start bg-transparent">
|
||||||
variant="line"
|
|
||||||
className="flex gap-4 justify-start bg-transparent"
|
|
||||||
>
|
|
||||||
<TabsTrigger
|
<TabsTrigger
|
||||||
value="github"
|
value="github"
|
||||||
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
className="rounded-none border-b-2 gap-2 border-b-transparent data-[state=active]:border-b-2 data-[state=active]:border-b-border"
|
||||||
|
|||||||
@@ -160,7 +160,7 @@ export const RandomizeCompose = ({ composeId }: Props) => {
|
|||||||
control={form.control}
|
control={form.control}
|
||||||
name="randomize"
|
name="randomize"
|
||||||
render={({ field }) => (
|
render={({ field }) => (
|
||||||
<FormItem className="mt-4 flex flex-row items-center justify-between rounded-lg border p-3 shadow-xs">
|
<FormItem className="mt-4 flex flex-row items-center justify-between rounded-lg border p-3 shadow-sm">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>Apply Randomize</FormLabel>
|
<FormLabel>Apply Randomize</FormLabel>
|
||||||
<FormDescription>
|
<FormDescription>
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ export const ShowConvertedCompose = ({ composeId }: Props) => {
|
|||||||
Preview Compose
|
Preview Compose
|
||||||
</Button>
|
</Button>
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
<DialogContent className="sm:max-w-6xl max-h-200">
|
<DialogContent className="sm:max-w-6xl max-h-[50rem]">
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
<DialogTitle>Converted Compose</DialogTitle>
|
<DialogTitle>Converted Compose</DialogTitle>
|
||||||
<DialogDescription>
|
<DialogDescription>
|
||||||
@@ -67,11 +67,11 @@ export const ShowConvertedCompose = ({ composeId }: Props) => {
|
|||||||
one domain must be specified for this conversion to take effect.
|
one domain must be specified for this conversion to take effect.
|
||||||
</AlertBlock>
|
</AlertBlock>
|
||||||
{isPending ? (
|
{isPending ? (
|
||||||
<div className="flex flex-row items-center justify-center min-h-100 border p-4 rounded-md">
|
<div className="flex flex-row items-center justify-center min-h-[25rem] border p-4 rounded-md">
|
||||||
<Loader2 className="h-8 w-8 text-muted-foreground mb-2 animate-spin" />
|
<Loader2 className="h-8 w-8 text-muted-foreground mb-2 animate-spin" />
|
||||||
</div>
|
</div>
|
||||||
) : compose?.length === 5 ? (
|
) : compose?.length === 5 ? (
|
||||||
<div className="border p-4 rounded-md flex flex-col items-center justify-center min-h-100">
|
<div className="border p-4 rounded-md flex flex-col items-center justify-center min-h-[25rem]">
|
||||||
<Puzzle className="h-8 w-8 text-muted-foreground mb-2" />
|
<Puzzle className="h-8 w-8 text-muted-foreground mb-2" />
|
||||||
<span className="text-muted-foreground">
|
<span className="text-muted-foreground">
|
||||||
No converted compose data available.
|
No converted compose data available.
|
||||||
|
|||||||
@@ -79,7 +79,6 @@ const Schema = z
|
|||||||
schedule: z.string().min(1, "Schedule (Cron) required"),
|
schedule: z.string().min(1, "Schedule (Cron) required"),
|
||||||
prefix: z.string().min(1, "Prefix required"),
|
prefix: z.string().min(1, "Prefix required"),
|
||||||
enabled: z.boolean(),
|
enabled: z.boolean(),
|
||||||
includeEncryptionKey: z.boolean(),
|
|
||||||
database: z.string().min(1, "Database required"),
|
database: z.string().min(1, "Database required"),
|
||||||
keepLatestCount: z.coerce.number().optional(),
|
keepLatestCount: z.coerce.number().optional(),
|
||||||
serviceName: z.string().nullable(),
|
serviceName: z.string().nullable(),
|
||||||
@@ -224,7 +223,6 @@ export const HandleBackup = ({
|
|||||||
: "",
|
: "",
|
||||||
destinationId: "",
|
destinationId: "",
|
||||||
enabled: true,
|
enabled: true,
|
||||||
includeEncryptionKey: true,
|
|
||||||
prefix: "/",
|
prefix: "/",
|
||||||
schedule: "",
|
schedule: "",
|
||||||
keepLatestCount: undefined,
|
keepLatestCount: undefined,
|
||||||
@@ -264,7 +262,6 @@ export const HandleBackup = ({
|
|||||||
: "",
|
: "",
|
||||||
destinationId: backup?.destinationId ?? "",
|
destinationId: backup?.destinationId ?? "",
|
||||||
enabled: backup?.enabled ?? true,
|
enabled: backup?.enabled ?? true,
|
||||||
includeEncryptionKey: backup?.includeEncryptionKey ?? true,
|
|
||||||
prefix: backup?.prefix ?? "/",
|
prefix: backup?.prefix ?? "/",
|
||||||
schedule: backup?.schedule ?? "",
|
schedule: backup?.schedule ?? "",
|
||||||
keepLatestCount: backup?.keepLatestCount ?? undefined,
|
keepLatestCount: backup?.keepLatestCount ?? undefined,
|
||||||
@@ -312,7 +309,6 @@ export const HandleBackup = ({
|
|||||||
prefix: data.prefix,
|
prefix: data.prefix,
|
||||||
schedule: data.schedule,
|
schedule: data.schedule,
|
||||||
enabled: data.enabled,
|
enabled: data.enabled,
|
||||||
includeEncryptionKey: data.includeEncryptionKey,
|
|
||||||
database: data.database,
|
database: data.database,
|
||||||
keepLatestCount: data.keepLatestCount ?? null,
|
keepLatestCount: data.keepLatestCount ?? null,
|
||||||
databaseType: data.databaseType || databaseType,
|
databaseType: data.databaseType || databaseType,
|
||||||
@@ -368,7 +364,7 @@ export const HandleBackup = ({
|
|||||||
>
|
>
|
||||||
<div className="grid grid-cols-1 gap-4">
|
<div className="grid grid-cols-1 gap-4">
|
||||||
{errorServices && (
|
{errorServices && (
|
||||||
<AlertBlock type="warning" className="wrap-anywhere">
|
<AlertBlock type="warning" className="[overflow-wrap:anywhere]">
|
||||||
{errorServices?.message}
|
{errorServices?.message}
|
||||||
</AlertBlock>
|
</AlertBlock>
|
||||||
)}
|
)}
|
||||||
@@ -413,7 +409,7 @@ export const HandleBackup = ({
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -532,7 +528,7 @@ export const HandleBackup = ({
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Fetch: Will clone the repository and load the
|
Fetch: Will clone the repository and load the
|
||||||
@@ -562,7 +558,7 @@ export const HandleBackup = ({
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Cache: If you previously deployed this
|
Cache: If you previously deployed this
|
||||||
@@ -669,31 +665,6 @@ export const HandleBackup = ({
|
|||||||
</FormItem>
|
</FormItem>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
{databaseType === "web-server" && (
|
|
||||||
<FormField
|
|
||||||
control={form.control}
|
|
||||||
name="includeEncryptionKey"
|
|
||||||
render={({ field }) => (
|
|
||||||
<FormItem className="flex flex-row items-center justify-between rounded-lg border p-3 ">
|
|
||||||
<div className="space-y-0.5">
|
|
||||||
<FormLabel>Include encryption key</FormLabel>
|
|
||||||
<FormDescription>
|
|
||||||
Stores the encryption key inside the backup so
|
|
||||||
environment variables can be restored on a new server.
|
|
||||||
Anyone with access to the backup file can decrypt
|
|
||||||
them.
|
|
||||||
</FormDescription>
|
|
||||||
</div>
|
|
||||||
<FormControl>
|
|
||||||
<Switch
|
|
||||||
checked={field.value}
|
|
||||||
onCheckedChange={field.onChange}
|
|
||||||
/>
|
|
||||||
</FormControl>
|
|
||||||
</FormItem>
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
{backupType === "compose" && (
|
{backupType === "compose" && (
|
||||||
<>
|
<>
|
||||||
{form.watch("databaseType") === "postgres" && (
|
{form.watch("databaseType") === "postgres" && (
|
||||||
|
|||||||
@@ -345,7 +345,7 @@ export const RestoreBackup = ({
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -427,7 +427,7 @@ export const RestoreBackup = ({
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full justify-between",
|
"w-full justify-between !bg-input",
|
||||||
!field.value && "text-muted-foreground",
|
!field.value && "text-muted-foreground",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@@ -622,7 +622,7 @@ export const RestoreBackup = ({
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Fetch: Will clone the repository and load the
|
Fetch: Will clone the repository and load the
|
||||||
@@ -652,7 +652,7 @@ export const RestoreBackup = ({
|
|||||||
<TooltipContent
|
<TooltipContent
|
||||||
side="left"
|
side="left"
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="max-w-40"
|
className="max-w-[10rem]"
|
||||||
>
|
>
|
||||||
<p>
|
<p>
|
||||||
Cache: If you previously deployed this compose,
|
Cache: If you previously deployed this compose,
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ export const ShowContainerConfig = ({ containerId, serverId }: Props) => {
|
|||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
<div className="text-wrap rounded-lg border p-4 overflow-y-auto text-sm bg-card max-h-[80vh]">
|
<div className="text-wrap rounded-lg border p-4 overflow-y-auto text-sm bg-card max-h-[80vh]">
|
||||||
<code>
|
<code>
|
||||||
<pre className="whitespace-pre-wrap wrap-break-word">
|
<pre className="whitespace-pre-wrap break-words">
|
||||||
<CodeEditor
|
<CodeEditor
|
||||||
language="json"
|
language="json"
|
||||||
lineWrapping
|
lineWrapping
|
||||||
|
|||||||
@@ -165,7 +165,7 @@ export function AnalyzeLogs({ logs, context }: Props) {
|
|||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
<div className="max-h-[400px] overflow-y-auto">
|
<div className="max-h-[400px] overflow-y-auto">
|
||||||
<div className="prose prose-sm dark:prose-invert max-w-none text-sm wrap-break-word">
|
<div className="prose prose-sm dark:prose-invert max-w-none text-sm break-words">
|
||||||
<ReactMarkdown>{data.analysis}</ReactMarkdown>
|
<ReactMarkdown>{data.analysis}</ReactMarkdown>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ export function LineCountFilter({
|
|||||||
placeholder="Number of lines"
|
placeholder="Number of lines"
|
||||||
value={inputValue}
|
value={inputValue}
|
||||||
onValueChange={handleInputChange}
|
onValueChange={handleInputChange}
|
||||||
className="flex h-9 w-full rounded-md bg-transparent py-3 text-sm outline-hidden placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50"
|
className="flex h-9 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50"
|
||||||
onKeyDown={(e) => {
|
onKeyDown={(e) => {
|
||||||
if (e.key === "Enter") {
|
if (e.key === "Enter") {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@@ -146,7 +146,7 @@ export function LineCountFilter({
|
|||||||
<CommandPrimitive.Item
|
<CommandPrimitive.Item
|
||||||
key={option.value}
|
key={option.value}
|
||||||
onSelect={() => handleSelect(option.label)}
|
onSelect={() => handleSelect(option.label)}
|
||||||
className="relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-hidden data-disabled:pointer-events-none data-disabled:opacity-50 aria-selected:bg-accent aria-selected:text-accent-foreground"
|
className="relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 aria-selected:bg-accent aria-selected:text-accent-foreground"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className={cn(
|
className={cn(
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { Badge } from "@/components/ui/badge";
|
|||||||
import {
|
import {
|
||||||
Tooltip,
|
Tooltip,
|
||||||
TooltipContent,
|
TooltipContent,
|
||||||
|
TooltipPortal,
|
||||||
TooltipProvider,
|
TooltipProvider,
|
||||||
TooltipTrigger,
|
TooltipTrigger,
|
||||||
} from "@/components/ui/tooltip";
|
} from "@/components/ui/tooltip";
|
||||||
@@ -64,20 +65,22 @@ export function TerminalLine({ log, noTimestamp, searchTerm }: LogLineProps) {
|
|||||||
|
|
||||||
const tooltip = (color: string, timestamp: string | null) => {
|
const tooltip = (color: string, timestamp: string | null) => {
|
||||||
const square = (
|
const square = (
|
||||||
<div className={cn("w-2 h-full shrink-0 rounded-[3px]", color)} />
|
<div className={cn("w-2 h-full flex-shrink-0 rounded-[3px]", color)} />
|
||||||
);
|
);
|
||||||
return timestamp ? (
|
return timestamp ? (
|
||||||
<TooltipProvider delayDuration={0} disableHoverableContent>
|
<TooltipProvider delayDuration={0} disableHoverableContent>
|
||||||
<Tooltip>
|
<Tooltip>
|
||||||
<TooltipTrigger asChild>{square}</TooltipTrigger>
|
<TooltipTrigger asChild>{square}</TooltipTrigger>
|
||||||
|
<TooltipPortal>
|
||||||
<TooltipContent
|
<TooltipContent
|
||||||
sideOffset={5}
|
sideOffset={5}
|
||||||
className="bg-popover border-border z-99999"
|
className="bg-popover border-border z-[99999]"
|
||||||
>
|
>
|
||||||
<p className="text text-xs text-muted-foreground break-all max-w-md">
|
<p className="text text-xs text-muted-foreground break-all max-w-md">
|
||||||
<pre>{timestamp}</pre>
|
<pre>{timestamp}</pre>
|
||||||
</p>
|
</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
|
</TooltipPortal>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</TooltipProvider>
|
</TooltipProvider>
|
||||||
) : (
|
) : (
|
||||||
@@ -104,7 +107,7 @@ export function TerminalLine({ log, noTimestamp, searchTerm }: LogLineProps) {
|
|||||||
{/* <Square className="size-4 text-muted-foreground opacity-0 group-hover/logitem:opacity-100 transition-opacity" /> */}
|
{/* <Square className="size-4 text-muted-foreground opacity-0 group-hover/logitem:opacity-100 transition-opacity" /> */}
|
||||||
{tooltip(color, rawTimestamp)}
|
{tooltip(color, rawTimestamp)}
|
||||||
{!noTimestamp && (
|
{!noTimestamp && (
|
||||||
<span className="select-none pl-2 text-muted-foreground w-full sm:w-40 shrink-0">
|
<span className="select-none pl-2 text-muted-foreground w-full sm:w-40 flex-shrink-0">
|
||||||
{formattedTime}
|
{formattedTime}
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -97,23 +97,17 @@ export const getLogType = (message: string): LogStyle => {
|
|||||||
return LOG_STYLES.info;
|
return LOG_STYLES.info;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Key/value pairs that explicitly report a non-error (e.g. "error: none",
|
|
||||||
// "failed: false") must not trigger the error keyword patterns below
|
|
||||||
const nonErrorKeyValues =
|
|
||||||
/\b(?:error|err|errors|failed|failure|failures)s?\s*[:=]\s*(?:none|null|nil|false|0|no|-|""|'')(?=[\s,;.)\]]|$)/gi;
|
|
||||||
const errorScope = lowerMessage.replace(nonErrorKeyValues, "");
|
|
||||||
|
|
||||||
if (
|
if (
|
||||||
/(?:^|\s)(?:error|err):?\s/i.test(errorScope) ||
|
/(?:^|\s)(?:error|err):?\s/i.test(lowerMessage) ||
|
||||||
/\b(?:exception|failed|failure)\b/i.test(errorScope) ||
|
/\b(?:exception|failed|failure)\b/i.test(lowerMessage) ||
|
||||||
/(?:stack\s?trace):\s*$/i.test(errorScope) ||
|
/(?:stack\s?trace):\s*$/i.test(lowerMessage) ||
|
||||||
/^\s*at\s+[\w.]+\s*\(?.+:\d+:\d+\)?/.test(errorScope) ||
|
/^\s*at\s+[\w.]+\s*\(?.+:\d+:\d+\)?/.test(lowerMessage) ||
|
||||||
/\b(?:uncaught|unhandled)\s+(?:exception|error)\b/i.test(errorScope) ||
|
/\b(?:uncaught|unhandled)\s+(?:exception|error)\b/i.test(lowerMessage) ||
|
||||||
/Error:\s.*(?:in|at)\s+.*:\d+(?::\d+)?/.test(errorScope) ||
|
/Error:\s.*(?:in|at)\s+.*:\d+(?::\d+)?/.test(lowerMessage) ||
|
||||||
/\b(?:errno|code):\s*(?:\d+|[A-Z_]+)\b/i.test(errorScope) ||
|
/\b(?:errno|code):\s*(?:\d+|[A-Z_]+)\b/i.test(lowerMessage) ||
|
||||||
/\[(?:error|err|fatal)\]/i.test(errorScope) ||
|
/\[(?:error|err|fatal)\]/i.test(lowerMessage) ||
|
||||||
/\b(?:crash|critical|fatal)\b/i.test(errorScope) ||
|
/\b(?:crash|critical|fatal)\b/i.test(lowerMessage) ||
|
||||||
/\b(?:fail(?:ed|ure)?|broken|dead)\b/i.test(errorScope)
|
/\b(?:fail(?:ed|ure)?|broken|dead)\b/i.test(lowerMessage)
|
||||||
) {
|
) {
|
||||||
return LOG_STYLES.error;
|
return LOG_STYLES.error;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ export const RemoveContainerDialog = ({ containerId, serverId }: Props) => {
|
|||||||
<AlertDialog>
|
<AlertDialog>
|
||||||
<AlertDialogTrigger asChild>
|
<AlertDialogTrigger asChild>
|
||||||
<DropdownMenuItem
|
<DropdownMenuItem
|
||||||
className="w-full cursor-pointer text-red-500 hover:text-red-600!"
|
className="w-full cursor-pointer text-red-500 hover:!text-red-600"
|
||||||
onSelect={(e) => e.preventDefault()}
|
onSelect={(e) => e.preventDefault()}
|
||||||
>
|
>
|
||||||
Remove Container
|
Remove Container
|
||||||
|
|||||||
@@ -1,13 +1,10 @@
|
|||||||
import type { ColumnDef } from "@tanstack/react-table";
|
import type { ColumnDef } from "@tanstack/react-table";
|
||||||
import copy from "copy-to-clipboard";
|
|
||||||
import { ArrowUpDown, MoreHorizontal } from "lucide-react";
|
import { ArrowUpDown, MoreHorizontal } from "lucide-react";
|
||||||
import { toast } from "sonner";
|
|
||||||
import { Badge } from "@/components/ui/badge";
|
import { Badge } from "@/components/ui/badge";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import {
|
import {
|
||||||
DropdownMenu,
|
DropdownMenu,
|
||||||
DropdownMenuContent,
|
DropdownMenuContent,
|
||||||
DropdownMenuItem,
|
|
||||||
DropdownMenuLabel,
|
DropdownMenuLabel,
|
||||||
DropdownMenuTrigger,
|
DropdownMenuTrigger,
|
||||||
} from "@/components/ui/dropdown-menu";
|
} from "@/components/ui/dropdown-menu";
|
||||||
@@ -40,7 +37,6 @@ export const columns: ColumnDef<Container>[] = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
accessorKey: "state",
|
accessorKey: "state",
|
||||||
filterFn: "equals",
|
|
||||||
header: ({ column }) => {
|
header: ({ column }) => {
|
||||||
return (
|
return (
|
||||||
<Button
|
<Button
|
||||||
@@ -60,7 +56,7 @@ export const columns: ColumnDef<Container>[] = [
|
|||||||
variant={
|
variant={
|
||||||
value === "running"
|
value === "running"
|
||||||
? "default"
|
? "default"
|
||||||
: value === "exited" || value === "dead"
|
: value === "failed"
|
||||||
? "destructive"
|
? "destructive"
|
||||||
: "secondary"
|
: "secondary"
|
||||||
}
|
}
|
||||||
@@ -103,28 +99,6 @@ export const columns: ColumnDef<Container>[] = [
|
|||||||
},
|
},
|
||||||
cell: ({ row }) => <div className="lowercase">{row.getValue("image")}</div>,
|
cell: ({ row }) => <div className="lowercase">{row.getValue("image")}</div>,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
accessorKey: "ports",
|
|
||||||
header: ({ column }) => {
|
|
||||||
return (
|
|
||||||
<Button
|
|
||||||
variant="ghost"
|
|
||||||
onClick={() => column.toggleSorting(column.getIsSorted() === "asc")}
|
|
||||||
>
|
|
||||||
Ports
|
|
||||||
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
||||||
</Button>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
cell: ({ row }) => {
|
|
||||||
const value = row.getValue("ports") as string;
|
|
||||||
return (
|
|
||||||
<div className="max-w-[16rem] truncate lowercase" title={value}>
|
|
||||||
{value}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "actions",
|
id: "actions",
|
||||||
enableHiding: false,
|
enableHiding: false,
|
||||||
@@ -141,14 +115,6 @@ export const columns: ColumnDef<Container>[] = [
|
|||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
<DropdownMenuContent align="end">
|
<DropdownMenuContent align="end">
|
||||||
<DropdownMenuLabel>Actions</DropdownMenuLabel>
|
<DropdownMenuLabel>Actions</DropdownMenuLabel>
|
||||||
<DropdownMenuItem
|
|
||||||
onClick={() => {
|
|
||||||
copy(container.containerId);
|
|
||||||
toast.success("Container ID copied to clipboard");
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Copy Container ID
|
|
||||||
</DropdownMenuItem>
|
|
||||||
<ShowDockerModalLogs
|
<ShowDockerModalLogs
|
||||||
containerId={container.containerId}
|
containerId={container.containerId}
|
||||||
serverId={container.serverId}
|
serverId={container.serverId}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import {
|
|||||||
useReactTable,
|
useReactTable,
|
||||||
type VisibilityState,
|
type VisibilityState,
|
||||||
} from "@tanstack/react-table";
|
} from "@tanstack/react-table";
|
||||||
import { ChevronDown, Container, RefreshCw } from "lucide-react";
|
import { ChevronDown, Container } from "lucide-react";
|
||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import {
|
import {
|
||||||
@@ -26,13 +26,6 @@ import {
|
|||||||
DropdownMenuTrigger,
|
DropdownMenuTrigger,
|
||||||
} from "@/components/ui/dropdown-menu";
|
} from "@/components/ui/dropdown-menu";
|
||||||
import { Input } from "@/components/ui/input";
|
import { Input } from "@/components/ui/input";
|
||||||
import {
|
|
||||||
Select,
|
|
||||||
SelectContent,
|
|
||||||
SelectItem,
|
|
||||||
SelectTrigger,
|
|
||||||
SelectValue,
|
|
||||||
} from "@/components/ui/select";
|
|
||||||
import {
|
import {
|
||||||
Table,
|
Table,
|
||||||
TableBody,
|
TableBody,
|
||||||
@@ -51,26 +44,10 @@ interface Props {
|
|||||||
serverId?: string;
|
serverId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const CONTAINER_STATES = [
|
|
||||||
"running",
|
|
||||||
"exited",
|
|
||||||
"paused",
|
|
||||||
"restarting",
|
|
||||||
"created",
|
|
||||||
"removing",
|
|
||||||
"dead",
|
|
||||||
];
|
|
||||||
|
|
||||||
export const ShowContainers = ({ serverId }: Props) => {
|
export const ShowContainers = ({ serverId }: Props) => {
|
||||||
const { data, isPending, refetch, isRefetching } =
|
const { data, isPending } = api.docker.getContainers.useQuery({
|
||||||
api.docker.getContainers.useQuery(
|
|
||||||
{
|
|
||||||
serverId,
|
serverId,
|
||||||
},
|
});
|
||||||
{
|
|
||||||
refetchInterval: 10_000,
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
const [sorting, setSorting] = React.useState<SortingState>([]);
|
const [sorting, setSorting] = React.useState<SortingState>([]);
|
||||||
const [columnFilters, setColumnFilters] = React.useState<ColumnFiltersState>(
|
const [columnFilters, setColumnFilters] = React.useState<ColumnFiltersState>(
|
||||||
@@ -129,48 +106,12 @@ export const ShowContainers = ({ serverId }: Props) => {
|
|||||||
}
|
}
|
||||||
className="md:max-w-sm"
|
className="md:max-w-sm"
|
||||||
/>
|
/>
|
||||||
<Select
|
|
||||||
value={
|
|
||||||
(table.getColumn("state")?.getFilterValue() as string) ??
|
|
||||||
"all"
|
|
||||||
}
|
|
||||||
onValueChange={(value) =>
|
|
||||||
table
|
|
||||||
.getColumn("state")
|
|
||||||
?.setFilterValue(value === "all" ? undefined : value)
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<SelectTrigger className="w-40 max-sm:w-full capitalize">
|
|
||||||
<SelectValue placeholder="Filter by state" />
|
|
||||||
</SelectTrigger>
|
|
||||||
<SelectContent>
|
|
||||||
<SelectItem value="all">All states</SelectItem>
|
|
||||||
{CONTAINER_STATES.map((state) => (
|
|
||||||
<SelectItem
|
|
||||||
key={state}
|
|
||||||
value={state}
|
|
||||||
className="capitalize"
|
|
||||||
>
|
|
||||||
{state}
|
|
||||||
</SelectItem>
|
|
||||||
))}
|
|
||||||
</SelectContent>
|
|
||||||
</Select>
|
|
||||||
<Button
|
|
||||||
variant="outline"
|
|
||||||
size="icon"
|
|
||||||
className="shrink-0 sm:ml-auto"
|
|
||||||
onClick={() => refetch()}
|
|
||||||
disabled={isRefetching}
|
|
||||||
>
|
|
||||||
<RefreshCw
|
|
||||||
className={`h-4 w-4 ${isRefetching ? "animate-spin" : ""}`}
|
|
||||||
/>
|
|
||||||
<span className="sr-only">Refresh</span>
|
|
||||||
</Button>
|
|
||||||
<DropdownMenu>
|
<DropdownMenu>
|
||||||
<DropdownMenuTrigger asChild>
|
<DropdownMenuTrigger asChild>
|
||||||
<Button variant="outline" className="max-sm:w-full">
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="sm:ml-auto max-sm:w-full"
|
||||||
|
>
|
||||||
Columns <ChevronDown className="ml-2 h-4 w-4" />
|
Columns <ChevronDown className="ml-2 h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ export const ShowTraefikFile = ({ path, serverId }: Props) => {
|
|||||||
<Form {...form}>
|
<Form {...form}>
|
||||||
<form
|
<form
|
||||||
onSubmit={form.handleSubmit(onSubmit)}
|
onSubmit={form.handleSubmit(onSubmit)}
|
||||||
className="w-full relative z-5"
|
className="w-full relative z-[5]"
|
||||||
>
|
>
|
||||||
<div className="flex flex-col overflow-auto">
|
<div className="flex flex-col overflow-auto">
|
||||||
{isLoadingFile ? (
|
{isLoadingFile ? (
|
||||||
@@ -123,7 +123,7 @@ export const ShowTraefikFile = ({ path, serverId }: Props) => {
|
|||||||
<FormControl>
|
<FormControl>
|
||||||
<CodeEditor
|
<CodeEditor
|
||||||
lineWrapping
|
lineWrapping
|
||||||
wrapperClassName="h-140 font-mono"
|
wrapperClassName="h-[35rem] font-mono"
|
||||||
placeholder={`http:
|
placeholder={`http:
|
||||||
routers:
|
routers:
|
||||||
router-name:
|
router-name:
|
||||||
@@ -143,7 +143,7 @@ routers:
|
|||||||
</pre>
|
</pre>
|
||||||
<div className="flex justify-end absolute z-50 right-6 top-8">
|
<div className="flex justify-end absolute z-50 right-6 top-8">
|
||||||
<Button
|
<Button
|
||||||
className="shadow-xs"
|
className="shadow-sm"
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
type="button"
|
type="button"
|
||||||
onClick={async () => {
|
onClick={async () => {
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ export const ShowTraefikSystem = ({ serverId }: Props) => {
|
|||||||
<>
|
<>
|
||||||
<Tree
|
<Tree
|
||||||
data={directories}
|
data={directories}
|
||||||
className="lg:max-w-76 w-full lg:h-[660px] border rounded-lg"
|
className="lg:max-w-[19rem] w-full lg:h-[660px] border rounded-lg"
|
||||||
onSelectChange={(item) => setFile(item?.id || null)}
|
onSelectChange={(item) => setFile(item?.id || null)}
|
||||||
folderIcon={Folder}
|
folderIcon={Folder}
|
||||||
itemIcon={Workflow}
|
itemIcon={Workflow}
|
||||||
|
|||||||
@@ -197,7 +197,7 @@ export const ImpersonationBar = () => {
|
|||||||
>
|
>
|
||||||
{selectedUser ? (
|
{selectedUser ? (
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<UserIcon className="mr-2 h-4 w-4 shrink-0" />
|
<UserIcon className="mr-2 h-4 w-4 flex-shrink-0" />
|
||||||
<span className="truncate flex flex-col items-start">
|
<span className="truncate flex flex-col items-start">
|
||||||
<span className="text-sm font-medium">
|
<span className="text-sm font-medium">
|
||||||
{`${selectedUser.name} ${selectedUser.lastName}`.trim() ||
|
{`${selectedUser.name} ${selectedUser.lastName}`.trim() ||
|
||||||
@@ -245,7 +245,7 @@ export const ImpersonationBar = () => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<span className="flex items-center gap-2 flex-1">
|
<span className="flex items-center gap-2 flex-1">
|
||||||
<UserIcon className="h-4 w-4 shrink-0" />
|
<UserIcon className="h-4 w-4 flex-shrink-0" />
|
||||||
<span className="flex flex-col items-start">
|
<span className="flex flex-col items-start">
|
||||||
<span className="text-sm font-medium">
|
<span className="text-sm font-medium">
|
||||||
{`${user.name} ${user.lastName}`.trim() ||
|
{`${user.name} ${user.lastName}`.trim() ||
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
||||||
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
||||||
import { Tooltip as TooltipPrimitive } from "radix-ui";
|
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { DialogAction } from "@/components/shared/dialog-action";
|
import { DialogAction } from "@/components/shared/dialog-action";
|
||||||
@@ -96,7 +96,7 @@ export const ShowGeneralLibsql = ({ libsqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Downloads and sets up the Libsql database</p>
|
<p>Downloads and sets up the Libsql database</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -136,7 +136,7 @@ export const ShowGeneralLibsql = ({ libsqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Restart the Libsql service without rebuilding</p>
|
<p>Restart the Libsql service without rebuilding</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -176,7 +176,7 @@ export const ShowGeneralLibsql = ({ libsqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Start the Libsql database (requires a previous
|
Start the Libsql database (requires a previous
|
||||||
successful setup)
|
successful setup)
|
||||||
@@ -218,7 +218,7 @@ export const ShowGeneralLibsql = ({ libsqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Stop the currently running Libsql database</p>
|
<p>Stop the currently running Libsql database</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -243,7 +243,7 @@ export const ShowGeneralLibsql = ({ libsqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Open a terminal to the Libsql container</p>
|
<p>Open a terminal to the Libsql container</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import { SelectGroup } from "@radix-ui/react-select";
|
||||||
import { ToggleVisibilityInput } from "@/components/shared/toggle-visibility-input";
|
import { ToggleVisibilityInput } from "@/components/shared/toggle-visibility-input";
|
||||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
import { Input } from "@/components/ui/input";
|
import { Input } from "@/components/ui/input";
|
||||||
@@ -5,7 +6,6 @@ import { Label } from "@/components/ui/label";
|
|||||||
import {
|
import {
|
||||||
Select,
|
Select,
|
||||||
SelectContent,
|
SelectContent,
|
||||||
SelectGroup,
|
|
||||||
SelectItem,
|
SelectItem,
|
||||||
SelectTrigger,
|
SelectTrigger,
|
||||||
SelectValue,
|
SelectValue,
|
||||||
@@ -28,7 +28,7 @@ export const ShowInternalLibsqlCredentials = ({ libsqlId }: Props) => {
|
|||||||
<div className="grid w-full md:grid-cols-2 gap-4 md:gap-8">
|
<div className="grid w-full md:grid-cols-2 gap-4 md:gap-8">
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>User</Label>
|
<Label>User</Label>
|
||||||
<Input enableCopyButton disabled value={data?.databaseUser} />
|
<Input disabled value={data?.databaseUser} />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Sqld Node</Label>
|
<Label>Sqld Node</Label>
|
||||||
@@ -71,7 +71,7 @@ export const ShowInternalLibsqlCredentials = ({ libsqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Internal Host</Label>
|
<Label>Internal Host</Label>
|
||||||
<Input enableCopyButton disabled value={data?.appName} />
|
<Input disabled value={data?.appName} />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Enable Namespaces</Label>
|
<Label>Enable Namespaces</Label>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
||||||
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
||||||
import { Tooltip as TooltipPrimitive } from "radix-ui";
|
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { DialogAction } from "@/components/shared/dialog-action";
|
import { DialogAction } from "@/components/shared/dialog-action";
|
||||||
@@ -99,7 +99,7 @@ export const ShowGeneralMariadb = ({ mariadbId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Downloads and sets up the MariaDB database</p>
|
<p>Downloads and sets up the MariaDB database</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -141,7 +141,7 @@ export const ShowGeneralMariadb = ({ mariadbId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Restart the MariaDB service without rebuilding</p>
|
<p>Restart the MariaDB service without rebuilding</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -183,7 +183,7 @@ export const ShowGeneralMariadb = ({ mariadbId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Start the MariaDB database (requires a previous
|
Start the MariaDB database (requires a previous
|
||||||
successful setup)
|
successful setup)
|
||||||
@@ -225,7 +225,7 @@ export const ShowGeneralMariadb = ({ mariadbId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Stop the currently running MariaDB database</p>
|
<p>Stop the currently running MariaDB database</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -250,7 +250,7 @@ export const ShowGeneralMariadb = ({ mariadbId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Open a terminal to the MariaDB container</p>
|
<p>Open a terminal to the MariaDB container</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
|
|||||||
@@ -25,11 +25,11 @@ export const ShowInternalMariadbCredentials = ({ mariadbId }: Props) => {
|
|||||||
<div className="grid w-full md:grid-cols-2 gap-4 md:gap-8">
|
<div className="grid w-full md:grid-cols-2 gap-4 md:gap-8">
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>User</Label>
|
<Label>User</Label>
|
||||||
<Input enableCopyButton disabled value={data?.databaseUser} />
|
<Input disabled value={data?.databaseUser} />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Database Name</Label>
|
<Label>Database Name</Label>
|
||||||
<Input enableCopyButton disabled value={data?.databaseName} />
|
<Input disabled value={data?.databaseName} />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Password</Label>
|
<Label>Password</Label>
|
||||||
@@ -79,7 +79,7 @@ export const ShowInternalMariadbCredentials = ({ mariadbId }: Props) => {
|
|||||||
|
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Internal Host</Label>
|
<Label>Internal Host</Label>
|
||||||
<Input enableCopyButton disabled value={data?.appName} />
|
<Input disabled value={data?.appName} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex flex-col gap-2 md:col-span-2">
|
<div className="flex flex-col gap-2 md:col-span-2">
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
||||||
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
||||||
import { Tooltip as TooltipPrimitive } from "radix-ui";
|
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { DialogAction } from "@/components/shared/dialog-action";
|
import { DialogAction } from "@/components/shared/dialog-action";
|
||||||
@@ -99,7 +99,7 @@ export const ShowGeneralMongo = ({ mongoId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Downloads and sets up the MongoDB database</p>
|
<p>Downloads and sets up the MongoDB database</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -139,7 +139,7 @@ export const ShowGeneralMongo = ({ mongoId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Restart the MongoDB service without rebuilding</p>
|
<p>Restart the MongoDB service without rebuilding</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -179,7 +179,7 @@ export const ShowGeneralMongo = ({ mongoId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Start the MongoDB database (requires a previous
|
Start the MongoDB database (requires a previous
|
||||||
successful setup)
|
successful setup)
|
||||||
@@ -219,7 +219,7 @@ export const ShowGeneralMongo = ({ mongoId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Stop the currently running MongoDB database</p>
|
<p>Stop the currently running MongoDB database</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -244,7 +244,7 @@ export const ShowGeneralMongo = ({ mongoId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Open a terminal to the MongoDB container</p>
|
<p>Open a terminal to the MongoDB container</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ export const ShowInternalMongoCredentials = ({ mongoId }: Props) => {
|
|||||||
<div className="grid w-full md:grid-cols-2 gap-4 md:gap-8">
|
<div className="grid w-full md:grid-cols-2 gap-4 md:gap-8">
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>User</Label>
|
<Label>User</Label>
|
||||||
<Input enableCopyButton disabled value={data?.databaseUser} />
|
<Input disabled value={data?.databaseUser} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
@@ -55,7 +55,7 @@ export const ShowInternalMongoCredentials = ({ mongoId }: Props) => {
|
|||||||
|
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Internal Host</Label>
|
<Label>Internal Host</Label>
|
||||||
<Input enableCopyButton disabled value={data?.appName} />
|
<Input disabled value={data?.appName} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex flex-col gap-2 md:col-span-2">
|
<div className="flex flex-col gap-2 md:col-span-2">
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ export const DockerBlockChart = ({ accumulativeData }: Props) => {
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ChartContainer config={chartConfig} className="mt-4 h-40 w-full">
|
<ChartContainer config={chartConfig} className="mt-4 h-[10rem] w-full">
|
||||||
<AreaChart
|
<AreaChart
|
||||||
data={transformedData}
|
data={transformedData}
|
||||||
margin={{ top: 10, right: 10, left: 0, bottom: 0 }}
|
margin={{ top: 10, right: 10, left: 0, bottom: 0 }}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ export const DockerCpuChart = ({ accumulativeData }: Props) => {
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ChartContainer config={chartConfig} className="mt-4 h-40 w-full">
|
<ChartContainer config={chartConfig} className="mt-4 h-[10rem] w-full">
|
||||||
<AreaChart
|
<AreaChart
|
||||||
data={transformedData}
|
data={transformedData}
|
||||||
margin={{ top: 10, right: 10, left: 0, bottom: 0 }}
|
margin={{ top: 10, right: 10, left: 0, bottom: 0 }}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ export const DockerDiskChart = ({ accumulativeData, diskTotal }: Props) => {
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ChartContainer config={chartConfig} className="mt-4 h-40 w-full">
|
<ChartContainer config={chartConfig} className="mt-4 h-[10rem] w-full">
|
||||||
<AreaChart
|
<AreaChart
|
||||||
data={transformedData}
|
data={transformedData}
|
||||||
margin={{ top: 10, right: 10, left: 0, bottom: 0 }}
|
margin={{ top: 10, right: 10, left: 0, bottom: 0 }}
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ export const DockerDiskUsageChart = () => {
|
|||||||
|
|
||||||
if (isLoading) {
|
if (isLoading) {
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center justify-center h-64">
|
<div className="flex items-center justify-center h-[16rem]">
|
||||||
<Loader2 className="size-5 animate-spin text-muted-foreground" />
|
<Loader2 className="size-5 animate-spin text-muted-foreground" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ export const DockerMemoryChart = ({
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ChartContainer config={chartConfig} className="mt-4 h-40 w-full">
|
<ChartContainer config={chartConfig} className="mt-4 h-[10rem] w-full">
|
||||||
<AreaChart
|
<AreaChart
|
||||||
data={transformedData}
|
data={transformedData}
|
||||||
margin={{ top: 10, right: 10, left: 0, bottom: 0 }}
|
margin={{ top: 10, right: 10, left: 0, bottom: 0 }}
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ export const DockerNetworkChart = ({ accumulativeData }: Props) => {
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ChartContainer config={chartConfig} className="mt-4 h-40 w-full">
|
<ChartContainer config={chartConfig} className="mt-4 h-[10rem] w-full">
|
||||||
<AreaChart
|
<AreaChart
|
||||||
data={transformedData}
|
data={transformedData}
|
||||||
margin={{ top: 10, right: 10, left: 0, bottom: 0 }}
|
margin={{ top: 10, right: 10, left: 0, bottom: 0 }}
|
||||||
|
|||||||
@@ -227,7 +227,7 @@ export const ContainerFreeMonitoring = ({
|
|||||||
String(currentData.cpu.value ?? "0%").replace("%", ""),
|
String(currentData.cpu.value ?? "0%").replace("%", ""),
|
||||||
10,
|
10,
|
||||||
)}
|
)}
|
||||||
className="w-full"
|
className="w-[100%]"
|
||||||
/>
|
/>
|
||||||
<DockerCpuChart accumulativeData={accumulativeData.cpu} />
|
<DockerCpuChart accumulativeData={accumulativeData.cpu} />
|
||||||
</div>
|
</div>
|
||||||
@@ -250,7 +250,7 @@ export const ContainerFreeMonitoring = ({
|
|||||||
convertMemoryToBytes(currentData.memory.value.total)) *
|
convertMemoryToBytes(currentData.memory.value.total)) *
|
||||||
100
|
100
|
||||||
}
|
}
|
||||||
className="w-full"
|
className="w-[100%]"
|
||||||
/>
|
/>
|
||||||
<DockerMemoryChart
|
<DockerMemoryChart
|
||||||
accumulativeData={accumulativeData.memory}
|
accumulativeData={accumulativeData.memory}
|
||||||
@@ -275,7 +275,7 @@ export const ContainerFreeMonitoring = ({
|
|||||||
</span>
|
</span>
|
||||||
<Progress
|
<Progress
|
||||||
value={currentData.disk.value.diskUsedPercentage}
|
value={currentData.disk.value.diskUsedPercentage}
|
||||||
className="w-full"
|
className="w-[100%]"
|
||||||
/>
|
/>
|
||||||
<DockerDiskChart
|
<DockerDiskChart
|
||||||
accumulativeData={accumulativeData.disk}
|
accumulativeData={accumulativeData.disk}
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ export const ContainerBlockChart = ({ data }: Props) => {
|
|||||||
if (active && payload && payload.length) {
|
if (active && payload && payload.length) {
|
||||||
const data = payload?.[0]?.payload;
|
const data = payload?.[0]?.payload;
|
||||||
return (
|
return (
|
||||||
<div className="rounded-lg border bg-background p-2 shadow-xs">
|
<div className="rounded-lg border bg-background p-2 shadow-sm">
|
||||||
<div className="grid grid-cols-2 gap-2">
|
<div className="grid grid-cols-2 gap-2">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ export const ContainerCPUChart = ({ data }: Props) => {
|
|||||||
if (active && payload && payload.length) {
|
if (active && payload && payload.length) {
|
||||||
const data = payload?.[0]?.payload;
|
const data = payload?.[0]?.payload;
|
||||||
return (
|
return (
|
||||||
<div className="rounded-lg border bg-background p-2 shadow-xs">
|
<div className="rounded-lg border bg-background p-2 shadow-sm">
|
||||||
<div className="grid grid-cols-2 gap-2">
|
<div className="grid grid-cols-2 gap-2">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ export const ContainerMemoryChart = ({ data }: Props) => {
|
|||||||
if (active && payload && payload.length) {
|
if (active && payload && payload.length) {
|
||||||
const data = payload?.[0]?.payload;
|
const data = payload?.[0]?.payload;
|
||||||
return (
|
return (
|
||||||
<div className="rounded-lg border bg-background p-2 shadow-xs">
|
<div className="rounded-lg border bg-background p-2 shadow-sm">
|
||||||
<div className="grid grid-cols-2 gap-2">
|
<div className="grid grid-cols-2 gap-2">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ export const ContainerNetworkChart = ({ data }: Props) => {
|
|||||||
if (active && payload && payload.length) {
|
if (active && payload && payload.length) {
|
||||||
const data = payload?.[0]?.payload;
|
const data = payload?.[0]?.payload;
|
||||||
return (
|
return (
|
||||||
<div className="rounded-lg border bg-background p-2 shadow-xs">
|
<div className="rounded-lg border bg-background p-2 shadow-sm">
|
||||||
<div className="grid grid-cols-2 gap-2">
|
<div className="grid grid-cols-2 gap-2">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ export function CPUChart({ data }: CPUChartProps) {
|
|||||||
if (active && payload && payload.length) {
|
if (active && payload && payload.length) {
|
||||||
const data = payload?.[0]?.payload;
|
const data = payload?.[0]?.payload;
|
||||||
return (
|
return (
|
||||||
<div className="rounded-lg border bg-background p-2 shadow-xs">
|
<div className="rounded-lg border bg-background p-2 shadow-sm">
|
||||||
<div className="grid grid-cols-2 gap-2">
|
<div className="grid grid-cols-2 gap-2">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ export function MemoryChart({ data }: MemoryChartProps) {
|
|||||||
if (active && payload && payload.length) {
|
if (active && payload && payload.length) {
|
||||||
const data = payload?.[0]?.payload;
|
const data = payload?.[0]?.payload;
|
||||||
return (
|
return (
|
||||||
<div className="rounded-lg border bg-background p-2 shadow-xs">
|
<div className="rounded-lg border bg-background p-2 shadow-sm">
|
||||||
<div className="grid grid-cols-2 gap-2">
|
<div className="grid grid-cols-2 gap-2">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ export function NetworkChart({ data }: NetworkChartProps) {
|
|||||||
if (active && payload && payload.length) {
|
if (active && payload && payload.length) {
|
||||||
const data = payload?.[0]?.payload;
|
const data = payload?.[0]?.payload;
|
||||||
return (
|
return (
|
||||||
<div className="rounded-lg border bg-background p-2 shadow-xs">
|
<div className="rounded-lg border bg-background p-2 shadow-sm">
|
||||||
<div className="grid grid-cols-2 gap-2">
|
<div className="grid grid-cols-2 gap-2">
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
<span className="text-[0.70rem] uppercase text-muted-foreground">
|
||||||
|
|||||||
@@ -202,7 +202,7 @@ export const ShowPaidMonitoring = ({
|
|||||||
|
|
||||||
{/* Stats Cards */}
|
{/* Stats Cards */}
|
||||||
<div className="grid gap-4 grid-cols-1 sm:grid-cols-2 xl:grid-cols-4">
|
<div className="grid gap-4 grid-cols-1 sm:grid-cols-2 xl:grid-cols-4">
|
||||||
<div className="rounded-lg border text-card-foreground shadow-xs p-6">
|
<div className="rounded-lg border text-card-foreground shadow-sm p-6">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<Clock className="h-4 w-4 text-muted-foreground" />
|
<Clock className="h-4 w-4 text-muted-foreground" />
|
||||||
<h3 className="text-sm font-medium">Uptime</h3>
|
<h3 className="text-sm font-medium">Uptime</h3>
|
||||||
@@ -212,7 +212,7 @@ export const ShowPaidMonitoring = ({
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="rounded-lg border text-card-foreground shadow-xs p-6">
|
<div className="rounded-lg border text-card-foreground shadow-sm p-6">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<Cpu className="h-4 w-4 text-muted-foreground" />
|
<Cpu className="h-4 w-4 text-muted-foreground" />
|
||||||
<h3 className="text-sm font-medium">CPU Usage</h3>
|
<h3 className="text-sm font-medium">CPU Usage</h3>
|
||||||
@@ -220,7 +220,7 @@ export const ShowPaidMonitoring = ({
|
|||||||
<p className="mt-2 text-2xl font-bold">{metrics.cpu}%</p>
|
<p className="mt-2 text-2xl font-bold">{metrics.cpu}%</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="rounded-lg border text-card-foreground bg-transparent shadow-xs p-6">
|
<div className="rounded-lg border text-card-foreground bg-transparent shadow-sm p-6">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<MemoryStick className="h-4 w-4 text-muted-foreground" />
|
<MemoryStick className="h-4 w-4 text-muted-foreground" />
|
||||||
<h3 className="text-sm font-medium">Memory Usage</h3>
|
<h3 className="text-sm font-medium">Memory Usage</h3>
|
||||||
@@ -230,7 +230,7 @@ export const ShowPaidMonitoring = ({
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="rounded-lg border text-card-foreground shadow-xs p-6">
|
<div className="rounded-lg border text-card-foreground shadow-sm p-6">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<HardDrive className="h-4 w-4 text-muted-foreground" />
|
<HardDrive className="h-4 w-4 text-muted-foreground" />
|
||||||
<h3 className="text-sm font-medium">Disk Usage</h3>
|
<h3 className="text-sm font-medium">Disk Usage</h3>
|
||||||
@@ -240,7 +240,7 @@ export const ShowPaidMonitoring = ({
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* System Information */}
|
{/* System Information */}
|
||||||
<div className="rounded-lg border text-card-foreground shadow-xs p-6">
|
<div className="rounded-lg border text-card-foreground shadow-sm p-6">
|
||||||
<h3 className="text-lg font-medium mb-4">System Information</h3>
|
<h3 className="text-lg font-medium mb-4">System Information</h3>
|
||||||
<div className="grid gap-4 md:grid-cols-2">
|
<div className="grid gap-4 md:grid-cols-2">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
||||||
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
||||||
import { Tooltip as TooltipPrimitive } from "radix-ui";
|
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { DialogAction } from "@/components/shared/dialog-action";
|
import { DialogAction } from "@/components/shared/dialog-action";
|
||||||
@@ -97,7 +97,7 @@ export const ShowGeneralMysql = ({ mysqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Downloads and sets up the MySQL database</p>
|
<p>Downloads and sets up the MySQL database</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -137,7 +137,7 @@ export const ShowGeneralMysql = ({ mysqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Restart the MySQL service without rebuilding</p>
|
<p>Restart the MySQL service without rebuilding</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -177,7 +177,7 @@ export const ShowGeneralMysql = ({ mysqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Start the MySQL database (requires a previous
|
Start the MySQL database (requires a previous
|
||||||
successful setup)
|
successful setup)
|
||||||
@@ -217,7 +217,7 @@ export const ShowGeneralMysql = ({ mysqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Stop the currently running MySQL database</p>
|
<p>Stop the currently running MySQL database</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -242,7 +242,7 @@ export const ShowGeneralMysql = ({ mysqlId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Open a terminal to the MySQL container</p>
|
<p>Open a terminal to the MySQL container</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
|
|||||||
@@ -25,11 +25,11 @@ export const ShowInternalMysqlCredentials = ({ mysqlId }: Props) => {
|
|||||||
<div className="grid w-full md:grid-cols-2 gap-4 md:gap-8">
|
<div className="grid w-full md:grid-cols-2 gap-4 md:gap-8">
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>User</Label>
|
<Label>User</Label>
|
||||||
<Input enableCopyButton disabled value={data?.databaseUser} />
|
<Input disabled value={data?.databaseUser} />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Database Name</Label>
|
<Label>Database Name</Label>
|
||||||
<Input enableCopyButton disabled value={data?.databaseName} />
|
<Input disabled value={data?.databaseName} />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Password</Label>
|
<Label>Password</Label>
|
||||||
@@ -79,7 +79,7 @@ export const ShowInternalMysqlCredentials = ({ mysqlId }: Props) => {
|
|||||||
|
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Internal Host</Label>
|
<Label>Internal Host</Label>
|
||||||
<Input enableCopyButton disabled value={data?.appName} />
|
<Input disabled value={data?.appName} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex flex-col gap-2 md:col-span-2">
|
<div className="flex flex-col gap-2 md:col-span-2">
|
||||||
|
|||||||
@@ -93,7 +93,6 @@ export function AddOrganization({ organizationId }: Props) {
|
|||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
toast.error(
|
toast.error(
|
||||||
error?.message ??
|
|
||||||
`Failed to ${organizationId ? "update" : "create"} organization`,
|
`Failed to ${organizationId ? "update" : "create"} organization`,
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
import * as TooltipPrimitive from "@radix-ui/react-tooltip";
|
||||||
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
import { Ban, CheckCircle2, RefreshCcw, Rocket, Terminal } from "lucide-react";
|
||||||
import { Tooltip as TooltipPrimitive } from "radix-ui";
|
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { toast } from "sonner";
|
import { toast } from "sonner";
|
||||||
import { DialogAction } from "@/components/shared/dialog-action";
|
import { DialogAction } from "@/components/shared/dialog-action";
|
||||||
@@ -99,7 +99,7 @@ export const ShowGeneralPostgres = ({ postgresId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Downloads and sets up the PostgreSQL database</p>
|
<p>Downloads and sets up the PostgreSQL database</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
@@ -139,7 +139,7 @@ export const ShowGeneralPostgres = ({ postgresId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Restart the PostgreSQL service without rebuilding
|
Restart the PostgreSQL service without rebuilding
|
||||||
</p>
|
</p>
|
||||||
@@ -181,7 +181,7 @@ export const ShowGeneralPostgres = ({ postgresId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Start the PostgreSQL database (requires a previous
|
Start the PostgreSQL database (requires a previous
|
||||||
successful setup)
|
successful setup)
|
||||||
@@ -221,7 +221,7 @@ export const ShowGeneralPostgres = ({ postgresId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>
|
<p>
|
||||||
Stop the currently running PostgreSQL database
|
Stop the currently running PostgreSQL database
|
||||||
</p>
|
</p>
|
||||||
@@ -248,7 +248,7 @@ export const ShowGeneralPostgres = ({ postgresId }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipPrimitive.Portal>
|
<TooltipPrimitive.Portal>
|
||||||
<TooltipContent sideOffset={5} className="z-60">
|
<TooltipContent sideOffset={5} className="z-[60]">
|
||||||
<p>Open a terminal to the PostgreSQL container</p>
|
<p>Open a terminal to the PostgreSQL container</p>
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</TooltipPrimitive.Portal>
|
</TooltipPrimitive.Portal>
|
||||||
|
|||||||
@@ -25,11 +25,11 @@ export const ShowInternalPostgresCredentials = ({ postgresId }: Props) => {
|
|||||||
<div className="grid w-full md:grid-cols-2 gap-4 md:gap-8">
|
<div className="grid w-full md:grid-cols-2 gap-4 md:gap-8">
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>User</Label>
|
<Label>User</Label>
|
||||||
<Input enableCopyButton disabled value={data?.databaseUser} />
|
<Input disabled value={data?.databaseUser} />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Database Name</Label>
|
<Label>Database Name</Label>
|
||||||
<Input enableCopyButton disabled value={data?.databaseName} />
|
<Input disabled value={data?.databaseName} />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Password</Label>
|
<Label>Password</Label>
|
||||||
@@ -57,7 +57,7 @@ export const ShowInternalPostgresCredentials = ({ postgresId }: Props) => {
|
|||||||
|
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
<Label>Internal Host</Label>
|
<Label>Internal Host</Label>
|
||||||
<Input enableCopyButton disabled value={data?.appName} />
|
<Input disabled value={data?.appName} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ export const AddApplication = ({ environmentId, projectName }: Props) => {
|
|||||||
</FormLabel>
|
</FormLabel>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipContent
|
<TooltipContent
|
||||||
className="z-999 w-[300px]"
|
className="z-[999] w-[300px]"
|
||||||
align="start"
|
align="start"
|
||||||
side="top"
|
side="top"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -191,7 +191,7 @@ export const AddCompose = ({ environmentId, projectName }: Props) => {
|
|||||||
</FormLabel>
|
</FormLabel>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipContent
|
<TooltipContent
|
||||||
className="z-999 w-[300px]"
|
className="z-[999] w-[300px]"
|
||||||
align="start"
|
align="start"
|
||||||
side="top"
|
side="top"
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ const dockerImageDefaultPlaceholder: Record<DbType, string> = {
|
|||||||
mariadb: "mariadb:11",
|
mariadb: "mariadb:11",
|
||||||
mysql: "mysql:8",
|
mysql: "mysql:8",
|
||||||
postgres: "postgres:18",
|
postgres: "postgres:18",
|
||||||
redis: "redis:8",
|
redis: "redis:7",
|
||||||
};
|
};
|
||||||
|
|
||||||
const databasesUserDefaultPlaceholder: Record<
|
const databasesUserDefaultPlaceholder: Record<
|
||||||
@@ -412,7 +412,7 @@ export const AddDatabase = ({ environmentId, projectName }: Props) => {
|
|||||||
/>
|
/>
|
||||||
<Label
|
<Label
|
||||||
htmlFor={key}
|
htmlFor={key}
|
||||||
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary has-data-[state=checked]:border-primary cursor-pointer"
|
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary [&:has([data-state=checked])]:border-primary cursor-pointer"
|
||||||
>
|
>
|
||||||
{value.icon}
|
{value.icon}
|
||||||
{value.label}
|
{value.label}
|
||||||
@@ -765,7 +765,7 @@ export const AddDatabase = ({ environmentId, projectName }: Props) => {
|
|||||||
name="replicaSets"
|
name="replicaSets"
|
||||||
render={({ field }) => {
|
render={({ field }) => {
|
||||||
return (
|
return (
|
||||||
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-xs">
|
<FormItem className="flex flex-row items-center justify-between p-3 mt-4 border rounded-lg shadow-sm">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<FormLabel>Use Replica Sets</FormLabel>
|
<FormLabel>Use Replica Sets</FormLabel>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -231,7 +231,7 @@ export const AddImport = ({ environmentId, projectName }: Props) => {
|
|||||||
</FormLabel>
|
</FormLabel>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipContent
|
<TooltipContent
|
||||||
className="z-999 w-[300px]"
|
className="z-[999] w-[300px]"
|
||||||
align="start"
|
align="start"
|
||||||
side="top"
|
side="top"
|
||||||
>
|
>
|
||||||
@@ -386,7 +386,7 @@ export const AddImport = ({ environmentId, projectName }: Props) => {
|
|||||||
{templateInfo.template.domains.map((domain, index) => (
|
{templateInfo.template.domains.map((domain, index) => (
|
||||||
<div
|
<div
|
||||||
key={index}
|
key={index}
|
||||||
className="rounded-lg border bg-card p-3 text-card-foreground shadow-xs"
|
className="rounded-lg border bg-card p-3 text-card-foreground shadow-sm"
|
||||||
>
|
>
|
||||||
<div className="font-medium">
|
<div className="font-medium">
|
||||||
{domain.serviceName}
|
{domain.serviceName}
|
||||||
|
|||||||
@@ -236,7 +236,7 @@ export const AddTemplate = ({ environmentId, baseUrl }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
className={cn(
|
className={cn(
|
||||||
"w-full sm:w-[200px] justify-between bg-input!",
|
"w-full sm:w-[200px] justify-between !bg-input",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{isLoadingTags
|
{isLoadingTags
|
||||||
@@ -296,7 +296,7 @@ export const AddTemplate = ({ environmentId, baseUrl }: Props) => {
|
|||||||
variant={showBookmarksOnly ? "default" : "outline"}
|
variant={showBookmarksOnly ? "default" : "outline"}
|
||||||
size="icon"
|
size="icon"
|
||||||
onClick={() => setShowBookmarksOnly(!showBookmarksOnly)}
|
onClick={() => setShowBookmarksOnly(!showBookmarksOnly)}
|
||||||
className="h-9 w-9 shrink-0"
|
className="h-9 w-9 flex-shrink-0"
|
||||||
disabled={isLoadingBookmarks}
|
disabled={isLoadingBookmarks}
|
||||||
>
|
>
|
||||||
<Bookmark
|
<Bookmark
|
||||||
@@ -311,7 +311,7 @@ export const AddTemplate = ({ environmentId, baseUrl }: Props) => {
|
|||||||
onClick={() =>
|
onClick={() =>
|
||||||
setViewMode(viewMode === "detailed" ? "icon" : "detailed")
|
setViewMode(viewMode === "detailed" ? "icon" : "detailed")
|
||||||
}
|
}
|
||||||
className="h-9 w-9 shrink-0"
|
className="h-9 w-9 flex-shrink-0"
|
||||||
>
|
>
|
||||||
{viewMode === "detailed" ? (
|
{viewMode === "detailed" ? (
|
||||||
<LayoutGrid className="size-4" />
|
<LayoutGrid className="size-4" />
|
||||||
@@ -398,7 +398,7 @@ export const AddTemplate = ({ environmentId, baseUrl }: Props) => {
|
|||||||
<Button
|
<Button
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
size="icon"
|
size="icon"
|
||||||
className="h-8 w-8 bg-background/80 backdrop-blur-xs hover:bg-background"
|
className="h-8 w-8 bg-background/80 backdrop-blur-sm hover:bg-background"
|
||||||
onClick={(e) => handleToggleBookmark(e, template.id)}
|
onClick={(e) => handleToggleBookmark(e, template.id)}
|
||||||
>
|
>
|
||||||
<Bookmark
|
<Bookmark
|
||||||
@@ -451,7 +451,7 @@ export const AddTemplate = ({ environmentId, baseUrl }: Props) => {
|
|||||||
|
|
||||||
{/* Template Content */}
|
{/* Template Content */}
|
||||||
{viewMode === "detailed" && (
|
{viewMode === "detailed" && (
|
||||||
<ScrollArea className="min-h-0 flex-1 p-6">
|
<ScrollArea className="flex-1 p-6">
|
||||||
<div className="text-sm text-muted-foreground">
|
<div className="text-sm text-muted-foreground">
|
||||||
{template?.description}
|
{template?.description}
|
||||||
</div>
|
</div>
|
||||||
@@ -534,7 +534,7 @@ export const AddTemplate = ({ environmentId, baseUrl }: Props) => {
|
|||||||
</Label>
|
</Label>
|
||||||
</TooltipTrigger>
|
</TooltipTrigger>
|
||||||
<TooltipContent
|
<TooltipContent
|
||||||
className="z-999 w-[300px]"
|
className="z-[999] w-[300px]"
|
||||||
align="start"
|
align="start"
|
||||||
side="top"
|
side="top"
|
||||||
>
|
>
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user