• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

EcrituresNumeriques / stylo / 15066626824

16 May 2025 10:41AM UTC coverage: 37.574% (-0.02%) from 37.594%
15066626824

Pull #1517

github

web-flow
Merge e05a1c169 into 607ffe7f9
Pull Request #1517: Mise à jour vers react-router@7

549 of 776 branches covered (70.75%)

Branch coverage included in aggregate %.

13 of 373 new or added lines in 28 files covered. (3.49%)

5 existing lines in 4 files now uncovered.

5319 of 14841 relevant lines covered (35.84%)

2.56 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/front/src/components/collaborative/CollaborativeEditor.jsx
1
import React from 'react'
×
NEW
2
import { useParams } from 'react-router'
×
3

4
import ArticleStats from '../ArticleStats.jsx'
×
5
import CollaborativeEditorArticleHeader from './CollaborativeEditorArticleHeader.jsx'
×
6
import CollaborativeTextEditor from './CollaborativeTextEditor.jsx'
×
7
import CollaborativeEditorMenu from './CollaborativeEditorMenu.jsx'
×
8

9
import styles from './CollaborativeEditor.module.scss'
×
10

NEW
11
export default function CollaborativeEditor({ mode = 'write' }) {
×
NEW
12
  const { id: articleId, compareTo, version: versionId } = useParams()
×
13

14
  return (
×
15
    <section className={styles.container}>
×
NEW
16
      <div className={styles.editorArea}>
×
17
        <CollaborativeEditorArticleHeader
×
18
          articleId={articleId}
×
19
          versionId={versionId}
×
20
        />
×
21
        <CollaborativeTextEditor
×
22
          mode={mode}
×
23
          articleId={articleId}
×
24
          versionId={versionId}
×
25
        />
×
26
        <ArticleStats />
×
27
      </div>
×
28

29
      <CollaborativeEditorMenu
×
NEW
30
        className={styles.sidebarArea}
×
31
        articleId={articleId}
×
32
        versionId={versionId}
×
33
        compareTo={compareTo}
×
34
      />
×
35
    </section>
×
36
  )
37
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc