SpaceX API ๐์์ ๋ ๋ง์ ๋ฐ์ดํฐ๋ฅผ ๊ณต์ ํ ์ ์๋ Vista
8175 ๋จ์ด cssjavascripthtmlspacex
Literal Strings(ES6) ํด๋ผ์ด์ธํธ์ ๋ํ ๋ ๋๋ง ์์ ์ด ๋น ๋ฅด๊ฒ ์งํ๋ฉ๋๋ค.
Shadow Dom์ ์กฐ์ํ ํ์๊ฐ ์์ผ๋ฉฐ ์ฌ์ฉ์ ์ ์ ์์๋ฅผ ๋ง๋ค ํ์๊ฐ ์์ต๋๋ค. ํ ํ๋ฆฟ์ ์ฌ์ฉํ์ฌ ๊ธฐ๋ฅ์ ์ํํ๊ฑฐ๋ Javascript๋ฅผ ์ง์ ์ฝ๋๋ก ๊ตฌํํ๊ณ HTML ์์๋ฅผ ํฌํจํ๊ฑฐ๋ ๋ด๋ถ HTML์ ํฌํจํ๋ ์ฝํ ์ธ ์ ์ฐธ์ฌํ์ง ์์๋ ๋ฉ๋๋ค.
El famoso innerHTML:
contenedorCardsData.innerHTML += `
<div class="contenedorCardsItems">
<h4>${element.serial}</h4>
<div class="contenedorStatus">
<span class="blue">${element.type}</span>
<span class="yellow">${element.status}</span>
</div>
<div class="contenedorTextos">
<p class="descripcion">${element.last_update}</p>
<p class="fechaLanzamiento">Fecha de Lanzamiento</p>
<p class="fechaLanzamientoContent">${element.original_launch}</p>
</div>
</div>
`;
} else {
// Pasar cรณdigo para mostrar advertencia de que no existen resultados
}
}
Siendo este un desarrollo que me tomรณ mas o menos 15 min crearlo, tiene muchas cosas que mejorar por lo que puedes agrear tus propias mejoras, puedes agregar filtros, de hecho el botรณn del filtro esta listado en la UI solo debes agregarle funcionalidad y practicar ya que el cรณdigo para pasar peticiones fetch lo tienes acรก:
async function busqueda() {
var categorie = document.querySelector('#categoria').value;
var spacexApi = await fetch(`https://api.spacexdata.com/v4/${categorie}`);
return spacexApi;
}
Tres lineas de cรณdigo que te permiten obtener la respuesta y poder manejarla como promesa para poder hacer con ella lo que quieras.
Veamos como se ve el diseรฑo ์ต์ข ๐
๋ก๋ ์์๋ ์๋ง๋ฆด๋ก์ฆ ํฐ์์ด ์๋ ์ ๋๋ฉ์ด์ ์ ๋ก๋ํ ๋, ์ฝ๋๋ฅผ ์ ์ฅํ ๋์ ๋๋ค.
๐ Solo se basa en un par de parametros que pasas a travรฉs de Fetch
Como siempre, trato de dejar el cรณdigo de la forma mas entendible posible para que puedas reutilizar los estilos en cualquiera de tus frameworks favoritos, finalmente cuando envias la peticiรณn a travรฉs de fetch puedes manejar directamente esa respuesta, gracias a que el endpoint de SpaceX API te genera el resultado en base al query que estas haciendo y sin usar nรญ una sola clase.
ยฟConocimiento Importantes Para el Desarrollo?
:root {
--main-bg-color: #0E0E0E;
--secondary-bg-color: #161616;
--blue-color: #4E54FF;
--yellow-color: #F4E236;
--bg-cards: rgba(255, 255, 255, 0.103);
}
}
header {
height: 200px;
width: 100%;
display: grid;
grid-template-columns: 20% 30% 20% 15% 15%;
grid-template-rows: 100px;
}
.loading::before {
content: "";
width: 40px;
height: 100%;
background: linear-gradient(96.4deg, rgba(255, 255, 255, 0) 4.54%, rgba(255, 255, 255, 0.265283) 57.15%, rgba(255, 255, 255, 0) 94.26%);
position: absolute;
opacity: .4;
animation: move 1s infinite;
}
//el keyframe
@keyframes move {
0% {
transform: translateX(0px) rotate(0deg);
}
50% {
transform: translateX(200px) rotate(20deg);
}
100% {
transform: translateX(0px) rotate(0deg);
}
}
.listaSeleccion {
display: flex;
justify-content: center;
align-items: center;
}
.listaSeleccion select {
display: flex;
justify-content: center;
align-items: center;
width: 100px;
background-color: transparent;
border: none;
outline: none;
font-family: Montserrat;
font-weight: 500;
color: var(--main-yellow);
}
.listaSeleccion select * {
background-color: var(--main-blue);
border: none;
box-shadow: none;
}
.listaSeleccion select>option {
background-color: var(--main-blue);
border: none;
box-shadow: none;
color: var(--main-yellow);
}
search.addEventListener('click', function(e) {
let select = categorie.value;
let string = txtSearch.value;
busqueda()
.then(data => { return data.json() })
.then(res => {
// console.log(res);
contenedorCardsData.innerHTML = "";
if (select == "capsules") {
res.forEach(element => {
busquedaCapsules(element, string);
})
} else if (select == "history") {
res.forEach(element => {
buscarHistory(element, string);
})
}
});
});
.contenedorFilter span {
width: 25px;
height: 2px;
margin: 3px;
background-color: var(--main-blue);
transition: .4s;
cursor: pointer;
}
.contenedorFilter:hover span {
width: 35px;
}
.contenedorFilter:hover span:nth-child(2) {
width: 10px;
}
.contenedorFilter span:nth-child(2) {
width: 15px;
height: 2px;
margin: 3px;
background-color: var(--main-yellow);
}
.contenedorFilter span:nth-child(3) {
width: 10px;
height: 2px;
margin: 3px;
background-color: var(--main-yellow);
}
.contenedorFilter:hover span:nth-child(3) {
width: 5px;
}
Sรญ no conoces CSS, JS te costarรก mil veces .
Este cรณdigo no ha sido testeado, por lo tanto lo puedes mejorar mil veces mas
Parte Importante de tu aprendizaje en web design, es la utilizaciรณn de APIs y manejo del DOM con un enfoque en desarrollo web 2021, evita esmerarte en que tu aplicaciรณn sea compatible con IE, ya tiene una muerte anunciada asรญ que mejorar preparate para adentrarte en del desarrollo mordenos, APIS, Frameworks, Javascript Moderno...
Es el encarga de cambiar la propiedad de display none a block y ๊ทธ ๋ฐ๋, puedes animar la transiciรณn del elemento contenedor como prรกctica o simplemente dejarlo como estรก actualmente.
Este es mi correo profesional [email protected] , si me escribes te aseguro que tendrรกs una respuesta.
์ค๋ช ,
ํธ์ธ A. ์๋ง์ผ
Link al repo
Link a la demo
Reference
์ด ๋ฌธ์ ์ ๊ดํ์ฌ(SpaceX API ๐์์ ๋ ๋ง์ ๋ฐ์ดํฐ๋ฅผ ๊ณต์ ํ ์ ์๋ Vista), ์ฐ๋ฆฌ๋ ์ด๊ณณ์์ ๋ ๋ง์ ์๋ฃ๋ฅผ ๋ฐ๊ฒฌํ๊ณ ๋งํฌ๋ฅผ ํด๋ฆญํ์ฌ ๋ณด์๋ค https://dev.to/joseamayadev/vista-para-extraer-datos-de-cohetes-desde-spacex-api-4jdiํ ์คํธ๋ฅผ ์์ ๋กญ๊ฒ ๊ณต์ ํ๊ฑฐ๋ ๋ณต์ฌํ ์ ์์ต๋๋ค.ํ์ง๋ง ์ด ๋ฌธ์์ URL์ ์ฐธ์กฐ URL๋ก ๋จ๊ฒจ ๋์ญ์์ค.
์ฐ์ํ ๊ฐ๋ฐ์ ์ฝํ ์ธ ๋ฐ๊ฒฌ์ ์ ๋ (Collection and Share based on the CC Protocol.)
์ข์ ์นํ์ด์ง ์ฆ๊ฒจ์ฐพ๊ธฐ
๊ฐ๋ฐ์ ์ฐ์ ์ฌ์ดํธ ์์ง
๊ฐ๋ฐ์๊ฐ ์์์ผ ํ ํ์ ์ฌ์ดํธ 100์ ์ถ์ฒ ์ฐ๋ฆฌ๋ ๋น์ ์ ์ํด 100๊ฐ์ ์์ฃผ ์ฌ์ฉํ๋ ๊ฐ๋ฐ์ ํ์ต ์ฌ์ดํธ๋ฅผ ์ ๋ฆฌํ์ต๋๋ค