mirror of
https://github.com/plausible/analytics.git
synced 2024-12-19 15:41:56 +03:00
9e9555f719
* automatic CONVERSIONS -> PROPS navigation In the Behaviours section, we'll navigate from Goal Conversions > Properties, when a goal filter is applied by clicking on an entry in the Goal Conversions list. This navigation does not happen for pageview goals or special goals (e.g. 'Outbound Link: Click', 'File Download', etc.) The Behaviours component will remember that the navigation happened in order to return the user to the previous view when the goal filter is removed. * ability to store prop_keys per goal in localStorage * pass the onclick handler to the Details view too This makes sure that when a listItem is clicked in the Details view, the same behaviour (such as changing the Locations tab from 'Countries' to 'Regions') is called. * bugfix - always escape pipes when applying goal/prop filters * disable propkey selection when prop filter applied * make the propkey selector take up all the width
294 lines
8.9 KiB
JavaScript
294 lines
8.9 KiB
JavaScript
import React, { Fragment, useState, useCallback, useEffect, useRef } from 'react'
|
|
import { Transition } from '@headlessui/react'
|
|
import { ChevronDownIcon } from '@heroicons/react/20/solid'
|
|
import debounce from 'debounce-promise'
|
|
import classNames from 'classnames'
|
|
|
|
function Option({isHighlighted, onClick, onMouseEnter, text, id}) {
|
|
const className = classNames('relative cursor-pointer select-none py-2 px-3', {
|
|
'text-gray-900 dark:text-gray-300': !isHighlighted,
|
|
'bg-indigo-600 text-white': isHighlighted,
|
|
})
|
|
|
|
return (
|
|
<li
|
|
className={className}
|
|
id={id}
|
|
onClick={onClick}
|
|
onMouseEnter={onMouseEnter}
|
|
>
|
|
<span className="block truncate">{text}</span>
|
|
</li>
|
|
)
|
|
}
|
|
function scrollTo(wrapper, id) {
|
|
if (wrapper) {
|
|
const el = wrapper.querySelector('#' + id)
|
|
|
|
if (el) {
|
|
el.scrollIntoView({block: 'center'})
|
|
}
|
|
}
|
|
}
|
|
|
|
function optionId(index) {
|
|
return `plausible-combobox-option-${index}`
|
|
}
|
|
|
|
export default function PlausibleCombobox(props) {
|
|
const [options, setOptions] = useState([])
|
|
const [loading, setLoading] = useState(false)
|
|
const [isOpen, setOpen] = useState(false)
|
|
const [input, setInput] = useState('')
|
|
const [highlightedIndex, setHighlightedIndex] = useState(0)
|
|
const searchRef = useRef(null)
|
|
const containerRef = useRef(null)
|
|
const listRef = useRef(null)
|
|
|
|
const visibleOptions = [...options]
|
|
if (props.freeChoice && input.length > 0 && options.every(option => option.value !== input)) {
|
|
visibleOptions.push({value: input, label: input, freeChoice: true})
|
|
}
|
|
|
|
function highLight(index) {
|
|
let newIndex = index
|
|
|
|
if (index < 0) {
|
|
newIndex = visibleOptions.length - 1
|
|
} else if (index >= visibleOptions.length) {
|
|
newIndex = 0
|
|
}
|
|
|
|
setHighlightedIndex(newIndex)
|
|
scrollTo(listRef.current, optionId(newIndex))
|
|
}
|
|
|
|
function onKeyDown(e) {
|
|
if (e.key === 'Enter') {
|
|
if (!isOpen || loading || visibleOptions.length === 0) return null
|
|
selectOption(visibleOptions[highlightedIndex])
|
|
e.preventDefault()
|
|
}
|
|
if (e.key === 'Escape') {
|
|
if (!isOpen || loading) return null
|
|
setOpen(false)
|
|
searchRef.current?.focus()
|
|
e.preventDefault()
|
|
}
|
|
if (e.key === 'ArrowDown') {
|
|
if (isOpen) {
|
|
highLight(highlightedIndex + 1)
|
|
} else {
|
|
setOpen(true)
|
|
}
|
|
}
|
|
if (e.key === 'ArrowUp') {
|
|
if (isOpen) {
|
|
highLight(highlightedIndex - 1)
|
|
} else {
|
|
setOpen(true)
|
|
}
|
|
}
|
|
}
|
|
|
|
function isDisabled(option) {
|
|
return props.values.some((val) => val.value === option.value)
|
|
}
|
|
|
|
function fetchOptions(query) {
|
|
setLoading(true)
|
|
setOpen(true)
|
|
|
|
return props.fetchOptions(query).then((loadedOptions) => {
|
|
setLoading(false)
|
|
setHighlightedIndex(0)
|
|
setOptions(loadedOptions)
|
|
})
|
|
}
|
|
|
|
const debouncedFetchOptions = useCallback(debounce(fetchOptions, 200), [fetchOptions])
|
|
|
|
function onInput(e) {
|
|
const newInput = e.target.value
|
|
setInput(newInput)
|
|
debouncedFetchOptions(newInput)
|
|
}
|
|
|
|
function toggleOpen() {
|
|
if (!isOpen) {
|
|
fetchOptions(input)
|
|
searchRef.current.focus()
|
|
} else {
|
|
setInput('')
|
|
setOpen(false)
|
|
}
|
|
}
|
|
|
|
function selectOption(option) {
|
|
if (props.singleOption) {
|
|
props.onSelect([option])
|
|
} else {
|
|
searchRef.current.focus()
|
|
props.onSelect([...props.values, option])
|
|
}
|
|
|
|
setOpen(false)
|
|
setInput('')
|
|
}
|
|
|
|
function removeOption(option, e) {
|
|
e.stopPropagation()
|
|
const newValues = props.values.filter((val) => val.value !== option.value)
|
|
props.onSelect(newValues)
|
|
searchRef.current.focus()
|
|
setOpen(false)
|
|
}
|
|
|
|
const handleClick = useCallback((e) => {
|
|
if (containerRef.current && containerRef.current.contains(e.target)) { return }
|
|
|
|
setInput('')
|
|
setOpen(false)
|
|
})
|
|
|
|
useEffect(() => {
|
|
document.addEventListener("mousedown", handleClick, false)
|
|
return () => { document.removeEventListener("mousedown", handleClick, false) }
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
if (props.singleOption && props.values.length === 0) {
|
|
searchRef.current.focus()
|
|
}
|
|
}, [props.values.length === 0])
|
|
|
|
const searchBoxClass = 'border-none py-1 px-0 w-full inline-block rounded-md focus:outline-none focus:ring-0 text-sm'
|
|
|
|
const containerClass = classNames('relative w-full', {
|
|
[props.className]: !!props.className,
|
|
'opacity-30 cursor-default pointer-events-none': props.isDisabled
|
|
})
|
|
|
|
function renderSingleOptionContent() {
|
|
const itemSelected = props.values.length === 1
|
|
const placeholder = itemSelected ? '' : props.placeholder
|
|
|
|
return (
|
|
<div className='flex items-center truncate'>
|
|
{ itemSelected && renderSingleSelectedItem() }
|
|
<input
|
|
className={searchBoxClass}
|
|
ref={searchRef}
|
|
value={input}
|
|
style={{backgroundColor: "inherit"}}
|
|
placeholder={placeholder}
|
|
type="text"
|
|
onChange={onInput}>
|
|
</input>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function renderSingleSelectedItem() {
|
|
if (input === '') {
|
|
return (
|
|
<span className="dark:text-gray-300 text-sm w-0">
|
|
{props.values[0].label}
|
|
</span>
|
|
)
|
|
}
|
|
}
|
|
|
|
function renderMultiOptionContent() {
|
|
return (
|
|
<>
|
|
{ props.values.map((value) => {
|
|
return (
|
|
<div key={value.value} className="bg-indigo-100 dark:bg-indigo-600 flex justify-between w-full rounded-sm px-2 py-0.5 m-0.5 text-sm">
|
|
<span className='break-all'>{value.label}</span>
|
|
<span onClick={(e) => removeOption(value, e)} className="cursor-pointer font-bold ml-1">×</span>
|
|
</div>
|
|
)
|
|
})
|
|
}
|
|
<input className={searchBoxClass} ref={searchRef} value={input} style={{backgroundColor: "inherit"}} placeholder={props.placeholder} type="text" onChange={onInput}></input>
|
|
</>
|
|
)
|
|
}
|
|
|
|
function renderDropDownContent() {
|
|
const matchesFound = visibleOptions.length > 0 && visibleOptions.some(option => !isDisabled(option))
|
|
|
|
if (loading) {
|
|
return <div className="relative cursor-default select-none py-2 px-4 text-gray-700 dark:text-gray-300">Loading options...</div>
|
|
}
|
|
|
|
if (matchesFound) {
|
|
return visibleOptions
|
|
.filter(option => !isDisabled(option))
|
|
.map((option, i) => {
|
|
const text = option.freeChoice ? `Filter by '${option.label}'` : option.label
|
|
|
|
return (
|
|
<Option
|
|
key={option.value}
|
|
id={optionId(i)}
|
|
isHighlighted={highlightedIndex === i}
|
|
onClick={() => selectOption(option)}
|
|
onMouseEnter={() => setHighlightedIndex(i)}
|
|
text={text}
|
|
/>
|
|
)
|
|
})
|
|
}
|
|
|
|
if (props.freeChoice) {
|
|
return <div className="relative cursor-default select-none py-2 px-4 text-gray-700 dark:text-gray-300">Start typing to apply filter</div>
|
|
}
|
|
|
|
return (
|
|
<div className="relative cursor-default select-none py-2 px-4 text-gray-700 dark:text-gray-300">
|
|
No matches found in the current dashboard. Try selecting a different time range or searching for something different
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const defaultBoxClass = 'pl-2 pr-8 py-1 w-full dark:bg-gray-900 dark:text-gray-300 rounded-md shadow-sm border border-gray-300 dark:border-gray-700 focus-within:border-indigo-500 focus-within:ring-1 focus-within:ring-indigo-500'
|
|
const boxClass = classNames(props.boxClass || defaultBoxClass, {
|
|
'border-indigo-500 ring-1 ring-indigo-500': isOpen,
|
|
})
|
|
|
|
return (
|
|
<div onKeyDown={onKeyDown} ref={containerRef} className={containerClass}>
|
|
<div onClick={toggleOpen} className={boxClass }>
|
|
{props.singleOption && renderSingleOptionContent()}
|
|
{!props.singleOption && renderMultiOptionContent()}
|
|
<div className="cursor-pointer absolute inset-y-0 right-0 flex items-center pr-2">
|
|
{!loading && <ChevronDownIcon className="h-4 w-4 text-gray-500" />}
|
|
{loading && <Spinner />}
|
|
</div>
|
|
</div>
|
|
{isOpen && <Transition
|
|
as={Fragment}
|
|
leave="transition ease-in duration-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
show={isOpen}
|
|
>
|
|
<ul ref={listRef} className="z-50 absolute mt-1 max-h-60 w-full overflow-auto rounded-md bg-white py-1 text-base shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm dark:bg-gray-900">
|
|
{ renderDropDownContent() }
|
|
</ul>
|
|
</Transition>}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function Spinner() {
|
|
return (
|
|
<svg className="animate-spin h-4 w-4 text-indigo-500" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
|
|
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
|
</svg>
|
|
)
|
|
}
|