1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-02-08 09:01:01 +01:00
来诺 d4a58543b5 Fix hovering menu (#1230)
* Fix hovering menu example by using ReactDOM.createPortal

* Format

* Fix tests
2017-10-14 13:06:27 -07:00

188 lines
3.4 KiB
JavaScript

import { Editor } from 'slate-react'
import { State } from 'slate'
import React from 'react'
import ReactDOM from 'react-dom'
import initialState from './state.json'
const root = document.querySelector('main')
/**
* Define a schema.
*
* @type {Object}
*/
const schema = {
marks: {
bold: props => <strong>{props.children}</strong>,
code: props => <code>{props.children}</code>,
italic: props => <em>{props.children}</em>,
underlined: props => <u>{props.children}</u>,
}
}
function Menu({ menuRef, onChange, state }) {
/**
* Check if the current selection has a mark with `type` in it.
*
* @param {String} type
* @return {Boolean}
*/
function hasMark(type) {
return state.activeMarks.some(mark => mark.type == type)
}
/**
* When a mark button is clicked, toggle the current mark.
*
* @param {Event} e
* @param {String} type
*/
function onClickMark(e, type) {
e.preventDefault()
const change = state
.change()
.toggleMark(type)
onChange(change)
}
/**
* Render a mark-toggling toolbar button.
*
* @param {String} type
* @param {String} icon
* @return {Element}
*/
function renderMarkButton(type, icon) {
const isActive = hasMark(type)
function onMouseDown(e) {
onClickMark(e, type)
}
return (
<span className="button" onMouseDown={onMouseDown} data-active={isActive}>
<span className="material-icons">{icon}</span>
</span>
)
}
return (
ReactDOM.createPortal(
<div className="menu hover-menu" ref={menuRef}>
{renderMarkButton('bold', 'format_bold')}
{renderMarkButton('italic', 'format_italic')}
{renderMarkButton('underlined', 'format_underlined')}
{renderMarkButton('code', 'code')}
</div>, root
)
)
}
/**
* The hovering menu example.
*
* @type {Component}
*/
class HoveringMenu extends React.Component {
/**
* Deserialize the raw initial state.
*
* @type {Object}
*/
state = {
state: State.fromJSON(initialState)
}
/**
* On update, update the menu.
*/
componentDidMount = () => {
this.updateMenu()
}
componentDidUpdate = () => {
this.updateMenu()
}
/**
* On change.
*
* @param {Change} change
*/
onChange = ({ state }) => {
this.setState({ state })
}
/**
* Set menu ref
*
*/
menuRef = el => this.menu = el
/**
* Render.
*
* @return {Element}
*/
render() {
return (
<div>
<Menu
menuRef={this.menuRef}
state={this.state.state}
onChange={this.onChange}
/>
<div className="editor">
<Editor
schema={schema}
state={this.state.state}
onChange={this.onChange}
/>
</div>
</div>
)
}
/**
* Update the menu's absolute position.
*/
updateMenu = () => {
const { state } = this.state
const menu = this.menu
if (!menu) return
if (state.isBlurred || state.isEmpty) {
menu.removeAttribute('style')
return
}
const selection = window.getSelection()
const range = selection.getRangeAt(0)
const rect = range.getBoundingClientRect()
menu.style.opacity = 1
menu.style.top = `${rect.top + window.scrollY - menu.offsetHeight}px`
menu.style.left = `${rect.left + window.scrollX - menu.offsetWidth / 2 + rect.width / 2}px`
}
}
/**
* Export.
*/
export default HoveringMenu