A SwiftUI TextEditor View with syntax highlighting using Highlight.js.
It builds on top of Highlightr which does the wrapping of Highlight.js. CodeEditor then packages things up for SwiftUI.
Example usage in SVG Shaper for SwiftUI (used for editing SVG and Swift source):
(Shaper is not actually using Highlightr, but is otherwise quite similar).
Highlightr example:
The Swift package URL is: https://github.com/ZeeZide/CodeEditor.git
To use CodeEditor as a source code viewer, simply pass the source code
as a string:
structContentView:View{varbody:someView{CodeEditor(source:"let a = 42")}}If it should act as an actual editor, pass in a string Binding:
structContentView:View{@Stateprivatevarsource="let a = 42\n"varbody:someView{CodeEditor(source: $source, language:.swift, theme:.ocean)}}Highlight.js. supports more than 180 languages and over 80 different themes.
The available languages and themes can be accessed using:
CodeEditor.availableLanguages
CodeEditor.availableThemesThey can be used in a SwiftUI Picker like so:
structMyEditor:View{@Stateprivatevarsource="let it = be"@Stateprivatevarlanguage=CodeEditor.Language.swift
varbody:someView{Picker("Language", selection: $language){ForEach(CodeEditor.availableLanguages){ language inText("\(language.rawValue.capitalized)").tag(language)}}CodeEditor(source: $source, language: language)}}Note: The CodeEditor doesn't do automatic theme changes if the appearance
changes.
Inspired by NTYSmartTextView,
CodeEditor now also supports (on macOS):
- smarter indents (preserving the indent of the previous line)
- soft indents (insert a configurable amount of spaces if the user presses tabs)
- auto character pairing, e.g. when entering
{, the matching}will be auto-added
To enable smart indents, add the smartIndent flag, e.g.:
CodeEditor(source: $source, language: language, flags:[.selectable,.editable,.smartIndent ])It is enabled for editors by default.
To configure soft indents, use the indentStyle parameter, e.g.
CodeEditor(source: $source, language: language,
indentStyle:.softTab(width:2))It defaults to tabs, as per system settings.
Auto character pairing is automatic based on the language. E.g. there is a set of
defaults for C like languages (e.g. Swift), Python or XML. The defaults can be overridden
using the respective static variable in CodeEditor,
or the desired pairing can be set explicitly:
CodeEditor(source: $source, language: language,
autoPairs:["{":"}","<":">","'":"'"])On macOS the editor supports sizing of the font (using Cmd +/Cmd - and the font panel). To enable sizing commands, the WindowScene needs to have the proper commands applied, e.g.:
WindowGroup{ContentView()}.commands{TextFormattingCommands()}To persist the size, the fontSize binding is available.
The selected text can be observed and modified via another Binding:
structContentView:View{staticprivateletinitialSource="let a = 42\n"@Stateprivatevarsource=Self.initialSource
@Stateprivatevarselection=Self.initialSource.endIndex..<Self.initialSource.endIndex
varbody:someView{CodeEditor(source: $source,
selection: $selection,
language:.swift,
theme:.ocean,
autoscroll:false)Button("Select All"){
selection = source.startIndex..<source.endIndex
}}}When autoscroll is true, the editor automatically scrolls to the respective
cursor position when selection is modfied from the outside, i.e. programatically.
Based on the excellent Highlightr. This means that it is using JavaScriptCore as the actual driver. As Highlightr says:
It will never be as fast as a native solution, but it's fast enough to be used on a real time editor.
The editor is similar to (but not exactly the same) the one used by SVG Shaper for SwiftUI, for its SVG and Swift editor parts.
import SwiftUI
import CodeEditor
structContentView:View{#if os(macOS)@AppStorage("fontsize")varfontSize=Int(NSFont.systemFontSize)#endif@Stateprivatevarsource="let a = 42"@Stateprivatevarlanguage=CodeEditor.Language.swift
@Stateprivatevartheme=CodeEditor.ThemeName.pojoaque
varbody:someView{VStack(spacing:0){HStack{Picker("Language", selection: $language){ForEach(CodeEditor.availableLanguages){ language inText("\(language.rawValue.capitalized)").tag(language)}}Picker("Theme", selection: $theme){ForEach(CodeEditor.availableThemes){ theme inText("\(theme.rawValue.capitalized)").tag(theme)}}}.padding()Divider()#if os(macOS)CodeEditor(source: $source, language: language, theme: theme,
fontSize:.init(get:{CGFloat(fontSize)},
set:{ fontSize =Int($0)})).frame(minWidth:640, minHeight:480)#elseCodeEditor(source: $source, language: language, theme: theme)#endif}}}structContentView_Previews:PreviewProvider{staticvarpreviews:someView{ContentView()}}CodeEditor is brought to you by ZeeZide. We like feedback, GitHub stars, cool contract work, presumably any form of praise you can think of.

