Giter Site home page Giter Site logo

malcommac / swiftrichstring Goto Github PK

View Code? Open in Web Editor NEW
3.1K 58.0 207.0 3.72 MB

πŸ‘©β€πŸŽ¨ Elegant Attributed String composition in Swift sauce

License: MIT License

Swift 99.55% Ruby 0.45%
attributedstring swift-library nsattributedstring swift typography text-formatting dynamic-type xml-parsing text auto-layout

swiftrichstring's Introduction

SwiftLocation

Elegant Attributed String composition in Swift sauce

SwiftRichString is a lightweight library which allows to create and manipulate attributed strings easily both in iOS, macOS, tvOS and even watchOS. It provides convenient way to store styles you can reuse in your app's UI elements, allows complex tag-based strings rendering and also includes integration with Interface Builder.

Main Features

Features Highlights
πŸ¦„ Easy styling and typography managment with coincise declarative syntax
🏞 Attach local images (lazy/static) and remote images inside text
🧬 Fast & high customizable XML/HTML tagged string rendering
🌟 Apply text transforms within styles
πŸ“ Native support for iOS 11 Dynamic Type
πŸ–‡ Support for Swift 5.1's function builder to compose strings
⏱ Compact code base with no external dependencies.
🐦 Fully made in Swift 5 from Swift β₯ lovers

Easy Styling

let style = Style {
	$0.font = SystemFonts.AmericanTypewriter.font(size: 25) // just pass a string, one of the SystemFonts or an UIFont
	$0.color = "#0433FF" // you can use UIColor or HEX string!
	$0.underline = (.patternDot, UIColor.red)
	$0.alignment = .center
}
let attributedText = "Hello World!".set(style: style) // et voilΓ !

XML/HTML tag based rendering

SwiftRichString allows you to render complex strings by parsing text's tags: each style will be identified by an unique name (used inside the tag) and you can create a StyleXML (was StyleGroup) which allows you to encapsulate all of them and reuse as you need (clearly you can register it globally).

// Create your own styles

let normal = Style {
	$0.font = SystemFonts.Helvetica_Light.font(size: 15)
}
		
let bold = Style {
	$0.font = SystemFonts.Helvetica_Bold.font(size: 20)
	$0.color = UIColor.red
	$0.backColor = UIColor.yellow
}
		
let italic = normal.byAdding {
	$0.traitVariants = .italic
}

let myGroup = StyleXML(base: normal, ["bold": bold, "italic": italic])
let str = "Hello <bold>Daniele!</bold>. You're ready to <italic>play with us!</italic>"
self.label?.attributedText = str.set(style: myGroup)

That's the result!

Documentation

Other info:

The main concept behind SwiftRichString is the use of StyleProtocol as generic container of the attributes you can apply to both String and NSMutableAttributedString. Concrete classes derivated by StyleProtocol are: Style, StyleXML and StyleRegEx.

Each of these classes can be used as source for styles you can apply to a string, substring or attributed string.

Style: apply style to strings or attributed strings

A Style is a class which encapsulate all the attributes you can apply to a string. The vast majority of the attributes of both AppKit/UIKit are currently available via type-safe properties by this class.

Creating a Style instance is pretty simple; using a builder pattern approach the init class require a callback where the self instance is passed and allows you to configure your properties by keeping the code clean and readable:

let style = Style {
	$0.font = SystemFonts.Helvetica_Bold.font(size: 20)
	$0.color = UIColor.green
	// ... set any other attribute
}

let attrString = "Some text".set(style: style) // attributed string

StyleXML: Apply styles for tag-based complex string

