|
| 1 | +import docutils |
| 2 | + |
1 | 3 | from sphinx.util import logging
|
2 | 4 |
|
3 | 5 | logger = logging.getLogger(__name__)
|
@@ -138,3 +140,38 @@ def _resolve_numref_xref(self, env, fromdocname, builder, typ, target, node, con
|
138 | 140 |
|
139 | 141 | self._inject_hoverxref_data(env, refnode, typ)
|
140 | 142 | return refnode
|
| 143 | + |
| 144 | + |
| 145 | +class HoverXRefBibtexDomainMixin(HoverXRefBaseDomain): |
| 146 | + """ |
| 147 | + Mixin for ``BibtexDomain`` to save the values after the xref resolution. |
| 148 | +
|
| 149 | + This class add the required ``hoverxref`` and ``modal``/``tooltip`` to tell |
| 150 | + the frontend to show a modal/tooltip on this element. |
| 151 | +
|
| 152 | + https://github.com/mcmtroffaes/sphinxcontrib-bibtex/blob/2.4.1/src/sphinxcontrib/bibtex/domain.py#L281 |
| 153 | + """ |
| 154 | + |
| 155 | + def resolve_xref(self, env, fromdocname, builder, typ, target, node, contnode): |
| 156 | + textnode = super().resolve_xref(env, fromdocname, builder, typ, target, node, contnode) |
| 157 | + if textnode is None: |
| 158 | + return textnode |
| 159 | + |
| 160 | + if any([ |
| 161 | + self._is_ignored_ref(env, target), |
| 162 | + not (env.config.hoverxref_auto_ref or typ in self.hoverxref_types or 'cite' in env.config.hoverxref_domains) |
| 163 | + ]): |
| 164 | + return textnode |
| 165 | + |
| 166 | + # The structure of the node generated by bibtex is between two |
| 167 | + # ``#text`` nodes and we need to add the classes into the ``reference`` |
| 168 | + # node to get the ``href=`` attribute from it |
| 169 | + # |
| 170 | + # (Pdb++) textnode.children |
| 171 | + # [<#text: 'Nelson ['>, <reference: <#text: 'Nel87'>>, <#text: ']'>] |
| 172 | + refnode_index = textnode.first_child_matching_class(docutils.nodes.reference) |
| 173 | + if refnode_index: |
| 174 | + refnode = textnode.children[refnode_index] |
| 175 | + self._inject_hoverxref_data(env, refnode, typ) |
| 176 | + |
| 177 | + return textnode |
0 commit comments