chore: Delete v3 files introduced in merge.

This commit is contained in:
Sam Tolmay 2022-02-01 14:38:15 +02:00
parent bdf4ee43a6
commit ea32fe60bf
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0

View File

@ -1,151 +0,0 @@
/*
Copyright 2020-2021 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React, { useState } from 'react';
import { Select } from 'antd';
import { blockDefaultProps, renderHtml } from '@lowdefy/block-tools';
import { get, type } from '@lowdefy/helpers';
import Label from '../Label/Label';
import Icon from '../Icon/Icon';
import getValueIndex from '../../getValueIndex';
import getUniqueValues from '../../getUniqueValues';
const Option = Select.Option;
const MultipleSelector = ({
blockId,
events,
loading,
methods,
properties,
required,
validation,
value,
}) => {
const [fetchState, setFetch] = useState(false);
const uniqueValueOptions = getUniqueValues(properties.options || []);
return (
<Label
blockId={blockId}
loading={loading}
properties={{ title: properties.title, size: properties.size, ...properties.label }}
required={required}
validation={validation}
content={{
content: () => (
<div className={methods.makeCssClass({ width: '100%' })}>
<div id={`${blockId}_popup`} />
<Select
id={`${blockId}_input`}
className={methods.makeCssClass([{ width: '100%' }, properties.inputStyle])}
getPopupContainer={() => document.getElementById(`${blockId}_popup`)}
mode="multiple"
autoFocus={properties.autoFocus}
disabled={properties.disabled}
placeholder={get(properties, 'placeholder', { default: 'Select items' })}
suffixIcon={
properties.suffixIcon && (
<Icon
blockId={`${blockId}_suffixIcon`}
events={events}
properties={properties.suffixIcon}
/>
)
}
clearIcon={
properties.clearIcon && (
<Icon
blockId={`${blockId}_clearIcon`}
events={events}
properties={properties.clearIcon}
/>
)
}
menuItemSelectedIcon={
properties.selectedIcon && (
<Icon
blockId={`${blockId}_selectedIcon`}
events={events}
properties={properties.selectedIcon}
/>
)
}
showArrow={get(properties, 'showArrow', { default: true })}
allowClear={properties.allowClear !== false}
size={properties.size}
filterOption={(input, option) =>
(option.filterstring || option.children.props.html || '')
.toLowerCase()
.indexOf(input.toLowerCase()) >= 0
}
notFoundContent={fetchState ? 'Loading' : 'Not found'}
onChange={(newVal) => {
const val = [];
newVal.forEach((nv) => {
val.push(
type.isPrimitive(uniqueValueOptions[nv])
? uniqueValueOptions[nv]
: uniqueValueOptions[nv].value
);
});
methods.setValue(val);
methods.triggerEvent({ name: 'onChange' });
}}
onSearch={async (value) => {
setFetch(true);
const result = await methods.triggerEvent({ name: 'onSearch', event: { value } });
if (!result.bounced) {
setFetch(false);
}
}}
value={getValueIndex(value, uniqueValueOptions, true)}
>
{uniqueValueOptions.map((opt, i) =>
type.isPrimitive(opt) ? (
<Option
className={methods.makeCssClass(properties.optionsStyle)}
id={`${blockId}_${i}`}
key={i}
value={i}
>
{renderHtml({ html: `${opt}`, methods })}
</Option>
) : (
<Option
className={methods.makeCssClass([properties.optionsStyle, opt.style])}
disabled={opt.disabled}
filterstring={opt.filterString}
id={`${blockId}_${i}`}
key={i}
value={i}
>
{type.isNone(opt.label)
? renderHtml({ html: `${opt.value}`, methods })
: renderHtml({ html: opt.label, methods })}
</Option>
)
)}
</Select>
</div>
),
}}
/>
);
};
MultipleSelector.defaultProps = blockDefaultProps;
export default MultipleSelector;