Style instances are anonymous; if you want to use a style instance to render a tag-based plain string you need to include it inside a StyleXML. You can consider a StyleXML as a container of Styles (but, in fact, thanks to the conformance to a common StyleProtocol's protocol your group may contains other sub-groups too).

let bodyStyle: Style = ...
let h1Style: Style = ...
let h2Style: Style = ...
let group = StyleXML(base: bodyStyle, ["h1": h1Style, "h2": h2Style])

let attrString = "Some <h1>text</h1>, <h2>welcome here</h2>".set(style: group)

The following code defines a group where:

  • we have defined a base style. Base style is the style applied to the entire string and can be used to provide a base ground of styles you want to apply to the string.
  • we have defined two other styles named h1 and h2; these styles are applied to the source string when parser encounter some text enclosed by these tags.

StyleRegEx: Apply styles via regular expressions

StyleRegEx allows you to define a style which is applied when certain regular expression is matched inside the target string/attributed string.

let emailPattern = "([A-Za-z0-9_\\-\\.\\+])+\\@([A-Za-z0-9_\\-\\.])+\\.([A-Za-z]+)"
let style = StyleRegEx(pattern: emailPattern) {
	$0.color = UIColor.red
	$0.backColor = UIColor.yellow
}
		
let attrString = "My email is [email protected] and my website is http://www.danielemargutti.com".(style: style!)

The result is this:

SwiftRichString allows you to simplify string concatenation by providing custom + operator between String,AttributedString (typealias of NSMutableAttributedString) and Style.

This a an example:

let body: Style = Style { ... }
let big: Style = Style { ... }
let attributed: AttributedString = "hello ".set(style: body)

// the following code produce an attributed string by
// concatenating an attributed string and two plain string
// (one styled and another plain).
let attStr = attributed + "\(username)!".set(style:big) + ". You are welcome!"

You can also use + operator to add a style to a plain or attributed string:

// This produce an attributed string concatenating a plain
// string with an attributed string created via + operator
// between a plain string and a style
let attStr = "Hello" + ("\(username)" + big)

Finally you can concatente strings using function builders:

let bold = Style { ... }
let italic = Style { ... }
        
let attributedString = AttributedString.composing {
  "hello".set(style: bold)
  "world".set(style: italic)
}

Both String and Attributed String (aka NSMutableAttributedString) has a come convenience methods you can use to create an manipulate attributed text easily via code:

Strings Instance Methods

  • set(style: String, range: NSRange? = nil): apply a globally registered style to the string (or a substring) by producing an attributed string.
  • set(styles: [String], range: NSRange? = nil): apply an ordered sequence of globally registered styles to the string (or a substring) by producing an attributed string.
  • set(style: StyleProtocol, range: NSRange? = nil): apply an instance of Style or StyleXML (to render tag-based text) to the string (or a substring) by producting an attributed string.
  • set(styles: [StyleProtocol], range: NSRange? = nil): apply a sequence of Style/StyleXML instance in order to produce a single attributes collection which will be applied to the string (or substring) to produce an attributed string.

Some examples:

// apply a globally registered style named MyStyle to the entire string
let a1: AttributedString = "Hello world".set(style: "MyStyle")

// apply a style group to the entire string
// commonStyle will be applied to the entire string as base style
// styleH1 and styleH2 will be applied only for text inside that tags.
let styleH1: Style = ...
let styleH2: Style = ...
let StyleXML = StyleXML(base: commonStyle, ["h1" : styleH1, "h2" : styleH2])
let a2: AttributedString = "Hello <h1>world</h1>, <h2>welcome here</h2>".set(style: StyleXML)

// Apply a style defined via closure to a portion of the string
let a3 = "Hello Guys!".set(Style({ $0.font = SystemFonts.Helvetica_Bold.font(size: 20) }), range: NSMakeRange(0,4))

AttributedString Instance Methods

Similar methods are also available to attributed strings.

There are three categories of methods:

  • set methods replace any existing attributes already set on target.
  • add add attributes defined by style/styles list to the target
  • remove remove attributes defined from the receiver string.

Each of this method alter the receiver instance of the attributed string and also return the same instance in output (so chaining is allowed).

Add

  • add(style: String, range: NSRange? = nil): add to existing style of string/substring a globally registered style with given name.
  • add(styles: [String], range: NSRange? = nil): add to the existing style of string/substring a style which is the sum of ordered sequences of globally registered styles with given names.
  • add(style: StyleProtocol, range: NSRange? = nil): append passed style instance to string/substring by altering the receiver attributed string.
  • add(styles: [StyleProtocol], range: NSRange? = nil): append passed styles ordered sequence to string/substring by altering the receiver attributed string.

Set

  • set(style: String, range: NSRange? = nil): replace any existing style inside string/substring with the attributes defined inside the globally registered style with given name.
  • set(styles: [String], range: NSRange? = nil): replace any existing style inside string/substring with the attributes merge of the ordered sequences of globally registered style with given names.
  • set(style: StyleProtocol, range: NSRange? = nil): replace any existing style inside string/substring with the attributes of the passed style instance.
  • set(styles: [StyleProtocol], range: NSRange? = nil): replace any existing style inside string/substring with the attributes of the passed ordered sequence of styles.

Remove

  • removeAttributes(_ keys: [NSAttributedStringKey], range: NSRange): remove attributes specified by passed keys from string/substring.
  • remove(_ style: StyleProtocol): remove attributes specified by the style from string/substring.

Example:

let a = "hello".set(style: styleA)
let b = "world!".set(style: styleB)
let ab = (a + b).add(styles: [coupondStyleA,coupondStyleB]).remove([.foregroundColor,.font])

All colors and fonts you can set for a Style are wrapped by FontConvertible and ColorConvertible protocols.

SwiftRichString obviously implements these protocols for UIColor/NSColor, UIFont/NSFont but also for String. For Fonts this mean you can assign a font by providing directly its PostScript name and it will be translated automatically to a valid instance:

let firaLight: UIFont = "FiraCode-Light".font(ofSize: 14)
...
...
let style = Style {
	$0.font = "Jura-Bold"
	$0.size = 24
	...
}

On UIKit you can also use the SystemFonts enum to pick from a type-safe auto-complete list of all available iOS fonts:

let font1 = SystemFonts.Helvetica_Light.font(size: 15)
let font2 = SystemFonts.Avenir_Black.font(size: 24)

For Color this mean you can create valid color instance from HEX strings:

let color: UIColor = "#0433FF".color
...
...
let style = Style {
	$0.color = "#0433FF"
	...
}

Clearly you can still pass instances of both colors/fonts.

Sometimes you may need to infer properties of a new style from an existing one. In this case you can use byAdding() function of Style to produce a new style with all the properties of the receiver and the chance to configure additional/replacing attributes.

let initialStyle = Style {
	$0.font = SystemFonts.Helvetica_Light.font(size: 15)
	$0.alignment = right
}

// The following style contains all the attributes of initialStyle
// but also override the alignment and add a different foreground color.
let subStyle = bold.byAdding {
	$0.alignment = center
	$0.color = UIColor.red
}

To support your fonts/text to dynammically scale based on the users preffered content size, you can implement style's dynamicText property. UIFontMetrics properties are wrapped inside DynamicText class.

let style = Style {
	$0.font = UIFont.boldSystemFont(ofSize: 16.0)
	$0.dynamicText = DynamicText {
		$0.style = .body
		$0.maximumSize = 35.0
		$0.traitCollection = UITraitCollection(userInterfaceIdiom: .phone)
    }
}

SwiftRichString is also able to parse and render xml tagged strings to produce a valid NSAttributedString instance. This is particularly useful when you receive dynamic strings from remote services and you need to produce a rendered string easily.

In order to render an XML string you need to create a compisition of all styles you are planning to render in a single StyleXML instance and apply it to your source string as just you made for a single Style.

For example:

// The base style is applied to the entire string
let baseStyle = Style {
	$0.font = UIFont.boldSystemFont(ofSize: self.baseFontSize * 1.15)
	$0.lineSpacing = 1
	$0.kerning = Kerning.adobe(-20)
}

let boldStyle = Style {
	$0.font = UIFont.boldSystemFont(ofSize: self.baseFontSize)
    $0.dynamicText = DynamicText {
    $0.style = .body
    $0.maximumSize = 35.0
    $0.traitCollection = UITraitCollection(userInterfaceIdiom: .phone)
    }
}
		
let italicStyle = Style {
	$0.font = UIFont.italicSystemFont(ofSize: self.baseFontSize)
}

// A group container includes all the style defined.
let groupStyle = StyleXML.init(base: baseStyle, ["b" : boldStyle, "i": italicStyle])

// We can render our string
let bodyHTML = "Hello <b>world!</b>, my name is <i>Daniele</i>"
self.textView?.attributedText = bodyHTML.set(style: group)

You can also add custom attributes to your tags and render it as you prefer: you need to provide a croncrete implementation of XMLDynamicAttributesResolver protocol and assign it to the StyleXML's .xmlAttributesResolver property.

The protocol will receive two kind of events:

  • applyDynamicAttributes(to attributedString: inout AttributedString, xmlStyle: XMLDynamicStyle) is received when parser encounter an existing style with custom attributes. Style is applied and event is called so you can make further customizations.
  • func styleForUnknownXMLTag(_ tag: String, to attributedString: inout AttributedString, attributes: [String: String]?) is received when a unknown (not defined in StyleXML's styles) tag is received. You can decide to ignore or perform customizations.

The following example is used to override text color for when used for any known tag:

// First define our own resolver for attributes
open class MyXMLDynamicAttributesResolver: XMLDynamicAttributesResolver {
    
    public func applyDynamicAttributes(to attributedString: inout AttributedString, xmlStyle: XMLDynamicStyle) {
        let finalStyleToApply = Style()
        xmlStyle.enumerateAttributes { key, value  in
            switch key {
                case "color": // color support
                    finalStyleToApply.color = Color(hexString: value)
                
                default:
                    break
            }
        }
        
        attributedString.add(style: finalStyleToApply)
    }
}

// Then set it to our's StyleXML instance before rendering text.
let groupStyle = StyleXML.init(base: baseStyle, ["b" : boldStyle, "i": italicStyle])
groupStyle.xmlAttributesResolver = MyXMLDynamicAttributesResolver()

The following example define the behaviour for a non known tag called rainbow.
Specifically it alter the string by setting a custom color for each letter of the source string.

open class MyXMLDynamicAttributesResolver: XMLDynamicAttributesResolver {

  public override func styleForUnknownXMLTag(_ tag: String, to attributedString: inout AttributedString, attributes: [String : String]?) {
        super.styleForUnknownXMLTag(tag, to: &attributedString, attributes: attributes)
        
        if tag == "rainbow" {
            let colors = UIColor.randomColors(attributedString.length)
            for i in 0..<attributedString.length {
                attributedString.add(style: Style({
                    $0.color = colors[i]
                }), range: NSMakeRange(i, 1))
            }
        }
        
    }
  }
}

You will receive all read tag attributes inside the attributes parameter.
You can alter attributes or the entire string received as inout parameter in attributedString property.

A default resolver is also provided by the library and used by default: StandardXMLAttributesResolver. It will support both color attribute in tags and <a href> tag with url linking.

let sourceHTML = "My <b color=\"#db13f2\">webpage</b> is really <b>cool</b>. Take a look <a href=\"http://danielemargutti.com\">here</a>"
        
let styleBase = Style({
    $0.font = UIFont.boldSystemFont(ofSize: 15)
})
        
let styleBold = Style({
    $0.font = UIFont.boldSystemFont(ofSize: 20)
    $0.color = UIColor.blue
})
        
let groupStyle = StyleXML.init(base: styleBase, ["b" : styleBold])
self.textView?.attributedText = sourceHTML.set(style: groupStyle)

The result is this:

where the b tag's blue color was overriden by the color tag attributes and the link in 'here' is clickable.

Sometimes you want to apply custom text transforms to your string; for example you may want to make some text with a given style uppercased with current locale.
In order to provide custom text transform in Style instances just set one or more TextTransform to your Style's .textTransforms property:

let allRedAndUppercaseStyle = Style({
	$0.font = UIFont.boldSystemFont(ofSize: 16.0)
	$0.color = UIColor.red
	$0.textTransforms = [
		.uppercaseWithLocale(Locale.current)
	]
})

let text = "test".set(style: allRedAndUppercaseStyle) // will become red and uppercased (TEST)

While TextTransform is an enum with a predefined set of transform you can also provide your own function which have a String as source and another String as destination:

let markdownBold = Style({
	$0.font = UIFont.boldSystemFont(ofSize: 16.0)
	$0.color = UIColor.red
	$0.textTransforms = [
		.custom({
			return "**\($0)**"
		})
	]
})

All text transforms are applied in the same ordered you set in textTransform property.

SwiftRichString supports local and remote attached images along with attributed text.
You can create an attributed string with an image with a single line:

// You can specify the bounds of the image, both for size and the location respecting the base line of the text.
let localTextAndImage = AttributedString(image: UIImage(named: "rocket")!, bounds: CGRect(x: 0, y: -20, width: 25, height: 25))

// You can also load a remote image. If you not specify bounds size is the original size of the image.
let remoteTextAndImage = AttributedString(imageURL: "http://...")

// You can now compose it with other attributed or simple string
let finalString = "...".set(style: myStyle) + remoteTextAndImage + " some other text"

Images can also be loaded by rending an XML string by using the img tag (with named tag for local resource and url for remote url).
rect parameter is optional and allows you to specify resize and relocation of the resource.

let taggedText = """
  Some text and this image:
  <img named="rocket" rect="0,-50,30,30"/>
  
  This other is loaded from remote URL:
  <img url="https://www.macitynet.it/wp-content/uploads/2018/05/video_ApplePark_magg18.jpg"/>
"""

self.textView?.attributedText = taggedText.set(style: ...)

This is the result:

Sometimes you may want to provide these images lazily. In order to do it just provide a custom implementation of the imageProvider callback in StyleXML instance:

let xmlText = "- <img named=\"check\" background=\"#0000\"/> has done!"
        
let xmlStyle = StyleXML(base: {
  /// some attributes for base style
})

// This method is called when a new `img` tag is found. It's your chance to
// return a custom image. If you return `nil` (or you don't implement this method)
// image is searched inside any bundled `xcasset` file.
xmlStyle.imageProvider = { (imageName, attributes) in
	switch imageName {
		case "check":
		   // create & return your own image
		default:
		   // ...
	}
}
        
self.textView?.attributedText = xmlText.set(style: x)

Styles can be created as you need or registered globally to be used once you need. This second approach is strongly suggested because allows you to theme your app as you need and also avoid duplication of the code.

To register a Style or a StyleXML globally you need to assign an unique identifier to it and call register() function via Styles shortcut (which is equal to call StylesManager.shared).

In order to keep your code type-safer you can use a non-instantiable struct to keep the name of your styles, then use it to register style:

// Define a struct with your styles names
public struct StyleNames {
	public static let body: String = "body"
	public static let h1: String = "h1"
	public static let h2: String = "h2"
	
	private init { }
}

Then you can:

let bodyStyle: Style = ...
Styles.register(StyleNames.body, bodyStyle)

Now you can use it everywhere inside the app; you can apply it to a text just using its name:

let text = "hello world".set(StyleNames.body)

or you can assign body string to the styledText via Interface Builder designable property.

Sometimes you may need to return a particular style used only in small portion of your app; while you can still set it directly you can also defer its creation in StylesManager.

By implementing onDeferStyle() callback you have an option to create a new style once required: you will receive the identifier of the style.

Styles.onDeferStyle = { name in
			
	if name == "MyStyle" {
		let normal = Style {
			$0.font = SystemFonts.Helvetica_Light.font(size: 15)
		}
				
		let bold = Style {
			$0.font = SystemFonts.Helvetica_Bold.font(size: 20)
			$0.color = UIColor.red
			$0.backColor = UIColor.yellow
		}
				
		let italic = normal.byAdding {
			$0.traitVariants = .italic
		}
				
		return (StyleXML(base: normal, ["bold": bold, "italic": italic]), true)
	}
			
	return (nil,false)
}

The following code return a valid style for myStyle identifier and cache it; if you don't want to cache it just return false along with style instance.

Now you can use your style to render, for example, a tag based text into an UILabel: just set the name of the style to use.

SwiftRichString can be used also via Interface Builder.

  • UILabel
  • UITextView
  • UITextField

has three additional properties:

  • styleName: String (available via IB): you can set it to render the text already set via Interface Builder with a style registered globally before the parent view of the UI control is loaded.
  • style: StyleProtocol: you can set it to render the text of the control with an instance of style instance.
  • styledText: String: use this property, instead of attributedText to set a new text for the control and render it with already set style. You can continue to use attributedText and set the value using .set() functions of String/AttributedString.

Assigned style can be a Style, StyleXML or StyleRegEx:

  • if style is a Style the entire text of the control is set with the attributes defined by the style.
  • if style is a StyleXML a base attribute is set (if base is valid) and other attributes are applied once each tag is found.
  • if style is a StyleRegEx a base attribute is set (if base is valid) and the attribute is applied only for matches of the specified pattern.

Typically you will set the style of a label via Style Name (styleName) property in IB and update the content of the control by setting the styledText:

// use `styleName` set value to update a text with the style
self.label?.styledText = "Another text to render" // text is rendered using specified `styleName` value.

Otherwise you can set values manually:

// manually set the an attributed string
self.label?.attributedText = (self.label?.text ?? "").set(myStyle)

// manually set the style via instance
self.label?.style = myStyle
self.label?.styledText = "Updated text"

The following properties are available:

PROPERTY TYPE DESCRIPTION
size CGFloat font size in points
font FontConvertible font used in text
color ColorConvertible foreground color of the text
backColor ColorConvertible background color of the text
shadow NSShadow shadow effect of the text
underline (NSUnderlineStyle?,ColorConvertible?) underline style and color (if color is nil foreground is used)
strikethrough (NSUnderlineStyle?,ColorConvertible?) strikethrough style and color (if color is nil foreground is used)
baselineOffset Float character’s offset from the baseline, in point
paragraph NSMutableParagraphStyle paragraph attributes
lineSpacing CGFloat distance in points between the bottom of one line fragment and the top of the next
paragraphSpacingBefore CGFloat distance between the paragraph’s top and the beginning of its text content
paragraphSpacingAfter CGFloat space (measured in points) added at the end of the paragraph
alignment NSTextAlignment text alignment of the receiver
firstLineHeadIndent CGFloat distance (in points) from the leading margin of a text container to the beginning of the paragraph’s first line.
headIndent CGFloat The distance (in points) from the leading margin of a text container to the beginning of lines other than the first.
tailIndent CGFloat this value is the distance from the leading margin, If 0 or negative, it’s the distance from the trailing margin.
lineBreakMode LineBreak mode that should be used to break lines
minimumLineHeight CGFloat minimum height in points that any line in the receiver will occupy regardless of the font size or size of any attached graphic
maximumLineHeight CGFloat maximum height in points that any line in the receiver will occupy regardless of the font size or size of any attached graphic
baseWritingDirection NSWritingDirection initial writing direction used to determine the actual writing direction for text
lineHeightMultiple CGFloat natural line height of the receiver is multiplied by this factor (if positive) before being constrained by minimum and maximum line height
hyphenationFactor Float threshold controlling when hyphenation is attempted
ligatures Ligatures Ligatures cause specific character combinations to be rendered using a single custom glyph that corresponds to those characters
speaksPunctuation Bool Enable spoken of all punctuation in the text
speakingLanguage String The language to use when speaking a string (value is a BCP 47 language code string).
speakingPitch Double Pitch to apply to spoken content
speakingPronunciation String
shouldQueueSpeechAnnouncement Bool Spoken text is queued behind, or interrupts, existing spoken content
headingLevel HeadingLevel Specify the heading level of the text
numberCase NumberCase "Configuration for the number case, also known as ""figure style"""
numberSpacing NumberSpacing "Configuration for number spacing, also known as ""figure spacing"""
fractions Fractions Configuration for displyaing a fraction
superscript Bool Superscript (superior) glpyh variants are used, as in footnotes_.
subscript Bool Subscript (inferior) glyph variants are used: v_.
ordinals Bool Ordinal glyph variants are used, as in the common typesetting of 4th.
scientificInferiors Bool Scientific inferior glyph variants are used: H_O
smallCaps Set<SmallCaps> Configure small caps behavior.
stylisticAlternates StylisticAlternates Different stylistic alternates available for customizing a font.
contextualAlternates ContextualAlternates Different contextual alternates available for customizing a font.
kerning Kerning Tracking to apply.
traitVariants TraitVariant Describe trait variants to apply to the font
  • Swift 5.1+
  • iOS 8.0+
  • macOS 11.0+
  • watchOS 2.0+
  • tvOS 11.0+

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate Alamofire into your Xcode project using CocoaPods, specify it in your Podfile:

pod 'SwiftRichString'

Swift Package Manager

The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. It is in early development, but Alamofire does support its use on supported platforms.

Once you have your Swift package set up, adding Alamofire as a dependency is as easy as adding it to the dependencies value of your Package.swift.

dependencies: [
    .package(url: "https://github.com/malcommac/SwiftRichString.git", from: "3.5.0")
]

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
To integrate SwiftRichString into your Xcode project using Carthage, specify it in your Cartfile:

github "malcommac/SwiftRichString"

Run carthage to build the framework and drag the built SwiftRichString.framework into your Xcode project.

Issues and pull requests are welcome! Contributors are expected to abide by the Contributor Covenant Code of Conduct.

Copyright

SwiftRichString is available under the MIT license. See the LICENSE file for more info.

Daniele Margutti: [email protected], @danielemargutti

swiftrichstring's People

Contributors

ananthscb avatar benbahrenburg avatar cywd avatar danqing avatar flashspys avatar malcommac avatar marinofelipe avatar mezhevikin avatar pyrosphere avatar rolandasrazma avatar shihochan avatar simonboriis avatar stefanomondino avatar wberger avatar ziligy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

swiftrichstring's Issues

Link rendering

Feature request for URL/link rendering similar to <a> in HTML

Build failed with version 2.0.5 / XCode 9.4 / iOS 11.4

Build failed with latest version 2.0.5 and XCode 9.4 / iOS 11.4
(deployment target iOS 9.1)

Pods/SwiftRichString/Sources/SwiftRichString/Attributes/CommonsAttributes.swift:57:53: 'SymbolicTraits' is not a member type of 'UIFontDescriptor'

Remove throws in MarkupString

Remove throws in MarkupString in favour of nil results when parsing fails.
It will remove lots of boilerplate code.

SwiftRichString 2.x for Swift 3.x

After upgrading Xcode to version 9.3 I can't longer build the project.

<unknown>:0: error: fatal error encountered while reading from module 'SwiftRichString'; please file a bug report with your project and the crash log
<unknown>:0: note: compiling as Swift 3.3, with 'SwiftRichString' built as Swift 4.1 (this is supported but may expose additional compiler issues)
Cross-reference to module 'Foundation'
... NSAttributedStringKey

0  swift                    0x0000000107da8ffa PrintStackTraceSignalHandler(void*) + 42
1  swift                    0x0000000107da83b6 SignalHandler(int) + 966
2  libsystem_platform.dylib 0x00007fff5e65ff5a _sigtramp + 26
3  libsystem_platform.dylib 000000000000000000 _sigtramp + 2711224512
4  libsystem_c.dylib        0x00007fff5e48a312 abort + 127
5  swift                    0x00000001054d6bae swift::ModuleFile::fatal(llvm::Error) + 2062
6  swift                    0x00000001054e8f9a swift::ModuleFile::getTypeChecked(llvm::PointerEmbeddedInt<unsigned int, 31>) + 13418
7  swift                    0x00000001054f7e17 swift::SILDeserializer::readSILFunction(llvm::PointerEmbeddedInt<unsigned int, 31>, swift::SILFunction*, llvm::StringRef, bool, bool) + 455
8  swift                    0x000000010550b00c swift::SILDeserializer::getFuncForReference(llvm::StringRef) + 748
9  swift                    0x000000010550c4cd swift::SILDeserializer::readVTable(llvm::PointerEmbeddedInt<unsigned int, 31>) + 605
10 swift                    0x000000010520076b swift::SILLinkerVisitor::processClassDecl(swift::ClassDecl const*) + 91
11 swift                    0x00000001052473c5 swift::SILModule::lookUpVTable(swift::ClassDecl const*) + 261
12 swift                    0x000000010520038f swift::SILLinkerVisitor::linkInVTable(swift::ClassDecl*) + 31
13 swift                    0x00000001051ffe45 swift::SILLinkerVisitor::process() + 517
14 swift                    0x00000001051ffb6f swift::SILLinkerVisitor::processFunction(swift::SILFunction*) + 79
15 swift                    0x0000000105246555 swift::SILModule::linkFunction(swift::SILFunction*, swift::SILOptions::LinkingMode) + 117
16 swift                    0x0000000104f843c9 runOnFunctionRecursively(swift::SILFunction*, swift::FullApplySite, swift::SILOptions::LinkingMode, llvm::DenseSet<swift::SILFunction*, llvm::DenseMapInfo<swift::SILFunction*> >&, llvm::ImmutableSet<swift::SILFunction*, llvm::ImutContainerInfo<swift::SILFunction*> >::Factory&, llvm::ImmutableSet<swift::SILFunction*, llvm::ImutContainerInfo<swift::SILFunction*> >, swift::ClassHierarchyAnalysis*) + 4249
17 swift                    0x0000000104f82e56 (anonymous namespace)::MandatoryInlining::run() + 342
18 swift                    0x0000000104f04db9 swift::SILPassManager::runOneIteration() + 10217
19 swift                    0x0000000104f081eb swift::runSILDiagnosticPasses(swift::SILModule&) + 2123
20 swift                    0x0000000104407697 performCompile(swift::CompilerInstance&, swift::CompilerInvocation&, llvm::ArrayRef<char const*>, int&, swift::FrontendObserver*, swift::UnifiedStatsReporter*) + 32167
21 swift                    0x00000001043fde64 swift::performFrontend(llvm::ArrayRef<char const*>, char const*, void*, swift::FrontendObserver*) + 7908
22 swift                    0x00000001043b28b5 main + 18917
23 libdyld.dylib            0x00007fff5e3de115 start + 1
24 libdyld.dylib            0x00000000000000a8 start + 2713853844

Line separation with <br> tag keeps ">" after applying render()

Hi,

I was trying to create an attributed string from this:
"<p><b>5 July</b><br>- It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.<br>- of the printing and typesetting industry. Lorem Ipsum has been the industry's </p>".

with the following code:
let style = Style.default {
$0.font = FontAttribute(.HelveticaNeue_Light, size: 16)
$0.color = ColorPalette.turquoiseBlue
}
let parser = MarkupString(source: news.subtitle, styles: [style])!
let attributedText = parser.render()

The result that I am getting is like this:
"...>- It is a long established..."

Dont know if its a bug or I am doing something wrong.

commented-out example code obsolete?

The file ViewController.swift in the DemoApp folder has the following code in lines 64-66:

//	let sourceURL = URL(fileURLWithPath: "...")
//	let sourceText = RichString(sourceURL, encoding: .utf8, [bold,italic])!
//	let renderedText = sourceText.text

The method RichString() doesn't seem to exist anywhere. Is there a replacement function? Or is it hiding from me?

Render HTML text

Hello, Thank you for this cool framework!. I just need to display an HTML code using this. But when I run the app, my label shows nothing!.

here is my code:

 let file = Bundle.main.path(forResource: "html", ofType: "txt")!
        do {
            htmlBody = try String(contentsOfFile: file, encoding: .utf8)
        } catch let error {
            print(error)
        }

        label.attributedText = htmlBody.set(style: "str")

my txt file has all tags and styles so I don't need it to create style group.
How can I fix this?

Fixed missing font attributes while rendering StyleGroup

Hi,
I've just updated from 2.0.1 to 2.0.2, and all my styles are gone…

Before:
img_0064
After:
img_0065

            let baseFontSize: CGFloat = 16
            
            let headerStyle = Style {
                $0.font = UIFont.boldSystemFont(ofSize: self.baseFontSize * 1.15)
                $0.lineSpacing = 1
                $0.kerning = Kerning.adobe(-20)
            }
            let boldStyle = Style {
                $0.font = UIFont.boldSystemFont(ofSize: self.baseFontSize)
            }
            let italicStyle = Style {
                $0.font = UIFont.italicSystemFont(ofSize: self.baseFontSize)
            }

            let style = StyleGroup(base: Style {
                $0.font = UIFont.systemFont(ofSize: self.baseFontSize)
                $0.lineSpacing = 2
                $0.kerning = Kerning.adobe(-15)
                }, [
                    "h3": headerStyle,
                    "h4": headerStyle,
                    "h5": headerStyle,
                    "strong": boldStyle,
                    "b": boldStyle,
                    "em": italicStyle,
                    "i": italicStyle,
                    "li": Style {
                        $0.paragraphSpacingBefore = self.baseFontSize / 2
                        $0.firstLineHeadIndent = self.baseFontSize
                        $0.headIndent = self.baseFontSize * 1.71
                    },
                    "sup": Style {
                        $0.font = UIFont.systemFont(ofSize: self.baseFontSize / 1.2)
                        $0.baselineOffset = Float(self.baseFontSize) / 3.5
                    }])
            
            attrString = bodyHTML.set(style: style)

Original text is:

<strong>Parler du don d'organe n'est plus tabou. Je me renseigne, j'en discute avec mes proches,... et je dΓ©cide!</strong>  

En Belgique, au dΓ©but des annΓ©es 2000, le nombre de donneurs d’organes avait tendance Γ  diminuer et les listes d’attente Γ  augmenter considΓ©rablement ayant comme corollaire une augmentation de la mortalitΓ© des patients inscrits sur les listes d’attente. 

Soucieux de cette situation, en juin 2005, le Ministre en charge de la SantΓ© publique a souhaitΓ© mettre sur pied une vaste campagne de sensibilisation entiΓ¨rement dΓ©diΓ©e au don d’organes. 

Depuis, de nombreuses actions entreprises par le SPF Santé publique viennent renforcer toutes celles qui sont accomplies au quotidien par les coordinateurs de transplantation, les coordinateurs locaux de don, les associations de familles de donneurs, les associations de patients transplantés et ce, depuis de très nombreuses années. 

<strong>Objectifs poursuivis</strong> 

Les objectifs principaux de cette campagne sont: 
<li style="text-align: justify;">β€’ d’amΓ©liorer la sensibilisation au don auprΓ¨s des diffΓ©rents groupes auxquels les messages s’adressent,</li>
<li style="text-align: justify;">β€’ d’inviter les citoyens Γ  Β«oserΒ» en parler en famille, entre amis, entre collΓ¨gues. Aborder la mort – sa propre mort – reste relativement tabou pour beaucoup.</li> 

<strong>Pour en savoir plus... <a href="http://www.health.belgium.be/fr/sante/prenez-soin-de-vous/debut-et-fin-de-vie/don-dorganes" target="_blank">www.health.belgium.be/fr/sante/prenez-soin-de-vous/debut-et-fin-de-vie/don-dorganes</a></strong>

apply defaults to document

It would be nice if there was an easy way to apply defaults to the document. For example: define a document as default right-to-left, define a document with a default font (family, size, etc), define a document with a theme (background color, text color, etc).

All in all, a very nice project. I'm enjoying playing with it.

Text/Icons disappear when Stroke attribute is applied

@malcommac
Every time I apply Stroke attribute to text any font-icon, it just disappears. Why?

static let nameTitle = Style({
        $0.color = .white
        $0.stroke = StrokeAttribute(color: .black, width: 0.1)
        $0.font = FontAttribute(font: .pageTitle)
        $0.shadow = ShadowAttribute(color: UIColor.black.withAlphaComponent(0.2), radius: 2.0, offset: CGSize(width: 1, height: 1))
    })

What about <p> tag for paragraph separation?

Hi,
I would like to have a p tag instead of /n or br for paragraph delimitation.
And of course to be able to define a base style for a paragraph that could be changed automatically in favor of other styles selected.
There's a way to set style priority and to successful process this tag?

Right know it just ignore it

Fixed an issue when rendering emojis and other unicode strings

Some emojist stoped working after update.
this code is the code I have

let messageStyle = Style {
    $0.font = UIFont.systemFont(ofSize: 12)
    $0.kerning = Kerning.point(0.3)
    $0.color = UIColor.bsBase
}
self.messageLabel.attributedText = "πŸ˜‡".set(style: messageStyle)

On version 2.0.1
screen shot 2018-09-12 at 12 12 24

On version 2.0.2+
screen shot 2018-09-12 at 12 06 39

Any clues what may have caused this?

Fixed internal parser

When I apply tags to a very large text, the attributes start getting applied to strange locations in text. I tried playing with this but haven't yet detected a pattern.

Question: Is there a size limit for the text being tagged?

When applying StokeAttribute color becomes transparent

Using following code:

let titleStyle = Style("title", {
            $0.font = FontAttribute(font: .WorkSansExtraBold(17))
            $0.align = .center
            $0.color = UIColor.white
            $0.stroke = StrokeAttribute(color: UIColor.black, width: 1)
            $0.kern = 2
        })

And text color becomes transparent. Any ideas why ?

Thanks !

Shortcut for MarkupString parser

Add a new func to String instances which allows you to parse a tagged (html-like) string and return the NSMutableAttributed string.

It will be called renderTags(withStyles:).

Follows an example:

let sourceTaggedString = "<center>The quick brown fox</center>\njumps over the lazy dog is an <italic>English-language</italic> pangramβ€”a phrase that contains <italic>all</italic> of the letters of the alphabet. It is <extreme><underline>commonly</underline></extreme> used for touch-typing practice."
let _ = sourceTaggedString.renderTags(withStyles: [tag_center,tag_italic,tag_extreme,tag_underline])

Fixed font/size attributes which are not inherited correctly

add method will override all existing attributes.

let styleA = Style {
	$0.color = UIColor.white
	$0.size = 24
}

let styleB = Style {
	$0.color = UIColor.white
	$0.size = 14
}

let styleC = Style {
	$0.color = UIColor.red
}

let a = "hello".set(style: styleA)
let b = "world!".set(style: styleB)
let ab = (a + b).add(style: styleC)

the expected result of ab should keep different font size and append red color. But real result is reset font size and append red color.

p.s. version 2.0.1

Possible to go from NSAttributedString, to "simple" tags?

In this great library, it's unclear:

Say I have an attributed string, which has (let's say) ONLY bold and italic sections.

I want to PRODUCE THIS OUTPUT:

This string <b>has</b> only some <i>bold and some</i> italic.

As you know, you can certainly generate html using Apple's built-in generator, but it produces wildly complex CSS output (see below for example).

So, I know that with SwiftRichString you can go FROM something like

This string <b>has</b> only some <i>bold and some</i> italic.

to an NSAttributedString - but can you go in the other direction???

Sorry it's a bit unclear from the doco - or maybe I'm just lame :)

Example of Apple's crappy full-css output...,

if you use .attributedText.data

><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
<meta name="Generator" content="Cocoa HTML Writer">
<style type="text/css">
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px 'Open Sans'}
span.s1 {font-family: 'Open Sans'; font-weight: normal; font-style: normal; font-size: 14.00pt}
span.s2 {font-family: 'OpenSans-SemiboldItalic'; font-weight: bold; font-style: italic; font-size: 14.00pt}
</style>
</head>
<body>
<p class="p1"><span class="s1">So, </span><span class="s2">Apple made</span><span class="s1"> this stuff OK</span></p>
</body>
</html>
<

