feat: add basic search and filtering

This commit is contained in:
Anna 2021-10-04 15:14:40 -04:00
parent 7225f40e68
commit c0e12531a2
5 changed files with 240 additions and 139 deletions

View File

@ -35,51 +35,54 @@ body {
color: var(--text);
}
body > .listing {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
#listings > .listing {
display: grid;
grid-template-columns: 3fr auto 2fr;
gap: 1em;
padding: 1em;
margin-bottom: 1em;
background-color: var(--row-background);
}
body > .listing .left {
flex: 2 0 0;
}
body > .listing .middle {
flex: 1 0 0 ;
}
body > .listing:nth-child(2n) {
#listings > .listing:nth-child(2n) {
background-color: var(--row-background-alternate);
}
body > .listing .description {
#listings > .listing .description {
white-space: pre-wrap;
word-break: break-word;
}
body > .listing .stat {
#listings > .listing .description .desc-green {
color: var(--green-text);
}
#listings > .listing .description .desc-blue {
color: var(--light-blue-text);
}
#listings > .listing .description .desc-yellow {
color: var(--gold-text);
}
#listings > .listing .stat {
color: var(--meta-text);
}
body > .listing .duty {
#listings > .listing .duty {
font-size: 1.2em;
}
body > .listing .duty.cross {
#listings > .listing .duty.cross {
color: var(--cross-duty-text);
}
body > .listing .duty.local {
#listings > .listing .duty.local {
color: var(--local-duty-text);
}
body > .listing .meta {
#listings > .listing .meta {
display: flex;
flex-direction: column;
@ -89,13 +92,13 @@ body > .listing .meta {
text-align: right;
}
body > .listing .meta > .item {
#listings > .listing .meta > .item {
display: flex;
flex-flow: row nowrap;
align-self: flex-end;
}
body > .listing .meta > .item .icon {
#listings > .listing .meta > .item .icon {
height: 1em;
width: 1em;
fill: var(--text);
@ -104,7 +107,7 @@ body > .listing .meta > .item .icon {
justify-self: center;
}
body > .listing .party {
#listings > .listing .party {
margin-top: .5em;
display: grid;
@ -112,19 +115,19 @@ body > .listing .party {
gap: .5em;
}
body > .listing .party > .total {
#listings > .listing .party > .total {
align-self: center;
justify-self: center;
}
body > .listing .party > .slot {
#listings > .listing .party > .slot {
width: 2em;
height: 2em;
border: 1px solid currentColor;
margin-right: .5em;
}
body > .listing .party > .slot:not(.filled).dps.tank {
#listings > .listing .party > .slot:not(.filled).dps.tank {
background: linear-gradient(
to bottom,
var(--tank-blue) 0%,
@ -133,7 +136,7 @@ body > .listing .party > .slot:not(.filled).dps.tank {
);
}
body > .listing .party > .slot:not(.filled).dps.healer {
#listings > .listing .party > .slot:not(.filled).dps.healer {
background: linear-gradient(
to bottom,
var(--healer-green) 0%,
@ -142,7 +145,7 @@ body > .listing .party > .slot:not(.filled).dps.healer {
);
}
body > .listing .party > .slot:not(.filled).tank.healer {
#listings > .listing .party > .slot:not(.filled).tank.healer {
background: linear-gradient(
to bottom,
var(--tank-blue) 0%,
@ -151,7 +154,7 @@ body > .listing .party > .slot:not(.filled).tank.healer {
);
}
body > .listing .party > .slot:not(.filled).tank.healer.dps {
#listings > .listing .party > .slot:not(.filled).tank.healer.dps {
background: linear-gradient(
to bottom,
var(--tank-blue) 0%,
@ -162,70 +165,65 @@ body > .listing .party > .slot:not(.filled).tank.healer.dps {
);
}
body > .listing .party > .slot:not(.filled).dps {
#listings > .listing .party > .slot:not(.filled).dps {
background-color: var(--dps-red);
}
body > .listing .party > .slot.filled {
#listings > .listing .party > .slot.filled {
background-color: var(--slot-background);
border-color: var(--icon-gold);
}
body > .listing .party > .slot.empty {
#listings > .listing .party > .slot.empty {
background-color: var(--slot-empty);
}
body > .listing .party > .slot.dps {
#listings > .listing .party > .slot.dps {
background-color: var(--dps-red);
}
body > .listing .party > .slot.healer {
#listings > .listing .party > .slot.healer {
background-color: var(--healer-green);
}
body > .listing .party > .slot.tank {
#listings > .listing .party > .slot.tank {
background-color: var(--tank-blue);
}
body > .listing .party > .slot > svg {
#listings > .listing .party > .slot > svg {
width: 100%;
height: 100%;
fill: var(--icon-gold);
}
body > .listing .party > .slot.filled:not(.dps):not(.healer):not(.tank) > svg {
#listings > .listing .party > .slot.filled:not(.dps):not(.healer):not(.tank) > svg {
fill: #C6C6C6;
}
/* Really, this could be 26em */
@media (max-width: 30em) {
body > .listing {
flex-flow: column nowrap;
@media (max-width: 50em) {
#listings > .listing {
grid-template-columns: repeat(auto-fit, 100%);
}
body > .listing > :not(:first-child) {
margin-top: .5em;
margin-left: 0;
#listings > .listing > :not(:first-child) {
margin: 0;
}
body > .listing .meta {
flex-grow: 1;
margin-left: 0;
#listings > .listing .meta {
text-align: unset;
}
body > .listing .meta > .item {
#listings > .listing .meta > .item {
align-self: unset;
}
body > .listing .meta > .item .icon {
#listings > .listing .meta > .item .icon {
order: 1;
margin-left: 0;
margin-right: .5em;
}
body > .listing .meta > .item > .text {
#listings > .listing .meta > .item .text {
order: 2;
}
}

41
assets/listings.js Normal file
View File

@ -0,0 +1,41 @@
(function () {
let select = document.getElementById('data-centre-filter');
let data_centres = [];
for (let elem of document.querySelectorAll('#listings > .listing')) {
let centre = elem.dataset['centre'];
if (data_centres.indexOf(centre) === -1) {
data_centres.push(centre);
let opt = document.createElement('option');
opt.innerText = centre;
select.appendChild(opt);
}
}
let options = {
valueNames: [
'duty',
'creator',
'description',
{data: ['centre']},
],
};
let list = new List('container', options);
select.addEventListener('change', () => {
let centre = select.value;
if (centre === 'All') {
list.filter();
return;
}
console.log(`looking for ${centre}`);
list.filter(item => {
console.log(item.values().centre === centre)
return item.values().centre === centre;
// console.log(item.elm.dataset['centre']);
// return item.elm.dataset['centre'] === centre;
});
});
})();

View File

@ -109,6 +109,45 @@ impl PartyFinderListing {
.map(|world| Cow::from(world.name()))
.unwrap_or_else(|| Cow::from(self.home_world.to_string()))
}
pub fn prepend_flags(&self) -> (&'static str, String) {
let mut colour_class = "";
let mut flags = Vec::new();
if self.objective.contains(ObjectiveFlags::PRACTICE) {
flags.push("[Practice]");
colour_class = "desc-green";
}
if self.objective.contains(ObjectiveFlags::DUTY_COMPLETION) {
flags.push("[Duty Completion]");
colour_class = "desc-blue";
}
if self.objective.contains(ObjectiveFlags::LOOT) {
flags.push("[Loot]");
colour_class = "desc-yellow";
}
if self.conditions.contains(ConditionFlags::DUTY_COMPLETE) {
flags.push("[Duty Complete]");
}
if self.conditions.contains(ConditionFlags::DUTY_INCOMPLETE) {
flags.push("[Duty Incomplete]");
}
if self.search_area.contains(SearchAreaFlags::ONE_PLAYER_PER_JOB) {
flags.push("[One Player per Job]");
}
(colour_class, flags.join(""))
}
pub fn data_centre_name(&self) -> Option<&'static str> {
crate::ffxiv::WORLDS.get(&u32::from(self.created_world))
.map(|w| w.data_center().name())
}
}
#[derive(Debug, Deserialize, Serialize, PartialEq)]

View File

@ -79,6 +79,7 @@ fn assets() -> BoxedFilter<(impl Reply, )> {
icons()
.or(minireset())
.or(listings_css())
.or(listings_js())
)
.boxed()
}
@ -104,6 +105,13 @@ fn listings_css() -> BoxedFilter<(impl Reply, )> {
.boxed()
}
fn listings_js() -> BoxedFilter<(impl Reply, )> {
warp::path("listings.js")
.and(warp::path::end())
.and(warp::fs::file("./assets/listings.js"))
.boxed()
}
fn index() -> BoxedFilter<(impl Reply, )> {
let route = warp::path::end()
.map(|| warp::redirect(Uri::from_static("/listings")));

View File

@ -6,99 +6,114 @@ Remote Party Finder
{% block head %}
<link rel="stylesheet" href="/assets/listings.css"/>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/list.js/2.3.1/list.min.js"></script>
<script defer src="/assets/listings.js"></script>
{% endblock %}
{% block body %}
{% for container in containers %}
{% let listing = container.listing.borrow() %}
<div class="listing" data-id="{{ listing.id }}" data-updated-minutes="{{ container.since_updated().num_minutes() }}">
<div class="left">
{% let duty_class %}
{% if listing.is_cross_world() %}
{% let duty_class = " cross" %}
{% else %}
{% let duty_class = " local" %}
{% endif %}
<div class="duty{{ duty_class }}">{{ listing.duty_name() }}</div>
<div class="description">
{%- let desc = listing.description.full_text() %}
{%- if desc.is_empty() -%}
<em>None</em>
{%- else -%}
{{ desc }}
{%- endif -%}
</div>
<div class="party">
{% for slot in listing.slots() %}
{% let filled %}
{% let title %}
{% let role_class %}
{% match slot %}
{% when Ok with (slot) %}
{% let filled = " filled" %}
{% match slot.role() %}
{% when Some with (role) %}
{% let role_class = " {}"|format(role.as_str().to_lowercase()) %}
{% when None %}
{% let role_class = "".to_string() %}
{% endmatch %}
{% let title = slot.code().to_string() %}
{% when Err with (tuple) %}
{% let filled = "" %}
{% let title = tuple.1.clone() %}
{% let role_class = " {}"|format(tuple.0) %}
{% endmatch %}
<div class="slot{{ filled }}{{ role_class }}" title="{{ title }}">
{% if !filled.is_empty() %}
<svg viewBox="0 0 32 32">
<use href="/assets/icons.svg#{{ title }}"></use>
</svg>
{% endif %}
<div id="container">
<input type="search" class="search" placeholder="Search"/>
<select id="data-centre-filter">
<option>All</option>
</select>
<div id="listings" class="list">
{% for container in containers %}
{% let listing = container.listing.borrow() %}
<div
class="listing"
data-id="{{ listing.id }}"
data-centre="{{ listing.data_centre_name().unwrap_or_default() }}">
<div class="left">
{% let duty_class %}
{% if listing.is_cross_world() %}
{% let duty_class = " cross" %}
{% else %}
{% let duty_class = " local" %}
{% endif %}
<div class="duty{{ duty_class }}">{{ listing.duty_name() }}</div>
<div class="description">
{%- let desc = listing.description.full_text() %}
{%- if desc.trim().is_empty() -%}
<em>None</em>
{%- else -%}
{%- let (colour_class, prepend_flags) = listing.prepend_flags() -%}
<span class="{{ colour_class }}">{{ prepend_flags }} </span>
{{- desc.trim() }}
{%- endif -%}
</div>
{% endfor %}
<div class="total">{{ listing.slots_filled() }}/{{ listing.slots_available }}</div>
</div>
</div>
<div class="middle">
<div class="stat">
<div class="name">Min IL</div>
<div class="value">{{ listing.min_item_level }}</div>
</div>
</div>
<div class="right meta">
<div class="item creator">
<span class="text">{{ listing.name.full_text() }} @ {{ listing.home_world_string() }}</span>
<span title="Creator">
<svg class="icon" viewBox="0 0 32 32">
<use href="/assets/icons.svg#user"></use>
</svg>
</span>
</div>
<div class="item world">
<span class="text">{{ listing.created_world_string() }}</span>
<span title="Created on">
<svg class="icon" viewBox="0 0 32 32">
<use href="/assets/icons.svg#sphere"></use>
</svg>
</span>
</div>
<div class="item expires">
<span class="text">{{ container.human_time_left() }}</span>
<span title="Expires">
<svg class="icon" viewBox="0 0 32 32">
<use href="/assets/icons.svg#stopwatch"></use>
</svg>
</span>
</div>
<div class="item updated">
<span class="text">{{ container.human_since_updated() }}</span>
<span title="Updated">
<svg class="icon" viewBox="0 0 32 32">
<use href="/assets/icons.svg#clock"></use>
</svg>
</span>
<div class="party">
{% for slot in listing.slots() %}
{% let filled %}
{% let title %}
{% let role_class %}
{% match slot %}
{% when Ok with (slot) %}
{% let filled = " filled" %}
{% match slot.role() %}
{% when Some with (role) %}
{% let role_class = " {}"|format(role.as_str().to_lowercase()) %}
{% when None %}
{% let role_class = "".to_string() %}
{% endmatch %}
{% let title = slot.code().to_string() %}
{% when Err with (tuple) %}
{% let filled = "" %}
{% let title = tuple.1.clone() %}
{% let role_class = " {}"|format(tuple.0) %}
{% endmatch %}
<div class="slot{{ filled }}{{ role_class }}" title="{{ title }}">
{% if !filled.is_empty() %}
<svg viewBox="0 0 32 32">
<use href="/assets/icons.svg#{{ title }}"></use>
</svg>
{% endif %}
</div>
{% endfor %}
<div class="total">{{ listing.slots_filled() }}/{{ listing.slots_available }}</div>
</div>
</div>
<div class="middle">
<div class="stat">
<div class="name">Min IL</div>
<div class="value">{{ listing.min_item_level }}</div>
</div>
</div>
<div class="right meta">
<div class="item creator">
<span class="text">{{ listing.name.full_text() }} @ {{ listing.home_world_string() }}</span>
<span title="Creator">
<svg class="icon" viewBox="0 0 32 32">
<use href="/assets/icons.svg#user"></use>
</svg>
</span>
</div>
<div class="item world">
<span class="text">{{ listing.created_world_string() }}</span>
<span title="Created on">
<svg class="icon" viewBox="0 0 32 32">
<use href="/assets/icons.svg#sphere"></use>
</svg>
</span>
</div>
<div class="item expires">
<span class="text">{{ container.human_time_left() }}</span>
<span title="Expires">
<svg class="icon" viewBox="0 0 32 32">
<use href="/assets/icons.svg#stopwatch"></use>
</svg>
</span>
</div>
<div class="item updated">
<span class="text">{{ container.human_since_updated() }}</span>
<span title="Updated">
<svg class="icon" viewBox="0 0 32 32">
<use href="/assets/icons.svg#clock"></use>
</svg>
</span>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endfor %}
{% endblock %}