mirror of
https://github.com/usebruno/bruno.git
synced 2025-04-01 19:16:07 +02:00
70 lines
2.0 KiB
JavaScript
70 lines
2.0 KiB
JavaScript
import React, { useRef, forwardRef } from 'react';
|
|
import get from 'lodash/get';
|
|
import { IconCaretDown } from '@tabler/icons';
|
|
import Dropdown from 'components/Dropdown';
|
|
import { useDispatch } from 'react-redux';
|
|
import { updateCollectionAuthMode } from 'providers/ReduxStore/slices/collections';
|
|
import { humanizeRequestAuthMode } from 'utils/collections';
|
|
import StyledWrapper from './StyledWrapper';
|
|
|
|
const AuthMode = ({ collection }) => {
|
|
const dispatch = useDispatch();
|
|
const dropdownTippyRef = useRef();
|
|
const onDropdownCreate = (ref) => (dropdownTippyRef.current = ref);
|
|
const authMode = get(collection, 'root.request.auth.mode');
|
|
|
|
const Icon = forwardRef((props, ref) => {
|
|
return (
|
|
<div ref={ref} className="flex items-center justify-center auth-mode-label select-none">
|
|
{humanizeRequestAuthMode(authMode)} <IconCaretDown className="caret ml-1 mr-1" size={14} strokeWidth={2} />
|
|
</div>
|
|
);
|
|
});
|
|
|
|
const onModeChange = (value) => {
|
|
dispatch(
|
|
updateCollectionAuthMode({
|
|
collectionUid: collection.uid,
|
|
mode: value
|
|
})
|
|
);
|
|
};
|
|
|
|
return (
|
|
<StyledWrapper>
|
|
<div className="inline-flex items-center cursor-pointer auth-mode-selector">
|
|
<Dropdown onCreate={onDropdownCreate} icon={<Icon />} placement="bottom-end">
|
|
<div
|
|
className="dropdown-item"
|
|
onClick={() => {
|
|
dropdownTippyRef.current.hide();
|
|
onModeChange('basic');
|
|
}}
|
|
>
|
|
Basic Auth
|
|
</div>
|
|
<div
|
|
className="dropdown-item"
|
|
onClick={() => {
|
|
dropdownTippyRef.current.hide();
|
|
onModeChange('bearer');
|
|
}}
|
|
>
|
|
Bearer Token
|
|
</div>
|
|
<div
|
|
className="dropdown-item"
|
|
onClick={() => {
|
|
dropdownTippyRef.current.hide();
|
|
onModeChange('none');
|
|
}}
|
|
>
|
|
No Auth
|
|
</div>
|
|
</Dropdown>
|
|
</div>
|
|
</StyledWrapper>
|
|
);
|
|
};
|
|
export default AuthMode;
|