Skip to content

plugin

This module contains the mkdocs_iframe plugin.

MkDocsIframePlugin ¤

Bases: BasePlugin

The MkDocs plugin to integrate the HTML reports in the site.

on_files ¤

on_files(files, config, **kwargs)

Add the html report to the navigation.

Hook for the on_files event.

Parameters:

Name Type Description Default
files Files

The files collection.

required
config Config

The MkDocs config object.

required
**kwargs Any

Additional arguments passed by MkDocs.

{}

Returns:

Type Description
Files

The modified files collection.

Source code in src/mkdocs_iframe/plugin.py
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
def on_files(self, files: Files, config: Config, **kwargs: Any) -> Files:  # noqa: ARG002
    """Add the html report to the navigation.

    Hook for the [`on_files` event](https://www.mkdocs.org/user-guide/plugins/#on_files).

    Arguments:
        files: The files collection.
        config: The MkDocs config object.
        **kwargs: Additional arguments passed by MkDocs.

    Returns:
        The modified files collection.

    """
    site_dir = Path(config["site_dir"])
    use_directory_urls = config["use_directory_urls"]
    for report in self.reports(use_directory_urls=use_directory_urls):
        page_contents = report.nav_page()
        tmp_dir = mkdtemp()
        tmp_file = Path(tmp_dir) / report.page
        with tmp_file.open("w") as fp:
            fp.write(page_contents)

        files.append(
            File(
                report.page,
                str(tmp_file.parent),
                str(site_dir),
                use_directory_urls,
            ),
        )

    return files

on_post_build ¤

on_post_build(config, **kwargs)

Copy the HTML reports into the site directory.

Hook for the on_post_build event.

Parameters:

Name Type Description Default
config Config

The MkDocs config object.

required
**kwargs Any

Additional arguments passed by MkDocs.

{}
Source code in src/mkdocs_iframe/plugin.py
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
def on_post_build(self, config: Config, **kwargs: Any) -> None:  # noqa: ARG002
    """Copy the HTML reports into the site directory.

    Hook for the [`on_post_build` event](https://www.mkdocs.org/user-guide/plugins/#on_post_build).

    Arguments:
        config: The MkDocs config object.
        **kwargs: Additional arguments passed by MkDocs.

    """
    site_dir = Path(config["site_dir"])
    use_directory_urls = config["use_directory_urls"]

    for report in self.reports(use_directory_urls=use_directory_urls):
        report_dir = site_dir / report.name
        tmp_index = site_dir / f".{report.name}-tmp.html"

        if report.root == "index.html":
            if config["use_directory_urls"]:
                shutil.move(str(report_dir / "index.html"), tmp_index)
            else:
                shutil.move(str(report_dir.with_suffix(".html")), tmp_index)

        shutil.rmtree(str(report_dir), ignore_errors=True)
        try:
            shutil.copytree(report.path, str(report_dir))
        except FileNotFoundError:
            log.warning(f"No such HTML report directory: {report.path}")
            return

        if report.root == "index.html":
            report_root = report.root_file()

            shutil.move(str(report_dir / "index.html"), report_dir / report_root)
            if use_directory_urls:
                shutil.move(str(tmp_index), report_dir / "index.html")
            else:
                shutil.move(str(tmp_index), report_dir.with_suffix(".html"))

            for html_file in report_dir.iterdir():
                if html_file.suffix == ".html" and html_file.name != "index.html":
                    html_file.write_text(
                        re.sub(r'href="index\.html"', f'href="{report_root}"', html_file.read_text()),
                    )

reports ¤

reports(*, use_directory_urls=False)

Convert config data to Reports.

Source code in src/mkdocs_iframe/plugin.py
105
106
107
108
109
110
111
112
113
def reports(self, *, use_directory_urls: bool = False) -> list[Report]:
    """Convert config data to Reports."""
    res = []
    for report in self.config["reports"]:
        if isinstance(report, str):
            res.append(Report(use_directory_urls=use_directory_urls, name=report))
        else:
            res.append(Report(use_directory_urls=use_directory_urls, **report))
    return res

Report ¤

Report(
    *,
    name,
    path=None,
    root="index.html",
    page=None,
    use_directory_urls=False
)

HTML Report.

Source code in src/mkdocs_iframe/plugin.py
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
def __init__(
    self,
    *,
    name: str,
    path: str | None = None,
    root: str = "index.html",
    page: str | None = None,
    use_directory_urls: bool = False,
):
    """Initialize Report."""
    self.name = name
    self.path = path or f"html{name}"
    self.root = root
    self.page = page or f"{name}.md"
    self.id = f"{name}iframe"
    self.use_directory_urls = use_directory_urls

nav_page ¤

nav_page()

Generate the NAV page source.

Source code in src/mkdocs_iframe/plugin.py
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
def nav_page(self) -> str:
    """Generate the NAV page source."""
    root = self.root_file()

    style = textwrap.dedent(
        """
        <style>
        article h1, article > a, .md-sidebar--secondary {
            display: none !important;
        }
        </style>
        """,
    )

    iframe = textwrap.dedent(
        f"""
        <iframe
            id="{self.id}"
            src="{root}"
            frameborder="0"
            scrolling="no"
            onload="resizeIframe();"
            width="100%">
        </iframe>
        """,
    )

    script = textwrap.dedent(
        f"""
        <script>
        var {self.id} = document.getElementById("{self.id}");

        function resizeIframe() {{
            {self.id}.style.height = {self.id}.contentWindow.document.documentElement.offsetHeight + 'px';
        }}

        testiframe.contentWindow.document.body.onclick = function() {{
            {self.id}.contentWindow.location.reload();
        }}
        </script>

        """,
    )
    return style + iframe + script

root_file ¤

root_file()

Return the root page of the report.

Source code in src/mkdocs_iframe/plugin.py
44
45
46
47
48
49
50
51
52
def root_file(self) -> str:
    """Return the root page of the report."""
    report_index = self.root
    if report_index == "index.html":
        report_index = f"{self.name}index.html"

    if self.use_directory_urls:
        return report_index
    return f"{self.name}/{report_index}"