Files
DocumentServer-v-9.2.0/web-apps/apps/common/mobile/lib/view/Search.jsx
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

362 lines
13 KiB
JavaScript

import React, { Component } from 'react';
import { Popover, Popup, View, f7 } from 'framework7-react';
import { Device } from '../../../../common/mobile/utils/device';
import { observable, runInAction } from "mobx";
import { observer } from "mobx-react";
import SvgIcon from '@common/lib/component/SvgIcon';
import IconSettingsIos from '@common-ios-icons/icon-settings.svg?ios';
import IconSettingsAndroid from '@common-android-icons/icon-settings.svg';
import IconPrevIos from '@common-ios-icons/icon-prev.svg?ios';
import IconPrevAndroid from '@common-android-icons/icon-prev.svg';
import IconNextIos from '@common-ios-icons/icon-next.svg?ios';
import IconNextAndroid from '@common-android-icons/icon-next.svg';
const searchOptions = observable({
usereplace: false,
isReplaceAll: false
});
const popoverStyle = {
height: '300px'
};
const SEARCH_BACKWARD = 'back';
const SEARCH_FORWARD = 'next';
class SearchSettingsView extends Component {
constructor(props) {
super(props);
this.state = {
useReplace: false,
// caseSensitive: false,
// markResults: false
searchIn: 0,
searchBy: 1,
lookIn: 1,
isMatchCase: false,
isMatchCell: false,
isReplaceAll: false
};
}
onFindReplaceClick(action) {
runInAction(() => {
searchOptions.usereplace = action == 'replace';
searchOptions.isReplaceAll = action == 'replace-all';
});
this.setState({
useReplace: searchOptions.usereplace,
isReplaceAll: searchOptions.isReplaceAll
});
if (this.onReplaceChecked) {}
}
extraSearchOptions() {}
render() {
const show_popover = !Device.phone;
const extra = this.extraSearchOptions();
const content =
<View style={show_popover ? popoverStyle : null}>
{extra}
</View>;
return (
show_popover ?
<Popover id="idx-search-settings" className="popover__titled">{content}</Popover> :
<Popup id="idx-search-settings" className="search-settings-popup">{content}</Popup>
)
}
}
// @observer
class SearchView extends Component {
constructor(props) {
super(props);
this.state = {
searchQuery: '',
replaceQuery: ''
};
this.refSearchbarInput = React.createRef();
this.onSettingsClick = this.onSettingsClick.bind(this);
this.onSearchClick = this.onSearchClick.bind(this);
this.onReplaceClick = this.onReplaceClick.bind(this);
}
componentDidMount() {
this.$replace = $$('#idx-replace-val');
const $editor = $$('#editor_sdk');
this.onEditorTouchStart = this.onEditorTouchStart.bind(this);
this.onEditorTouchEnd = this.onEditorTouchEnd.bind(this);
$editor.on('pointerdown', this.onEditorTouchStart);
$editor.on('pointerup', this.onEditorTouchEnd);
if(!this.searchbar) {
this.searchbar = f7.searchbar.create({
el: '.searchbar',
customSearch: true,
expandable: true,
backdrop: false,
on: {
search: (sb, query, previousQuery) => {
const api = Common.EditorApi.get();
if(!query) {
api.asc_selectSearchingResults(false);
}
},
searchbarEnable: (sb) => {
this.refSearchbarInput.focus();
if(this.state.searchQuery.length > 0) {
const searchInput = document.querySelector('.searchbar-input');
searchInput.classList.add('input-with-value');
}
if (this.searchbar && this.searchbar.enabled && !this.props.isViewer) {
searchOptions.usereplace || searchOptions.isReplaceAll ? this.searchbar.el.classList.add('replace') : this.searchbar.el.classList.remove('replace');
} else {
this.searchbar.el.classList.remove('replace');
}
}
}
});
}
}
componentWillUnmount() {
$$('#editor_sdk')
.off('pointerdown', this.onEditorTouchStart)
.off('pointerup', this.onEditorTouchEnd);
if(this.searchTimer) {
clearInterval(this.searchTimer);
}
}
onSettingsClick(e) {
if ( Device.phone ) {
f7.popup.open('.search-settings-popup');
} else f7.popover.open('#idx-search-settings', '#idx-btn-search-settings');
}
searchParams() {
let params = {
find: this.state.searchQuery
};
if (searchOptions.usereplace || searchOptions.isReplaceAll) {
params.replace = this.$replace.val();
}
return params;
}
onSearchClick(action) {
if (this.searchbar && this.state.searchQuery) {
if (this.props.onSearchQuery) {
let params = this.searchParams();
params.find = this.state.searchQuery;
params.forward = action != SEARCH_BACKWARD;
this.props.onSearchQuery(params);
}
}
}
onReplaceClick() {
if (this.searchbar) {
if (this.props.onReplaceQuery) {
let params = this.searchParams();
params.find = this.state.searchQuery;
this.props.onReplaceQuery(params);
}
}
}
onReplaceAllClick() {
if (this.searchbar) {
if (this.props.onReplaceAllQuery) {
let params = this.searchParams();
params.find = this.state.searchQuery;
this.props.onReplaceAllQuery(params);
}
}
}
onEditorTouchStart(e) {
this.startPoint = this.pointerPosition(e);
}
onEditorTouchEnd(e) {
const endPoint = this.pointerPosition(e);
if (this.searchbar.enabled) {
let distance;
if(this.startPoint) {
distance = (this.startPoint.x === undefined || this.startPoint.y === undefined) ? 0 :
Math.sqrt((endPoint.x -= this.startPoint.x) * endPoint.x + (endPoint.y -= this.startPoint.y) * endPoint.y);
} else {
distance = 0;
}
if (distance < 1) {
this.searchbar.disable();
}
}
}
pointerPosition(e) {
let out = {x:0, y:0};
if ( e.type == 'pointerdown' || e.type == 'pointerup' || e.type == 'mousedown' || e.type == 'mouseup') {
out.x = e.pageX;
out.y = e.pageY;
}
return out;
}
changeSearchQuery(value) {
this.setState({
searchQuery: value
});
this.props.onchangeSearchQuery(value);
}
changeReplaceQuery(value) {
this.setState({
replaceQuery: value
});
}
onSearchKeyDown(e) {
if(e.keyCode === 13) {
if (this.state.searchQuery && this.props.onSearchQuery(this.searchParams(), true) && this.searchTimer) {
clearInterval(this.searchTimer);
this.searchTimer = undefined;
}
}
}
onSearchInput(e) {
const text = e.target.value;
const api = Common.EditorApi.get();
if (text && this.state.searchQuery !== text) {
this.setState(prevState => ({
...prevState,
searchQuery: text
}));
this.lastInputChange = new Date();
if (this.searchTimer === undefined) {
this.searchTimer = setInterval(() => {
if (new Date() - this.lastInputChange < 400) return;
if (!(this.state.searchQuery === '' || this.props.onSearchQuery(this.searchParams(), true))) {
this.props.onSearchQuery(this.searchParams(), true);
clearInterval(this.searchTimer);
this.searchTimer = undefined;
}
}, 10);
}
} else {
this.props.setNumberSearchResults(null);
}
}
render() {
const usereplace = searchOptions.usereplace;
const isReplaceAll = searchOptions.isReplaceAll;
const hidden = {display: "none"};
const searchQuery = this.state.searchQuery;
const replaceQuery = this.state.replaceQuery;
const isIos = Device.ios;
const { _t } = this.props;
const numberSearchResults = this.props.numberSearchResults;
const isViewer = this.props.isViewer ?? false;
if (this.searchbar && this.searchbar.enabled && !isViewer) {
searchOptions.usereplace || searchOptions.isReplaceAll ? this.searchbar.el.classList.add('replace') : this.searchbar.el.classList.remove('replace');
}
return (
<form className="searchbar">
{isIos ? <div className="searchbar-bg"></div> : null}
<div className="searchbar-inner">
<div className="buttons-row searchbar-inner__left">
<a id="idx-btn-search-settings" className="link icon-only no-fastclick" onClick={this.onSettingsClick}>
{Device.ios ?
<SvgIcon symbolId={IconSettingsIos.id} className='icon icon-svg' /> :
<SvgIcon symbolId={IconSettingsAndroid.id} className='icon icon-svg' />
}
</a>
</div>
<div className="searchbar-inner__center">
<div className="searchbar-input-wrap">
<input className={`searchbar-input ${searchQuery.length > 0 ? 'input-with-value' : ''}`} value={searchQuery} placeholder={_t.textSearch} type="search" maxLength="255"
onKeyDown={e => this.onSearchKeyDown(e)}
onInput={e => this.onSearchInput(e)}
onChange={e => {this.changeSearchQuery(e.target.value)}} ref={el => this.refSearchbarInput = el} />
{isIos ? <i className="searchbar-icon" /> : null}
<span className="input-clear-button" onClick={() => this.changeSearchQuery('')} />
{numberSearchResults !== null ?
<span className="number-search-results">{numberSearchResults}</span>
: null}
</div>
<div className="searchbar-input-wrap" style={(usereplace || isReplaceAll) && !isViewer ? null : hidden}>
<input value={replaceQuery} placeholder={_t.textReplace} type="text" maxLength="255" id="idx-replace-val"
onChange={e => {this.changeReplaceQuery(e.target.value)}} />
{isIos ? <i className="searchbar-icon" /> : null}
<span className="input-clear-button" onClick={() => this.changeReplaceQuery('')} />
</div>
</div>
<div className="buttons-row searchbar-inner__right">
{!isViewer &&
<div className="buttons-row buttons-row-replace">
{isReplaceAll ? (
<a id="replace-all-link" className={"link " + (searchQuery.trim().length ? "" : "disabled")} onClick={() => this.onReplaceAllClick()}>{_t.textReplaceAll}</a>
) : usereplace ? (
<a id="replace-link" className={"link " + (searchQuery.trim().length ? "" : "disabled")} onClick={() => this.onReplaceClick()}>{_t.textReplace}</a>
) : null}
</div>
}
<div className="buttons-row">
<a className={"link icon-only prev no-fastclick " + (searchQuery.trim().length ? "" : "disabled")} onClick={() => this.onSearchClick(SEARCH_BACKWARD)}>
{Device.ios ?
<SvgIcon symbolId={IconPrevIos.id} className='icon icon-svg' /> :
<SvgIcon symbolId={IconPrevAndroid.id} className='icon icon-svg' />
}
</a>
<a className={"link icon-only next no-fastclick " + (searchQuery.trim().length ? "" : "disabled")} onClick={() => this.onSearchClick(SEARCH_FORWARD)}>
{Device.ios ?
<SvgIcon symbolId={IconNextIos.id} className='icon icon-svg' /> :
<SvgIcon symbolId={IconNextAndroid.id} className='icon icon-svg' />
}
</a>
</div>
</div>
</div>
</form>
)
}
}
const SearchViewWithObserver = observer(SearchView);
const SearchSettingsViewWithObserver = observer(SearchSettingsView);
export {SearchViewWithObserver as SearchView, SearchSettingsViewWithObserver as SearchSettingsView};