-
Couldn't load subscription status.
- Fork 7
[DRIZZ-54] Collection Records Display #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 14 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
e942453
init
SupakornNetsuwan bd40f55
Merge remote-tracking branch 'origin/main' into supakorn
SupakornNetsuwan b51daec
fix: styling conflict fix
SupakornNetsuwan 4067150
Merge remote-tracking branch 'origin/main' into BRV-114
SupakornNetsuwan 28e6cae
Merge remote-tracking branch 'origin/main' into BRV-114
SupakornNetsuwan 8c90908
chore: update core source code
SupakornNetsuwan 210bd92
Merge remote-tracking branch 'origin/main' into BRV-114
SupakornNetsuwan b597068
chore: remove unused component
SupakornNetsuwan 21adef1
feat: Collection Records Display
SupakornNetsuwan aaf8c4f
chore: add .changeset
SupakornNetsuwan 991118d
feat: [DRIZZ-17] Collection Sidebar
SupakornNetsuwan f8dceb9
feat: Collection Sidebar, Collection sidebar nav, Collection table
SupakornNetsuwan b8c2997
Merge remote-tracking branch 'origin/main' into supakorn/DRIZZ-54
saenyakorn 3239d53
fix: Resolve PR#6, use absolute path resolution
SupakornNetsuwan 2d671ed
chore: update changeset
saenyakorn 1a01b25
chore: update exports
saenyakorn 75df968
chore: fix named export
saenyakorn 4a75430
chore: fix typecheck error
saenyakorn 6eb24db
chore: format and link fix
saenyakorn 9814e45
chore: fix typecheck error
saenyakorn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| '@example/erp': minor | ||
| --- | ||
|
|
||
| - Base components for the kiotos next app | ||
|
|
||
| - [Create a dashboard and simple collection list](https://app.plane.so/softnetics/browse/DRIZZ-54/) | ||
|
|
||
| - [See the PR](https://github.com/softnetics/kivotos/pull/6) | ||
SupakornNetsuwan marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
saenyakorn marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,4 +37,5 @@ yarn-error.log* | |
| .DS_Store | ||
| *.pem | ||
|
|
||
| .data | ||
| .data | ||
| packages/drizzlify-next/drizzilify.code-workspace | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,87 @@ | ||
| CREATE TABLE "account" ( | ||
| "id" text PRIMARY KEY NOT NULL, | ||
| "account_id" text NOT NULL, | ||
| "provider_id" text NOT NULL, | ||
| "user_id" uuid NOT NULL, | ||
| "access_token" text, | ||
| "refresh_token" text, | ||
| "id_token" text, | ||
| "access_token_expires_at" timestamp, | ||
| "refresh_token_expires_at" timestamp, | ||
| "scope" text, | ||
| "password" text, | ||
| "updatedAt" timestamp DEFAULT now(), | ||
| "createdAt" timestamp DEFAULT now() NOT NULL, | ||
| "deletedAt" timestamp | ||
| ); | ||
| --> statement-breakpoint | ||
| CREATE TABLE "categories" ( | ||
| "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, | ||
| "name" varchar NOT NULL, | ||
| "ownerId" uuid, | ||
| "updatedAt" timestamp DEFAULT now(), | ||
| "createdAt" timestamp DEFAULT now() NOT NULL, | ||
| "deletedAt" timestamp | ||
| ); | ||
| --> statement-breakpoint | ||
| CREATE TABLE "categoryTags" ( | ||
| "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, | ||
| "name" varchar NOT NULL, | ||
| "category" uuid, | ||
| "updatedAt" timestamp DEFAULT now(), | ||
| "createdAt" timestamp DEFAULT now() NOT NULL, | ||
| "deletedAt" timestamp | ||
| ); | ||
| --> statement-breakpoint | ||
| CREATE TABLE "posts" ( | ||
| "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, | ||
| "title" varchar, | ||
| "content" text, | ||
| "authorId" uuid, | ||
| "categoryId" uuid, | ||
| "updatedAt" timestamp DEFAULT now(), | ||
| "createdAt" timestamp DEFAULT now() NOT NULL, | ||
| "deletedAt" timestamp | ||
| ); | ||
| --> statement-breakpoint | ||
| CREATE TABLE "session" ( | ||
| "id" text PRIMARY KEY NOT NULL, | ||
| "expires_at" timestamp NOT NULL, | ||
| "token" text NOT NULL, | ||
| "ip_address" text, | ||
| "user_agent" text, | ||
| "user_id" uuid NOT NULL, | ||
| "updatedAt" timestamp DEFAULT now(), | ||
| "createdAt" timestamp DEFAULT now() NOT NULL, | ||
| "deletedAt" timestamp, | ||
| CONSTRAINT "session_token_unique" UNIQUE("token") | ||
| ); | ||
| --> statement-breakpoint | ||
| CREATE TABLE "users" ( | ||
| "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, | ||
| "name" text NOT NULL, | ||
| "email" text NOT NULL, | ||
| "email_verified" boolean DEFAULT false NOT NULL, | ||
| "image" text, | ||
| "updatedAt" timestamp DEFAULT now(), | ||
| "createdAt" timestamp DEFAULT now() NOT NULL, | ||
| "deletedAt" timestamp, | ||
| CONSTRAINT "users_email_unique" UNIQUE("email") | ||
| ); | ||
| --> statement-breakpoint | ||
| CREATE TABLE "verification" ( | ||
| "id" text PRIMARY KEY NOT NULL, | ||
| "identifier" text NOT NULL, | ||
| "value" text NOT NULL, | ||
| "expires_at" timestamp NOT NULL, | ||
| "updatedAt" timestamp DEFAULT now(), | ||
| "createdAt" timestamp DEFAULT now() NOT NULL, | ||
| "deletedAt" timestamp | ||
| ); | ||
| --> statement-breakpoint | ||
| ALTER TABLE "account" ADD CONSTRAINT "account_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint | ||
| ALTER TABLE "categories" ADD CONSTRAINT "categories_ownerId_users_id_fk" FOREIGN KEY ("ownerId") REFERENCES "public"."users"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint | ||
| ALTER TABLE "categoryTags" ADD CONSTRAINT "categoryTags_category_categories_id_fk" FOREIGN KEY ("category") REFERENCES "public"."categories"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint | ||
| ALTER TABLE "posts" ADD CONSTRAINT "posts_authorId_users_id_fk" FOREIGN KEY ("authorId") REFERENCES "public"."users"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint | ||
| ALTER TABLE "posts" ADD CONSTRAINT "posts_categoryId_categories_id_fk" FOREIGN KEY ("categoryId") REFERENCES "public"."categories"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint | ||
| ALTER TABLE "session" ADD CONSTRAINT "session_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.