feedless/app/views/profile.ejs

71 lines
2.9 KiB
Plaintext
Raw Normal View History

<%- include('_header') %>
2020-04-06 10:16:50 +02:00
<div class="columns">
<div class="about">
<img class="profile-pic" src="<%= profileImageUrl(profile) %>" />
<h1><%= profile.name %></h1>
<%= profile.description %>
2020-04-12 11:39:51 +02:00
<div style="margin-top: 20px">
2020-04-11 18:03:58 +02:00
<% if (friendshipStatus == "no_relation") { %>
2020-04-12 11:39:51 +02:00
<form action="<%= profileUrl(profile.id, "/add_friend") %>" method="POST">
<input type="submit" value="Add as friend" />
</form>
2020-04-11 18:03:58 +02:00
<% } else if (friendshipStatus == "friends") { %>
✅ Friends
2020-04-12 11:39:51 +02:00
<form action="<%= profileUrl(profile.id, "/reject_friend") %>" style="display:inline; margin-left: 15px" method="POST">
<input type="submit" class="button-secondary" value="unfriend" />
</form>
2020-04-11 18:03:58 +02:00
<% } else if (friendshipStatus == "request_sent") { %>
2020-04-13 11:11:51 +02:00
<form action="<%= profileUrl(profile.id, "/reject_friend") %>" style="display:inline" method="POST">
<button class="button-secondary undo-request">Request sent</button>
</form>
2020-04-11 18:03:58 +02:00
<% } else if (friendshipStatus == "request_received") { %>
2020-04-12 11:39:51 +02:00
<p><%= profile.name %> sent you a friendship request</p>
<form action="<%= profileUrl(profile.id, "/add_friend") %>" style="display:inline" method="POST">
<input type="submit" value="Accept" />
</form>
<form action="<%= profileUrl(profile.id, "/reject_friend") %>" style="display:inline" method="POST">
<input type="submit" class="button-secondary" value="Reject" />
</form>
<% } else if (friendshipStatus == "request_rejected") { %>
<p>You rejected <%= profile.name %> friendship request</p>
<form action="<%= profileUrl(profile.id, "/add_friend") %>" method="POST">
<input type="submit" value="Add as friend" />
</form>
2020-04-11 18:03:58 +02:00
<% } %>
2020-04-12 11:39:51 +02:00
</div>
2020-04-11 18:03:58 +02:00
2020-04-13 11:11:51 +02:00
<h2 style="margin-top: 30px">Friends</h2>
<%- include('_friends', { friends: friends.friends }) %>
2020-04-06 10:16:50 +02:00
</div>
2020-04-06 10:16:50 +02:00
<div class="wall">
<h2>Leave <%= profile.name %> a message</h2>
<form action="<%= profileUrl(profile.id, "/publish") %>" method="POST">
2020-04-08 08:44:23 +02:00
<div>
<label>
2020-04-13 10:50:30 +02:00
<input type="radio" name="visibility" value="public" checked="checked" class="js-public-option">
2020-04-08 08:44:23 +02:00
Public
</label>
<label>
2020-04-13 10:50:30 +02:00
<input type="radio" name="visibility" value="vanishing" class="js-vanishing-option">
2020-04-08 08:44:23 +02:00
Vanishing
</label>
</div>
2020-04-13 10:50:30 +02:00
<div style="display: none; padding-top: 20px; font-size: 13px; color: #666" class="js-vanishing-message">
Vanishing messages are private and disapear right after being read
</div>
<textarea name="message" class="compose-post"></textarea>
<div class="reverse-columns" style="margin-top: 10px">
<input type="submit" value="Publish" />
</div>
2020-04-08 08:44:23 +02:00
</form>
2020-04-13 10:50:30 +02:00
<h2 style="margin: 0"><%= profile.name %>'s Wall</h2>
<%- include('_posts', { posts }) %>
2020-04-06 10:16:50 +02:00
</div>
</div>
<%- include('_footer') %>