Skip to content
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

chore: rename to yjs inspector #28

Merged
merged 1 commit into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# 🛝 Yjs Playground
# 🛝 Yjs Inspector

[![Build](https://github.com/yjs/yjs-playground/actions/workflows/build.yml/badge.svg)](https://github.com/yjs/yjs-playground/actions/workflows/build.yml)
[![Build](https://github.com/yjs/yjs-inspector/actions/workflows/build.yml/badge.svg)](https://github.com/yjs/yjs-inspector/actions/workflows/build.yml)

The playground of [Yjs](https://docs.yjs.dev/).

## ✨ Features

- Connect to a Yjs demo.<br />
![image](https://github.com/yjs/yjs-playground/assets/18554747/144810a2-4da1-4fd3-822d-1f4a015af29f)
![image](https://github.com/yjs/yjs-inspector/assets/18554747/144810a2-4da1-4fd3-822d-1f4a015af29f)
- Inspect the Yjs document model<br />
![image](https://github.com/yjs/yjs-playground/assets/18554747/edb040f2-6bdd-4c2a-b9cf-43f7eaef08d2)
![image](https://github.com/yjs/yjs-inspector/assets/18554747/edb040f2-6bdd-4c2a-b9cf-43f7eaef08d2)
- Advanced Filters<br />
![image](https://github.com/user-attachments/assets/ecadd716-0163-462e-8762-daf08d964370)
- Edit the Yjs document model.<br />
![image](https://github.com/yjs/yjs-playground/assets/18554747/46a061e9-3466-46bd-91cc-80e80476de37)
![image](https://github.com/yjs/yjs-inspector/assets/18554747/46a061e9-3466-46bd-91cc-80e80476de37)
- Export the YDoc snapshot
- Dark mode
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" href="./yjs.png" type="image/png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Yjs Playground</title>
<title>Yjs Inspector</title>
</head>
<body>
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "yjs-playground",
"name": "yjs-inspector",
"version": "0.1.0",
"license": "MIT",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions src/components/site-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function Header() {
</a>

<span className="hidden font-bold sm:inline-block">
Yjs Playground
Yjs Inspector
</span>
</div>
{/* Placeholder for right side of header */}
Expand All @@ -31,7 +31,7 @@ export function Header() {
<ModeToggle />
<Button variant="ghost" size="icon" asChild>
<a
href="https://github.com/yjs/yjs-playground"
href="https://github.com/yjs/yjs-inspector"
target="_blank"
rel="noopener noreferrer"
>
Expand Down