mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 06:00:21 +00:00 
			
		
		
		
	Refactor UI_TEXT_CONTENT table generation into a new LuaTable utility class
This commit is contained in:
		
							parent
							
								
									eba3e7a9fe
								
							
						
					
					
						commit
						12d36a96e1
					
				@ -126,32 +126,8 @@ public sealed partial class CollectI18NKeysCommand
 | 
				
			|||||||
            """
 | 
					            """
 | 
				
			||||||
        );
 | 
					        );
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        //
 | 
					 | 
				
			||||||
        // Add the UI_TEXT_CONTENT table:
 | 
					        // Add the UI_TEXT_CONTENT table:
 | 
				
			||||||
        //
 | 
					        LuaTable.Create(ref sb, "UI_TEXT_CONTENT", keyValuePairs);
 | 
				
			||||||
        sb.AppendLine("UI_TEXT_CONTENT = {}");
 | 
					 | 
				
			||||||
        foreach (var kvp in keyValuePairs.OrderBy(x => x.Key))
 | 
					 | 
				
			||||||
        {
 | 
					 | 
				
			||||||
            var key = kvp.Key;
 | 
					 | 
				
			||||||
            var value = kvp.Value.Replace("\n", " ").Trim();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            // Remove the "UI_TEXT_CONTENT." prefix from the key:
 | 
					 | 
				
			||||||
            const string UI_TEXT_CONTENT = "UI_TEXT_CONTENT.";
 | 
					 | 
				
			||||||
            var keyWithoutPrefix = key.StartsWith(UI_TEXT_CONTENT, StringComparison.OrdinalIgnoreCase) ? key[UI_TEXT_CONTENT.Length..] : key;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            // Replace all dots in the key with colons:
 | 
					 | 
				
			||||||
            keyWithoutPrefix = keyWithoutPrefix.Replace(".", "::");
 | 
					 | 
				
			||||||
            
 | 
					 | 
				
			||||||
            // Add a comment with the original text content:
 | 
					 | 
				
			||||||
            sb.AppendLine();
 | 
					 | 
				
			||||||
            sb.AppendLine($"-- {value}");
 | 
					 | 
				
			||||||
            
 | 
					 | 
				
			||||||
            // Add the assignment to the UI_TEXT_CONTENT table:
 | 
					 | 
				
			||||||
            sb.AppendLine($"""
 | 
					 | 
				
			||||||
                       UI_TEXT_CONTENT["{keyWithoutPrefix}"] = "{EscapeLuaString(value)}"
 | 
					 | 
				
			||||||
                       """);
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        return sb.ToString();
 | 
					        return sb.ToString();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										40
									
								
								app/SharedTools/LuaTable.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								app/SharedTools/LuaTable.cs
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,40 @@
 | 
				
			|||||||
 | 
					using System.Text;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace SharedTools;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					public static class LuaTable
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    public static string Create(ref StringBuilder sb, string tableVariableName, IReadOnlyDictionary<string, string> keyValuePairs, CancellationToken cancellationToken = default)
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        //
 | 
				
			||||||
 | 
					        // Add the UI_TEXT_CONTENT table:
 | 
				
			||||||
 | 
					        //
 | 
				
			||||||
 | 
					        sb.AppendLine($$"""{{tableVariableName}} = {}""");
 | 
				
			||||||
 | 
					        foreach (var kvp in keyValuePairs.OrderBy(x => x.Key))
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            if (cancellationToken.IsCancellationRequested)
 | 
				
			||||||
 | 
					                return sb.ToString();
 | 
				
			||||||
 | 
					            
 | 
				
			||||||
 | 
					            var key = kvp.Key;
 | 
				
			||||||
 | 
					            var value = kvp.Value.Replace("\n", " ").Trim();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            // Remove the "UI_TEXT_CONTENT." prefix from the key:
 | 
				
			||||||
 | 
					            const string UI_TEXT_CONTENT = "UI_TEXT_CONTENT.";
 | 
				
			||||||
 | 
					            var keyWithoutPrefix = key.StartsWith(UI_TEXT_CONTENT, StringComparison.OrdinalIgnoreCase) ? key[UI_TEXT_CONTENT.Length..] : key;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            // Replace all dots in the key with colons:
 | 
				
			||||||
 | 
					            keyWithoutPrefix = keyWithoutPrefix.Replace(".", "::");
 | 
				
			||||||
 | 
					            
 | 
				
			||||||
 | 
					            // Add a comment with the original text content:
 | 
				
			||||||
 | 
					            sb.AppendLine();
 | 
				
			||||||
 | 
					            sb.AppendLine($"-- {value}");
 | 
				
			||||||
 | 
					            
 | 
				
			||||||
 | 
					            // Add the assignment to the UI_TEXT_CONTENT table:
 | 
				
			||||||
 | 
					            sb.AppendLine($"""
 | 
				
			||||||
 | 
					                           UI_TEXT_CONTENT["{keyWithoutPrefix}"] = "{LuaTools.EscapeLuaString(value)}"
 | 
				
			||||||
 | 
					                           """);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        
 | 
				
			||||||
 | 
					        return sb.ToString();
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user