don't show buttons on predator fish
This commit is contained in:
parent
dbb93543f3
commit
654bcbab1f
1 changed files with 17 additions and 15 deletions
|
@ -76,7 +76,7 @@ pub fn fish_list(data: &ViewData) -> Markup {
|
||||||
html! {
|
html! {
|
||||||
@for fish in data.fish.clone() {
|
@for fish in data.fish.clone() {
|
||||||
@if !fish.filtered {
|
@if !fish.filtered {
|
||||||
(fish_display(&fish, data))
|
(fish_display(&fish, data, false))
|
||||||
@if !fish.entry.predators.is_empty() {
|
@if !fish.entry.predators.is_empty() {
|
||||||
.predators {
|
.predators {
|
||||||
div.predators-header { small { "⇖ Requirements" } }
|
div.predators-header { small { "⇖ Requirements" } }
|
||||||
|
@ -84,7 +84,7 @@ pub fn fish_list(data: &ViewData) -> Markup {
|
||||||
@if let Some(pred_fish) = data.fish.iter().find(|f| f.entry.id == predator[0]) {
|
@if let Some(pred_fish) = data.fish.iter().find(|f| f.entry.id == predator[0]) {
|
||||||
.predators-fish {
|
.predators-fish {
|
||||||
.amount { (predator[1]) }
|
.amount { (predator[1]) }
|
||||||
(fish_display(pred_fish, data))
|
(fish_display(pred_fish, data, true))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -95,24 +95,26 @@ pub fn fish_list(data: &ViewData) -> Markup {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn fish_display(fish: &CombinedFish, data: &ViewData) -> Markup {
|
pub fn fish_display(fish: &CombinedFish, data: &ViewData, is_predator: bool) -> Markup {
|
||||||
html! {
|
html! {
|
||||||
section.fish.up[fish.is_up].alwaysup[fish.is_always_up].pinned[data.pinned_fish.contains(&(fish.entry.id as i32))] {
|
section.fish.up[fish.is_up].alwaysup[fish.is_always_up].pinned[data.pinned_fish.contains(&(fish.entry.id as i32))] {
|
||||||
.title {
|
.title {
|
||||||
div {
|
@if !is_predator {
|
||||||
@if !data.caught_fish.contains(&(fish.entry.id as i32)) {
|
div {
|
||||||
form action=(format!("/{}/catch/{}", data.acc_id, fish.entry.id)) method="post" {
|
@if !data.caught_fish.contains(&(fish.entry.id as i32)) {
|
||||||
button.catch-button type="submit" { (PreEscaped("✓")) }
|
form action=(format!("/{}/catch/{}", data.acc_id, fish.entry.id)) method="post" {
|
||||||
|
button.catch-button type="submit" { (PreEscaped("✓")) }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@if !data.pinned_fish.contains(&(fish.entry.id as i32)) {
|
@if !data.pinned_fish.contains(&(fish.entry.id as i32)) {
|
||||||
form action=(format!("/{}/pin/{}", data.acc_id, fish.entry.id)) method="post" {
|
form action=(format!("/{}/pin/{}", data.acc_id, fish.entry.id)) method="post" {
|
||||||
button.pin-button type="submit" { (PreEscaped("☆"))}
|
button.pin-button type="submit" { (PreEscaped("☆"))}
|
||||||
}
|
}
|
||||||
} @else {
|
} @else {
|
||||||
form action=(format!("/{}/pin/{}/delete", data.acc_id, fish.entry.id)) method="post" {
|
form action=(format!("/{}/pin/{}/delete", data.acc_id, fish.entry.id)) method="post" {
|
||||||
button.pin-button type="submit" { (PreEscaped("★"))}
|
button.pin-button type="submit" { (PreEscaped("★"))}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue