-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bc78dd3
commit c5852a6
Showing
4 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: Заголовок у блоков с чертежами на сайте | ||
tags: [design, website] | ||
--- | ||
|
||
В каждой статье сайта присутствует множество чертежей и зачастую их трудно увидеть в общем потоке текста. Менять отображение из однострочного текста в многострочный не кажется интересным решением, так как текстовое представление некоторых чертежей может быть просто огромными. Как же быть? | ||
|
||
<!-- truncate --> | ||
|
||
Спасибо читателям, которые не стесняются выражать свои претензии и помогают улучшать визуальную составляющую сайта. Подумав и прикинув, решил добавить заголовок у всех блоков на сайте, где публикуются чертежи *Factorio*. А чтобы они не пересекались с другими блоками, пришлось делать обертку и копаться в коде *Docusaurus*. | ||
|
||
В общем, сгенерировал обертку для компонента *Docusaurus*: | ||
|
||
``` | ||
npm run swizzle @docusaurus/theme-classic CodeBlock -- --wrap | ||
``` | ||
|
||
А в сгенерированном классе обёртки уже добавил свой заголовок для чертежей: | ||
|
||
```jsx | ||
import React from 'react'; | ||
import CodeBlock from '@theme-original/CodeBlock'; | ||
import type CodeBlockType from '@theme/CodeBlock'; | ||
import type {WrapperProps} from '@docusaurus/types'; | ||
|
||
type Props = WrapperProps<typeof CodeBlockType>; | ||
|
||
export default function CodeBlockWrapper(props: Props): JSX.Element { | ||
// добавил вот это, чтобы заговок генерировался только для чертежей | ||
const defaultTitle = props.className?.toString() === "language-blueprint" ? "blueprint" : ""; | ||
return ( | ||
<> | ||
<CodeBlock {...props} title={defaultTitle} /> | ||
</> | ||
); | ||
} | ||
|
||
``` | ||
И вуаля, теперь блоки чертежей более заметны, причём работает для всего сайта и не портит другие блоки: | ||
![выделение чертежей](./screenshot.01.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters