Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: adds centralized author map to streamline resource entries #552

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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