@turnipxenon/pineapple 2.4.75 → 2.4.77
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/.idea/workspace.xml +71 -72
- package/.svelte-kit/__package__/components/PineappleSlideToggle.svelte +3 -1
- package/.svelte-kit/__package__/components/PineappleSlideToggle.svelte.d.ts +1 -0
- package/.svelte-kit/__package__/template/seaweed/SeaweedTemplate.svelte +9 -1
- package/.svelte-kit/__package__/template/seaweed/SeaweedTemplate.svelte.d.ts +1 -0
- package/.svelte-kit/__package__/template/seaweed/SeaweedTemplateData.js +0 -6
- package/.svelte-kit/__package__/template/seaweed/entries/EntryProps.d.ts +0 -1
- package/.svelte-kit/__package__/template/seaweed/entries/WorkExperience.svelte +106 -136
- package/.svelte-kit/__package__/template/seaweed/entry_order_config/EntryOrderConfig.svelte +4 -4
- package/.svelte-kit/__package__/template/seaweed/entry_order_config/EntryOrderConfig.svelte.d.ts +3 -1
- package/.svelte-kit/generated/server/internal.js +1 -1
- package/dist/components/PineappleSlideToggle.svelte +3 -1
- package/dist/components/PineappleSlideToggle.svelte.d.ts +1 -0
- package/dist/template/seaweed/SeaweedTemplate.svelte +9 -1
- package/dist/template/seaweed/SeaweedTemplate.svelte.d.ts +1 -0
- package/dist/template/seaweed/SeaweedTemplateData.js +0 -6
- package/dist/template/seaweed/entries/EntryProps.d.ts +0 -1
- package/dist/template/seaweed/entries/WorkExperience.svelte +106 -136
- package/dist/template/seaweed/entry_order_config/EntryOrderConfig.svelte +4 -4
- package/dist/template/seaweed/entry_order_config/EntryOrderConfig.svelte.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/components/PineappleSlideToggle.svelte +3 -1
- package/src/lib/components/index.ts +8 -8
- package/src/lib/template/seaweed/SeaweedTemplate.svelte +9 -1
- package/src/lib/template/seaweed/SeaweedTemplateData.ts +1 -7
- package/src/lib/template/seaweed/entries/EntryProps.ts +0 -1
- package/src/lib/template/seaweed/entries/WorkExperience.svelte +115 -145
- package/src/lib/template/seaweed/entry_order_config/EntryOrderConfig.svelte +5 -5
- package/src/lib/template/seaweed/index.ts +4 -4
- package/src/routes/(seaweed)/portfolio/+page.svelte +2 -0
- package/.svelte-kit/__package__/template/seaweed/entries/DecentralizedSocialMedia.svelte +0 -52
- package/.svelte-kit/__package__/template/seaweed/entries/DecentralizedSocialMedia.svelte.d.ts +0 -17
- package/.svelte-kit/__package__/template/seaweed/entries/FullStackC.svelte +0 -33
- package/.svelte-kit/__package__/template/seaweed/entries/FullStackC.svelte.d.ts +0 -17
- package/.svelte-kit/__package__/template/seaweed/entries/ItchPromo.svelte +0 -21
- package/.svelte-kit/__package__/template/seaweed/entries/ItchPromo.svelte.d.ts +0 -17
- package/.svelte-kit/__package__/template/seaweed/entries/MigranteAlberta.svelte +0 -54
- package/.svelte-kit/__package__/template/seaweed/entries/MigranteAlberta.svelte.d.ts +0 -17
- package/.svelte-kit/__package__/template/seaweed/entries/MockUberApp.svelte +0 -35
- package/.svelte-kit/__package__/template/seaweed/entries/MockUberApp.svelte.d.ts +0 -17
- package/dist/template/seaweed/entries/DecentralizedSocialMedia.svelte +0 -52
- package/dist/template/seaweed/entries/DecentralizedSocialMedia.svelte.d.ts +0 -17
- package/dist/template/seaweed/entries/FullStackC.svelte +0 -33
- package/dist/template/seaweed/entries/FullStackC.svelte.d.ts +0 -17
- package/dist/template/seaweed/entries/ItchPromo.svelte +0 -21
- package/dist/template/seaweed/entries/ItchPromo.svelte.d.ts +0 -17
- package/dist/template/seaweed/entries/MigranteAlberta.svelte +0 -54
- package/dist/template/seaweed/entries/MigranteAlberta.svelte.d.ts +0 -17
- package/dist/template/seaweed/entries/MockUberApp.svelte +0 -35
- package/dist/template/seaweed/entries/MockUberApp.svelte.d.ts +0 -17
- package/src/lib/template/seaweed/entries/DecentralizedSocialMedia.svelte +0 -54
- package/src/lib/template/seaweed/entries/FullStackC.svelte +0 -36
- package/src/lib/template/seaweed/entries/ItchPromo.svelte +0 -23
- package/src/lib/template/seaweed/entries/MigranteAlberta.svelte +0 -62
- package/src/lib/template/seaweed/entries/MockUberApp.svelte +0 -38
|
@@ -17,6 +17,7 @@ import { Chip } from "../../index";
|
|
|
17
17
|
import ChumBucket from "./ChumBucket.svelte";
|
|
18
18
|
export let seaweedTemplateData;
|
|
19
19
|
export let projectFirstGroupedEntries;
|
|
20
|
+
export let getAllEntryFromGlobal;
|
|
20
21
|
export let getEntryFromGlobal;
|
|
21
22
|
export let letChaos = true;
|
|
22
23
|
export let name = "Turnip";
|
|
@@ -25,7 +26,7 @@ export let linkedinSlug = "turnip-xenon";
|
|
|
25
26
|
export let domain = "http://localhost:5173/portfolio/actual/";
|
|
26
27
|
export let serverSideQueryParams = "";
|
|
27
28
|
export let experienceSection;
|
|
28
|
-
|
|
29
|
+
let entryProps = {
|
|
29
30
|
email,
|
|
30
31
|
letChaos,
|
|
31
32
|
linkedinSlug,
|
|
@@ -164,6 +165,11 @@ const updateUrl = (seaweedTemplateData2) => {
|
|
|
164
165
|
};
|
|
165
166
|
$:
|
|
166
167
|
updateUrl(seaweedTemplateData);
|
|
168
|
+
const updateSeaweedWhenFunNoteChanged = (_) => {
|
|
169
|
+
entryProps = entryProps;
|
|
170
|
+
};
|
|
171
|
+
$:
|
|
172
|
+
updateSeaweedWhenFunNoteChanged(seaweedTemplateData.shouldAddFunNote);
|
|
167
173
|
</script>
|
|
168
174
|
|
|
169
175
|
<SeaweedBaseLayout bind:shouldDisplayLeadingIcons={isSocialsGone}>
|
|
@@ -239,6 +245,8 @@ $:
|
|
|
239
245
|
<EntryOrderConfig bind:seaweedEntries={seaweedTemplateData.groupedEntries}
|
|
240
246
|
seaweedTemplateData={seaweedTemplateData}
|
|
241
247
|
bind:orderUrl={orderUrl}
|
|
248
|
+
getAllEntryFromGlobal={getAllEntryFromGlobal}
|
|
249
|
+
getEntryFromGlobal={getEntryFromGlobal}
|
|
242
250
|
updateUrl={updateUrl}></EntryOrderConfig>
|
|
243
251
|
|
|
244
252
|
<br>
|
|
@@ -6,6 +6,7 @@ declare const __propDef: {
|
|
|
6
6
|
props: {
|
|
7
7
|
seaweedTemplateData: SeaweedTemplateData;
|
|
8
8
|
projectFirstGroupedEntries: ReadonlyArray<EntryGroup>;
|
|
9
|
+
getAllEntryFromGlobal: () => Map<string, ComponentMeta>;
|
|
9
10
|
getEntryFromGlobal: (name: string) => undefined | ComponentMeta;
|
|
10
11
|
letChaos?: boolean | undefined;
|
|
11
12
|
name?: string | undefined;
|
|
@@ -3,14 +3,8 @@ import Pengi from "./entries/Pengi.svelte";
|
|
|
3
3
|
import Hepcat from "./entries/Hepcat.svelte";
|
|
4
4
|
import ChefWings from "./entries/ChefWings.svelte";
|
|
5
5
|
import Soulwork from "./entries/Soulwork.svelte";
|
|
6
|
-
import ItchPromo from "./entries/ItchPromo.svelte";
|
|
7
|
-
import MigranteAlberta from "./entries/MigranteAlberta.svelte";
|
|
8
|
-
import DecentralizedSocialMedia from "./entries/DecentralizedSocialMedia.svelte";
|
|
9
6
|
import CustomizedYarnspinner from "./entries/CustomizedYarnspinner.svelte";
|
|
10
|
-
import FullStackC from "./entries/FullStackC.svelte";
|
|
11
|
-
import Workset from "./entries/Workset.svelte";
|
|
12
7
|
import ThisWebpage from "./entries/ThisWebpage.svelte";
|
|
13
|
-
import MockUberApp from "./entries/MockUberApp.svelte";
|
|
14
8
|
import { removeProxyWrapperOnString } from "./entry_order_config/EntryOrderConfig";
|
|
15
9
|
export var GroupGridClass;
|
|
16
10
|
(function (GroupGridClass) {
|
|
@@ -4,140 +4,110 @@ import { Accordion, AccordionItem } from "@skeletonlabs/skeleton";
|
|
|
4
4
|
import ElementVisibilityDetector from "../../../components/ElementVisbilityDetector.svelte";
|
|
5
5
|
export let entryProps;
|
|
6
6
|
export let isVisible;
|
|
7
|
-
let { email, letChaos, linkedinSlug, name
|
|
8
|
-
</script>
|
|
9
|
-
|
|
10
|
-
<div class="experience-and-about-div">
|
|
11
|
-
|
|
12
|
-
<div class="greater-about-div">
|
|
13
|
-
|
|
14
|
-
<Card includeDataNoSnippet={false}>
|
|
15
|
-
<section class="section-card" slot="content">
|
|
16
|
-
|
|
17
|
-
<h1>About</h1>
|
|
18
|
-
|
|
19
|
-
<p>
|
|
20
|
-
Hi! My name is {name}! I work as a software developer. Outside of that, I like making games, and
|
|
21
|
-
trying to do everything in between required to make one. I have some showcased below, our visit
|
|
22
|
-
my itch.io page for more of them.
|
|
23
|
-
</p>
|
|
24
|
-
<!-- todo: link the degree details idk -->
|
|
25
|
-
<p>
|
|
26
|
-
I also graduated with BS Computing Science, Specializing in Software Practice, and a
|
|
27
|
-
certificate in Computer Game Development at University of Alberta.
|
|
28
|
-
</p>
|
|
29
|
-
{#if seaweedTemplateData
|
|
30
|
-
<p>
|
|
31
|
-
I'm inspired by games like Harvest Moon: Friends of Mineral Town, Rune Factory 4, Theatrhythm,
|
|
32
|
-
Bravely Default: Flying Fairy, Boku no Natsuyasumi 2, and A Short Hike.
|
|
33
|
-
</p>
|
|
34
|
-
{/if}
|
|
35
|
-
|
|
36
|
-
<!-- todo: maybe put cute stuff here -->
|
|
37
|
-
<!-- </ToggleableContent>-->
|
|
38
|
-
</section>
|
|
39
|
-
</Card>
|
|
40
|
-
|
|
41
|
-
<Card>
|
|
42
|
-
<section class="section-card" slot="content">
|
|
43
|
-
<SocialSection email={email} linkedinSlug={linkedinSlug}></SocialSection>
|
|
44
|
-
<ElementVisibilityDetector bind:isVisible={isVisible}>
|
|
45
|
-
</ElementVisibilityDetector>
|
|
46
|
-
</section>
|
|
47
|
-
</Card>
|
|
48
|
-
|
|
49
|
-
</div>
|
|
50
|
-
|
|
51
|
-
<Card>
|
|
52
|
-
<section class="section-card" slot="content">
|
|
53
|
-
<h1>Experience</h1>
|
|
54
|
-
|
|
55
|
-
<h2>Highlight</h2>
|
|
56
|
-
<p>
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
<
|
|
60
|
-
|
|
61
|
-
<div
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
</li>
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
<
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
<h2 class="accordion-header">More experience</h2>
|
|
114
|
-
</div>
|
|
115
|
-
<svelte:fragment slot="content">
|
|
116
|
-
<section class="more-section">
|
|
117
|
-
{#if (!letChaos)}
|
|
118
|
-
<h2>Software Engineer Intern</h2>
|
|
119
|
-
<div class="two-column-separated">
|
|
120
|
-
<div>May 2021 – Dec 2021</div>
|
|
121
|
-
<div style="text-align: end">Twitch (Amazon Web Services), Remote</div>
|
|
122
|
-
</div>
|
|
123
|
-
<ul>
|
|
124
|
-
<li>
|
|
125
|
-
Implemented and wrote tests for a feature in Twitch’s
|
|
126
|
-
<span class="qt-go">Golang</span> backend authentication microservices and
|
|
127
|
-
<span class="qt-ts">Typescript</span>
|
|
128
|
-
<span class="qt-react">React</span> frontend web app that will help suggest security improvements to
|
|
129
|
-
<b>over 100k+ users daily</b>
|
|
130
|
-
</li>
|
|
131
|
-
</ul>
|
|
132
|
-
{:else}
|
|
133
|
-
niko baikal seal from toba aquarium
|
|
134
|
-
{/if}
|
|
135
|
-
<br>
|
|
136
|
-
</section>
|
|
137
|
-
</svelte:fragment>
|
|
138
|
-
</AccordionItem>
|
|
139
|
-
</Accordion>
|
|
140
|
-
</section>
|
|
141
|
-
</Card>
|
|
142
|
-
|
|
7
|
+
let { email, letChaos, linkedinSlug, name } = entryProps;
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<div class="experience-and-about-div">
|
|
11
|
+
|
|
12
|
+
<div class="greater-about-div">
|
|
13
|
+
|
|
14
|
+
<Card includeDataNoSnippet={false}>
|
|
15
|
+
<section class="section-card" slot="content">
|
|
16
|
+
|
|
17
|
+
<h1>About</h1>
|
|
18
|
+
|
|
19
|
+
<p>
|
|
20
|
+
Hi! My name is {name}! I work as a software developer. Outside of that, I like making games, and
|
|
21
|
+
trying to do everything in between required to make one. I have some showcased below, our visit
|
|
22
|
+
my itch.io page for more of them.
|
|
23
|
+
</p>
|
|
24
|
+
<!-- todo: link the degree details idk -->
|
|
25
|
+
<p>
|
|
26
|
+
I also graduated with BS Computing Science, Specializing in Software Practice, and a
|
|
27
|
+
certificate in Computer Game Development at University of Alberta.
|
|
28
|
+
</p>
|
|
29
|
+
{#if entryProps.seaweedTemplateData.shouldAddFunNote}
|
|
30
|
+
<p>
|
|
31
|
+
I'm inspired by games like Harvest Moon: Friends of Mineral Town, Rune Factory 4, Theatrhythm,
|
|
32
|
+
Bravely Default: Flying Fairy, Boku no Natsuyasumi 2, and A Short Hike.
|
|
33
|
+
</p>
|
|
34
|
+
{/if}
|
|
35
|
+
|
|
36
|
+
<!-- todo: maybe put cute stuff here -->
|
|
37
|
+
<!-- </ToggleableContent>-->
|
|
38
|
+
</section>
|
|
39
|
+
</Card>
|
|
40
|
+
|
|
41
|
+
<Card>
|
|
42
|
+
<section class="section-card" slot="content">
|
|
43
|
+
<SocialSection email={email} linkedinSlug={linkedinSlug}></SocialSection>
|
|
44
|
+
<ElementVisibilityDetector bind:isVisible={isVisible}>
|
|
45
|
+
</ElementVisibilityDetector>
|
|
46
|
+
</section>
|
|
47
|
+
</Card>
|
|
48
|
+
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
<Card>
|
|
52
|
+
<section class="section-card" slot="content">
|
|
53
|
+
<h1>Experience</h1>
|
|
54
|
+
|
|
55
|
+
<h2>Highlight</h2>
|
|
56
|
+
<p>I like French Fries</p>
|
|
57
|
+
|
|
58
|
+
<h2>Software Engineer</h2>
|
|
59
|
+
<div class="two-column-separated">
|
|
60
|
+
<div>July 2023 – January 2024</div>
|
|
61
|
+
<div style="text-align: end">Control, Remote</div>
|
|
62
|
+
</div>
|
|
63
|
+
<ul>
|
|
64
|
+
<li>
|
|
65
|
+
Developed things
|
|
66
|
+
</li>
|
|
67
|
+
<li>
|
|
68
|
+
Woah
|
|
69
|
+
</li>
|
|
70
|
+
</ul>
|
|
71
|
+
<br>
|
|
72
|
+
|
|
73
|
+
<h2>Software Engineer Intern</h2>
|
|
74
|
+
<div class="two-column-separated">
|
|
75
|
+
<div>May 2022 – Aug 2022</div>
|
|
76
|
+
<div style="text-align: end">Pou Company</div>
|
|
77
|
+
</div>
|
|
78
|
+
<ul>
|
|
79
|
+
<li>
|
|
80
|
+
Stuff
|
|
81
|
+
</li>
|
|
82
|
+
<li>
|
|
83
|
+
Golang
|
|
84
|
+
</li>
|
|
85
|
+
</ul>
|
|
86
|
+
<br>
|
|
87
|
+
<!-- todo: turn off flashing when accordion is expanded -->
|
|
88
|
+
<Accordion>
|
|
89
|
+
<AccordionItem>
|
|
90
|
+
<div slot="summary">
|
|
91
|
+
<h2 class="accordion-header">More experience</h2>
|
|
92
|
+
</div>
|
|
93
|
+
<svelte:fragment slot="content">
|
|
94
|
+
<section class="more-section">
|
|
95
|
+
<h2>Software Engineer Intern</h2>
|
|
96
|
+
<div class="two-column-separated">
|
|
97
|
+
<div>May 2021 – Dec 2021</div>
|
|
98
|
+
<div style="text-align: end">Testing</div>
|
|
99
|
+
</div>
|
|
100
|
+
<ul>
|
|
101
|
+
<li>
|
|
102
|
+
Amazing
|
|
103
|
+
</li>
|
|
104
|
+
</ul>
|
|
105
|
+
<br>
|
|
106
|
+
</section>
|
|
107
|
+
</svelte:fragment>
|
|
108
|
+
</AccordionItem>
|
|
109
|
+
</Accordion>
|
|
110
|
+
</section>
|
|
111
|
+
</Card>
|
|
112
|
+
|
|
143
113
|
</div>
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
<script>import {
|
|
2
|
-
GetAllEntryFromGlobal,
|
|
3
|
-
GetEntryFromGlobal
|
|
4
2
|
} from "../SeaweedTemplateData";
|
|
5
3
|
import { removeProxyWrapperOnString } from "./EntryOrderConfig";
|
|
6
4
|
import ComboBoxWithButton from "../../../components/combo_box/ComboBoxWithButton.svelte";
|
|
@@ -11,6 +9,8 @@ export let seaweedTemplateData;
|
|
|
11
9
|
export let seaweedEntries;
|
|
12
10
|
export let orderUrl;
|
|
13
11
|
export let updateUrl;
|
|
12
|
+
export let getAllEntryFromGlobal;
|
|
13
|
+
export let getEntryFromGlobal;
|
|
14
14
|
const updateOrderQuery = () => {
|
|
15
15
|
orderUrl = "order=" + seaweedEntries.map((g) => {
|
|
16
16
|
const groupUrl = g.items.map(
|
|
@@ -22,7 +22,7 @@ const updateOrderQuery = () => {
|
|
|
22
22
|
};
|
|
23
23
|
const addEntry = (group) => {
|
|
24
24
|
return (selected) => {
|
|
25
|
-
const c =
|
|
25
|
+
const c = getEntryFromGlobal(selected);
|
|
26
26
|
if (c) {
|
|
27
27
|
group.items.push(c);
|
|
28
28
|
seaweedEntries = seaweedEntries;
|
|
@@ -87,7 +87,7 @@ const removeEntry = (entry, group) => {
|
|
|
87
87
|
}
|
|
88
88
|
};
|
|
89
89
|
};
|
|
90
|
-
const allDefaultEntries = Array.from(
|
|
90
|
+
const allDefaultEntries = Array.from(getAllEntryFromGlobal().keys());
|
|
91
91
|
</script>
|
|
92
92
|
|
|
93
93
|
<br>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SvelteComponent } from "svelte";
|
|
2
|
-
import { type EntryGroup, type SeaweedTemplateData } from "../SeaweedTemplateData";
|
|
2
|
+
import { type ComponentMeta, type EntryGroup, type SeaweedTemplateData } from "../SeaweedTemplateData";
|
|
3
3
|
import "./entry-order-config.postcss";
|
|
4
4
|
declare const __propDef: {
|
|
5
5
|
props: {
|
|
@@ -7,6 +7,8 @@ declare const __propDef: {
|
|
|
7
7
|
seaweedEntries: EntryGroup[];
|
|
8
8
|
orderUrl: string;
|
|
9
9
|
updateUrl: (data: SeaweedTemplateData) => void;
|
|
10
|
+
getAllEntryFromGlobal: () => Map<string, ComponentMeta>;
|
|
11
|
+
getEntryFromGlobal: (s: string) => ComponentMeta | undefined;
|
|
10
12
|
};
|
|
11
13
|
events: {
|
|
12
14
|
[evt: string]: CustomEvent<any>;
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
export let checked = false;
|
|
3
3
|
export let name: string;
|
|
4
|
+
export let onChange: undefined | (() => void) = undefined;
|
|
4
5
|
|
|
5
6
|
import { SlideToggle } from "@skeletonlabs/skeleton";
|
|
6
7
|
</script>
|
|
7
8
|
|
|
8
9
|
<SlideToggle name={name}
|
|
9
10
|
background="bg-surface-700 dark:bg-surface-700"
|
|
10
|
-
bind:checked={checked}
|
|
11
|
+
bind:checked={checked}
|
|
12
|
+
on:change={onChange}>
|
|
11
13
|
<slot />
|
|
12
14
|
</SlideToggle>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// noinspection JSUnusedGlobalSymbols
|
|
2
|
-
|
|
3
|
-
export { default as LazyAsset } from "./LazyAsset.svelte";
|
|
4
|
-
export { default as Card } from "./Card.svelte";
|
|
5
|
-
export { default as Chip } from "./chip/Chip.svelte";
|
|
6
|
-
export { default as PineappleSlideToggle } from "./PineappleSlideToggle.svelte";
|
|
7
|
-
export { default as SocialSection } from "./SocialSection.svelte";
|
|
8
|
-
export { default as ElementVisbilityDetector } from "./ElementVisbilityDetector.svelte";
|
|
1
|
+
// noinspection JSUnusedGlobalSymbols
|
|
2
|
+
|
|
3
|
+
export { default as LazyAsset } from "./LazyAsset.svelte";
|
|
4
|
+
export { default as Card } from "./Card.svelte";
|
|
5
|
+
export { default as Chip } from "./chip/Chip.svelte";
|
|
6
|
+
export { default as PineappleSlideToggle } from "./PineappleSlideToggle.svelte";
|
|
7
|
+
export { default as SocialSection } from "./SocialSection.svelte";
|
|
8
|
+
export { default as ElementVisbilityDetector } from "./ElementVisbilityDetector.svelte";
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
export let seaweedTemplateData: SeaweedTemplateData;
|
|
25
25
|
export let projectFirstGroupedEntries: ReadonlyArray<EntryGroup>;
|
|
26
|
+
export let getAllEntryFromGlobal: () => Map<string, ComponentMeta>;
|
|
26
27
|
export let getEntryFromGlobal: (name: string) => undefined | ComponentMeta;
|
|
27
28
|
export let letChaos = true;
|
|
28
29
|
export let name = "Turnip";
|
|
@@ -33,7 +34,7 @@
|
|
|
33
34
|
export let experienceSection: ComponentType;
|
|
34
35
|
|
|
35
36
|
// region query params
|
|
36
|
-
|
|
37
|
+
let entryProps: EntryProps = {
|
|
37
38
|
email,
|
|
38
39
|
letChaos,
|
|
39
40
|
linkedinSlug,
|
|
@@ -226,6 +227,11 @@
|
|
|
226
227
|
};
|
|
227
228
|
$: updateUrl(seaweedTemplateData);
|
|
228
229
|
|
|
230
|
+
// eslint-disable-next-line
|
|
231
|
+
const updateSeaweedWhenFunNoteChanged = (_: boolean) => {
|
|
232
|
+
entryProps = entryProps;
|
|
233
|
+
};
|
|
234
|
+
$: updateSeaweedWhenFunNoteChanged(seaweedTemplateData.shouldAddFunNote);
|
|
229
235
|
</script>
|
|
230
236
|
|
|
231
237
|
<SeaweedBaseLayout bind:shouldDisplayLeadingIcons={isSocialsGone}>
|
|
@@ -301,6 +307,8 @@
|
|
|
301
307
|
<EntryOrderConfig bind:seaweedEntries={seaweedTemplateData.groupedEntries}
|
|
302
308
|
seaweedTemplateData={seaweedTemplateData}
|
|
303
309
|
bind:orderUrl={orderUrl}
|
|
310
|
+
getAllEntryFromGlobal={getAllEntryFromGlobal}
|
|
311
|
+
getEntryFromGlobal={getEntryFromGlobal}
|
|
304
312
|
updateUrl={updateUrl}></EntryOrderConfig>
|
|
305
313
|
|
|
306
314
|
<br>
|
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
import type { ComponentType } from "svelte";
|
|
2
|
-
import { DefaultHeader
|
|
2
|
+
import { DefaultHeader } from "$pkg/template/seaweed/entries/EntryProps";
|
|
3
3
|
import Pengi from "$pkg/template/seaweed/entries/Pengi.svelte";
|
|
4
4
|
import Hepcat from "$pkg/template/seaweed/entries/Hepcat.svelte";
|
|
5
5
|
import ChefWings from "$pkg/template/seaweed/entries/ChefWings.svelte";
|
|
6
6
|
import Soulwork from "$pkg/template/seaweed/entries/Soulwork.svelte";
|
|
7
|
-
import ItchPromo from "$pkg/template/seaweed/entries/ItchPromo.svelte";
|
|
8
|
-
import MigranteAlberta from "$pkg/template/seaweed/entries/MigranteAlberta.svelte";
|
|
9
|
-
import DecentralizedSocialMedia from "$pkg/template/seaweed/entries/DecentralizedSocialMedia.svelte";
|
|
10
7
|
import CustomizedYarnspinner from "$pkg/template/seaweed/entries/CustomizedYarnspinner.svelte";
|
|
11
|
-
import FullStackC from "$pkg/template/seaweed/entries/FullStackC.svelte";
|
|
12
|
-
import Workset from "$pkg/template/seaweed/entries/Workset.svelte";
|
|
13
8
|
import ThisWebpage from "$pkg/template/seaweed/entries/ThisWebpage.svelte";
|
|
14
|
-
import MockUberApp from "$pkg/template/seaweed/entries/MockUberApp.svelte";
|
|
15
9
|
import { removeProxyWrapperOnString } from "$pkg/template/seaweed/entry_order_config/EntryOrderConfig";
|
|
16
10
|
|
|
17
11
|
export enum GroupGridClass {
|