@rileybathurst/paddle 0.0.103 → 0.0.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/PaddleLocationCard.tsx +13 -17
- package/src/styles/cards.css +7 -0
- package/src/styles/typography.css +4 -0
package/package.json
CHANGED
|
@@ -5,6 +5,7 @@ import { Link } from 'gatsby';
|
|
|
5
5
|
import Markdown from "react-markdown";
|
|
6
6
|
import type { LocationCardTypes } from "./types/location-card-types";
|
|
7
7
|
import HourMin from "./hour-min";
|
|
8
|
+
import Phone from "./phone";
|
|
8
9
|
|
|
9
10
|
interface SeasonTypes {
|
|
10
11
|
season_start?: string;
|
|
@@ -23,11 +24,8 @@ function Season({ name, season_start, season_end, opening_time, closing_time }:
|
|
|
23
24
|
|
|
24
25
|
if (season_start && season_end) {
|
|
25
26
|
const currentDay = new Date();
|
|
26
|
-
console.log(`currentDay ${currentDay}`);
|
|
27
27
|
const seasonStartDate = new Date(season_start);
|
|
28
|
-
console.log(`season_start ${season_start}`);
|
|
29
28
|
const seasonEndDate = new Date(season_end);
|
|
30
|
-
console.log(`season_end ${season_end}`);
|
|
31
29
|
|
|
32
30
|
if (currentDay > seasonStartDate || currentDay < seasonEndDate) {
|
|
33
31
|
return (
|
|
@@ -89,13 +87,18 @@ function Content({ svg, name, address, description, opening_time, closing_time,
|
|
|
89
87
|
<div>
|
|
90
88
|
|
|
91
89
|
{streetAddress || addressLocality || addressRegion || postalCode || commonName ? (
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
90
|
+
<>
|
|
91
|
+
<h3 className="elbrus">{name}</h3>
|
|
92
|
+
<address>
|
|
93
|
+
{commonName ? <span>{commonName}<br /></span> : null}
|
|
94
|
+
{streetAddress ? <span>{streetAddress}<br /></span> : null}
|
|
95
|
+
{addressLocality ? <span>{addressLocality}, </span> : null}
|
|
96
|
+
{addressRegion ? <span>{addressRegion} </span> : null}
|
|
97
|
+
{postalCode ? <span>{postalCode}<br /></span> : null}
|
|
98
|
+
</address>
|
|
99
|
+
|
|
100
|
+
{name === "On Water Rental" ? <Phone /> : null}
|
|
101
|
+
</>
|
|
99
102
|
) :
|
|
100
103
|
|
|
101
104
|
(<>
|
|
@@ -130,13 +133,6 @@ function Content({ svg, name, address, description, opening_time, closing_time,
|
|
|
130
133
|
|
|
131
134
|
export function PaddleLocationCard({ svg, name, link, address, description, opening_time, closing_time, background, streetAddress, addressLocality, addressRegion, postalCode, commonName, season_start, season_end }: LocationCardTypes) {
|
|
132
135
|
|
|
133
|
-
Object.entries({ svg, name, link, address, description, opening_time, closing_time, background, streetAddress, addressLocality, addressRegion, postalCode, commonName, season_start, season_end }).map(([key, value]) => {
|
|
134
|
-
console.log(key, value);
|
|
135
|
-
}
|
|
136
|
-
);
|
|
137
|
-
|
|
138
|
-
console.log(`PaddleLocationCard season_start ${season_start}`);
|
|
139
|
-
|
|
140
136
|
if (link.includes('http')) {
|
|
141
137
|
return (
|
|
142
138
|
<a href={link}
|
package/src/styles/cards.css
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
.deck {
|
|
6
6
|
margin-block-end: var(--aconcagua);
|
|
7
|
+
|
|
8
|
+
display: grid;
|
|
9
|
+
grid-template-columns: repeat(auto-fill, minmax(var(--condor), 1fr));
|
|
7
10
|
}
|
|
8
11
|
|
|
9
12
|
/* TODO: needs sub-grid */
|
|
@@ -77,6 +80,10 @@
|
|
|
77
80
|
margin-inline: var(--kosciuszko);
|
|
78
81
|
}
|
|
79
82
|
|
|
83
|
+
img {
|
|
84
|
+
max-width: 100%;
|
|
85
|
+
}
|
|
86
|
+
|
|
80
87
|
.card__details {
|
|
81
88
|
display: flex;
|
|
82
89
|
gap: var(--vinson);
|