Search Apps Documentation Source Content File Folder Download Copy Actions Download

z_ui_board_00_filetest.gno

2.16 Kb · 58 lines
 1// PKGPATH: gno.land/r/gnoland/boards2/v1/filetests/z_ui_board_00_filetest
 2
 3// Render default board view.
 4package z_ui_board_00_filetest
 5
 6import (
 7	"testing"
 8
 9	boards2 "gno.land/r/gnoland/boards2/v1"
10)
11
12const (
13	owner     address = "g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh"
14	boardName         = "TestBoard"
15)
16
17func init(cur realm) {
18	testing.SetRealm(testing.NewUserRealm(owner))
19
20	// Create a board and then add 3 threads
21	boardID := boards2.CreateBoard(cross(cur), boardName, false, false)
22
23	// Create thread "A" with a single comment
24	threadID := boards2.CreateThread(cross(cur), boardID, "A", "Body")
25	boards2.CreateReply(cross(cur), boardID, threadID, 0, "Body")
26
27	// The other 2 threads are created without comments
28	boards2.CreateThread(cross(cur), boardID, "B", "Body")
29	threadID = boards2.CreateThread(cross(cur), boardID, "C", "Body")
30
31	// Repost thread "C" into a different board
32	dstBoardID := boards2.CreateBoard(cross(cur), "Bar", false, false)
33	boards2.CreateRepost(cross(cur), boardID, threadID, dstBoardID, "Title", "Body")
34}
35
36func main() {
37	println(boards2.Render(boardName))
38}
39
40// Output:
41// # [Boards](/r/gnoland/boards2/v1) › TestBoard
42// Created by [g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh](/u/g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh) on 2009-02-13 11:31pm UTC, #1
43// ↳ [Create Thread](/r/gnoland/boards2/v1:TestBoard/create-thread) • [Request Invite](/r/gnoland/boards2/v1$help&func=RequestInvite&boardID=1) • [Manage Board](?menu=manageBoard)
44//
45// ---
46// Sort by: [newest first](/r/gnoland/boards2/v1:TestBoard?order=desc)
47//
48// ###### [A](/r/gnoland/boards2/v1:TestBoard/1)
49// Created by [g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh](/u/g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh) `owner` on 2009-02-13 11:31pm UTC
50// **1 replies • 0 reposts**
51//
52// ###### [B](/r/gnoland/boards2/v1:TestBoard/3)
53// Created by [g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh](/u/g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh) `owner` on 2009-02-13 11:31pm UTC
54// **0 replies • 0 reposts**
55//
56// ###### [C](/r/gnoland/boards2/v1:TestBoard/4)
57// Created by [g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh](/u/g1rp7cmetn27eqlpjpc4vuusf8kaj746tysc0qgh) `owner` on 2009-02-13 11:31pm UTC
58// **0 replies • 1 reposts**