2022-01-14 08:28:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wishlist.php
|
|
|
|
*
|
|
|
|
* @author Jay Trees <github.jay@grandel.anonaddy.me>
|
|
|
|
*/
|
|
|
|
|
|
|
|
use wishthis\{Page, User};
|
|
|
|
use Embed\Embed;
|
|
|
|
|
|
|
|
$page = new page(__FILE__, 'View wishlist');
|
|
|
|
$page->header();
|
|
|
|
$page->navigation();
|
|
|
|
|
|
|
|
$products = array();
|
|
|
|
|
|
|
|
if (isset($_GET['wishlist'])) {
|
|
|
|
$user = new User();
|
|
|
|
$wishlist = $_GET['wishlist'];
|
|
|
|
$products = $user->getProducts($wishlist);
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<main>
|
|
|
|
<div class="ui container">
|
2022-01-14 08:57:33 +00:00
|
|
|
<div class="ui horizontal segments">
|
|
|
|
<div class="ui segment">
|
|
|
|
<h1 class="ui header">View wishlist</h1>
|
|
|
|
<p>Please select a wishlist to view.</p>
|
|
|
|
|
|
|
|
<form class="ui form" method="get">
|
|
|
|
<input type="hidden" name="page" value="wishlist-view" />
|
|
|
|
|
|
|
|
<div class="field">
|
|
|
|
<select class="ui search selection dropdown loading wishlists" name="wishlist">
|
|
|
|
<option value="">Loading your wishlists...</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<input class="ui primary button" type="submit" value="View" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ui segment">
|
|
|
|
<h2 class="ui header">Options</h1>
|
|
|
|
<p>Wishlist related options.</p>
|
|
|
|
|
|
|
|
<button class="ui labeled icon button">
|
|
|
|
<i class="share icon"></i>
|
|
|
|
Share
|
|
|
|
</button>
|
|
|
|
</div>
|
2022-01-14 08:28:41 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if (!empty($products)) { ?>
|
2022-01-14 08:41:58 +00:00
|
|
|
<div class="ui three column grid">
|
|
|
|
|
|
|
|
<?php foreach ($products as $product) { ?>
|
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @link https://github.com/oscarotero/Embed
|
|
|
|
*/
|
|
|
|
$embed = new Embed();
|
|
|
|
$info = $embed->get($product['url']);
|
|
|
|
?>
|
|
|
|
<div class="column">
|
|
|
|
<div class="ui fluid card">
|
|
|
|
|
|
|
|
<?php if ($info->image) { ?>
|
|
|
|
<div class="image">
|
|
|
|
<img src="<?= $info->image ?>" />
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
2022-01-14 08:28:41 +00:00
|
|
|
|
2022-01-14 08:41:58 +00:00
|
|
|
<div class="content">
|
|
|
|
<?php if ($info->title) { ?>
|
|
|
|
<div class="header">
|
|
|
|
<?php if ($info->url) { ?>
|
|
|
|
<a href="<?= $info->url ?>" target="_blank"><?= $info->title ?></a>
|
|
|
|
<?php } else { ?>
|
|
|
|
<?= $info->title ?>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php if ($info->keywords) { ?>
|
|
|
|
<div class="meta">
|
|
|
|
<?= $info->keywords ?>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php if ($info->description) { ?>
|
|
|
|
<div class="description">
|
|
|
|
<?= $info->description ?>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
2022-01-14 08:28:41 +00:00
|
|
|
</div>
|
2022-01-14 08:41:58 +00:00
|
|
|
<div class="extra content">
|
|
|
|
<?php if ($info->publishedTime) { ?>
|
|
|
|
<span class="right floated">
|
|
|
|
<?= $info->publishedTime ?>
|
|
|
|
</span>
|
|
|
|
<?php } ?>
|
|
|
|
<?php if ($info->favicon) { ?>
|
|
|
|
<?php if ($info->providerName) { ?>
|
2022-01-14 08:57:39 +00:00
|
|
|
<img src="<?= $info->favicon ?>"
|
|
|
|
title="<?= $info->providerName ?>"
|
|
|
|
alt="<?= $info->providerName ?>"
|
|
|
|
/>
|
2022-01-14 08:41:58 +00:00
|
|
|
<?php } else { ?>
|
|
|
|
<img src="<?= $info->favicon ?>" />
|
|
|
|
<?php } ?>
|
|
|
|
<?php } ?>
|
2022-01-14 08:28:41 +00:00
|
|
|
</div>
|
|
|
|
|
2022-01-14 08:41:58 +00:00
|
|
|
</div>
|
2022-01-14 08:28:41 +00:00
|
|
|
</div>
|
2022-01-14 08:41:58 +00:00
|
|
|
<?php } ?>
|
2022-01-14 08:28:41 +00:00
|
|
|
|
2022-01-14 08:41:58 +00:00
|
|
|
</div>
|
2022-01-14 08:28:41 +00:00
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$page->footer();
|