-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature/GH-130: Add action item life duration status #132
feature/GH-130: Add action item life duration status #132
Conversation
52dcda3
to
0b66833
Compare
cd368c1
to
24b3249
Compare
24b3249
to
c477478
Compare
35799a1
to
9868f77
Compare
app/javascript/components/ActionItem/ActionItemFooter/ActionItemFooter.css
Outdated
Show resolved
Hide resolved
app/javascript/components/ActionItem/TransitionButton/TransitionButton.css
Outdated
Show resolved
Hide resolved
8b24c24
to
baf2006
Compare
baf2006
to
c4b3bb7
Compare
@@ -25,18 +28,67 @@ class ActionItemFooter extends React.Component { | |||
}); | |||
} | |||
|
|||
handleMoveClick = () => { | |||
fetch(`/api/${window.location.pathname}/action_items/${this.props.id}/move`, { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
хорошая практика - выносить запросы к api в отдельный метод в отдельном файле в папке компонента
например requests.js или что-то подобное, а внутри него него должна быть функция move(), которую уже можно будет вызвать отсюда
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
хорошая практика - выносить запросы к api в отдельный метод в отдельном файле в папке компонента
например requests.js или что-то подобное, а внутри него него должна быть функция move(), которую уже можно будет вызвать отсюда
уже писал об этом, ребята решили сделать это отдельным PR)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
understood! спасибо за подробное разьяснение по расположению. там где-то 15 таких фетчей. я возьму следующим таском их все разобрать.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
огонь!
Co-Authored-By: Vitaliy Pecherin <pecherin.dev@gmail.com>
No description provided.