1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-26 07:13:15 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/widgets/LinkWidget.tid

96 lines
3.0 KiB
Plaintext
Raw Normal View History

title: LinkWidget
created: 201310241419
modified: 201502231037
2014-09-10 23:06:19 +00:00
tags: Widgets
caption: link
2014-08-28 08:32:19 +00:00
The `link` widget generates links to tiddlers. (Use the HTML `<a>` element to generate external links).
2013-10-23 22:12:19 +00:00
! Content and Attributes
2013-10-23 22:12:19 +00:00
|!Attribute |!Description |
2014-10-10 20:06:48 +00:00
|to |The title of the target tiddler for the link (defaults to the CurrentTiddler) |
|aria-label |Optional [[Accessibility]] label |
|tooltip |Optional tooltip WikiText |
|tabindex |Optional numeric [[tabindex|https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/tabIndex]] |
|draggable |"yes" to enable the link to be draggable (defaults to "yes") |
|tag |Optional tag to override the default "a" element |
2013-03-04 14:42:41 +00:00
2013-10-23 22:12:19 +00:00
The content of the link widget is rendered within the `<a>` tag.
2014-08-28 21:28:02 +00:00
The default value of the tooltip attribute is `<<tv-wikilink-tooltip>>`.
This means that you can control the text of a link tooltip in several ways:
```
<$link to="HelloThere" tooltip="Custom tooltip">Link 1</$link>
2014-08-28 21:28:02 +00:00
<$set name="tv-wikilink-tooltip" value="I'm a link to {{!!title}}">
<$link to="HelloThere">Link 2</$link>
</$set>
```
Renders as:
<$link to="HelloThere" tooltip="Custom tooltip">Link 1</$link>
2014-08-28 21:28:02 +00:00
<$set name="tv-wikilink-tooltip" value="I'm a link to {{!!title}}">
<$link to="HelloThere">Link 2</$link>
</$set>
Note that the tooltip is rendered with the current tiddler set to the target of the link.
2014-04-08 13:12:27 +00:00
A useful convention is to set the tooltip like this:
```
2014-08-28 21:28:02 +00:00
\define tv-wikilink-tooltip()
2014-04-08 13:12:27 +00:00
<$transclude field="tooltip"><$transclude field="title"/></$transclude>
\end
```
This causes the tooltip to be the ''tooltip'' field of the target tiddler. If the field isn't present, then the title is used instead.
! CSS Classes
* `tc-tiddlylink` - applied to all links
* `tc-tiddlylink-external` - applied to external, non-tiddler links
* `tc-tiddlylink-internal` - applied to tiddler links
* `tc-tiddlylink-missing` - applied to tiddler links where the target tiddler doesn't exist
* `tc-tiddlylink-resolves` - applied to tiddler links when the target tiddler does exist
! Configuration macros
Configuration macros can be used to modify the behaviour of the link widget.
2014-08-28 21:28:02 +00:00
!! tv-wikilinks
2014-08-28 21:28:02 +00:00
Links are suppressed if the macro `tv-wikilinks` evaluates to the string `no`. For example:
```
2014-08-28 21:28:02 +00:00
\define tv-wikilinks() no
```
2014-08-28 21:28:02 +00:00
!! tv-wikilink-template
2014-08-28 21:28:02 +00:00
The target of the link widget defaults to the URL encoded title of the tiddler. The `href` can be templated by defining the configuration macro `tv-wikilink-template`, and including within it the token `$uri_encoded$`. For example:
```
2014-08-28 21:28:02 +00:00
\define tv-wikilink-template() http://tiddlywiki.com/#$uri_encoded$
```
2013-10-23 22:12:19 +00:00
The token `$uri_doubleencoded$` is replaced by the double encoded title of the tiddler.
2013-10-23 22:12:19 +00:00
Note that in the browser the `<a>` element generated by the link widget has a JavaScript event handler that navigates directly to the target tiddler, ignoring the `href` attribute.
2014-08-28 21:28:02 +00:00
!! tv-wikilink-tooltip
Provides default text for the link tooltip:
```
2014-08-28 21:28:02 +00:00
\define tv-wikilink-tooltip() This is a link to {{!!title}}
<$link to="HelloThere"/>
```