在 C# NET 代码库中实现 Bootstrap 现代化:来自 o 5 的 Python 支持的迁移
介绍
作为一名开发人员,我最近发现自己面临着一个令人兴奋的挑战:对仍在使用 bootstrap 3 的旧版 c# .net 代码库进行现代化改造。目标很明确 - 使用最新的 bootstrap 5 加快项目速度。但是,我很快就意识到实现如此重大的飞跃可能会充满风险且耗时。
就在那时我决定采取分阶段的方法:
- 首先,从 bootstrap 3 迁移到 bootstrap 4
- 然后,一旦稳定,就从 bootstrap 4 跳转到 bootstrap 5
此策略将允许更易于管理的转换、更容易的调试以及更流畅的整体过程。今天,我很高兴分享这个旅程的第一部分 - 使用 python 脚本自动从 bootstrap 3 迁移到 4。
关于代码的注释
在深入研究之前,请务必注意,此处提供的代码是项目中使用的实际脚本的简化版本。出于明显的原因,例如专有信息和特定项目要求,我简化了这篇博文的代码。然而,该方法和核心功能仍然与现实场景中实现的非常相似。
立即学习“Python免费学习笔记(深入)”;
挑战
从 bootstrap 3 迁移到 4 涉及大量类名更改和弃用的组件。在整个项目中手动更新这些内容可能非常耗时且容易出错。这就是我们的 python 脚本的用武之地。
解决方案
我们的脚本(我们将其称为 bootstrap_migrator.py)旨在扫描您的项目文件并自动将 bootstrap 3 类名称更新为 bootstrap 4 的等效名称。它可以处理 html、razor (cshtml) 甚至 javascript 文件,使其成为满足您的迁移需求的全面解决方案。
分解代码
让我们深入了解迁移脚本的详细信息并解释每个部分。
导入所需的模块
import osimport re
我们首先导入两个基本的 python 模块:
主要迁移功能
def update_bootstrap_classes(content, file_type): class_mappings = { r'col-xs-(d+)': r'col-', r'col-sm-(d+)': r'col-sm-', r'col-md-(d+)': r'col-md-', r'col-lg-(d+)': r'col-lg-', r'col-xl-(d+)': r'col-xl-', r'btn-default': 'btn-secondary', r'img-responsive': 'img-fluid', r'img-circle': 'rounded-circle', r'img-rounded': 'rounded', r'panel': 'card', r'panel-heading': 'card-header', r'panel-title': 'card-title', r'panel-body': 'card-body', r'panel-footer': 'card-footer', r'panel-primary': 'card bg-primary text-white', r'panel-success': 'card bg-success text-white', r'panel-info': 'card text-white bg-info', r'panel-warning': 'card bg-warning', r'panel-danger': 'card bg-danger text-white', r'well': 'card card-body', r'thumbnail': 'card card-body', r'list-inlines*>s*li': 'list-inline-item', r'dropdown-menus*>s*li': 'dropdown-item', r'navs+navbars*>s*li': 'nav-item', r'navs+navbars*>s*lis*>s*a': 'nav-link', r'navbar-right': 'ml-auto', r'navbar-btn': 'nav-item', r'navbar-fixed-top': 'fixed-top', r'nav-stacked': 'flex-column', r'hidden-xs': 'd-none', r'hidden-sm': 'd-sm-none', r'hidden-md': 'd-md-none', r'hidden-lg': 'd-lg-none', r'visible-xs': 'd-block d-sm-none', r'visible-sm': 'd-none d-sm-block d-md-none', r'visible-md': 'd-none d-md-block d-lg-none', r'visible-lg': 'd-none d-lg-block d-xl-none', r'pull-right': 'float-right', r'pull-left': 'float-left', r'center-block': 'mx-auto d-block', r'input-lg': 'form-control-lg', r'input-sm': 'form-control-sm', r'control-label': 'col-form-label', r'table-condensed': 'table-sm', r'paginations*>s*li': 'page-item', r'paginations*>s*lis*>s*a': 'page-link', r'item': 'carousel-item', r'help-block': 'form-text', r'label': 'badge', r'badge': 'badge badge-pill'}
这个函数是我们脚本的核心。它需要两个参数:
class_mappings 字典至关重要。它将 bootstrap 3 类模式(作为正则表达式)映射到 bootstrap 4 的等效项。例如,col-xs-* 在 bootstrap 4 中变成了 col-*。
替换 html 和 razor 文件中的类
def replace_class(match): classes = match.group(1).split() updated_classes = [] for cls in classes: replaced = false for pattern, replacement in class_mappings.items(): if re.fullmatch(pattern, cls): updated_cls = re.sub(pattern, replacement, cls) updated_classes.append(updated_cls) replaced = true break if not replaced: updated_classes.append(cls) return f'class="{" ".join(updated_classes)}"'if file_type in ['cshtml', 'html']: return re.sub(r'class="([^"]*)"', replace_class, content)
这部分处理 html 和 razor 文件中类的替换:
- 它找到 html 中的所有类属性。
- 对于找到的每个类,它会检查它是否与我们的 bootstrap 3 模式中的任何一个匹配。
- 如果找到匹配项,它将用 bootstrap 4 的等效类替换该类。
- 不匹配任何模式的类保持不变。
更新 javascript 选择器
def replace_js_selectors(match): full_match = match.group(0) method = match.group(1) selector = match.group(2) classes = re.findall(r'.[-w]+', selector) for i, cls in enumerate(classes): cls = cls[1:] for pattern, replacement in class_mappings.items(): if re.fullmatch(pattern, cls): new_cls = re.sub(pattern, replacement, cls) classes[i] = f'.{new_cls}' break updated_selector = selector for old_cls, new_cls in zip(re.findall(r'.[-w]+', selector), classes): updated_selector = updated_selector.replace(old_cls, new_cls) return f"{method}('{updated_selector}')" if file_type == 'js': js_jquery_methods = [ 'queryselector', 'queryselectorall', 'getelementbyid', 'getelementsbyclassname', '$', 'jquery', 'find', 'children', 'siblings', 'parent', 'closest', 'next', 'prev', 'addclass', 'removeclass', 'toggleclass', 'hasclass' ] method_pattern = '|'.join(map(re.escape, js_jquery_methods)) content = re.sub(rf"({method_pattern})s*(s*['"]([^'"]+)['"]s*)", replace_js_selectors, content) return content
本节处理更新 javascript 文件中的类名:
- 它定义了可能使用类选择器的常见 javascript 和 jquery 方法的列表。
- 然后使用正则表达式查找这些方法调用并更新其选择器中的类名称。
- 它还更新了 jquery 的 .css() 方法调用中使用的类名。
处理单个文件
def process_file(file_path): try: with open(file_path, 'r', encoding='utf-8') as file: content = file.read() file_type = file_path.split('.')[-1].lower() updated_content = update_bootstrap_classes(content, file_type) if content != updated_content: with open(file_path, 'w', encoding='utf-8') as file: file.write(updated_content) print(f"updated: {file_path}") else: print(f"no changes: {file_path}") except exception as e: print(f"error processing {file_path}: {str(e)}")
此函数处理单个文件的处理:
- 它读取文件的内容。
- 根据扩展名确定文件类型。
- 调用update_bootstrap_classes更新内容。
- 如果进行了更改,它将更新的内容写回到文件中。
- 它还处理异常并提供流程反馈。
主要功能
def main(): project_dir = input("enter the path to your project directory: ") print(f"scanning directory: {project_dir}") if not os.path.exists(project_dir): print(f"the directory {project_dir} does not exist.") return files_found = false for root, dirs, files in os.walk(project_dir): for file in files: if file.endswith(('.cshtml', '.html', '.js')): files_found = true file_path = os.path.join(root, file) print(f"processing file: {file_path}") process_file(file_path) if not files_found: print("no .cshtml, .html, or .js files found in the specified directory.")if __name__ == "__main__": main()
主要功能将所有内容联系在一起:
- 它提示用户输入项目目录。
- 然后它会遍历目录,查找所有相关文件(.cshtml、.html、.js)。
- 对于找到的每个文件,它都会调用 process_file 来更新其内容。
- 它提供有关过程的反馈,包括是否未找到相关文件。
主要特征
使用脚本
要使用该脚本,只需运行它并在出现提示时提供项目目录的路径即可。然后它将处理所有相关文件,并根据需要更新它们。
python bootstrap_migrator.py
限制和注意事项
虽然此脚本自动执行了迁移过程的很大一部分,但值得注意的是,它不是一个完整的解决方案。你仍然应该:
- 运行脚本后彻底测试您的应用程序。
- 注意 bootstrap 4 可能需要手动实现的新组件和功能。
- 检查可能与 bootstrap 类交互的自定义 css 和 javascript。
结论
此脚本提供了一种强大的自动化方法来处理 bootstrap 3 到 4 迁移过程的大部分,从而节省开发人员大量时间并减少手动错误的机会。它代表了我们对遗留 c# .net 代码库进行现代化改造的第一步。一旦我们成功迁移到 bootstrap 4 并确保稳定性,我们将处理下一阶段:从 bootstrap 4 迁移到 5。
请记住,虽然自动化非常有用,但它并不能替代理解 bootstrap 版本之间的变化。使用此脚本作为迁移过程中的强大帮助,但始终将其与您的专业知识和彻底的测试结合起来。
迁移快乐!