urbit/pkg/arvo/sur/launch-store.hoon

29 lines
534 B
Plaintext
Raw Normal View History

2019-08-10 00:54:36 +03:00
|%
+$ tiles (map term tile)
+$ tile-ordering (list term)
::
2020-05-05 20:10:58 +03:00
+$ tile
$: type=tile-type
is-shown=?
2020-05-05 20:10:58 +03:00
==
2019-08-10 00:54:36 +03:00
::
+$ tile-type
$% [%basic title=cord icon-url=cord linked-url=cord]
[%custom ~]
2020-05-05 20:10:58 +03:00
==
2019-08-10 00:54:36 +03:00
::
2020-03-26 00:53:12 +03:00
+$ action
$% [%add name=term =tile]
[%remove name=term]
[%change-order =tile-ordering]
2020-05-20 22:12:53 +03:00
[%change-first-time first-time=?]
[%change-is-shown name=term is-shown=?]
==
::
+$ update
2020-05-20 22:12:53 +03:00
$% [%initial =tiles =tile-ordering first-time=?]
[%keys keys=(set term)]
action
2020-03-26 00:53:12 +03:00
==
2019-08-10 00:54:36 +03:00
--