scribe/shard.yml

38 lines
712 B
YAML
Raw Normal View History

2021-05-01 23:02:08 +02:00
name: scribe
version: 1.0.0
2021-05-01 23:02:08 +02:00
authors:
- Edward Loveall <edward@edwardloveall.com>
targets:
scribe:
main: src/scribe.cr
2023-05-06 19:05:58 +02:00
crystal: 1.8.1
2021-05-01 23:02:08 +02:00
dependencies:
lucky:
github: luckyframework/lucky
2023-05-06 16:56:02 +02:00
version: ~> 1.0.0
2023-05-06 16:53:31 +02:00
avram:
github: luckyframework/avram
2023-05-06 16:56:02 +02:00
version: ~> 1.0.0
2021-05-01 23:02:08 +02:00
authentic:
github: luckyframework/authentic
2023-05-06 16:56:02 +02:00
version: ~> 1.0.0
lucky_env:
github: luckyframework/lucky_env
2021-05-01 23:02:08 +02:00
version: ~> 0.1.4
lucky_task:
github: luckyframework/lucky_task
version: ~> 0.1.1
2023-05-11 15:47:39 +02:00
carbon:
github: luckyframework/carbon
version: ~> 0.3.0
Render embedded content PostResponse::Paragraph's that are of type IFRAME have extra data in the iframe attribute to specify what's in the iframe. Not all data is the same, however. I've identified three types and am using the new EmbeddedConverter class to convert them: * EmbeddedContent, the full iframe experience * GithubGist, because medium or github treat embeds differently for whatever reason * EmbeddedLink, the old style, just a link to the content. Effectively a fallback The size of the original iframe is also specified as an attribute. This code resizes it. The resizing is determined by figuring out the width/height ratio and setting the width to 800. EmbeddedContent can be displayed if we have an embed.ly url, which most iframe response data has. GitHub gists are a notable exception. Gists instead can be embedded simply by taking the gist URL and attaching .js to the end. That becomes the iframe's src attribute. The PostResponse::Paragraph's iframe attribute is nillable. Previous code used lots of if-statements with variable bindings to work with the possible nil values: ```crystal if foo = obj.nillable_value # obj.nillable_value was not nil and foo contains the value else # obj.nillable_value was nil so do something else end ``` See https://crystal-lang.org/reference/syntax_and_semantics/if_var.html for more info In the EmbeddedConverter the monads library has been introduced to get rid of at least one level of nillability. This wraps values in Maybe which allows for a cleaner interface: ```crystal Monads::Try(Value).new(->{ obj.nillable_value }) .to_maybe .fmap(->(value: Value) { # do something with value }) .value_or(# value was nil, do something else) ``` This worked to get the iframe attribute from a Paragraph: ```crystal Monads::Try(PostResponse::IFrame).new(->{ paragraph.iframe }) .to_maybe .fmap(->(iframe : PostResponse::IFrame) { # iframe is not nil! }) .fmap(#and so on) .value_or(Empty.new) ``` iframe only has one attribute: mediaResource which contains the iframe data. That was used to determine one of the three types above. Finally, Tufte.css has options for iframes. They mostly look good except for tweets which are too small and weirdly in the center of the page which actually looks off-center. That's for another day though.
2021-09-13 19:27:52 +02:00
monads:
github: alex-lairan/monads
2021-05-01 23:02:08 +02:00
development_dependencies:
lucky_flow:
github: luckyframework/lucky_flow
2023-05-06 16:53:31 +02:00
version: ~> 0.9.0