Closed IuliiaHerets closed 1 month ago
Triggered auto assignment to @slafortune (Bug
), see https://stackoverflow.com/c/expensify/questions/14418 for more details. Please add this bug to a GH project, as outlined in the SO.
We think that this bug might be related to #vip-vsb
@slafortune FYI I haven't added the External label as I wasn't 100% sure about this issue. Please take a look and add the label if you agree it's a bug and can be handled by external contributors
In welcome video, all playback speed options is not shown in normal mode
We are missing playback speeds that are offered by the native players
We should add the missing playback speeds of 0.75
& 1.25
here
Edited by proposal-police: This proposal was edited at 2024-08-12 01:07:01 UTC.
In the welcome video, all playback speed options shown is full screen mode is not shown in normal mode.
The playback speed options shown in full screen mode contain [0.25, 0.5, 0.75, Normal, 1.25, 1.5, .175, 2]
but in normal mode, it is just [0.25, 0.5, 1, 1.5, 2]
:
https://github.com/Expensify/App/blob/0341c3b4e43c6b483f64c9c79b85eeebfdc6faf1/src/CONST.ts#L4164
https://github.com/Expensify/App/blob/0341c3b4e43c6b483f64c9c79b85eeebfdc6faf1/src/components/VideoPlayerContexts/VideoPopoverMenuContext.tsx#L58
We need to add the missing playback speed value in normal mode: https://github.com/Expensify/App/blob/0341c3b4e43c6b483f64c9c79b85eeebfdc6faf1/src/CONST.ts#L4164 will be:
PLAYBACK_SPEEDS: [0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2],
Update the initial playback speed: https://github.com/Expensify/App/blob/0341c3b4e43c6b483f64c9c79b85eeebfdc6faf1/src/components/VideoPlayerContexts/VideoPopoverMenuContext.tsx#L18
const [currentPlaybackSpeed, setCurrentPlaybackSpeed] = useState<PlaybackSpeed>(CONST.VIDEO_PLAYER.PLAYBACK_SPEEDS[3]);
Optionally, with splayback speed value is 1
, we can display Normal
instead of 1
so it will be the same as what we did in fullscreen mode:
https://github.com/Expensify/App/blob/0341c3b4e43c6b483f64c9c79b85eeebfdc6faf1/src/components/VideoPlayerContexts/VideoPopoverMenuContext.tsx#L60
text: speed !== 1 ? speed.toString() : "Normal",
Job added to Upwork: https://www.upwork.com/jobs/~014d75aeb575f9f1ea
Triggered auto assignment to Contributor-plus team member for initial proposal review - @ikevin127 (External
)
Adding BZ again - I'll be out until 8/21
Triggered auto assignment to @greg-schroeder (Bug
), see https://stackoverflow.com/c/expensify/questions/14418 for more details. Please add this bug to a GH project, as outlined in the SO.
Awaiting proposal review by @ikevin127
♻️ Reviewing proposals today.
@daledah Thank you for the proposal. While I appreciate the more detailed proposal, unfortunately it came after the first one which I think was detailed enough since this issue has a simple root cause / solution.
ℹ️ Keep in mind the contributor guidelines (6.) which state:
Note: Before submitting a proposal on an issue, be sure to read any other existing proposals. ALL NEW PROPOSALS MUST BE DIFFERENT FROM EXISTING PROPOSALS. The difference should be important, meaningful or considerable.
Otherwise you could get a ⚠️ warning, which after 2 (same month) or 3 (per year) you risk being removed from the contributor program.
@neonbhai's proposal looks good to me even though it's not extremely detailed, since this issue has a simple root cause / solution. The root cause was pointed out correctly and the proposed solution fixes the issue, even though it does not mention all the details, it mentions enough to be acceptable.
Notes for PR (if assigned):
currentPlaybackSpeed
to match the Normal
speed, given the new values.1
show the label Normal
in order to match the native player.
Note: The label Normal
should be translated (en/es) and placed in translations at videoPlayer.playbackSpeedNormal
(or similar).🎀👀🎀 C+ reviewed
Triggered auto assignment to @techievivek, see https://stackoverflow.com/c/expensify/questions/7972 for more details.
@ikevin127 Thanks for your feedback. I agree with your final decision, and the details can be updated during the PR stage if @neonbhai is assigned. However, I’d like to clarify why I initially posted a proposal in this case:
Note: Before submitting a proposal on an issue, be sure to read any other existing proposals. ALL NEW PROPOSALS MUST BE DIFFERENT FROM EXISTING PROPOSALS. The difference should be important, meaningful or considerable.
@ikevin127 Also, the guideline you referred to is quite subjective (as you also say "I think was detailed enough"), different people could have different opinions on whether the difference between proposals is substantial or not. I only posted my proposal because I believe my proposal is substantially different.
Otherwise you could get a ⚠️ warning, which after 2 (same month) or 3 (per year) you risk being removed from the contributor program.
I don't think it'd be right to penalize contributors because of a subjective standard, especially when their intention is to contribute better solutions. This doesn't harm Expensify at all and will lead to a more complete solution overall. If we penalize contributors for this reason people'd be discouraged from contributing even though they see a better solution, because they're afraid the C+'s personal opinion could lead to warnings for contributors.
At last, I agree with your proposal selection but I'd appreciate if you consider my 2 points above on not penalizing contributors for this reason. Thanks!
@daledah Don't worry - you will not get a warning in this case, I was just mentioning to be mindful of that contributor guideline in the future as it might lead to warnings.
Of course it's subjective, there are cases in which a more detailed RCA and solution are required - I don't consider this one to be that case.
@ikevin127 Sure thank you!
📣 @ikevin127 🎉 An offer has been automatically sent to your Upwork account for the Reviewer role 🎉 Thanks for contributing to the Expensify app!
📣 @neonbhai 🎉 An offer has been automatically sent to your Upwork account for the Contributor role 🎉 Thanks for contributing to the Expensify app!
Offer link Upwork job Please accept the offer and leave a comment on the Github issue letting us know when we can expect a PR to be ready for review 🧑💻 Keep in mind: Code of Conduct | Contributing 📖
@slafortune, @greg-schroeder, @techievivek, @ikevin127, @neonbhai Huh... This is 4 days overdue. Who can take care of this?
Please accept the offer and leave a comment on the Github issue letting us know when we can expect a PR to be ready for review 🧑💻
Currently awaiting for @neonbhai to give a timeline on the PR.
Please keep in mind the PR notes from https://github.com/Expensify/App/issues/47205#issuecomment-2290157181:
currentPlaybackSpeed
to match the Normal
speed, given the new values.1
show the label Normal
in order to match the native player.
Note: The label Normal
should be translated (en/es) and placed in translations at videoPlayer.playbackSpeedNormal
(or similar).⚠️ We just got confirmation on Slack that the Deploy Checklist: New Expensify 2024-08-26 which includes the PR of this issue was only deployed to production today in Deploy Checklist: New Expensify 2024-08-28. More context on why this happened can be found in this Slack thread and this Slack comment.
Given the context above, this issue should be on [HOLD for Payment 2024-09-06] according to 4 days' ago production deploy from Deploy Checklist: New Expensify 2024-08-28.
cc @slafortune @techievivek
@ikevin127 Thanks! - Can you please complete the checklist - BugZero Checklist: The PR fixing this issue has been merged! The following checklist (instructions) will need to be completed before the issue can be closed:
Normal
.Do we agree 👍 or 👎.
Regression Test - https://github.com/Expensify/Expensify/issues/426444 @ikevin127 @neonbhai Paid ✅ ✅
If you haven’t already, check out our contributing guidelines for onboarding and email contributors@expensify.com to request to join our Slack channel!
Version Number: 9.0.18 Reproducible in staging?: Y Reproducible in production?: Y Issue reported by: Applause Internal Team
Action Performed:
Expected Result:
In the welcome video, all playback speed options shown is full screen mode must be shown in normal mode.
Actual Result:
In the welcome video, all playback speed options shown is full screen mode is not shown in normal mode.
Workaround:
Unknown
Platforms:
Screenshots/Videos
https://github.com/user-attachments/assets/7b786d01-cf13-4576-b4f9-d480de7d4569
View all open jobs on GitHub
Upwork Automation - Do Not Edit
Issue Owner
Current Issue Owner: @ikevin127