Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4395402
Added option to add video/text comments
B3RN153 May 5, 2026
b95855d
Added commenting option to video player
B3RN153 May 6, 2026
a3e2f3a
Made mic default mute for video recording
B3RN153 May 6, 2026
2e2761c
Show comment icon in editor even when video is deleted
B3RN153 May 6, 2026
481075a
Added confirmation modal for deletion of video
B3RN153 May 7, 2026
6f425ee
Updated time to readable format
B3RN153 May 7, 2026
a2a2faf
Added verse number in comments
B3RN153 May 7, 2026
9403d68
Split comments after verse disjoin
B3RN153 May 7, 2026
2d186ab
Skip videoTranslation validation while saving to computer
B3RN153 May 7, 2026
c41e645
Fixed issues mentioned in the comments
B3RN153 May 8, 2026
c350392
Remove background for Add more comment button
B3RN153 May 13, 2026
6b06fe9
add whole chapter details to json
B3RN153 May 19, 2026
aab3c84
Fixed scope embedding from previous projects
B3RN153 May 19, 2026
f8625f7
Fixed page not found in scope management
B3RN153 May 25, 2026
01aa179
added a background for add more comment button
B3RN153 May 25, 2026
367d1e4
video comments loaded as blobs
B3RN153 May 25, 2026
80f768e
Specified node version in workflow
B3RN153 May 26, 2026
7f439fd
Handled the existing video in project while replacing
B3RN153 May 26, 2026
d44461d
created a separate json for comments
B3RN153 May 27, 2026
5c50d39
Deleting only verse videos not comment videos
B3RN153 May 27, 2026
b27cb49
Handled verse mismatch of comments with the comming usfm
B3RN153 May 27, 2026
e451dd4
Comments can we acccessed from video recorder even after video is del…
B3RN153 May 27, 2026
3d2c7b3
Aligned record button to center
B3RN153 May 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ jobs:
build:
name: Lint Run
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.20.3]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ jobs:
build:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.20.3]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ const VerseContextMenu = ({
isJoinedVerse,
onJoinVerse,
onDisjoinVerse,
onOpenComments,
canOpenComments,
onClose,
}) => {
const { t } = useTranslation();
Expand All @@ -29,6 +31,11 @@ const VerseContextMenu = ({
onClose();
};

const handleOpenComments = () => {
onOpenComments(verse);
onClose();
};

return (
<>
<div
Expand Down Expand Up @@ -92,6 +99,29 @@ const VerseContextMenu = ({
</button>
)}

{canOpenComments && (
<button
type="button"
onClick={handleOpenComments}
className="w-full text-left px-4 py-2 hover:bg-gray-100 text-sm text-gray-700 flex items-center gap-2"
>
<svg
className="w-4 h-4"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M8 10h8M8 14h5m8-2a9 9 0 11-4.5-7.8L21 3v5h-5"
/>
</svg>
{t('label-comments', { defaultValue: 'Comme' })}
</button>
)}

</div>
</>
);
Expand All @@ -106,6 +136,13 @@ VerseContextMenu.propTypes = {
isJoinedVerse: PropTypes.bool.isRequired,
onJoinVerse: PropTypes.func.isRequired,
onDisjoinVerse: PropTypes.func.isRequired,
onOpenComments: PropTypes.func.isRequired,
canOpenComments: PropTypes.bool,
onClose: PropTypes.func.isRequired,
};

VerseContextMenu.defaultProps = {
canOpenComments: false,
};

export default VerseContextMenu;
Loading
Loading