Type of expression is ambiguous without more context

I'm trying to init using the following code:

let bold = Style("bold", {
                $0.font = .bold(size: 16)
                $0.color = .black
})

Using Xcode 10/Swift 4.2 I get the following error:

Type of expression is ambiguous without more context

Touch feature

Hi, your lib is great πŸ‘
Do you have a plan to add handle touch feature to tag?

Dynamic value support for TagAttributes (ie. apply link value from an 'a'/'href' tag)

When trying to convert HTML to attributedText with this wonderful tool, the only thing I'm missing is a way to construct the linkURL with the content of a tag attribute.

I've looked into your code and here's an idea: instead of taking an optional URL for the Style linkURL property, what about a "URLConvertible" type?

Here's a draft of what it could look like, but I don't understand your parsing process (yet) to be able to fully implement it.

//MARK: - URLConvertible

/// An enumeration representing the source of the URL to be applied.
///
/// - url: URL type.
/// - string: String url.
/// - tagAttribute: value of attribute from a parsed tag (ie: "href").
/// - tagText: text content from a parsed tag.
public enum URLConvertible {
    case url(URL)
    case string(String)
    case tagAttribute(String)
    case tagText
    
    func url(for tag: StyleGroup.TagAttribute?) -> URL? {
        switch self {
        case .url(let url):
            return url
        case .string(let string):
            return URL(string: string)
        case .tagAttribute(let attribute):
            return URL(string: tag.attributes[attribute])
        case .tagText:
            return URL(string: tag.content)
        }
    }
    
}

