Spaces:
Sleeping
Sleeping
File size: 5,648 Bytes
5caedb4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 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 148 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 193 194 195 |
import glob
import re
from dataclasses import dataclass
from typing import Dict
tooltip_files = glob.glob("documentation/docs/tooltips/**/*.mdx", recursive=True)
def read_tooltip_file(path: str) -> str:
"""
Reads all lines of a text file and returns its content as a single string.
Args:
path (str): The path to the file to be read.
Returns:
str: The entire content of the file as a single string.
Raises:
FileNotFoundError: If the specified file is not found.
IOError: If there's an error reading the file.
"""
with open(path) as f:
return f.read()
def cleanhtml(raw_html: str) -> str:
"""
Removes HTML tags from a string.
Args:
raw_html (str): The string containing HTML tags to be removed.
Returns:
str: The input string with all HTML tags removed.
"""
cleantext = re.sub(re.compile("<[^<]+?>"), "", raw_html)
return cleantext
def clean_docusaurus_tags(text: str) -> str:
"""
Removes Docusaurus tags from a string.
Args:
text (str): The string containing Docusaurus tags to be removed.
Returns:
str: The input string with Docusaurus tags removed.
"""
text = text.replace(":::info note", "")
text = text.replace(":::info Note", "")
text = text.replace(":::tip tip", "")
text = text.replace(":::", "")
return text.strip()
def clean_md_links(text: str) -> str:
"""
Removes Markdown links from a string, keeping only the link text.
Args:
text (str): The string containing Markdown links to be cleaned.
Returns:
str: The input string with Markdown links replaced by their text content.
"""
text = re.sub(r"\[(.*?)\]\(.*?\)", r"\1", text)
return text
@dataclass
class Tooltip:
"""
Represents a single tooltip with a name and associated text.
Attributes:
name (str): A name for the tooltip.
text (str): The content of the tooltip.
"""
name: str
text: str
def __repr__(self):
return f"{self.name}: {self.text}"
class Tooltips:
"""
A collection of tooltips that can be accessed by their names.
During initialization, all tooltips are read from the specified tooltip files.
Attributes:
tooltips (Dict[str, Tooltip]): A dictionary mapping tooltip names to Tooltip\
objects.
Methods:
add_tooltip(tooltip: Tooltip): Adds a new tooltip to the collection.
__getitem__(name: str) -> Optional[str]: Retrieves the text of a tooltip by its\
name.
__len__() -> int: Returns the number of tooltips in the collection.
__repr__() -> str: Returns a string representation of the tooltips collection.
get(name: str, default=None) -> Optional[str]: Retrieves the text of a tooltip\
by its name, with an optional default value.
"""
def __init__(self, tooltip_files: list[str] = tooltip_files):
"""
Initializes the Tooltips collection by reading and processing tooltip files.
Args:
tooltip_files (List[str]): A list of file paths to tooltip files.
Raises:
ValueError: If a tooltip file name does not start with an underscore.
ValueError: If a duplicate tooltip name is encountered.
"""
self.tooltips: Dict[str, Tooltip] = {}
for filename in tooltip_files:
name = filename.split("/")[-1].split(".")[0]
name = name.replace("-", "_")
if name.startswith("_"):
name = name[1:] # remove leading underscore
else:
raise ValueError("Tooltip file names must start with an underscore.")
# documentation/docs/tooltips/SECTION/_TOOLTIPNAME.mdx
section = filename.split("/")[3]
tooltip_name = f"{section}_{name}"
if tooltip_name in self.tooltips.keys():
raise ValueError("Tooltip names must be unique.")
text = read_tooltip_file(filename)
text = cleanhtml(text)
text = clean_docusaurus_tags(text)
text = clean_md_links(text)
self.add_tooltip(Tooltip(tooltip_name, text))
def add_tooltip(self, tooltip: Tooltip):
"""
Adds a new tooltip to the collection.
Args:
tooltip (Tooltip): The tooltip object to be added.
"""
self.tooltips[tooltip.name] = tooltip
def __getitem__(self, name: str) -> None | str:
"""
Retrieves the text of a tooltip by its name.
Args:
name (str): The name of the tooltip to retrieve.
Returns:
Optional[str]: The text of the tooltip if found, None otherwise.
"""
try:
text = self.tooltips[name].text
except KeyError:
text = None
return text
def __len__(self) -> int:
return len(self.tooltips)
def __repr__(self):
return f"{self.tooltips}"
def get(self, name: str, default=None):
"""
Retrieves the text of a tooltip by its name, with an optional default value.
Args:
name (str): The name of the tooltip to retrieve.
default (Optional[str]): The default value to return if the tooltip is not \
found.
Returns:
Optional[str]: The text of the tooltip if found, or the default value \
otherwise.
"""
if name in self.tooltips.keys():
return self.tooltips[name].text
else:
return default
tooltips = Tooltips()
|