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

Osnova pro lekce 6, 7 a 8 v JS2 #606

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions daweb/js2/architektura/crud.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## CRUD

Zkratka CRUD je používána pro označení základních operací nad daty v databázi. Jedná se o operace **C**reate, **R**ead, **U**pdate a **D**elete. V případě frontendových aplikací nikdy nepřistupujeme k databázi přímo, nýbrž vždy přes webové API. V tomto případě tyto operace provádíme pomocí HTTP metod POST, GET, PUT a DELETE. Všechny tyto metody jsme si již dříve vyzkoušeli. V této části si ukážeme, že na základě těchto operací si můžeme vytvořit představu a tom, jak vnitřně funguje většina webových aplikací.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

V případě frontendových aplikací nikdy nepřistupujeme k databázi přímo, nýbrž vždy přes webové API.
Místo nikdy bych napsal většinou. Třeba Firebase nebo SurrealDB už mají rovnou webové API, a jednoduché CRUD aplikace je možné napsat přímo frontend proti databázi, bez backendu.

7 changes: 7 additions & 0 deletions daweb/js2/architektura/entry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
title: Architektura JSX aplikací
lead: Hluběji rozebereme jak strukturovat frontendové aplikace založené na čistém JSX.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Před jak má být čárka.

access: 'claim'
sections:
- dotaz-patch
- crud

3 changes: 3 additions & 0 deletions daweb/js2/architektura/patch-delete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Dotaz PATCH

Kromě dotazu GET a POST existují ještě dotazy PATCH a DELETE, který slouží k aktualizaci nějakého záznamu.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Kromě dotazu GET a POST existují ještě dotazy PATCH a DELETE, který slouží k aktualizaci nějakého záznamu.

Napsal bych:
Kromě metod požadavků GET a POST existují ještě metody PUT a DELETE. PUT slouží k aktualizaci nějakého záznamu, DELETE záznam smaže.

PATCH bych úplně vynechal, nekomplikoval byl to rozdílem mezi PUT a PATCH.

2 changes: 1 addition & 1 deletion daweb/js2/entry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ lessons:
- server-komunikace
- podminene-zobrazeni
- seznamy-parametry
- posluchace
- posilani-dat
- architektura
- cloud-db
- cafe-lora-1
- cafe-lora-2
Expand Down
2 changes: 2 additions & 0 deletions daweb/js2/podminene-zobrazeni/ternarni-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ const ShopItem = (props) => {
);
};
```

```

Takovýto kód už však může být hůře čitelný, takže je dobré jej používat s mírou a uvážením.
```
5 changes: 0 additions & 5 deletions daweb/js2/posluchace/entry.yml

This file was deleted.

1 change: 0 additions & 1 deletion daweb/js2/posluchace/formulare.md

This file was deleted.

91 changes: 0 additions & 91 deletions daweb/js2/vetsi-aplikace/lesson.md

This file was deleted.