/
githubmirror
/
react-beautiful-dnd
Обзор
Документация
Войти
/
githubmirror
/
react-beautiful-dnd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/state/droppable/util/clip.js
17 строк
459 B
Alex Reardon
next (wip) (#823)
12 ноя 2018, 02:31
Не верифицирован
12 ноя 2018, 02:31
3dbb704
Код
Авторство
О чём код?
// @flow import { getRect, type Rect, type Spacing } from 'css-box-model'; export default (frame: Spacing, subject: Spacing): ?Rect => { const result: Rect = getRect({ top: Math.max(subject.top, frame.top), right: Math.min(subject.right, frame.right), bottom: Math.min(subject.bottom, frame.bottom), left: Math.max(subject.left, frame.left), }); if (result.width <= 0 || result.height <= 0) { return null; } return result; };