2023-11-30 08:50:29 +00:00
|
|
|
|
import clsx from 'clsx'
|
|
|
|
|
|
2023-11-02 19:21:51 +00:00
|
|
|
|
import { useLocalize } from '../../../context/localize'
|
|
|
|
|
import { Icon } from '../../_shared/Icon'
|
2023-11-30 08:50:29 +00:00
|
|
|
|
|
|
|
|
|
import styles from './SearchModal.module.scss'
|
2023-11-02 19:21:51 +00:00
|
|
|
|
|
|
|
|
|
export const SearchModal = () => {
|
|
|
|
|
const { t } = useLocalize()
|
|
|
|
|
|
|
|
|
|
const action = '/search'
|
|
|
|
|
const method = 'get'
|
|
|
|
|
let msgElement: HTMLTextAreaElement | undefined
|
|
|
|
|
let contactElement: HTMLInputElement | undefined
|
|
|
|
|
const submit = async () => {
|
|
|
|
|
await fetch(action, {
|
|
|
|
|
method,
|
|
|
|
|
headers: {
|
|
|
|
|
accept: 'application/json',
|
2023-11-29 20:26:15 +00:00
|
|
|
|
'content-type': 'application/json; charset=utf-8',
|
2023-11-02 19:21:51 +00:00
|
|
|
|
},
|
2023-11-29 20:26:15 +00:00
|
|
|
|
body: JSON.stringify({ contact: contactElement?.value, message: msgElement?.textContent }),
|
2023-11-02 19:21:51 +00:00
|
|
|
|
})
|
|
|
|
|
// hideModal()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<form method={method} action={action} onSubmit={submit} class={styles.searchForm}>
|
|
|
|
|
<input
|
|
|
|
|
type="text"
|
|
|
|
|
name="contact"
|
|
|
|
|
placeholder={t('Site search')}
|
|
|
|
|
ref={contactElement}
|
|
|
|
|
class={styles.searchField}
|
|
|
|
|
/>
|
2023-11-30 08:50:29 +00:00
|
|
|
|
<button type="submit" class={styles.submitControl}>
|
2023-11-02 19:21:51 +00:00
|
|
|
|
<Icon name="search" />
|
|
|
|
|
</button>
|
|
|
|
|
<p class={styles.searchDescription}>
|
|
|
|
|
Для поиска публикаций, искусства, комментариев, интересных вам авторов и тем, просто начните
|
|
|
|
|
вводить ваш запрос
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<ul class={clsx('view-switcher', styles.filterSwitcher)}>
|
|
|
|
|
<li class="view-switcher__item view-switcher__item--selected">
|
|
|
|
|
<button type="button">Все</button>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="view-switcher__item">
|
|
|
|
|
<button type="button">Публикации</button>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="view-switcher__item">
|
|
|
|
|
<button type="button">Темы</button>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<div class={styles.filterResults}>
|
|
|
|
|
<button type="button" class={styles.filterResultsControl}>
|
|
|
|
|
Период времени
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.filterResultsControl}>
|
|
|
|
|
Рейтинг
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.filterResultsControl}>
|
|
|
|
|
Тип постов
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.filterResultsControl}>
|
|
|
|
|
Темы
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.filterResultsControl}>
|
|
|
|
|
Авторы
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.filterResultsControl}>
|
|
|
|
|
Сообщества
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="container-xl">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class={clsx('col-md-18 offset-md-2', styles.topicsList)}>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
За месяц
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#репортажи
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#интервью
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#культура
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#поэзия
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#теории
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#война в украине
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#общество
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#Экспериментальная Музыка
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
Рейтинг 300+
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#Протесты
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
Музыка
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#За линией Маннергейма
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
Тесты
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
Коллективные истории
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#личный опыт
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
Тоня Самсонова
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#личный опыт
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
#Секс
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" class={styles.topTopic}>
|
|
|
|
|
Молоко Plus
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
)
|
|
|
|
|
}
|