• <noscript id="ggggg"><dd id="ggggg"></dd></noscript>
    <small id="ggggg"></small> <sup id="ggggg"></sup>
    <noscript id="ggggg"><dd id="ggggg"></dd></noscript>
    <tfoot id="ggggg"></tfoot>
  • <nav id="ggggg"><cite id="ggggg"></cite></nav>
    <nav id="ggggg"></nav>
    成人黃色A片免费看三更小说,精品人妻av区波多野结衣,亚洲第一极品精品无码,欧美综合区自拍亚洲综合,久久99青青精品免费观看,中文字幕在线中字日韩 ,亚洲国产精品18久久久久久,黄色在线免费观看

    將 Gatsby 項目遷移到 TypeScript

    2020-5-4    seo達人

    之前花了些時間將gatsby-theme-gitbook遷移到 Typescript,以獲得在 VSCode 中更好的編程體驗.

    整體差不多已經完成遷移,剩下將 Gatsby 的 API 文件也遷移到 TS,這里可以看到 gatsby#21995 官方也在將核心代碼庫遷移到 Typescript,準備等待官方將核心代碼庫遷移完成,在遷移 API 文件.


    這篇文章用XYShaoKang/gatsby-project-config,演示如何將 gatsby 遷移到 TypeScript,希望能幫到同樣想要在 Gatsby 中使用 TS 的同學.


    遷移步驟:


    TS 配置

    配置 ESLint 支持 TS

    完善 GraphQL 類型提示

    初始化項目

    gatsby new gatsby-migrate-to-typescript XYShaoKang/gatsby-project-config

    cd gatsby-migrate-to-typescript

    yarn develop

    TS 配置

    安裝typescript

    添加typescript.json配置文件

    修改 js 文件為 tsx

    補全 TS 聲明定義

    安裝typescript

    yarn add -D typescript

    添加配置文件tsconfig.json

    // https://www.typescriptlang.org/v2/docs/handbook/tsconfig-json.html

    {

     "compilerOptions": {

       "target": "esnext", // 編譯生成的目標 es 版本,可以根據需要設置

       "module": "esnext", // 編譯生成的目標模塊系統

       "lib": ["dom", "es2015", "es2017"], // 配置需要包含的運行環境的類型定義

       "jsx": "react", // 配置 .tsx 文件的輸出模式

       "strict": true, // 開啟嚴格模式

       "esModuleInterop": true, // 兼容 CommonJS 和 ES Module

       "moduleResolution": "node", // 配置模塊的解析規則,支持 node 模塊解析規則

       "noUnusedLocals": true, // 報告未使用的局部變量的錯誤

       "noUnusedParameters": true, // 報告有關函數中未使用參數的錯誤

       "experimentalDecorators": true, // 啟用裝飾器

       "emitDecoratorMetadata": true, // 支持裝飾器上生成元數據,用來進行反射之類的操作

       "noEmit": true, // 不輸出 js,源映射或聲明之類的文件,單純用來檢查錯誤

       "skipLibCheck": true // 跳過聲明文件的類型檢查,只會檢查已引用的部分

     },

     "exclude": ["./node_modules", "./public", "./.cache"], // 解析時,應該跳過的路晉

     "include": ["src"] // 定義包含的路徑,定義在其中的聲明文件都會被解析進 vscode 的智能提示

    }

    將index.js改成index.tsx,重新啟動服務,查看效果.


    其實 Gatsby 內置了支持 TS,不用其他配置,只要把index.js改成index.tsx就可以直接運行.添加 TS 依賴是為了顯示管理 TS,而tsconfig.json也是這個目的,當我們有需要新的特性以及自定義配置時,可以手動添加.

    補全 TS 聲明定義

    打開index.tsx,VSCode 會報兩個錯誤,一個是找不到styled-components的聲明文件,這個可以通過安裝@types/styled-components來解決.

    另外一個錯誤綁定元素“data”隱式具有“any”類型。,這個錯誤是因為我們在tsconfig.json中指定了"strict": true,這會開啟嚴格的類型檢查,可以通過關閉這個選項來解決,只是我們用 TS 就是要用它的類型檢查的,所以正確的做法是給data定義類型.

    下面來一一修復錯誤.


    安裝styled-components的聲明文件


    yarn add -D @types/styled-components

    修改index.tsx


    import React, { FC } from 'react'

    import styled from 'styled-components'

    import { graphql } from 'gatsby'

    import { HomeQuery } from './__generated__/HomeQuery'


    const Title = styled.h1`

     font-size: 1.5em;

     margin: 0;

     padding: 0.5em 0;

     color: palevioletred;

     background: papayawhip;

    `


    const Content = styled.div`

     margin-top: 0.5em;

    `


    interface PageQuery {

     data: {

       allMarkdownRemark: {

         edges: Array<{

           node: {

             frontmatter: {

               title: string

             }

             excerpt: string

           }

         }>

       }

     }

    }


    const Home: FC<PageQuery> = ({ data }) => {

     const node = data.allMarkdownRemark.edges[0].node


     const title = node.frontmatter?.title

     const excerpt = node.excerpt


     return (

       <>

         <Title>{title}</Title>

         <Content>{excerpt}</Content>

       </>

     )

    }


    export default Home


    export const query = graphql`

     query HomeQuery {

       allMarkdownRemark {

         edges {

           node {

             frontmatter {

               title

             }

             excerpt

           }

         }

       }

     }

    `

    這時候會出現一個新的錯誤,在excerpt: string處提示Parsing error: Unexpected token,這是因為 ESLint 還無法識別 TS 的語法,下面來配置 ESLint 支持 TS.


    配置 ESLint 支持 TypeScript

    安裝依賴


    yarn add -D @typescript-eslint/parser @typescript-eslint/eslint-plugin

    配置.eslintrc.js


    module.exports = {

     parser: `@typescript-eslint/parser`, // 將解析器從`babel-eslint`替換成`@typescript-eslint/parser`,用以解析 TS 代碼

     extends: [

       `google`,

       `eslint:recommended`,

       `plugin:@typescript-eslint/recommended`, // 使用 @typescript-eslint/eslint-plugin 推薦配置

       `plugin:react/recommended`,

       `prettier/@typescript-eslint`, // 禁用 @typescript-eslint/eslint-plugin 中與 prettier 沖突的規則

       `plugin:prettier/recommended`,

     ],

     plugins: [

       `@typescript-eslint`, // 處理 TS 語法規則

       `react`,

       `filenames`,

     ],

     // ...

    }

    在.vscode/settings.json中添加配置,讓VSCode使用ESLint擴展格式化ts和tsx文件


    // .vscode/settings.json

    {

     "eslint.format.enable": true,

     "[javascript]": {

       "editor.defaultFormatter": "dbaeumer.vscode-eslint"

     },

     "[javascriptreact]": {

       "editor.defaultFormatter": "dbaeumer.vscode-eslint"

     },

     "[typescript]": {

       "editor.defaultFormatter": "dbaeumer.vscode-eslint"

     },

     "[typescriptreact]": {

       "editor.defaultFormatter": "dbaeumer.vscode-eslint"

     }

    }

    完善 GraphQL 類型提示

    // index.tsx

    import React, { FC } from 'react'

    // ...

    interface PageQuery {

     data: {

       allMarkdownRemark: {

         edges: Array<{

           node: {

             frontmatter: {

               title: string

             }

             excerpt: string

           }

         }>

       }

     }

    }


    const Home: FC<PageQuery> = ({ data }) => {

     // ...

    }


    export default Home


    export const query = graphql`

     query HomeQuery {

       allMarkdownRemark {

         edges {

           node {

             frontmatter {

               title

             }

             excerpt

           }

         }

       }

     }

    `

    我們看看index.tsx文件,會發現PropTypes和query結構非常類似,在Gatsby運行時,會把query查詢的結果作為組件prop.data傳入組件,而PropTypes是用來約束prop存在的.所以其實PropTypes就是根據query寫出來的.


    如果有依據query自動生成PropTypes的功能就太棒了.

    另外一個問題是在query中編寫GraphQL查詢時,并沒有類型約束,也沒有智能提示.


    總結以下需要完善的體驗包括:


    GraphQL 查詢編寫時的智能提示,以及錯誤檢查

    能夠從 GraphQL 查詢生成對應的 TypeScript 類型.這樣能保證類型的唯一事實來源,并消除 TS 中冗余的類型聲明.畢竟如果經常需要手動更新兩處類型,會更容易出錯,而且也并不能保證手動定義類型的正確性.

    實現方式:


    通過生成架構文件,配合Apollo GraphQL for VS Code插件,實現智能提示,以及錯誤檢查

    通過graphql-code-generator或者apollo生成 TS 類型定義文件

    如果自己去配置的話,是挺耗費時間的,需要去了解graphql-code-generator的使用,以及Apollo的架構等知識.

    不過好在社區中已經有對應的 Gatsby 插件集成了上述工具可以直接使用,能讓我們不用去深究對應知識的情況下,達到優化 GraphQL 編程的體驗.

    嘗試過以下兩個插件能解決上述問題,可以任選其一使用


    gatsby-plugin-codegen

    gatsby-plugin-typegen

    另外還有一款插件gatsby-plugin-graphql-codegen也可以生成 TS 類型,不過配置略麻煩,并且上述兩個插件都可以滿足我現在的需求,所以沒有去嘗試,感興趣的可以嘗試一下.


    注意點:


    Apollo不支持匿名查詢,需要使用命名查詢

    第一次生成,需要運行Gatsby之后才能生成類型文件

    整個項目內不能有相同命名的查詢,不然會因為名字有沖突而生成失敗

    下面是具體操作


    安裝vscode-apollo擴展

    在 VSCode 中按 Ctrl + P ( MAC 下: Cmd + P) 輸入以下命令,按回車安裝


    ext install apollographql.vscode-apollo

    方式一: 使用gatsby-plugin-codegen

    gatsby-plugin-codegen默認會生成apollo.config.js和schema.json,配合vscode-apollo擴展,可以提供GraphQL的類型約束和智能提示.

    另外會自動根據query中的GraphQL查詢,生成 TS 類型,放在對應的tsx文件同級目錄下的__generated__文件夾,使用時只需要引入即可.

    如果需要在運行時自動生成 TS 類型,需要添加watch: true配置.


    安裝gatsby-plugin-codegen


    yarn add gatsby-plugin-codegen

    配置gatsby-config.js


    // gatsby-config.js

    module.exports = {

     plugins: [

       // ...

       {

         resolve: `gatsby-plugin-codegen`,

         options: {

           watch: true,

         },

       },

     ],

    }

    重新運行開發服務生成類型文件


    yarn develop

    如果出現以下錯誤,一般是因為沒有為查詢命名的緣故,給查詢添加命名即可,另外配置正確的話,打開對應的文件,有匿名查詢,編輯器會有錯誤提示.


    fix-anonymous-operations.png


    這個命名之后會作為生成的類型名.


    修改index.tsx以使用生成的類型


    gatsby-plugin-codegen插件會更具查詢生成對應的查詢名稱的類型,保存在對應tsx文件同級的__generated__目錄下.


    import { HomeQuery } from './__generated__/HomeQuery' // 引入自動生成的類型

    // ...


    // interface PageQuery {

    //   data: {

    //     allMarkdownRemark: {

    //       edges: Array<{

    //         node: {

    //           frontmatter: {

    //             title: string

    //           }

    //           excerpt: string

    //         }

    //       }>

    //     }

    //   }

    // }


    interface PageQuery {

     data: HomeQuery // 替換之前手寫的類型

    }


    // ...

    將自動生成的文件添加到.gitignore中


    apollo.config.js,schema.json,__generated__能通過運行時生成,所以可以添加到.gitignore中,不用提交到 git 中.當然如果有需要也可以選擇提交到 git 中.

    # Generated types by gatsby-plugin-codegen

    __generated__

    apollo.config.js

    schema.json

    方式二: 使用gatsby-plugin-typegen

    gatsby-plugin-typegen通過配置生成gatsby-schema.graphql和gatsby-plugin-documents.graphql配合手動創建的apollo.config.js提供GraphQL的類型約束和智能提示.

    根據GraphQL查詢生成gatsby-types.d.ts,生成的類型放在命名空間GatsbyTypes下,使用時通過GatsbyTypes.HomeQueryQuery來引入,HomeQueryQuery是由對應的命名查詢生成


    安裝gatsby-plugin-typegen


    yarn add gatsby-plugin-typegen

    配置


    // gatsby-config.js

    module.exports = {

     plugins: [

       // ...

       {

         resolve: `gatsby-plugin-typegen`,

         options: {

           outputPath: `src/__generated__/gatsby-types.d.ts`,

           emitSchema: {

             'src/__generated__/gatsby-schema.graphql': true,

           },

           emitPluginDocuments: {

             'src/__generated__/gatsby-plugin-documents.graphql': true,

           },

         },

       },

     ],

    }

    //apollo.config.js

    module.exports = {

     client: {

       tagName: `graphql`,

       includes: [

         `./src/**/*.{ts,tsx}`,

         `./src/__generated__/gatsby-plugin-documents.graphql`,

       ],

       service: {

         name: `GatsbyJS`,

         localSchemaFile: `./src/__generated__/gatsby-schema.graphql`,

       },

     },

    }

    重新運行開發服務生成類型文件


    yarn develop

    修改index.tsx以使用生成的類型


    gatsby-plugin-codegen插件會更具查詢生成對應的查詢名稱的類型,保存在對應tsx文件同級的__generated__目錄下.


    // ...


    // interface PageQuery {

    //   data: {

    //     allMarkdownRemark: {

    //       edges: Array<{

    //         node: {

    //           frontmatter: {

    //             title: string

    //           }

    //           excerpt: string

    //         }

    //       }>

    //     }

    //   }

    // }


    interface PageQuery {

     data: GatsbyTypes.HomeQueryQuery // 替換之前手寫的類型

    }


    // ...

    將自動生成的文件添加到.gitignore中


    __generated__能通過運行時生成,所以可以添加到.gitignore中,不用提交到 git 中.當然如果有需要也可以選擇提交到 git 中.

    # Generated types by gatsby-plugin-codegen

    __generated__

    日歷

    鏈接

    個人資料

    藍藍設計的小編 http://www.lzhte.cn

    存檔

    主站蜘蛛池模板: 又爽又黄无遮挡高潮视频网站| 国产2021久久精品| 菠萝蜜在线观看免费观看电视剧中文| 国产精品v片在线观看不卡| 在线观看中文字幕国产| 有码中文字幕一区三区| 岛国AV网站| 国产第一精品福利在线| 亚洲精品中文字幕区| 97超碰精品成人国产| 在免费JIZZJIZZ在线播放视频| 九九热视频这里免费看| 1769国内精品视频在线播放| 色狠狠色噜噜AV一区| 亚洲中字幕永久在线观看| 贵州省| 国产av成人精品播放| 欧美日韩免费专区在线观看| 午夜国产不卡在线观看视频| 欧洲精品不卡1卡2卡三卡| 婷婷久久香蕉五月综合加勒比 | 精品无套内射后入少妇| 激情中文丁香激情综合| 国产无遮挡18禁无码网站免费 | 精品人妻日韩中文字幕| 国产精品自拍一区视频| 美女扒开内裤无遮挡禁18| 成人无码特黄特黄AV片在线 | 乌拉特前旗| 国产亚洲精品久久久性色情软件| 禁国产18精品一二区| 孕妇高潮太爽了在线观看免费| 日韩欧美综合在线二区三区| 精品国产免费久久久久久婷婷| 国产亚洲欧洲中文天堂| 韩国免费A级毛片久久| 中文字幕在线一区乱码| 日韩一级av一区二区| 日韩影片一区二区三区| 久久久久无码精品亚洲日韩| 亚洲欧美人成网站aaaa|