-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(examples): add microposts example (#3660)
Signed-off-by: moul <[email protected]>
- Loading branch information
Showing
5 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# fork of `leon/fosdem25/microposts` | ||
|
||
removing optional lines to make the code more concise for slides. | ||
|
||
Original work here: https://gno.land/r/leon/fosdem25/microposts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module gno.land/r/moul/microposts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package microposts | ||
|
||
// empty file just to make sure that `gno test` tries to parse the implementation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package microposts | ||
|
||
import ( | ||
"std" | ||
"time" | ||
) | ||
|
||
type Post struct { | ||
text string | ||
author std.Address | ||
createdAt time.Time | ||
} | ||
|
||
func (p Post) String() string { | ||
out := p.text + "\n" | ||
out += "_" + p.createdAt.Format("02 Jan 2006, 15:04") + ", by " + p.author.String() + "_" | ||
return out | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package microposts | ||
|
||
import ( | ||
"std" | ||
"strconv" | ||
"time" | ||
) | ||
|
||
var posts []*Post | ||
|
||
func CreatePost(text string) { | ||
posts = append(posts, &Post{ | ||
text: text, | ||
author: std.PrevRealm().Addr(), // provided by env | ||
createdAt: time.Now(), | ||
}) | ||
} | ||
|
||
func Render(_ string) string { | ||
out := "# Posts\n" | ||
for i := len(posts) - 1; i >= 0; i-- { | ||
out += "### Post " + strconv.Itoa(i) + "\n" + posts[i].String() | ||
} | ||
return out | ||
} |