Quellcode durchsuchen

add comment

main
shigeo.shinohara vor 2 Jahren
Ursprung
Commit
1e2c9b844a
3 geänderte Dateien mit 26 neuen und 5 gelöschten Zeilen
  1. +12
    -5
      lib/strapi.ts
  2. +7
    -0
      pages/ssg.tsx
  3. +7
    -0
      pages/ssr.tsx

+ 12
- 5
lib/strapi.ts Datei anzeigen

@@ -1,7 +1,14 @@
import {Guitar} from "../type/guitars";
import { Guitar } from "../type/guitars";

/**
* Guitar情報取得処理
*/
export const fetchGuitars = async (): Promise<Guitar[]> => {
const response = await fetch(`${process.env.NEXT_PUBLIC_STRAPI_URL}/api/guitars?populate=*`)
const guitars:Guitar[] =await response.json().then((json) => json.data)
return guitars
}
// StrapiのAPIを呼び出し
const response = await fetch(
`${process.env.NEXT_PUBLIC_STRAPI_URL}/api/guitars?populate=*`
);
// apiのresponseからdata部のみ取り出し
const guitars: Guitar[] = await response.json().then((json) => json.data);
return guitars;
};

+ 7
- 0
pages/ssg.tsx Datei anzeigen

@@ -3,6 +3,9 @@ import { fetchGuitars } from "../lib/strapi";
import { GetStaticProps } from "next";
import { Guitar, GuitarResponse } from "../type/guitars";

// ===========================
// getStaticPropsのpropsに設定したデータを引数で受け取れる
// ==========================
const Ssg: FC<GuitarResponse> = ({ guitars }) => {
return (
<div>
@@ -13,6 +16,10 @@ const Ssg: FC<GuitarResponse> = ({ guitars }) => {
);
};

// ===============================
// 静的サイト作成時にはgetStaticPropsの中で
// 表示データを作成する
// ===============================
export const getStaticProps: GetStaticProps = async () => {
const guitars = await fetchGuitars();
return {

+ 7
- 0
pages/ssr.tsx Datei anzeigen

@@ -3,6 +3,9 @@ import { fetchGuitars } from "../lib/strapi";
import { GetServerSideProps } from "next";
import { Guitar, GuitarResponse } from "../type/guitars";

// ===========================
// getServerSidePropsのpropsに設定したデータを引数で受け取れる
// ==========================
const Ssr: FC<GuitarResponse> = ({ guitars }) => {
return (
<div>
@@ -13,6 +16,10 @@ const Ssr: FC<GuitarResponse> = ({ guitars }) => {
);
};

// ===============================
// サーバサイドレンダリング時にはgetServerSidePropsの中で
// 表示データを作成する
// ===============================
export const getServerSideProps: GetServerSideProps = async () => {
const guitars = await fetchGuitars();
return {

Laden…
Abbrechen
Speichern