Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
60e20b9
feat: rename project to "explorer" and integrate TanStack Router
ErwanDecoster Apr 22, 2025
e5640d2
fix: update JSX syntax for consistency and readability in __root.tsx
ErwanDecoster Apr 22, 2025
55bec72
feat: add Prettier formatting script and improve code consistency acr…
ErwanDecoster Apr 22, 2025
6d26896
feat: implement table component with header, body, footer, and cell s…
ErwanDecoster Apr 22, 2025
b243227
fix: remove unnecessary margin from table container
ErwanDecoster Apr 23, 2025
e3032a7
feat: Add DealsPreviewTable component and integrate with GraphQL
ErwanDecoster Apr 23, 2025
96c1111
feat: Add Apps, Datasets, Tasks, and Workerpools preview tables with …
ErwanDecoster Apr 24, 2025
c7120b3
fix: update .gitignore to include .DS_Store and .env files
ErwanDecoster Apr 24, 2025
dd58f98
fix: adjust button margin in preview tables for better alignment
ErwanDecoster Apr 24, 2025
7616cf7
style: standardize quotation marks and add missing semicolons across …
ErwanDecoster Apr 24, 2025
c9b6725
Merge branch 'main' into feature/add-home-page
ErwanDecoster Apr 24, 2025
4f3b0d2
refactor: standardize imports and update button labels across preview…
ErwanDecoster Apr 24, 2025
e82c1ee
style: standardize quotation marks and improve formatting across mult…
ErwanDecoster Apr 24, 2025
f0a201a
style: update .prettierignore to include routeTree.gen.ts
ErwanDecoster Apr 24, 2025
f4df1b8
fix: remove duplicate 'devOptional' entries and clean up package-lock…
ErwanDecoster Apr 24, 2025
3b8f4f6
fix: add main.tsx missing content lost during previous merge
ErwanDecoster Apr 24, 2025
99f41ec
fix: add refetch interval to preview tables and update loading indica…
ErwanDecoster Apr 24, 2025
ff737de
style: enhance layout structure and styling for the Index component
ErwanDecoster Apr 24, 2025
1f64bc1
style: add margin to root component and adjust max-width for layout c…
ErwanDecoster Apr 24, 2025
780fd1e
style: adjust layout and alignment for improved responsiveness
ErwanDecoster Apr 24, 2025
10f420a
Merge branch 'main' into feature/add-home-page
ErwanDecoster Apr 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_POCO_SUBGRAPH_URL="https://thegraph.iex.ec/subgraphs/name/bellecour/poco-v5"
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ dist
dist-ssr
*.local

# misc
.DS_Store
.env

# Editor directories and files
.vscode/*
!.vscode/extensions.json
Expand Down
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
src/graphql
schema.graphql
routeTree.gen.ts
26 changes: 26 additions & 0 deletions codegenPoco.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import type { CodegenConfig } from '@graphql-codegen/cli'
import * as dotenv from 'dotenv';

dotenv.config();

const config: CodegenConfig = {
schema: process.env.VITE_POCO_SUBGRAPH_URL,
documents: ['src/**/*.tsx', "src/**/*.ts"],
ignoreNoDocuments: true,
generates: {
'./src/graphql/': {
preset: 'client',
config: {
documentMode: 'string'
}
},
'./schema.graphql': {
plugins: ['schema-ast'],
config: {
includeDirectives: true
}
}
}
}

export default config
Loading