-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'preview' of https://github.com/makeplane/plane into loc…
…al-cache-fixes-v4
- Loading branch information
Showing
62 changed files
with
817 additions
and
708 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
API_BASE_URL="http://api:8000" | ||
LIVE_BASE_PATH="/live" | ||
REDIS_URL="redis://localhost:6379" | ||
|
||
REDIS_URL="redis://plane-redis:6379/" | ||
|
||
# If you prefer not to provide a Redis URL, you can set the REDIS_HOST and REDIS_PORT environment variables instead. | ||
REDIS_PORT=6379 | ||
REDIS_HOST=localhost | ||
REDIS_HOST=plane-redis |
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
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export * from "./collaborative-editor"; | ||
export * from "./collaborative-read-only-editor"; | ||
export * from "./loader"; | ||
export * from "./page-renderer"; | ||
export * from "./read-only-editor"; |
42 changes: 42 additions & 0 deletions
42
packages/editor/src/core/components/editors/document/loader.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,42 @@ | ||
// ui | ||
import { Loader } from "@plane/ui"; | ||
|
||
export const DocumentContentLoader = () => ( | ||
<div className="size-full px-5"> | ||
<Loader className="relative space-y-4"> | ||
<div className="space-y-2"> | ||
<div className="py-2"> | ||
<Loader.Item width="100%" height="36px" /> | ||
</div> | ||
<Loader.Item width="80%" height="22px" /> | ||
<div className="relative flex items-center gap-2"> | ||
<Loader.Item width="30px" height="30px" /> | ||
<Loader.Item width="30%" height="22px" /> | ||
</div> | ||
<div className="py-2"> | ||
<Loader.Item width="60%" height="36px" /> | ||
</div> | ||
<Loader.Item width="70%" height="22px" /> | ||
<Loader.Item width="30%" height="22px" /> | ||
<div className="relative flex items-center gap-2"> | ||
<Loader.Item width="30px" height="30px" /> | ||
<Loader.Item width="30%" height="22px" /> | ||
</div> | ||
<div className="py-2"> | ||
<Loader.Item width="50%" height="30px" /> | ||
</div> | ||
<Loader.Item width="100%" height="22px" /> | ||
<div className="py-2"> | ||
<Loader.Item width="30%" height="30px" /> | ||
</div> | ||
<Loader.Item width="30%" height="22px" /> | ||
<div className="relative flex items-center gap-2"> | ||
<div className="py-2"> | ||
<Loader.Item width="30px" height="30px" /> | ||
</div> | ||
<Loader.Item width="30%" height="22px" /> | ||
</div> | ||
</div> | ||
</Loader> | ||
</div> | ||
); |
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
Oops, something went wrong.