We could then just do the following:

attrString.add(style: StyleGroup(["a" : Style {
    $0.linkURL = .tagAttribute("href")
}]))

Compile issue with Xcode 9 Beta

Im getting this error when trying to compile the project using Carthage pointing out to the beta version of Xcode:

*** Building scheme "SwiftRichString" in SwiftRichString.xcworkspace
Build Failed
Task failed with exit code 65:
/usr/bin/xcrun xcodebuild -workspace /Users/jgarcia/Developer/music-mobile-ios-v3/Carthage/Checkouts/SwiftRichString/SwiftRichString.xcworkspace -scheme SwiftRichString -configuration Release -derivedDataPath /Users/jgarcia/Library/Caches/org.carthage.CarthageKit/DerivedData/SwiftRichString/0.9.8 -sdk iphoneos ONLY_ACTIVE_ARCH=NO BITCODE_GENERATION_MODE=bitcode CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= CARTHAGE=YES clean build

This usually indicates that project itself failed to compile. Please check the xcodebuild log for more details: /var/folders/5y/6n4_nl4x40qg1z_6n8d_z9xc0000gp/T/carthage-xcodebuild.pNKVla.log

Any suggestion of what should I do.

Thanks.

Compatibility issue with NightNight library

Hi,

I always had this very simple style with a simple string, and the alignment always worked. Now after upgrading to 2.10 the alignment does not work anymore?

