merge conflict resolved

pull/5/head
cssbubble 2022-05-24 11:42:53 +01:00
commit 1ffc07c565
6 zmienionych plików z 15 dodań i 7 usunięć

Wyświetl plik

@ -53,7 +53,7 @@
<svelte:window on:hashchange={hashchange}/>
<TailwindUI.AppShell {alltopics}>
<TailwindUI.AppShell>
<svelte:fragment slot="content">
{#if currentView === "/home" || currentView === "/"}
<Home/>
@ -66,7 +66,7 @@
{:else if currentView === "/formats"}
<FormatList/>
{:else if currentView.startsWith("/format/")}
<FormatDetail format={currentView.split("/")[2]}/>
<FormatDetail format={currentView.split("/")[2]} {alltopics}/>
{:else if currentView === "/courses"}
<CourseList/>
{:else if currentView.startsWith("/item/")}

Wyświetl plik

@ -2,7 +2,10 @@
import ItemCard from "./ItemCard.svelte"
import VideoCard from "./VideoCard.svelte"
import SearchForm from "./SearchForm.svelte"
export let format;
export let alltopics;
let items = [];
$: fetch(`/learn/items.json?_shape=array&links__contains=${format}|`)
@ -12,6 +15,8 @@
});
</script>
<SearchForm {alltopics}/>
<div class="md:flex md:items-center md:justify-between mb-8">
<div class="flex-1 min-w-0">
<h2 class="text-2xl font-bold leading-7 text-gray-100 sm:text-3xl sm:truncate"> {format}</h2>

Wyświetl plik

@ -1,6 +1,5 @@
<script>
import Icon from "./Icon.svelte"
import ComboBox from "./ComboBox.svelte"
import ComboBox from "./tailwindui/ComboBox.svelte"
export let alltopics;
let query = {

Wyświetl plik

@ -5,6 +5,7 @@
import BookCard from "./BookCard.svelte"
import VideoCard from "./VideoCard.svelte"
import GenericCard from "./GenericCard.svelte"
import SearchForm from "./SearchForm.svelte"
export let topicname;
export let alltopics;
@ -18,6 +19,8 @@
});
</script>
<SearchForm {alltopics}/>
<TopicMasonryGrid {topicname} {alltopics}/>
<!-- <div class="grid grid-cols-1 gap-6 sm:grid-cols-2 md:grid-cols-1 lg:grid-cols-2 xl:grid-cols-3">

Wyświetl plik

@ -1,6 +1,9 @@
<script>
import TopicMasonryGrid from "./TopicMasonryGrid.svelte"
export let alltopics;
import SearchForm from "./SearchForm.svelte"
</script>
<SearchForm {alltopics}/>
<TopicMasonryGrid {alltopics}/>

Wyświetl plik

@ -4,8 +4,6 @@
let isNavDrawerOpen = false
export let showNotificationBell = false;
export let showProfileMenu = false;
export let alltopics;
import SearchForm from "./SearchForm.svelte"
</script>
@ -95,7 +93,7 @@
<Icon kind="menu"/>
</button>
<div class="flex-1 flex justify-between">
<SearchForm {alltopics}/>
{#if showNotificationBell || showProfileMenu}
<div class="ml-4 flex items-center md:ml-6">
{#if showNotificationBell}