Last active
August 13, 2020 13:25
-
-
Save hdoro/9513d67ce790995a262bab24e97d5eaa to your computer and use it in GitHub Desktop.
# supermercadosonline.com.br
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
# supermercadosonline.com.br | |
# Pre-render bem otimizadinho | |
Home* | |
# Form com validação | |
buscar cep -> CEP | |
# Um tanto de link de rodapé, essencialmente | |
escolher cidade de lista -> Cidade | |
# Carrega 100% no cliente | |
CEP | |
# Puxa direto da API deles | |
carregando CEP* | |
carregado -> página de CEP lindona | |
# Renderiza sem metatags porque não precisa | |
página de CEP lindona | |
# Pre-render *e* client-side render | |
Cidade | |
# Teremos uma lista entregue pela VIP Commerce com as cidades mais populares | |
É cidade destaque?* | |
Sim -> Cidade pré renderizada | |
Não -> Cidade renderizada no client | |
# SEO super sólido. Usamos o getStaticProps + getStaticPaths | |
Cidade pré renderizada | |
# SEO OK, mesmo template da pré-renderizada | |
# mas performance piorada e indexação desativada | |
# no Bing e outros mecanismos de busca que não rodam JS | |
Cidade renderizada no client | |
carregando cidade* | |
carregado -> página de Cidade client-side | |
página de Cidade client-side |
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
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
return $("h1", | |
{style: {color: "darkBlue"}}, | |
`The current state is: ${current_state_name}`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment