SYMBOL INDEX (131 symbols across 30 files) FILE: backend/sql/schema.sql type notes (line 1) | Create Table notes ( FILE: frontend/src/App.tsx type IAppProps (line 10) | interface IAppProps { FILE: frontend/src/components/Dropdown/dropdown.tsx type IDropdownProps (line 5) | interface IDropdownProps { class Dropdown (line 14) | class Dropdown extends React.Component { method componentDidMount (line 15) | public componentDidMount() { method render (line 20) | public render() { FILE: frontend/src/components/Footer/footer.tsx class Footer (line 4) | class Footer extends React.Component { method render (line 5) | public render() { FILE: frontend/src/components/Header/header.tsx type IHeaderStateProps (line 13) | interface IHeaderStateProps { class Header (line 17) | class Header extends React.Component { method constructor (line 18) | constructor(props: IHeaderStateProps) { method checkActive (line 22) | public checkActive(urls: string[]) { method componentDidMount (line 32) | public componentDidMount() { method render (line 37) | public render() { FILE: frontend/src/pages/HomePage/components/Carousel/carousel.tsx class Carousel (line 22) | class Carousel extends React.Component { method componentDidMount (line 25) | public componentDidMount() { method componentWillUnmount (line 31) | public componentWillUnmount() { method render (line 56) | public render() { FILE: frontend/src/pages/HomePage/components/Carousel/constants/carousel.tsx constant TOAST_DISPLAY_DURATION (line 2) | const TOAST_DISPLAY_DURATION = 3000; constant TOOLTIP_DELAY_TIME (line 5) | const TOOLTIP_DELAY_TIME = 50; constant CAROUSEL_AUTOPLAY_INTERVAL (line 8) | const CAROUSEL_AUTOPLAY_INTERVAL = 3500; FILE: frontend/src/pages/HomePage/components/Pushpin/pushpin.tsx type IPushpinProps (line 6) | interface IPushpinProps { class Pushpin (line 11) | class Pushpin extends React.Component { method render (line 12) | public render() { FILE: frontend/src/pages/HomePage/components/TranslationButton/translationButton.tsx class TranslationButton (line 9) | class TranslationButton extends React.Component { method componentDidMount (line 10) | public componentDidMount() { method render (line 20) | public render() { FILE: frontend/src/pages/HomePage/homePage.tsx class HomePage (line 10) | class HomePage extends React.Component { method componentDidMount (line 11) | public componentDidMount() { method render (line 28) | public render() { FILE: frontend/src/pages/NotFoundPage/notFoundPage.tsx type INotFoundPageState (line 13) | interface INotFoundPageState { class NotFoundPage (line 17) | class NotFoundPage extends React.Component<{}, INotFoundPageState> { method constructor (line 18) | constructor(props: {}) { method render (line 29) | public render() { FILE: frontend/src/pages/ParallaxPage/components/PrismCodes/constants/prismCodes.tsx constant PARALLAX_CODE (line 2) | const PARALLAX_CODE = ` FILE: frontend/src/pages/ParallaxPage/components/PrismCodes/prismCodes.tsx type IPrismCodesProps (line 7) | interface IPrismCodesProps { class PrismCodes (line 11) | class PrismCodes extends React.Component { method componentDidMount (line 12) | public componentDidMount() { method render (line 16) | public render() { FILE: frontend/src/pages/ParallaxPage/parallaxPage.tsx class ParallaxPage (line 8) | class ParallaxPage extends React.Component { method componentDidMount (line 9) | public componentDidMount() { method render (line 14) | public render() { FILE: frontend/src/pages/ReactPage/components/FetchNote/fetchNote.tsx type IFetchNoteStateProps (line 15) | interface IFetchNoteStateProps { type IFetchNoteDispatchProps (line 21) | interface IFetchNoteDispatchProps { type IFetchNoteProps (line 29) | interface IFetchNoteProps extends IFetchNoteStateProps, IFetchNoteDispat... class FetchNote (line 31) | class FetchNote extends React.Component { method render (line 37) | public render() { FILE: frontend/src/pages/ReactPage/components/TodoLayout/components/TodoFooter/components/TodoFilter/todoFilter.tsx type ITodoFilterStateProps (line 12) | interface ITodoFilterStateProps { type ITodoFilterDispatchProps (line 16) | interface ITodoFilterDispatchProps { type ITodoFilterProps (line 20) | interface ITodoFilterProps extends ITodoFilterStateProps, ITodoFilterDis... class TodoFilter (line 22) | class TodoFilter extends React.Component { method render (line 28) | public render() { type ITodoFilterOwnProps (line 47) | interface ITodoFilterOwnProps { FILE: frontend/src/pages/ReactPage/components/TodoLayout/components/TodoFooter/todoFooter.tsx class TodoFooter (line 6) | class TodoFooter extends React.Component { method render (line 7) | public render() { FILE: frontend/src/pages/ReactPage/components/TodoLayout/components/TodoInput/todoInput.tsx type ITodoInputDispatchProps (line 10) | interface ITodoInputDispatchProps { class TodoInput (line 16) | class TodoInput extends React.Component { method render (line 30) | public render() { FILE: frontend/src/pages/ReactPage/components/TodoLayout/components/TodoList/components/Todo/todo.tsx type ITodoProps (line 7) | interface ITodoProps extends ITodo { class Todo (line 11) | class Todo extends React.Component { method render (line 17) | public render() { FILE: frontend/src/pages/ReactPage/components/TodoLayout/components/TodoList/todoList.tsx type ITodoListStateProps (line 14) | interface ITodoListStateProps { type ITodoListDispatchProps (line 18) | interface ITodoListDispatchProps { type ITodoListProps (line 22) | interface ITodoListProps extends ITodoListStateProps, ITodoListDispatchP... class TodoList (line 24) | class TodoList extends React.Component { method render (line 30) | public render() { FILE: frontend/src/pages/ReactPage/components/TodoLayout/todoLayout.tsx class TodoLayout (line 10) | class TodoLayout extends React.Component { method render (line 11) | public render() { FILE: frontend/src/pages/ReactPage/reactPage.tsx class ReactPage (line 7) | class ReactPage extends React.Component { method render (line 8) | public render() { FILE: frontend/src/services/notes/apis.tsx class NotesAPI (line 7) | class NotesAPI { method fetchAll (line 8) | public static fetchAll() { method fetch (line 23) | public static fetch(payload: IActionFetchNoteRequested['payload']) { method add (line 38) | public static add(payload: IActionAddNoteRequested['payload']) { method edit (line 54) | public static edit(payload: IActionEditNoteRequested['payload']) { method remove (line 70) | public static remove(payload: IActionRemoveNoteRequested['payload']) { FILE: frontend/src/services/notes/constants.tsx constant FETCH_ALL_NOTES_REQUESTED (line 3) | const FETCH_ALL_NOTES_REQUESTED = 'FETCH_ALL_NOTES/REQUESTED'; constant FETCH_ALL_NOTES_SUCCESS (line 4) | const FETCH_ALL_NOTES_SUCCESS = 'FETCH_ALL_NOTES/SUCCESS'; constant FETCH_ALL_NOTES_FAILURE (line 5) | const FETCH_ALL_NOTES_FAILURE = 'FETCH_ALL_NOTES/FAILURE'; constant ASYNC_FETCH_ALL_NOTES (line 6) | const ASYNC_FETCH_ALL_NOTES: IAsyncCall = { constant FETCH_NOTE_REQUESTED (line 11) | const FETCH_NOTE_REQUESTED = 'FETCH_NOTE/REQUESTED'; constant FETCH_NOTE_SUCCESS (line 12) | const FETCH_NOTE_SUCCESS = 'FETCH_NOTE/SUCCESS'; constant FETCH_NOTE_FAILURE (line 13) | const FETCH_NOTE_FAILURE = 'FETCH_NOTE/FAILURE'; constant ASYNC_FETCH_NOTE (line 14) | const ASYNC_FETCH_NOTE: IAsyncCall = { constant EDIT_NOTE_REQUESTED (line 19) | const EDIT_NOTE_REQUESTED = 'EDIT_NOTE/REQUESTED'; constant EDIT_NOTE_SUCCESS (line 20) | const EDIT_NOTE_SUCCESS = 'EDIT_NOTE/SUCCESS'; constant EDIT_NOTE_FAILURE (line 21) | const EDIT_NOTE_FAILURE = 'EDIT_NOTE/FAILURE'; constant ASYNC_EDIT_NOTE (line 22) | const ASYNC_EDIT_NOTE: IAsyncCall = { constant ADD_NOTE_REQUESTED (line 27) | const ADD_NOTE_REQUESTED = 'ADD_NOTE/REQUESTED'; constant ADD_NOTE_SUCCESS (line 28) | const ADD_NOTE_SUCCESS = 'ADD_NOTE/SUCCESS'; constant ADD_NOTE_FAILURE (line 29) | const ADD_NOTE_FAILURE = 'ADD_NOTE/FAILURE'; constant ASYNC_ADD_NOTE (line 30) | const ASYNC_ADD_NOTE: IAsyncCall = { constant REMOVE_NOTE_REQUESTED (line 35) | const REMOVE_NOTE_REQUESTED = 'REMOVE_NOTE/REQUESTED'; constant REMOVE_NOTE_SUCCESS (line 36) | const REMOVE_NOTE_SUCCESS = 'REMOVE_NOTE/SUCCESS'; constant REMOVE_NOTE_FAILURE (line 37) | const REMOVE_NOTE_FAILURE = 'REMOVE_NOTE/FAILURE'; constant ASYNC_REMOVE_NOTE (line 38) | const ASYNC_REMOVE_NOTE: IAsyncCall = { FILE: frontend/src/services/notes/reducer.tsx class NotesStateRecord (line 7) | class NotesStateRecord extends Record(state) implements INotesStateRecor... FILE: frontend/src/services/notes/types.d.ts type INotesState (line 6) | interface INotesState { type INote (line 11) | interface INote { type INotesStateRecord (line 15) | interface INotesStateRecord extends Record, INotesState {} type IActionFetchAllNotesRequested (line 18) | interface IActionFetchAllNotesRequested { type IActionFetchAllNotesSuccess (line 22) | interface IActionFetchAllNotesSuccess { type IActionFetchAllNotesFailure (line 28) | interface IActionFetchAllNotesFailure { type IActionFetchNoteRequested (line 35) | interface IActionFetchNoteRequested { type IActionFetchNoteSuccess (line 41) | interface IActionFetchNoteSuccess { type IActionFetchNoteFailure (line 47) | interface IActionFetchNoteFailure { type IActionAddNoteRequested (line 54) | interface IActionAddNoteRequested { type IActionAddNoteSuccess (line 60) | interface IActionAddNoteSuccess { type IActionAddNoteFailure (line 66) | interface IActionAddNoteFailure { type IActionEditNoteRequested (line 73) | interface IActionEditNoteRequested { type IActionEditNoteSuccess (line 80) | interface IActionEditNoteSuccess { type IActionEditNoteFailure (line 86) | interface IActionEditNoteFailure { type IActionRemoveNoteRequested (line 93) | interface IActionRemoveNoteRequested { type IActionRemoveNoteSuccess (line 99) | interface IActionRemoveNoteSuccess { type IActionRemoveNoteFailure (line 105) | interface IActionRemoveNoteFailure { type IActionsNotes (line 112) | type IActionsNotes FILE: frontend/src/services/todos/constants.tsx constant ADD_TODO (line 2) | const ADD_TODO = 'ADD_TODO'; constant TOGGLE_TODO (line 3) | const TOGGLE_TODO = 'TOGGLE_TODO'; constant SET_VISIBILITY_FILTER (line 6) | const SET_VISIBILITY_FILTER = 'SET_VISIBILITY_FILTER'; constant VISIBILITY_FILTER_OPTIONS (line 9) | const VISIBILITY_FILTER_OPTIONS = { FILE: frontend/src/services/todos/reducer.tsx class TodosStateRecord (line 7) | class TodosStateRecord extends Record(state) implements ITodosStateRecor... FILE: frontend/src/services/todos/types.d.ts type ITodosState (line 6) | interface ITodosState { type ITodo (line 10) | interface ITodo { type ITodosStateRecord (line 15) | interface ITodosStateRecord extends Record, ITodosState {} type IActionAddTodo (line 18) | interface IActionAddTodo { type IActionToggleTodo (line 24) | interface IActionToggleTodo { type IActionSetVisibilityFilter (line 28) | interface IActionSetVisibilityFilter { type IActionsTodo (line 33) | type IActionsTodo FILE: frontend/src/types/global.d.ts type IGlobalState (line 8) | interface IGlobalState { type IGlobalStateRecord (line 13) | interface IGlobalStateRecord extends Record, IGlobalState {} type IAsyncCall (line 16) | interface IAsyncCall {