mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
79 lines
1.9 KiB
TypeScript
79 lines
1.9 KiB
TypeScript
import * as React from 'react';
|
|
import { useEffect, useRef } from 'react';
|
|
import SearchBar from '../SearchBar/SearchBar';
|
|
import Button, { ButtonLevel } from '../Button/Button';
|
|
import CommandService from '@joplin/lib/services/CommandService';
|
|
import { runtime as focusSearchRuntime } from './commands/focusSearch';
|
|
const styled = require('styled-components').default;
|
|
|
|
interface Props {
|
|
showNewNoteButtons: boolean;
|
|
height: number;
|
|
}
|
|
|
|
const StyledRoot = styled.div`
|
|
box-sizing: border-box;
|
|
height: ${(props: any) => props.height}px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: ${(props: any) => props.theme.mainPadding}px;
|
|
background-color: ${(props: any) => props.theme.backgroundColor3};
|
|
`;
|
|
|
|
const StyledButton = styled(Button)`
|
|
margin-left: 8px;
|
|
`;
|
|
|
|
const ButtonContainer = styled.div`
|
|
display: flex;
|
|
flex-direction: row;
|
|
`;
|
|
|
|
export default function NoteListControls(props: Props) {
|
|
const searchBarRef = useRef(null);
|
|
|
|
useEffect(function() {
|
|
CommandService.instance().registerRuntime('focusSearch', focusSearchRuntime(searchBarRef));
|
|
|
|
return function() {
|
|
CommandService.instance().unregisterRuntime('focusSearch');
|
|
};
|
|
}, []);
|
|
|
|
function onNewTodoButtonClick() {
|
|
void CommandService.instance().execute('newTodo');
|
|
}
|
|
|
|
function onNewNoteButtonClick() {
|
|
void CommandService.instance().execute('newNote');
|
|
}
|
|
|
|
function renderNewNoteButtons() {
|
|
if (!props.showNewNoteButtons) return null;
|
|
|
|
return (
|
|
<ButtonContainer>
|
|
<StyledButton
|
|
tooltip={CommandService.instance().label('newTodo')}
|
|
iconName="far fa-check-square"
|
|
level={ButtonLevel.Primary}
|
|
onClick={onNewTodoButtonClick}
|
|
/>
|
|
<StyledButton
|
|
tooltip={CommandService.instance().label('newNote')}
|
|
iconName="icon-note"
|
|
level={ButtonLevel.Primary}
|
|
onClick={onNewNoteButtonClick}
|
|
/>
|
|
</ButtonContainer>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<StyledRoot height={props.height}>
|
|
<SearchBar inputRef={searchBarRef}/>
|
|
{renderNewNoteButtons()}
|
|
</StyledRoot>
|
|
);
|
|
}
|