-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6ca4741
commit 958925f
Showing
8 changed files
with
535 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,136 @@ | ||
import './MenuBar.scss' | ||
|
||
import React, { Fragment } from 'react' | ||
|
||
import MenuItem from './MenuItem' | ||
|
||
export default ({ editor }) => { | ||
const items = [ | ||
{ | ||
icon: 'bold', | ||
title: 'Bold', | ||
action: () => editor.chain().focus().toggleBold().run(), | ||
isActive: () => editor.isActive('bold'), | ||
}, | ||
{ | ||
icon: 'italic', | ||
title: 'Italic', | ||
action: () => editor.chain().focus().toggleItalic().run(), | ||
isActive: () => editor.isActive('italic'), | ||
}, | ||
{ | ||
icon: 'strikethrough', | ||
title: 'Strike', | ||
action: () => editor.chain().focus().toggleStrike().run(), | ||
isActive: () => editor.isActive('strike'), | ||
}, | ||
{ | ||
icon: 'code-view', | ||
title: 'Code', | ||
action: () => editor.chain().focus().toggleCode().run(), | ||
isActive: () => editor.isActive('code'), | ||
}, | ||
{ | ||
icon: 'mark-pen-line', | ||
title: 'Highlight', | ||
action: () => editor.chain().focus().toggleHighlight().run(), | ||
isActive: () => editor.isActive('highlight'), | ||
}, | ||
{ | ||
type: 'divider', | ||
}, | ||
{ | ||
icon: 'h-1', | ||
title: 'Heading 1', | ||
action: () => editor.chain().focus().toggleHeading({ level: 1 }).run(), | ||
isActive: () => editor.isActive('heading', { level: 1 }), | ||
}, | ||
{ | ||
icon: 'h-2', | ||
title: 'Heading 2', | ||
action: () => editor.chain().focus().toggleHeading({ level: 2 }).run(), | ||
isActive: () => editor.isActive('heading', { level: 2 }), | ||
}, | ||
{ | ||
icon: 'paragraph', | ||
title: 'Paragraph', | ||
action: () => editor.chain().focus().setParagraph().run(), | ||
isActive: () => editor.isActive('paragraph'), | ||
}, | ||
{ | ||
icon: 'list-unordered', | ||
title: 'Bullet List', | ||
action: () => editor.chain().focus().toggleBulletList().run(), | ||
isActive: () => editor.isActive('bulletList'), | ||
}, | ||
{ | ||
icon: 'list-ordered', | ||
title: 'Ordered List', | ||
action: () => editor.chain().focus().toggleOrderedList().run(), | ||
isActive: () => editor.isActive('orderedList'), | ||
}, | ||
{ | ||
icon: 'list-check-2', | ||
title: 'Task List', | ||
action: () => editor.chain().focus().toggleTaskList().run(), | ||
isActive: () => editor.isActive('taskList'), | ||
}, | ||
{ | ||
icon: 'code-box-line', | ||
title: 'Code Block', | ||
action: () => editor.chain().focus().toggleCodeBlock().run(), | ||
isActive: () => editor.isActive('codeBlock'), | ||
}, | ||
{ | ||
type: 'divider', | ||
}, | ||
{ | ||
icon: 'double-quotes-l', | ||
title: 'Blockquote', | ||
action: () => editor.chain().focus().toggleBlockquote().run(), | ||
isActive: () => editor.isActive('blockquote'), | ||
}, | ||
{ | ||
icon: 'separator', | ||
title: 'Horizontal Rule', | ||
action: () => editor.chain().focus().setHorizontalRule().run(), | ||
}, | ||
{ | ||
type: 'divider', | ||
}, | ||
{ | ||
icon: 'text-wrap', | ||
title: 'Hard Break', | ||
action: () => editor.chain().focus().setHardBreak().run(), | ||
}, | ||
{ | ||
icon: 'format-clear', | ||
title: 'Clear Format', | ||
action: () => editor.chain().focus().clearNodes().unsetAllMarks() | ||
.run(), | ||
}, | ||
{ | ||
type: 'divider', | ||
}, | ||
{ | ||
icon: 'arrow-go-back-line', | ||
title: 'Undo', | ||
action: () => editor.chain().focus().undo().run(), | ||
}, | ||
{ | ||
icon: 'arrow-go-forward-line', | ||
title: 'Redo', | ||
action: () => editor.chain().focus().redo().run(), | ||
}, | ||
] | ||
|
||
return ( | ||
<div className="editor__header"> | ||
{items.map((item, index) => ( | ||
<Fragment key={index}> | ||
{item.type === 'divider' ? <div className="divider" /> : <MenuItem {...item} />} | ||
</Fragment> | ||
))} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.divider { | ||
background-color: rgba(#fff, 0.25); | ||
height: 1.25rem; | ||
margin-left: 0.5rem; | ||
margin-right: 0.75rem; | ||
width: 1px; | ||
} |
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,18 @@ | ||
import './MenuItem.scss' | ||
|
||
import React from 'react' | ||
import remixiconUrl from 'remixicon/fonts/remixicon.symbol.svg' | ||
|
||
export default ({ | ||
icon, title, action, isActive = null, | ||
}) => ( | ||
<button | ||
className={`menu-item${isActive && isActive() ? ' is-active' : ''}`} | ||
onClick={action} | ||
title={title} | ||
> | ||
<svg className="remix"> | ||
<use xlinkHref={`${remixiconUrl}#ri-${icon}`} /> | ||
</svg> | ||
</button> | ||
) |
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,22 @@ | ||
.menu-item { | ||
background-color: transparent; | ||
border: none; | ||
border-radius: 0.4rem; | ||
color: #fff; | ||
cursor: pointer; | ||
height: 1.75rem; | ||
margin-right: 0.25rem; | ||
padding: 0.25rem; | ||
width: 1.75rem; | ||
|
||
svg { | ||
fill: currentColor; | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
&:hover, | ||
&.is-active { | ||
background-color: #303030; | ||
} | ||
} |
Empty file.
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,132 @@ | ||
import './styles.scss' | ||
|
||
import { TiptapCollabProvider } from '@hocuspocus/provider' | ||
import CharacterCount from '@tiptap/extension-character-count' | ||
import Collaboration from '@tiptap/extension-collaboration' | ||
import CollaborationCursor from '@tiptap/extension-collaboration-cursor' | ||
import Highlight from '@tiptap/extension-highlight' | ||
import TaskItem from '@tiptap/extension-task-item' | ||
import TaskList from '@tiptap/extension-task-list' | ||
import { EditorContent, useEditor } from '@tiptap/react' | ||
import StarterKit from '@tiptap/starter-kit' | ||
import React, { | ||
useCallback, useEffect, | ||
useState, | ||
} from 'react' | ||
import * as Y from 'yjs' | ||
|
||
import MenuBar from './MenuBar' | ||
|
||
const room = 'room-1' | ||
const colors = ['#958DF1', '#F98181', '#FBBC88', '#FAF594', '#70CFF8', '#94FADB', '#B9F18D'] | ||
const names = [ | ||
'Lea Thompson', | ||
'Cyndi Lauper', | ||
'Tom Cruise', | ||
'Madonna', | ||
'Jerry Hall', | ||
'Joan Collins', | ||
'Winona Ryder', | ||
'Christina Applegate', | ||
'Alyssa Milano', | ||
'Molly Ringwald', | ||
'Ally Sheedy', | ||
'Debbie Harry', | ||
'Olivia Newton-John', | ||
'Elton John', | ||
'Michael J. Fox', | ||
'Axl Rose', | ||
'Emilio Estevez', | ||
'Ralph Macchio', | ||
'Rob Lowe', | ||
'Jennifer Grey', | ||
'Mickey Rourke', | ||
'John Cusack', | ||
'Matthew Broderick', | ||
'Justine Bateman', | ||
'Lisa Bonet', | ||
] | ||
|
||
const getRandomElement = list => list[Math.floor(Math.random() * list.length)] | ||
|
||
const getRandomColor = () => getRandomElement(colors) | ||
const getRandomName = () => getRandomElement(names) | ||
|
||
const ydoc = new Y.Doc() | ||
const websocketProvider = new TiptapCollabProvider({ | ||
appId: '7j9y6m10', | ||
name: room, | ||
document: ydoc, | ||
}) | ||
|
||
const getInitialUser = () => { | ||
return JSON.parse(localStorage.getItem('currentUser')) || { | ||
name: getRandomName(), | ||
color: getRandomColor(), | ||
} | ||
} | ||
|
||
export default () => { | ||
const [status, setStatus] = useState('connecting') | ||
const [currentUser, setCurrentUser] = useState(getInitialUser) | ||
|
||
const editor = useEditor({ | ||
extensions: [ | ||
StarterKit.configure({ | ||
history: false, | ||
}), | ||
Highlight, | ||
TaskList, | ||
TaskItem, | ||
CharacterCount.configure({ | ||
limit: 10000, | ||
}), | ||
Collaboration.configure({ | ||
document: ydoc, | ||
}), | ||
CollaborationCursor.configure({ | ||
provider: websocketProvider, | ||
}), | ||
], | ||
}) | ||
|
||
useEffect(() => { | ||
// Update status changes | ||
websocketProvider.on('status', event => { | ||
setStatus(event.status) | ||
}) | ||
}, []) | ||
|
||
// Save current user to localStorage and emit to editor | ||
useEffect(() => { | ||
if (editor && currentUser) { | ||
localStorage.setItem('currentUser', JSON.stringify(currentUser)) | ||
editor.chain().focus().updateUser(currentUser).run() | ||
} | ||
}, [editor, currentUser]) | ||
|
||
const setName = useCallback(() => { | ||
const name = (window.prompt('Name') || '').trim().substring(0, 32) | ||
|
||
if (name) { | ||
return setCurrentUser({ ...currentUser, name }) | ||
} | ||
}, [currentUser]) | ||
|
||
return ( | ||
<div className="editor"> | ||
{editor && <MenuBar editor={editor} />} | ||
<EditorContent className="editor__content" editor={editor} /> | ||
<div className="editor__footer"> | ||
<div className={`editor__status editor__status--${status}`}> | ||
{status === 'connected' | ||
? `${editor.storage.collaborationCursor.users.length} user${editor.storage.collaborationCursor.users.length === 1 ? '' : 's'} online in ${room}` | ||
: 'offline'} | ||
</div> | ||
<div className="editor__name"> | ||
<button onClick={setName}>{currentUser.name}</button> | ||
</div> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
context('/src/Examples/CollaborativeEditing/React/', () => { | ||
beforeEach(() => { | ||
cy.visit('/src/Examples/CollaborativeEditing/React/') | ||
}) | ||
|
||
/* it('should show the current room with participants', () => { | ||
cy.wait(6000) | ||
cy.get('.editor__status') | ||
.should('contain', 'rooms.') | ||
.should('contain', 'users online') | ||
}) | ||
it('should allow user to change name', () => { | ||
cy.window().then(win => { | ||
cy.stub(win, 'prompt').returns('John Doe') | ||
cy.get('.editor__name > button').click() | ||
cy.wait(6000) | ||
cy.get('.editor__name').should('contain', 'John Doe') | ||
}) | ||
}) */ | ||
}) |
Oops, something went wrong.