Add wish script
This commit is contained in:
parent
ebde21b94c
commit
7318627841
4 changed files with 51 additions and 51 deletions
3
src/assets/js/parts/wish.js
Normal file
3
src/assets/js/parts/wish.js
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
$(function () {
|
||||||
|
|
||||||
|
});
|
|
@ -120,7 +120,9 @@ class Page
|
||||||
public array $messages = array();
|
public array $messages = array();
|
||||||
public string $link_preview;
|
public string $link_preview;
|
||||||
public string $description;
|
public string $description;
|
||||||
|
|
||||||
public array $stylesheets = array();
|
public array $stylesheets = array();
|
||||||
|
public array $scripts = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* __construct
|
* __construct
|
||||||
|
@ -236,6 +238,23 @@ class Page
|
||||||
'default' => 'src/assets/css/default.css',
|
'default' => 'src/assets/css/default.css',
|
||||||
'dark' => 'src/assets/css/default/dark.css',
|
'dark' => 'src/assets/css/default/dark.css',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Scripts
|
||||||
|
*/
|
||||||
|
$this->scripts = array(
|
||||||
|
'j-query' => 'node_modules/jquery/dist/jquery.min.js',
|
||||||
|
'fomantic-ui' => 'semantic/dist/semantic.min.js',
|
||||||
|
'default' => 'src/assets/js/default.js',
|
||||||
|
);
|
||||||
|
|
||||||
|
/** html2canvas */
|
||||||
|
$CrawlerDetect = new \Jaybizzle\CrawlerDetect\CrawlerDetect();
|
||||||
|
|
||||||
|
if ($CrawlerDetect->isCrawler()) {
|
||||||
|
$this->scripts['html-2-canvas-1'] = 'node_modules/html2canvas/dist/html2canvas.min.js';
|
||||||
|
$this->scripts['html-2-canvas-2'] = 'src/assets/js/html2canvas.js';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function header(): void
|
public function header(): void
|
||||||
|
@ -319,56 +338,25 @@ class Page
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Inline script
|
* Scripts
|
||||||
*/
|
*/
|
||||||
|
/** Inline */
|
||||||
require ROOT . '/src/assets/js/inline.js.php';
|
require ROOT . '/src/assets/js/inline.js.php';
|
||||||
|
|
||||||
/** jQuery */
|
/** Files */
|
||||||
$scriptjQuery = 'node_modules/jquery/dist/jquery.min.js';
|
$script_page = 'src/assets/js/' . $this->name . '.js';
|
||||||
$scriptjQueryModified = filemtime($scriptjQuery);
|
|
||||||
?>
|
|
||||||
<script defer src="/<?= $scriptjQuery ?>?m=<?= $scriptjQueryModified ?>"></script>
|
|
||||||
<?php
|
|
||||||
|
|
||||||
/** Fomantic */
|
if (file_exists($script_page)) {
|
||||||
$scriptFomantic = 'semantic/dist/semantic.min.js';
|
$this->scripts['page'] = $script_page;
|
||||||
$scriptFomanticModified = filemtime($scriptFomantic);
|
|
||||||
?>
|
|
||||||
<script defer src="/<?= $scriptFomantic ?>?m=<?= $scriptFomanticModified ?>"></script>
|
|
||||||
<?php
|
|
||||||
|
|
||||||
/** html2canvas */
|
|
||||||
$CrawlerDetect = new \Jaybizzle\CrawlerDetect\CrawlerDetect();
|
|
||||||
|
|
||||||
if ($CrawlerDetect->isCrawler()) {
|
|
||||||
$scripthtml2canvas1 = 'node_modules/html2canvas/dist/html2canvas.min.js';
|
|
||||||
$scripthtml2canvas1Modified = filemtime($scripthtml2canvas1);
|
|
||||||
?>
|
|
||||||
<script defer src="/<?= $scripthtml2canvas1 ?>?m=<?= $scripthtml2canvas1Modified ?>"></script>
|
|
||||||
<?php
|
|
||||||
|
|
||||||
$scripthtml2canvas2 = 'src/assets/js/html2canvas.js';
|
|
||||||
$scripthtml2canvas2Modified = filemtime($scripthtml2canvas2);
|
|
||||||
?>
|
|
||||||
<script defer src="/<?= $scripthtml2canvas2 ?>?m=<?= $scripthtml2canvas2Modified ?>"></script>
|
|
||||||
<?php
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Default */
|
foreach ($this->scripts as $script_page) {
|
||||||
$scriptDefault = 'src/assets/js/default.js';
|
$hash = hash_file('crc32', $script_page);
|
||||||
$scriptDefaultModified = filemtime($scriptDefault);
|
|
||||||
?>
|
?>
|
||||||
<script defer src="/<?= $scriptDefault ?>?m=<?= $scriptDefaultModified ?>"></script>
|
<script defer
|
||||||
<?php
|
type="text/javascript"
|
||||||
|
src="/<?= $script_page ?>?v=<?= $hash ?>">
|
||||||
/** Page */
|
</script>
|
||||||
$scriptPage = 'src/assets/js/' . $this->name . '.js';
|
|
||||||
|
|
||||||
if (file_exists($scriptPage)) {
|
|
||||||
$scriptPageModified = filemtime($scriptPage);
|
|
||||||
|
|
||||||
?>
|
|
||||||
<script defer src="/<?= $scriptPage ?>?m=<?= $scriptPageModified ?>"></script>
|
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -387,10 +375,17 @@ class Page
|
||||||
'rc.wishthis.online',
|
'rc.wishthis.online',
|
||||||
'dev.wishthis.online',
|
'dev.wishthis.online',
|
||||||
);
|
);
|
||||||
|
$CrawlerDetect = new \Jaybizzle\CrawlerDetect\CrawlerDetect();
|
||||||
|
|
||||||
if (in_array($_SERVER['HTTP_HOST'], $wishthis_hosts, true) && (true === $user->advertisements || $CrawlerDetect->isCrawler())) {
|
if (
|
||||||
|
in_array($_SERVER['HTTP_HOST'], $wishthis_hosts, true)
|
||||||
|
&& (true === $user->advertisements || $CrawlerDetect->isCrawler())
|
||||||
|
) {
|
||||||
?>
|
?>
|
||||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7093703034691766" crossorigin="anonymous"></script>
|
<script async
|
||||||
|
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7093703034691766"
|
||||||
|
crossorigin="anonymous">
|
||||||
|
</script>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -10,7 +10,8 @@ namespace wishthis;
|
||||||
|
|
||||||
$wishlist = new Wishlist($_GET['hash']);
|
$wishlist = new Wishlist($_GET['hash']);
|
||||||
$page = new Page(__FILE__, $wishlist->getTitle());
|
$page = new Page(__FILE__, $wishlist->getTitle());
|
||||||
$page->stylesheets[] = 'src/assets/css/wish-card.css';
|
$page->stylesheets['wish-card'] = 'src/assets/css/wish-card.css';
|
||||||
|
$page->scripts['wish'] = 'src/assets/js/parts/wish.js';
|
||||||
$wishlist_user = User::getFromID($wishlist->user);
|
$wishlist_user = User::getFromID($wishlist->user);
|
||||||
|
|
||||||
if (!$wishlist->exists) {
|
if (!$wishlist->exists) {
|
||||||
|
|
|
@ -9,7 +9,8 @@
|
||||||
namespace wishthis;
|
namespace wishthis;
|
||||||
|
|
||||||
$page = new Page(__FILE__, __('My lists'), 1);
|
$page = new Page(__FILE__, __('My lists'), 1);
|
||||||
$page->stylesheets[] = 'src/assets/css/wish-card.css';
|
$page->stylesheets['wish-card'] = 'src/assets/css/wish-card.css';
|
||||||
|
$page->scripts['wish'] = 'src/assets/js/parts/wish.js';
|
||||||
$page->header();
|
$page->header();
|
||||||
$page->bodyStart();
|
$page->bodyStart();
|
||||||
$page->navigation();
|
$page->navigation();
|
||||||
|
|
Loading…
Reference in a new issue