TextStory

0.9.0

Happier, more flexible NSTextStorage
ChimeHQ/TextStory

What's New

v0.9.0

2024-03-03T12:54:03Z
  • Remove MainOffender, won't be needed with Swift 5.10
  • Remove adapter concepts, as they aren't the right way to do this
  • Add the TextStorageEventRouter thingy

Build Status Platforms

TextStory

TextStory is a small set of classes and protocols for easier work with NSTextStorage and associated systems.

Integration

Swift Package Manager:

dependencies: [
    .package(url: "https://github.com/ChimeHQ/TextStory")
]

TSYTextStorage

A minimal NSTextStorage subclass that provides hooks for much more powerful delegate behavior. Great for separating logic/behavior from your storage object. Because it is built to wrap another NSTextStorage instance, it is more easily composable.

Unfortunately, to date I've not been able to figure out a way to build this class in Swift. If you have experience working with NSTextStorage and Swift/ObjC automatic NSString/String bridging, I'd love to hear from you.

- (void)textStorage:(TSYTextStorage *)textStorage willReplaceCharactersInRange:(NSRange)range withString:(NSString *)string;
- (void)textStorage:(TSYTextStorage *)textStorage didReplaceCharactersInRange:(NSRange)range withString:(NSString *)string;
- (void)textStorageProcessEditingComplete:(TSYTextStorage *)textStorage;

// available for macOS only
- (NSRange)textStorage:(TSYTextStorage *)textStorage doubleClickRangeForLocation:(NSUInteger)location;
- (NSUInteger)textStorage:(TSYTextStorage *)textStorage nextWordIndexFromLocation:(NSUInteger)location direction:(BOOL)forward;

BufferingTextStorage

An NSTextStorage subclass that maintains a history of text changes with low memory and performance overhead. This class makes it possible to decouple text change processing from them Cocoa text display system, making them asynchronous with respect to each other. Very useful for keeping your UI fast and responsive even if the processing of changes can be slow.

// interact with the buffered view of text
func bufferedSubstring(from range: NSRange) -> String
var bufferedLength: Int

// commit one change in the queue, allowing precise control over how the buffered view changes
func applyNextChange()

TextStoring

A simple protocol that abstracts string storage. This is very useful for standardizing behavior across NSTextStorage and other objects you may use for text manipulation. Particularly handy for testing and decoupling systems from Apple's classes behaviors/APIs.

In order to maintain flexiblity and match NSTextStorage, TextStoring is not actor-isolated.

TextStorageAdapter

It isn't possible to make NSTextView/UITextView conform to TextStoring, because they are MainActor-isolated classes. This adapter exists to help use a view with TextStoring.

TextStoringMonitor

Standard interface for systems that need to observe and react to changes in a TextStoring instance.

LazyTextStoringMonitor

A concrete TextStoringMonitor class that implements progressive, on-demand access to a wrapped TextStoringMonitor. This makes it easy to add lazy semantics on top of an existing TextStoringMonitor, which can be very helpful for handling large documents.

CompositeTextStoringMonitor

An easy way to group together a collection of TextStoringMonitor instances and tread them as a single unit.

TextMutationEventRouter

This class can accept and route TSYTextStorage delegate callbacks to multiple TextStoringMonitor instances. This is super handy for faning-out these calls.

Contributing and Collaboration

I'd love to hear from you! Get in touch via an issue or pull request.

I prefer collaboration, and would love to find ways to work together if you have a similar project.

I prefer indentation with tabs for improved accessibility. But, I'd rather you use the system you want and make a PR than hesitate because of whitespace.

By participating in this project you agree to abide by the Contributor Code of Conduct.

Description

  • Swift Tools 5.8.0
View More Packages from this Author

Dependencies

Last updated: Mon Mar 18 2024 10:06:57 GMT-0900 (Hawaii-Aleutian Daylight Time)