在 C# NET 代码库中实现 Bootstrap 现代化:来自 o 5 的 Python 支持的迁移
作为一名开发人员,我最近发现自己面临着一个令人兴奋的挑战:对仍在使用 bootstrap 3 的旧版 c# .net 代码库进行现代化改造。目标很明确 - 使用最新的 bootstrap 5 加快项目速度。但是,我很快就意识到实现如此重大的飞跃可能会充满风险且耗时。
就在那时我决定采取分阶段的方法:
此策略将允许更易于管理的转换、更容易的调试以及更流畅的整体过程。今天,我很高兴分享这个旅程的第一部分 - 使用 python 脚本自动从 bootstrap 3 迁移到 4。
在深入研究之前,请务必注意,此处提供的代码是项目中使用的实际脚本的简化版本。出于明显的原因,例如专有信息和特定项目要求,我简化了这篇博文的代码。然而,该方法和核心功能仍然与现实场景中实现的非常相似。
从 bootstrap 3 迁移到 4 涉及大量类名更改和弃用的组件。在整个项目中手动更新这些内容可能非常耗时且容易出错。这就是我们的 python 脚本的用武之地。
我们的脚本(我们将其称为 bootstrap_migrator.py)旨在扫描您的项目文件并自动将 bootstrap 3 类名称更新为 bootstrap 4 的等效名称。它可以处理 html、razor (cshtml) 甚至 javascript 文件,使其成为满足您的迁移需求的全面解决方案。
让我们深入了解迁移脚本的详细信息并解释每个部分。
import os import re
我们首先导入两个基本的 python 模块:
def update_bootstrap_classes(content, file_type): class_mappings = { r'\bcol-xs-(\d+)\b': r'col-\1', r'\bcol-sm-(\d+)\b': r'col-sm-\1', r'\bcol-md-(\d+)\b': r'col-md-\1', r'\bcol-lg-(\d+)\b': r'col-lg-\1', r'\bcol-xl-(\d+)\b': r'col-xl-\1', r'\bbtn-default\b': 'btn-secondary', r'\bimg-responsive\b': 'img-fluid', r'\bimg-circle\b': 'rounded-circle', r'\bimg-rounded\b': 'rounded', r'\bpanel\b': 'card', r'\bpanel-heading\b': 'card-header', r'\bpanel-title\b': 'card-title', r'\bpanel-body\b': 'card-body', r'\bpanel-footer\b': 'card-footer', r'\bpanel-primary\b': 'card bg-primary text-white', r'\bpanel-success\b': 'card bg-success text-white', r'\bpanel-info\b': 'card text-white bg-info', r'\bpanel-warning\b': 'card bg-warning', r'\bpanel-danger\b': 'card bg-danger text-white', r'\bwell\b': 'card card-body', r'\bthumbnail\b': 'card card-body', r'\blist-inline\s*>\s*li\b': 'list-inline-item', r'\bdropdown-menu\s*>\s*li\b': 'dropdown-item', r'\bnav\s+navbar\s*>\s*li\b': 'nav-item', r'\bnav\s+navbar\s*>\s*li\s*>\s*a\b': 'nav-link', r'\bnavbar-right\b': 'ml-auto', r'\bnavbar-btn\b': 'nav-item', r'\bnavbar-fixed-top\b': 'fixed-top', r'\bnav-stacked\b': 'flex-column', r'\bhidden-xs\b': 'd-none', r'\bhidden-sm\b': 'd-sm-none', r'\bhidden-md\b': 'd-md-none', r'\bhidden-lg\b': 'd-lg-none', r'\bvisible-xs\b': 'd-block d-sm-none', r'\bvisible-sm\b': 'd-none d-sm-block d-md-none', r'\bvisible-md\b': 'd-none d-md-block d-lg-none', r'\bvisible-lg\b': 'd-none d-lg-block d-xl-none', r'\bpull-right\b': 'float-right', r'\bpull-left\b': 'float-left', r'\bcenter-block\b': 'mx-auto d-block', r'\binput-lg\b': 'form-control-lg', r'\binput-sm\b': 'form-control-sm', r'\bcontrol-label\b': 'col-form-label', r'\btable-condensed\b': 'table-sm', r'\bpagination\s*>\s*li\b': 'page-item', r'\bpagination\s*>\s*li\s*>\s*a\b': 'page-link', r'\bitem\b': 'carousel-item', r'\bhelp-block\b': 'form-text', r'\blabel\b': 'badge', r'\bbadge\b': 'badge badge-pill' }
这个函数是我们脚本的核心。它需要两个参数:
class_mappings 字典至关重要。它将 bootstrap 3 类模式(作为正则表达式)映射到 bootstrap 4 的等效项。例如,col-xs-* 在 bootstrap 4 中变成了 col-*。
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 文件中类的替换:
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 文件中的类名:
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)}")
此函数处理单个文件的处理:
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()
主要功能将所有内容联系在一起:
要使用该脚本,只需运行它并在出现提示时提供项目目录的路径即可。然后它将处理所有相关文件,并根据需要更新它们。
python bootstrap_migrator.py
虽然此脚本自动执行了迁移过程的很大一部分,但值得注意的是,它不是一个完整的解决方案。你仍然应该:
此脚本提供了一种强大的自动化方法来处理 bootstrap 3 到 4 迁移过程的大部分,从而节省开发人员大量时间并减少手动错误的机会。它代表了我们对遗留 c# .net 代码库进行现代化改造的第一步。一旦我们成功迁移到 bootstrap 4 并确保稳定性,我们将处理下一阶段:从 bootstrap 4 迁移到 5。
请记住,虽然自动化非常有用,但它并不能替代理解 bootstrap 版本之间的变化。使用此脚本作为迁移过程中的强大帮助,但始终将其与您的专业知识和彻底的测试结合起来。
迁移快乐!
以上就是在 C# NET 代码库中实现 Bootstrap 现代化:来自 o 5 的 Python 支持的迁移的详细内容,更多请关注php中文网其它相关文章!