-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from xi-effect/staging
Staging
- Loading branch information
Showing
77 changed files
with
4,613 additions
and
4,615 deletions.
There are no files selected for viewing
This file contains 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
File renamed without changes.
This file contains 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
19 changes: 0 additions & 19 deletions
19
apps/xi.front/app/(protected)/communities/[community-id]/channels/[channel-id]/post/page.tsx
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
...app/(protected)/communities/[community-id]/channels/[channel-id]/posts/[post-id]/page.tsx
This file contains 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,12 @@ | ||
'use client'; | ||
|
||
import React from 'react'; | ||
import dynamic from 'next/dynamic'; | ||
|
||
const Post = dynamic(() => import('pkg.module.posts').then((mod) => mod.Post)); | ||
|
||
export default function PostPage() { | ||
return ( | ||
<Post /> | ||
); | ||
} |
This file contains 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
10 changes: 10 additions & 0 deletions
10
...ont/app/(protected)/communities/[community-id]/channels/[channel-id]/tasks-admin/page.tsx
This file contains 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,10 @@ | ||
'use client'; | ||
|
||
import React from 'react'; | ||
import dynamic from 'next/dynamic'; | ||
|
||
const TasksAdmin = dynamic(() => import('pkg.module.tasks-admin').then((mod) => mod.TasksAdmin)); | ||
|
||
export default function TasksAdminPage() { | ||
return <TasksAdmin />; | ||
} |
19 changes: 19 additions & 0 deletions
19
...app/(protected)/communities/[community-id]/channels/[channel-id]/tasks/[task-id]/page.tsx
This file contains 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,19 @@ | ||
'use client'; | ||
|
||
import React from 'react'; | ||
import dynamic from 'next/dynamic'; | ||
import { ScrollArea } from '@xipkg/scrollarea'; | ||
|
||
const Task = dynamic(() => | ||
import('pkg.module.tasks').then((mod) => mod.Task), | ||
); | ||
|
||
export default function TaskPage() { | ||
return ( | ||
<ScrollArea> | ||
<div className="flex flex-col h-[calc(100dvh-80px)] md:h-screen p-8 max-xs:p-4"> | ||
<Task /> | ||
</div> | ||
</ScrollArea> | ||
); | ||
} |
This file contains 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 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 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 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
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.