f015229acf
* Rip out virtualization on the web
* Screw around with layout
* onEndReached
* scrollToOffset
* Fix background
* onScroll
* Shell bars
* More scroll
* Fixes
* position: sticky
* Clean up 1
* Clean up 2
* Undo PagerWithHeader changes and fork it
* Trim down both versions
* Cleanup 3
* Memoize, lint
* Don't scroll away modal or lightbox
* Add content-visibility for rows
* Fix composer
* Fix types
* Fix borked scroll animation
* Fixes to layout
* More FlatList parity
* Layout fixes
* Fix more layout
* More layout
* More layouts
* Fix profile layout
* Remove onScroll
* Display: none inactive pages
* Add an intermediate List component
* Fix type
* Add onScrolledDownChange
* Port pager to use onScrolledDownChange
* Fix on mobile
* Don't pass down onScroll (replacement TBD)
* Remove resetMainScroll
* Replace onMainScroll with MainScrollProvider
* Hook ScrollProvider to pager
* Fix the remaining special case
* Optimize a bit
* Enforce that onScroll cannot be passed
* Keep value updated even if no handler
* Also memo it
* Move the fork to List.web
* Add scroll handler
* Consolidate List props a bit
* More stuff
* Rm unused
* Simplify
* Make isScrolledDown work
* Oops
* Fixes
* Hook up context scroll handlers
* Scroll restore for tabs
* Route scroll restoration POC
* Fix some issues with restoration
* Remove bad idea
* Fix pager scroll restoration
* Undo accidental locale changes
* onContentSizeChange
* Scroll to post
* Better positioning
* Layout fixes
* Factor out navigation stuff
* Cleanup
* Oops
* Cleanup
* Fixes and types
* Naming etc
* Fix crash
* Match FL semantics
* Snap the header scroll on the web
* Add body scroll lock
* Scroll to top on search
* Fix types
* Typos
* Fix Safari overflow
* Fix search positioning
* Add border
* Patch react navigation
* Revert "Patch react navigation"
This reverts commit 62516ed9c2.
* fixes
* scroll
* scrollbar
* cleanup unrelated
* undo unrel
* flatter
* Fix css
* twk
138 lines
3.3 KiB
TypeScript
138 lines
3.3 KiB
TypeScript
import React from 'react'
|
|
import Picker from '@emoji-mart/react'
|
|
import {
|
|
StyleSheet,
|
|
TouchableWithoutFeedback,
|
|
useWindowDimensions,
|
|
View,
|
|
} from 'react-native'
|
|
import {textInputWebEmitter} from '../TextInput.web'
|
|
|
|
const HEIGHT_OFFSET = 40
|
|
const WIDTH_OFFSET = 100
|
|
const PICKER_HEIGHT = 435 + HEIGHT_OFFSET
|
|
const PICKER_WIDTH = 350 + WIDTH_OFFSET
|
|
|
|
export type Emoji = {
|
|
aliases?: string[]
|
|
emoticons: string[]
|
|
id: string
|
|
keywords: string[]
|
|
name: string
|
|
native: string
|
|
shortcodes?: string
|
|
unified: string
|
|
}
|
|
|
|
export interface EmojiPickerState {
|
|
isOpen: boolean
|
|
pos: {top: number; left: number; right: number; bottom: number}
|
|
}
|
|
|
|
interface IProps {
|
|
state: EmojiPickerState
|
|
close: () => void
|
|
}
|
|
|
|
export function EmojiPicker({state, close}: IProps) {
|
|
const {height, width} = useWindowDimensions()
|
|
|
|
const isShiftDown = React.useRef(false)
|
|
|
|
const position = React.useMemo(() => {
|
|
const fitsBelow = state.pos.top + PICKER_HEIGHT < height
|
|
const fitsAbove = PICKER_HEIGHT < state.pos.top
|
|
const placeOnLeft = PICKER_WIDTH < state.pos.left
|
|
const screenYMiddle = height / 2 - PICKER_HEIGHT / 2
|
|
|
|
if (fitsBelow) {
|
|
return {
|
|
top: state.pos.top + HEIGHT_OFFSET,
|
|
}
|
|
} else if (fitsAbove) {
|
|
return {
|
|
bottom: height - state.pos.bottom + HEIGHT_OFFSET,
|
|
}
|
|
} else {
|
|
return {
|
|
top: screenYMiddle,
|
|
left: placeOnLeft ? state.pos.left - PICKER_WIDTH : undefined,
|
|
right: !placeOnLeft
|
|
? width - state.pos.right - PICKER_WIDTH
|
|
: undefined,
|
|
}
|
|
}
|
|
}, [state.pos, height, width])
|
|
|
|
React.useEffect(() => {
|
|
if (!state.isOpen) return
|
|
|
|
const onKeyDown = (e: KeyboardEvent) => {
|
|
if (e.key === 'Shift') {
|
|
isShiftDown.current = true
|
|
}
|
|
}
|
|
const onKeyUp = (e: KeyboardEvent) => {
|
|
if (e.key === 'Shift') {
|
|
isShiftDown.current = false
|
|
}
|
|
}
|
|
window.addEventListener('keydown', onKeyDown, true)
|
|
window.addEventListener('keyup', onKeyUp, true)
|
|
|
|
return () => {
|
|
window.removeEventListener('keydown', onKeyDown, true)
|
|
window.removeEventListener('keyup', onKeyUp, true)
|
|
}
|
|
}, [state.isOpen])
|
|
|
|
const onInsert = (emoji: Emoji) => {
|
|
textInputWebEmitter.emit('emoji-inserted', emoji)
|
|
|
|
if (!isShiftDown.current) {
|
|
close()
|
|
}
|
|
}
|
|
|
|
if (!state.isOpen) return null
|
|
|
|
return (
|
|
<TouchableWithoutFeedback
|
|
accessibilityRole="button"
|
|
onPress={close}
|
|
accessibilityViewIsModal>
|
|
<View style={styles.mask}>
|
|
{/* eslint-disable-next-line react-native-a11y/has-valid-accessibility-descriptors */}
|
|
<TouchableWithoutFeedback onPress={e => e.stopPropagation()}>
|
|
<View style={[{position: 'absolute'}, position]}>
|
|
<Picker
|
|
data={async () => {
|
|
return (await import('./EmojiPickerData.json')).default
|
|
}}
|
|
onEmojiSelect={onInsert}
|
|
autoFocus={true}
|
|
/>
|
|
</View>
|
|
</TouchableWithoutFeedback>
|
|
</View>
|
|
</TouchableWithoutFeedback>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
mask: {
|
|
// @ts-ignore web ony
|
|
position: 'fixed',
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
width: '100%',
|
|
height: '100%',
|
|
alignItems: 'center',
|
|
},
|
|
picker: {
|
|
marginHorizontal: 'auto',
|
|
paddingRight: 50,
|
|
},
|
|
})
|