let smaller = Style {
  $0.font = Global.Font.RegularFont12
  $0.alignment = .center
}

EDIT: I downgraded to 2.0.5, now it works again.

Thanks!

The attributes field not returning everything

I have this style:

let inputStyle = Style {
        $0.font = UIFont.bsFont(type: .medium, size: 13)
        $0.color = UIColor.white
        $0.kerning = Kerning.point(0.2)
}

On V2.0.1 inputStyle.attributes returns 3 atrributes.
On V2.0.5 inputStyle.attributes returns 1 atrributes.

Malloc issue leads to crash for a mixed Swift version implementation

I have discovered a crash scenario in the following situation:

  • Release Configuration
  • Project compiled with Swift 3.2
  • SwiftRichString compiled with Swift 4.0 (using SwiftRichString version 1.0.1)
  • macOS project (could also be present in iOS - not tested)
  • macOS Sierra version 10.12.6
  • Xcode version 9.2

I have created a simple macOS project that reliably reproduces the issue:
https://github.com/scottcarter/SwiftRichString_MallocBug

I found that if any of the first three criteria is changed, the problem goes away. I.e. if a Debug configuration is used, if the project is compiled with Swift 4.0, or I compile SwiftRichString with Swift 3.2 (using SwiftRichString version 0.9.10).

