mirror of
https://github.com/hex248/sprint.git
synced 2026-02-07 18:23:03 +00:00
fixed all warnings :D
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
|
||||
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
"formatWithErrors": false,
|
||||
@@ -11,5 +11,8 @@
|
||||
"parser": {
|
||||
"tailwindDirectives": true
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"includes": ["**", "!packages/shared/dist"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"root": false,
|
||||
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
|
||||
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
"formatWithErrors": false,
|
||||
@@ -12,5 +12,8 @@
|
||||
"parser": {
|
||||
"tailwindDirectives": true
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"includes": ["**", "!drizzle/meta"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,6 +6,6 @@ export default defineConfig({
|
||||
schema: "../shared/src/schema.ts",
|
||||
dialect: "postgresql",
|
||||
dbCredentials: {
|
||||
url: process.env.DATABASE_URL!,
|
||||
url: process.env.DATABASE_URL || "",
|
||||
},
|
||||
});
|
||||
|
||||
@@ -17,6 +17,7 @@ export const testDB = async () => {
|
||||
console.log("db connected");
|
||||
} catch (err) {
|
||||
console.log("db down");
|
||||
console.error(err);
|
||||
process.exit();
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import type { BunRequest } from "bun";
|
||||
import { getIssues } from "../../db/queries";
|
||||
|
||||
export default async function issuesAll(req: BunRequest) {
|
||||
export default async function issuesAll(_req: BunRequest) {
|
||||
const issues = await getIssues();
|
||||
|
||||
return Response.json(issues);
|
||||
|
||||
@@ -2,7 +2,7 @@ import type { BunRequest } from "bun";
|
||||
import { getProjectsWithCreators } from "../../db/queries";
|
||||
|
||||
// /projects/all
|
||||
export default async function projectsAll(req: BunRequest) {
|
||||
export default async function projectsAll(_req: BunRequest) {
|
||||
const projects = await getProjectsWithCreators();
|
||||
|
||||
return Response.json(projects);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import type { BunRequest } from "bun";
|
||||
import { getProjectByID, deleteProject } from "../../db/queries";
|
||||
import { deleteProject, getProjectByID } from "../../db/queries";
|
||||
|
||||
// /project/delete?id=1
|
||||
export default async function projectDelete(req: BunRequest) {
|
||||
|
||||
@@ -2,7 +2,7 @@ import type { BunRequest } from "bun";
|
||||
import { getProjectsWithCreators } from "../../db/queries";
|
||||
|
||||
// /projects/with-creators
|
||||
export default async function projectsWithCreators(req: BunRequest) {
|
||||
export default async function projectsWithCreators(_req: BunRequest) {
|
||||
const projects = await getProjectsWithCreators();
|
||||
|
||||
return Response.json(projects);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"root": false,
|
||||
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
|
||||
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
"formatWithErrors": false,
|
||||
@@ -12,5 +12,8 @@
|
||||
"parser": {
|
||||
"tailwindDirectives": true
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"includes": ["**", "!src-tauri/target", "!src-tauri/gen"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,8 +3,5 @@
|
||||
"identifier": "default",
|
||||
"description": "Capability for the main window",
|
||||
"windows": ["main"],
|
||||
"permissions": [
|
||||
"core:default",
|
||||
"opener:default"
|
||||
]
|
||||
"permissions": ["core:default", "opener:default"]
|
||||
}
|
||||
|
||||
@@ -19,7 +19,6 @@ import {
|
||||
} from "@/components/ui/dropdown-menu";
|
||||
import { ResizablePanel, ResizablePanelGroup, ResizableSeparator } from "@/components/ui/resizable";
|
||||
import { issue, organisation, project } from "@/lib/server";
|
||||
import { getAuthHeaders, getServerURL } from "@/lib/utils";
|
||||
|
||||
function Index() {
|
||||
const user = JSON.parse(localStorage.getItem("user") || "{}") as UserRecord;
|
||||
@@ -132,7 +131,7 @@ function Index() {
|
||||
setSelectedProject((prev) => prev || projects[0] || null);
|
||||
}, [projects]);
|
||||
|
||||
const refetchIssues = async (projectKey: string) => {
|
||||
const refetchIssues = async () => {
|
||||
try {
|
||||
await issue.byProject({
|
||||
projectId: selectedProject?.Project.id || 0,
|
||||
@@ -155,7 +154,7 @@ function Index() {
|
||||
useEffect(() => {
|
||||
if (!selectedProject) return;
|
||||
|
||||
void refetchIssues(selectedProject.Project.key);
|
||||
void refetchIssues();
|
||||
}, [selectedProject]);
|
||||
|
||||
return (
|
||||
@@ -196,7 +195,7 @@ function Index() {
|
||||
projectId={selectedProject?.Project.id}
|
||||
completeAction={async () => {
|
||||
if (!selectedProject) return;
|
||||
await refetchIssues(selectedProject.Project.key);
|
||||
await refetchIssues();
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
@@ -235,7 +234,6 @@ function Index() {
|
||||
<ResizablePanel id={"left"} minSize={400}>
|
||||
{/* issues list (table) */}
|
||||
<IssuesTable
|
||||
project={selectedProject}
|
||||
issuesData={issues}
|
||||
columns={{ description: false }}
|
||||
issueSelectAction={setSelectedIssue}
|
||||
|
||||
@@ -3,7 +3,6 @@ import { useCallback, useEffect, useState } from "react";
|
||||
import { OrganisationSelect } from "@/components/organisation-select";
|
||||
import { SettingsPageLayout } from "@/components/settings-page-layout";
|
||||
import { organisation } from "@/lib/server";
|
||||
import { getAuthHeaders, getServerURL } from "@/lib/utils";
|
||||
|
||||
function Organisations() {
|
||||
const user = JSON.parse(localStorage.getItem("user") || "{}") as UserRecord;
|
||||
|
||||
@@ -1,16 +1,14 @@
|
||||
import type { IssueResponse, ProjectResponse } from "@issue/shared";
|
||||
import type { IssueResponse } from "@issue/shared";
|
||||
import Avatar from "@/components/avatar";
|
||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
export function IssuesTable({
|
||||
project,
|
||||
issuesData,
|
||||
columns = {},
|
||||
issueSelectAction,
|
||||
className,
|
||||
}: {
|
||||
project: ProjectResponse;
|
||||
issuesData: IssueResponse[];
|
||||
columns?: { id?: boolean; title?: boolean; description?: boolean; assignee?: boolean };
|
||||
issueSelectAction?: (issue: IssueResponse) => void;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as React from "react";
|
||||
import type * as React from "react";
|
||||
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
import * as React from "react"
|
||||
import * as LabelPrimitive from "@radix-ui/react-label"
|
||||
import * as LabelPrimitive from "@radix-ui/react-label";
|
||||
import type * as React from "react";
|
||||
|
||||
import { cn } from "@/lib/utils"
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
function Label({
|
||||
className,
|
||||
...props
|
||||
}: React.ComponentProps<typeof LabelPrimitive.Root>) {
|
||||
function Label({ className, ...props }: React.ComponentProps<typeof LabelPrimitive.Root>) {
|
||||
return (
|
||||
<LabelPrimitive.Root
|
||||
data-slot="label"
|
||||
className={cn(
|
||||
"flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
|
||||
className
|
||||
className,
|
||||
)}
|
||||
{...props}
|
||||
/>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
export { Label }
|
||||
export { Label };
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Loader2Icon, Loader } from "lucide-react";
|
||||
import { Loader } from "lucide-react";
|
||||
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as React from "react";
|
||||
import type * as React from "react";
|
||||
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
|
||||
@@ -3,6 +3,6 @@ export * as organisation from "./organisation";
|
||||
export * as project from "./project";
|
||||
|
||||
export type ServerQueryInput = {
|
||||
onSuccess?: (data: any, res: Response) => void;
|
||||
onError?: (error: any) => void;
|
||||
onSuccess?: (data: unknown, res: Response) => void;
|
||||
onError?: (error: unknown) => void;
|
||||
};
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
import path from "path";
|
||||
import path from "node:path";
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
import { defineConfig } from "vite";
|
||||
import react from "@vitejs/plugin-react";
|
||||
import { defineConfig } from "vite";
|
||||
|
||||
// @ts-expect-error process is a nodejs global
|
||||
const host = process.env.TAURI_DEV_HOST;
|
||||
|
||||
// https://vite.dev/config/
|
||||
|
||||
@@ -1,37 +1,32 @@
|
||||
// Drizzle tables
|
||||
export { User, Project, Issue, Organisation, OrganisationMember } from "./schema";
|
||||
|
||||
// Types
|
||||
export type {
|
||||
UserRecord,
|
||||
UserInsert,
|
||||
OrganisationRecord,
|
||||
OrganisationInsert,
|
||||
OrganisationMemberRecord,
|
||||
OrganisationMemberInsert,
|
||||
ProjectRecord,
|
||||
ProjectInsert,
|
||||
IssueRecord,
|
||||
IssueInsert,
|
||||
} from "./schema";
|
||||
|
||||
// Zod schemas
|
||||
export {
|
||||
UserSelectSchema,
|
||||
UserInsertSchema,
|
||||
OrganisationSelectSchema,
|
||||
OrganisationInsertSchema,
|
||||
OrganisationMemberSelectSchema,
|
||||
OrganisationMemberInsertSchema,
|
||||
ProjectSelectSchema,
|
||||
ProjectInsertSchema,
|
||||
IssueSelectSchema,
|
||||
IssueInsertSchema,
|
||||
} from "./schema";
|
||||
|
||||
// Responses
|
||||
export type {
|
||||
IssueRecord,
|
||||
IssueResponse,
|
||||
ProjectResponse,
|
||||
OrganisationInsert,
|
||||
OrganisationMemberInsert,
|
||||
OrganisationMemberRecord,
|
||||
OrganisationRecord,
|
||||
OrganisationResponse,
|
||||
ProjectInsert,
|
||||
ProjectRecord,
|
||||
ProjectResponse,
|
||||
UserInsert,
|
||||
UserRecord,
|
||||
} from "./schema";
|
||||
export {
|
||||
Issue,
|
||||
IssueInsertSchema,
|
||||
IssueSelectSchema,
|
||||
Organisation,
|
||||
OrganisationInsertSchema,
|
||||
OrganisationMember,
|
||||
OrganisationMemberInsertSchema,
|
||||
OrganisationMemberSelectSchema,
|
||||
OrganisationSelectSchema,
|
||||
Project,
|
||||
ProjectInsertSchema,
|
||||
ProjectSelectSchema,
|
||||
User,
|
||||
UserInsertSchema,
|
||||
UserSelectSchema,
|
||||
} from "./schema";
|
||||
|
||||
Reference in New Issue
Block a user