-
Notifications
You must be signed in to change notification settings - Fork 1
Description
problem / the importance of problem 1~3 (in my opinion)
- Image load problem (3):
- [ We didn't implement properly the image handling part of frontend.]
- Main view problem (3):
[Onlocation, It uses the outdatedreviewListUI design.][It doesn't filter the reviews by its distance from user.]
- Location view problem (3)
[OnreviewDetail, the location of restaurant doesn't appear.][Onmain/location, the marker for restaurants of reviews don't appear.][OnreviewDetail, marker doesn't appear in the middle of maps; sometimes the marker is out of the initial map range.]
- ReviewDetail UI problem (2)
[OnreviewDetail, It uses the outdatedreviewListtag design.][Better Layout is required; smaller maps, smaller pictuers, bigger and readable title, author, etc information. Don't usetextareawhen the user cannot edit its content.]
- Upload Problem (3):
-
[Backend problem; It appears the backend cannot handle some specific input.
For input 'Good Good I love sour pizza. I like lemon.', the backend returns error:
/pytorch/aten/src/ATen/native/LegacyDefinitions.cpp:19: UserWarning: masked_fill_ received a mask with dtype torch.uint8, this behavior is now deprecated,please use a mask with dtype torch.bool instead. Good Good I love sour pizza. I like lemon. Internal Server Error: /api/review/ Traceback (most recent call last): File "/home/jyeok/proj/team10/swpp2019-team10/backend/env/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner response = get_response(request) File "/home/jyeok/proj/team10/swpp2019-team10/backend/env/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response response = self.process_exception_by_middleware(e, request) File "/home/jyeok/proj/team10/swpp2019-team10/backend/env/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/usr/lib/python3.6/contextlib.py", line 52, in inner return func(*args, **kwds) File "/home/jyeok/proj/team10/swpp2019-team10/backend/foodbook/foodbook_api/views/review_views.py", line 98, in review_list tags = Tagging(request.user.profile, menu, rating).tagging(content) File "/home/jyeok/proj/team10/swpp2019-team10/backend/foodbook/foodbook_api/algorithms/tagging.py", line 147, in tagging list_of_tags = self.tagging_for_recommend(text) File "/home/jyeok/proj/team10/swpp2019-team10/backend/foodbook/foodbook_api/algorithms/tagging.py", line 185, in tagging_for_recommend if adj == tag: File "/home/jyeok/proj/team10/swpp2019-team10/backend/foodbook/foodbook_api/algorithms/tagging.py", line 211, in __eq__ return self.name.lemma == value.name.lemma and self.advmod.lemma == value.advmod.lemma AttributeError: 'NoneType' object has no attribute 'lemma'] -
[When user select the place which is not a restaurant from thegoogleMap, execption below is thrown:Cannot read property 'includes' of undefined]
- Recommendation view problem (3)
[When we get reviews fromrecommendation, we can't see thereviewDetailof suggested restaurants.][Recommendation by Location seems to broken; It doesn't show the list of restaurants.][3. Abouttaste, I cannot find the 'spicy' related keyword.]
- Edit problem (3):
[Editdon't works. It returns400 Bad Requestinstead.]
Fixed by @th-snu Fixed ReviewDetail Marker issue (issue #106) #108 but another problem occurs[After editing a review, new content is not updated until the page is refreshed.][After closing thereviewDetailmodal, the tag ofreviewPreviewinmaincomponent changes temporarily (until refresh) to default value.]
- Main problem (3):
[onfriend's main page, thelocation,calendar, andcategoryview shows the user's reviews, not thefriend's reviews.]