Skip to content

Commit

Permalink
refactor: adds centralized author map to streamline resource entries
Browse files Browse the repository at this point in the history
  • Loading branch information
thedanchez committed Dec 1, 2024
1 parent 2e74ae5 commit 23f1ccb
Show file tree
Hide file tree
Showing 5 changed files with 585 additions and 945 deletions.
10 changes: 9 additions & 1 deletion src/pages/Examples.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
import Repl from 'solid-repl/dist/repl';
import { A, useParams } from '@solidjs/router';
import { For, type Component, createSignal, createEffect, batch, ErrorBoundary, Show } from 'solid-js';
import {
For,
type Component,
createSignal,
createEffect,
batch,
ErrorBoundary,
Show,
} from 'solid-js';
import type { ExamplesDataRoute } from './Examples.data';

import { compiler, formatter, linter } from '../components/setupRepl';
Expand Down
7 changes: 6 additions & 1 deletion src/pages/Packages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ import type { PackagesDataProps } from './Packages.data';
import Fuse from 'fuse.js';
import { debounce } from '@solid-primitives/scheduled';
import { makeIntersectionObserver } from '@solid-primitives/intersection-observer';
import { type Resource, ResourceCategory, type ResourceType, ResourceTypeIcons } from './Resources/Ecosystem';
import {
type Resource,
ResourceCategory,
type ResourceType,
ResourceTypeIcons,
} from './Resources/Ecosystem';
import { parseKeyword } from '../utils/parseKeyword';
import { rememberSearch } from '../utils/rememberSearch';
import SideContent from '../components/layout/SideContent';
Expand Down
7 changes: 6 additions & 1 deletion src/pages/Resources.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ import { parseKeyword } from '../utils/parseKeyword';
import { rememberSearch } from '../utils/rememberSearch';
import { useRouteReadyState } from '../utils/routeReadyState';
import type { ResourcesDataProps } from './Resources.data';
import { type PackageType, type Resource, ResourceType, ResourceTypeIcons } from './Resources/Ecosystem';
import {
type PackageType,
type Resource,
ResourceType,
ResourceTypeIcons,
} from './Resources/Ecosystem';

const AResource: Component<Resource> = (props) => {
const { t } = useAppState();
Expand Down
3 changes: 2 additions & 1 deletion src/pages/Resources/Articles.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1423,7 +1423,8 @@ const articles: Array<Resource> = [
{
link: 'https://thenewstack.io/how-js-meta-framework-solidstart-became-router-agnostic/',
title: 'How JS Meta-Framework SolidStart Became Router Agnostic',
description: 'SolidStart is a new meta-framework from the SolidJS team that doesn\'t dictate which router developers use. Ryan Carniato explains why.',
description:
"SolidStart is a new meta-framework from the SolidJS team that doesn't dictate which router developers use. Ryan Carniato explains why.",
author: 'Loraine Lawson',
author_url: 'https://thenewstack.io/',
keywords: ['solid', 'solidstart', 'router', 'vinxi', 'tanstack'],
Expand Down
Loading

0 comments on commit 23f1ccb

Please sign in to comment.