From 1eb06e541246a600daad4d07196aa85c7e410fbc Mon Sep 17 00:00:00 2001 From: Aleksandr Bukhalo Date: Wed, 9 Sep 2020 23:40:23 +0300 Subject: [PATCH] docs: copy documentation from README.md into docusaurus docs --- website/docs/async-configuration.md | 60 ++++++++ website/docs/bot-injection.md | 17 +++ website/docs/doc1.md | 203 ---------------------------- website/docs/doc2.md | 6 - website/docs/doc3.md | 14 -- website/docs/installation.md | 30 ++++ website/docs/mdx.md | 17 --- website/docs/telegraf-methods.md | 46 +++++++ website/docs/webhooks.md | 35 +++++ website/sidebars.js | 3 +- 10 files changed, 189 insertions(+), 242 deletions(-) create mode 100644 website/docs/async-configuration.md create mode 100644 website/docs/bot-injection.md delete mode 100644 website/docs/doc1.md delete mode 100644 website/docs/doc2.md delete mode 100644 website/docs/doc3.md create mode 100644 website/docs/installation.md delete mode 100644 website/docs/mdx.md create mode 100644 website/docs/telegraf-methods.md create mode 100644 website/docs/webhooks.md diff --git a/website/docs/async-configuration.md b/website/docs/async-configuration.md new file mode 100644 index 0000000..14414f0 --- /dev/null +++ b/website/docs/async-configuration.md @@ -0,0 +1,60 @@ +--- +id: async-configuration +title: Async configuration +sidebar_label: Async configuration +slug: /async-configuration +--- + +When you need to pass module options asynchronously instead of statically, use the forRootAsync() method. As with most dynamic modules, Nest provides several techniques to deal with async configuration. + +One technique is to use a factory function: + +```typescript +TelegrafModule.forRootAsync({ + useFactory: () => ({ + token: 'TELEGRAM_BOT_TOKEN', + }), +}); +``` + +Like other [factory providers](https://docs.nestjs.com/fundamentals/custom-providers#factory-providers-usefactory), our factory function can be async and can inject dependencies through inject. + +```typescript +TelegrafModule.forRootAsync({ + imports: [ConfigModule.forFeature(telegrafModuleConfig)], + useFactory: async (configService: ConfigService) => ({ + token: configService.get('TELEGRAM_BOT_TOKEN'), + }), + inject: [ConfigService], +}); +``` + +Alternatively, you can configure the TelegrafModule using a class instead of a factory, as shown below: + +```typescript +TelegrafModule.forRootAsync({ + useClass: TelegrafConfigService, +}); +``` + +The construction above instantiates `TelegrafConfigService` inside `TelegrafModule`, using it to create the required options object. Note that in this example, the `TelegrafConfigService` has to implement the `TelegrafOptionsFactory` interface, as shown below. The `TelegrafModule` will call the `createTelegrafOptions()` method on the instantiated object of the supplied class. + +```typescript +@Injectable() +class TelegrafConfigService implements TelegrafOptionsFactory { + createTelegrafOptions(): TelegrafModuleOptions { + return { + token: 'TELEGRAM_BOT_TOKEN', + }; + } +} +``` + +If you want to reuse an existing options provider instead of creating a private copy inside the `TelegrafModule`, use the `useExisting` syntax. + +```typescript +TelegrafModule.forRootAsync({ + imports: [ConfigModule.forFeature(telegrafModuleConfig)], + useExisting: ConfigService, +}); +``` diff --git a/website/docs/bot-injection.md b/website/docs/bot-injection.md new file mode 100644 index 0000000..8aa67df --- /dev/null +++ b/website/docs/bot-injection.md @@ -0,0 +1,17 @@ +--- +id: bot-injection +title: Bot injection +sidebar_label: Bot injection +slug: /bot-injection +--- + +At times you may need to access the native `Telegraf` instance. For example, you may want to connect stage middleware. You can inject the Telegraf by using the `@InjectBot()` decorator as follows: +```typescript +import { Injectable } from '@nestjs/common'; +import { InjectBot, TelegrafProvider } from 'nestjs-telegraf'; + +@Injectable() +export class BotSettingsService { + constructor(@InjectBot() private bot: TelegrafProvider) {} +} +``` diff --git a/website/docs/doc1.md b/website/docs/doc1.md deleted file mode 100644 index 28286ec..0000000 --- a/website/docs/doc1.md +++ /dev/null @@ -1,203 +0,0 @@ ---- -id: doc1 -title: Style Guide -sidebar_label: Style Guide -slug: / ---- - -You can write content using [GitHub-flavored Markdown syntax](https://github.github.com/gfm/). - -## Markdown Syntax - -To serve as an example page when styling markdown based Docusaurus sites. - -## Headers - -# H1 - Create the best documentation - -## H2 - Create the best documentation - -### H3 - Create the best documentation - -#### H4 - Create the best documentation - -##### H5 - Create the best documentation - -###### H6 - Create the best documentation - ---- - -## Emphasis - -Emphasis, aka italics, with *asterisks* or _underscores_. - -Strong emphasis, aka bold, with **asterisks** or __underscores__. - -Combined emphasis with **asterisks and _underscores_**. - -Strikethrough uses two tildes. ~~Scratch this.~~ - ---- - -## Lists - -1. First ordered list item -1. Another item - - Unordered sub-list. -1. Actual numbers don't matter, just that it's a number - 1. Ordered sub-list -1. And another item. - -* Unordered list can use asterisks - -- Or minuses - -+ Or pluses - ---- - -## Links - -[I'm an inline-style link](https://www.google.com/) - -[I'm an inline-style link with title](https://www.google.com/ "Google's Homepage") - -[I'm a reference-style link][arbitrary case-insensitive reference text] - -[You can use numbers for reference-style link definitions][1] - -Or leave it empty and use the [link text itself]. - -URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com/ or and sometimes example.com (but not on GitHub, for example). - -Some text to show that the reference links can follow later. - -[arbitrary case-insensitive reference text]: https://www.mozilla.org/ -[1]: http://slashdot.org/ -[link text itself]: http://www.reddit.com/ - ---- - -## Images - -Here's our logo (hover to see the title text): - -Inline-style: ![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png 'Logo Title Text 1') - -Reference-style: ![alt text][logo] - -[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png 'Logo Title Text 2' - -Images from any folder can be used by providing path to file. Path should be relative to markdown file. - -![img](../static/img/logo.svg) - ---- - -## Code - -```javascript -var s = 'JavaScript syntax highlighting'; -alert(s); -``` - -```python -s = "Python syntax highlighting" -print(s) -``` - -``` -No language indicated, so no syntax highlighting. -But let's throw in a tag. -``` - -```js {2} -function highlightMe() { - console.log('This line can be highlighted!'); -} -``` - ---- - -## Tables - -Colons can be used to align columns. - -| Tables | Are | Cool | -| ------------- | :-----------: | -----: | -| col 3 is | right-aligned | \$1600 | -| col 2 is | centered | \$12 | -| zebra stripes | are neat | \$1 | - -There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown. - -| Markdown | Less | Pretty | -| -------- | --------- | ---------- | -| _Still_ | `renders` | **nicely** | -| 1 | 2 | 3 | - ---- - -## Blockquotes - -> Blockquotes are very handy in email to emulate reply text. This line is part of the same quote. - -Quote break. - -> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote. - ---- - -## Inline HTML - -
-
Definition list
-
Is something people use sometimes.
- -
Markdown in HTML
-
Does *not* work **very** well. Use HTML tags.
-
- ---- - -## Line Breaks - -Here's a line for us to start with. - -This line is separated from the one above by two newlines, so it will be a _separate paragraph_. - -This line is also a separate paragraph, but... This line is only separated by a single newline, so it's a separate line in the _same paragraph_. - ---- - -## Admonitions - -:::note - -This is a note - -::: - -:::tip - -This is a tip - -::: - -:::important - -This is important - -::: - -:::caution - -This is a caution - -::: - -:::warning - -This is a warning - -::: diff --git a/website/docs/doc2.md b/website/docs/doc2.md deleted file mode 100644 index 16cfce4..0000000 --- a/website/docs/doc2.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -id: doc2 -title: Document Number 2 ---- - -This is a link to [another document.](doc3.md) This is a link to an [external page.](http://www.example.com/) diff --git a/website/docs/doc3.md b/website/docs/doc3.md deleted file mode 100644 index 2c40cc6..0000000 --- a/website/docs/doc3.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -id: doc3 -title: This is Document Number 3 ---- - -Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ac euismod odio, eu consequat dui. Nullam molestie consectetur risus id imperdiet. Proin sodales ornare turpis, non mollis massa ultricies id. Nam at nibh scelerisque, feugiat ante non, dapibus tortor. Vivamus volutpat diam quis tellus elementum bibendum. Praesent semper gravida velit quis aliquam. Etiam in cursus neque. Nam lectus ligula, malesuada et mauris a, bibendum faucibus mi. Phasellus ut interdum felis. Phasellus in odio pulvinar, porttitor urna eget, fringilla lectus. Aliquam sollicitudin est eros. Mauris consectetur quam vitae mauris interdum hendrerit. Lorem ipsum dolor sit amet, consectetur adipiscing elit. - -Duis et egestas libero, imperdiet faucibus ipsum. Sed posuere eget urna vel feugiat. Vivamus a arcu sagittis, fermentum urna dapibus, congue lectus. Fusce vulputate porttitor nisl, ac cursus elit volutpat vitae. Nullam vitae ipsum egestas, convallis quam non, porta nibh. Morbi gravida erat nec neque bibendum, eu pellentesque velit posuere. Fusce aliquam erat eu massa eleifend tristique. - -Sed consequat sollicitudin ipsum eget tempus. Integer a aliquet velit. In justo nibh, pellentesque non suscipit eget, gravida vel lacus. Donec odio ante, malesuada in massa quis, pharetra tristique ligula. Donec eros est, tristique eget finibus quis, semper non nisl. Vivamus et elit nec enim ornare placerat. Sed posuere odio a elit cursus sagittis. - -Phasellus feugiat purus eu tortor ultrices finibus. Ut libero nibh, lobortis et libero nec, dapibus posuere eros. Sed sagittis euismod justo at consectetur. Nulla finibus libero placerat, cursus sapien at, eleifend ligula. Vivamus elit nisl, hendrerit ac nibh eu, ultrices tempus dui. Nam tellus neque, commodo non rhoncus eu, gravida in risus. Nullam id iaculis tortor. - -Nullam at odio in sem varius tempor sit amet vel lorem. Etiam eu hendrerit nisl. Fusce nibh mauris, vulputate sit amet ex vitae, congue rhoncus nisl. Sed eget tellus purus. Nullam tempus commodo erat ut tristique. Cras accumsan massa sit amet justo consequat eleifend. Integer scelerisque vitae tellus id consectetur. diff --git a/website/docs/installation.md b/website/docs/installation.md new file mode 100644 index 0000000..22cd71c --- /dev/null +++ b/website/docs/installation.md @@ -0,0 +1,30 @@ +--- +id: installation +title: Installation +sidebar_label: Installation +slug: / +--- + +```bash +$ npm i nestjs-telegraf +``` + +Once the installation process is complete, we can import the TelegrafModule into the root AppModule. + +```typescript +/* app.module.ts */ + +import { Module } from '@nestjs/common'; +import { TelegrafModule } from 'nestjs-telegraf'; + +@Module({ + imports: [ + TelegrafModule.forRoot({ + token: 'TELEGRAM_BOT_TOKEN', + }) + ], +}) +export class AppModule {} +``` + +The `forRoot()` method accepts the same configuration object as Telegraf class constructor from the Telegraf package, as described [here](https://telegraf.js.org/#/?id=constructor). diff --git a/website/docs/mdx.md b/website/docs/mdx.md deleted file mode 100644 index f0210fb..0000000 --- a/website/docs/mdx.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -id: mdx -title: Powered by MDX ---- - -You can write JSX and use React components within your Markdown thanks to [MDX](https://mdxjs.com/). - -export const Highlight = ({children, color}) => ( {children} ); - -Docusaurus green and Facebook blue are my favorite colors. - -I can write **Markdown** alongside my _JSX_! diff --git a/website/docs/telegraf-methods.md b/website/docs/telegraf-methods.md new file mode 100644 index 0000000..aa39a30 --- /dev/null +++ b/website/docs/telegraf-methods.md @@ -0,0 +1,46 @@ +--- +id: telegraf-methods +title: Telegraf methods +sidebar_label: Telegraf methods +slug: /telegraf-methods +--- + +Each Telegraf instance method described [here](https://telegraf.js.org/#/?id=telegraf) has own decorator in `nestjs-telegraf` package. The name of the decorator corresponds to the name of the Telegraf method. For example [`@Hears`](https://telegraf.js.org/#/?id=hears), [`@On`](https://telegraf.js.org/#/?id=on), [`@Action`](https://telegraf.js.org/#/?id=action) and so on. + +Now let's try to repeat the example from the Telegraf [documentation page](https://telegraf.js.org/#/?id=example). + +```typescript +/* app.service.ts */ + +import { Injectable } from '@nestjs/common'; +import { + Start, + Help, + On, + Hears, + Context, +} from 'nestjs-telegraf'; + +@Injectable() +export class AppService { + @Start() + start(ctx: Context) { + ctx.reply('Welcome'); + } + + @Help() + help(ctx: Context) { + ctx.reply('Send me a sticker'); + } + + @On('sticker') + on(ctx: Context) { + ctx.reply('👍'); + } + + @Hears('hi') + hears(ctx: Context) { + ctx.reply('Hey there'); + } +} +``` diff --git a/website/docs/webhooks.md b/website/docs/webhooks.md new file mode 100644 index 0000000..e61c97b --- /dev/null +++ b/website/docs/webhooks.md @@ -0,0 +1,35 @@ +--- +id: webhooks +title: Webhooks +sidebar_label: Webhooks +slug: webhooks +--- + +If you want to configure a telegram bot webhook, you need to get a middleware from `TelegrafProvider` for connect it in your `main.ts` file. + +To access it, you must use the `app.get()` method, followed by the provider reference: +```typescript +const telegrafProvider = app.get('TelegrafProvider'); +``` + +Now you can connect middleware: +```typescript +app.use(telegrafProvider.webhookCallback('/secret-path')); +``` + +The last step is to specify launchOptions in `forRoot` method: +```typescript +TelegrafModule.forRootAsync({ + imports: [ConfigModule.forFeature(telegrafModuleConfig)], + useFactory: async (configService: ConfigService) => ({ + token: configService.get('TELEGRAM_BOT_TOKEN'), + launchOptions: { + webhook: { + domain: 'domain.tld', + hookPath: '/secret-path', + } + } + }), + inject: [ConfigService], +}); +``` diff --git a/website/sidebars.js b/website/sidebars.js index 8765a2e..7833f91 100644 --- a/website/sidebars.js +++ b/website/sidebars.js @@ -1,6 +1,5 @@ module.exports = { someSidebar: { - Docusaurus: ['doc1', 'doc2', 'doc3'], - Features: ['mdx'], + 'Getting Started': ['installation', 'telegraf-methods', 'bot-injection', 'async-configuration', 'webhooks'], }, };