Style for plain strings?

Is there a way to automatically continue the current style when concatenating/appending strings to attributed strings? I'm using set with each string now, but I'm about to move into multiple styles.
Alternatively, a way to set a style based on the style of the final character of an attributed string could also work.

MarkupString removed?

I'm converting to version 2 of this library and I just wanted to make sure you removed MarkupString ? What's the recommend upgrade path in that case?

Fixed an issue with Style copying via `byAdding()` function

Hello.

I would like to report/highlight the breaking changes of the latest versions.

With this simple group declaration

typealias MainFont = Font.HelveticaNeue

enum Font {
    enum HelveticaNeue: String {
        case light = "Light"
        case bold = "Bold"
        case boldItalic = "BoldItalic"
        func with(size: CGFloat) -> UIFont {
            return UIFont(name: "HelveticaNeue-\(rawValue)", size: size)!
        }
    }
}

let normal = Style {
    $0.font = MainFont.light.with(size: 16)
}

let bold = normal.byAdding {
    $0.font = MainFont.bold.with(size: 16)
}

let bold_italic = normal.byAdding {
    $0.font = MainFont.boldItalic.with(size: 15)
}

let stylesDefs = [
    "bold": bold,
    "bold_italic": bold_italic,
]

let defaultStyles = StyleGroup(base: normal, stylesDefs)

And the following text:

var text = "This search engine is specifically designed to solve <bold>crosswords</bold> or <bold>arrowords puzzles</bold>.\n\nIn order to solve a word, you can either enter its <bold>definition</bold> or its <bold>pattern</bold>.\n\n<bold_italic>For patterns, you can simply press the spacebar for each unknown letter.</bold_italic>"
text.set(style: defaultStyles)

The output with version 2.0.1 is as expected:

swiftrichstring-2 0 1

With version 2.0.2 I've this:

swiftrichstring-2 0 2

With version 2.0.3, this:

swiftrichstring-2 0 3

And the latest 2.0.4 is the worst:

swiftrichstring-2 0 4

I've tried to use your new declaration style

let normal = Style {
    $0.font = SystemFonts.HelveticaNeue_Light.font(size: 16)
}

let bold = Style {
    $0.font = SystemFonts.HelveticaNeue_Bold.font(size: 16)
}

let bold_italic = Style {
    $0.font = SystemFonts.HelveticaNeue_BoldItalic.font(size: 15)
}

But it does not solve the issue, I keep getting the output of the last screenshot.

So either it's a breaking change or it's a bug, but for now, I will force the use of version 2.0.1 as it is the only one who gives the expected output.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.