horarios-v3/src/BarraSuperior.tsx

102 lines
3.0 KiB
TypeScript
Raw Normal View History

2021-01-14 23:24:55 +00:00
import { estilosGlobales } from "./Estilos";
import { StyleSheet, css } from "aphrodite";
import { numWallpaper, setNumWallpaper } from "./Store";
2021-03-17 23:51:29 +00:00
const totalWallpapers = 5;
2021-01-14 23:24:55 +00:00
2021-03-01 21:38:39 +00:00
const e = StyleSheet.create({
contCambiador: {
userSelect: "none"
},
boton: {
cursor: "pointer",
textDecoration: "underline",
"::before": {
fontSize: "1rem",
transform: "translateY(0.2rem)"
2021-01-14 23:24:55 +00:00
}
2021-03-01 21:38:39 +00:00
},
botonDesactivado: {
cursor: "not-allowed",
textDecoration: "none"
},
botonLeft: {
paddingRight: "0.5rem",
marginRight: "0.25rem"
},
botonRight: {
paddingLeft: "0.5rem",
marginRight: "0.25rem"
}
});
2021-01-14 23:24:55 +00:00
2021-03-01 21:38:39 +00:00
const retrocederWallpaper = () => {
const num = numWallpaper();
if (num > 0) {
setNumWallpaper(num - 1);
localStorage.setItem("num-img", (num - 1).toString());
} else {
setNumWallpaper(totalWallpapers);
localStorage.setItem("num-img", (totalWallpapers).toString());
}
};
2021-01-14 23:24:55 +00:00
2021-03-01 21:38:39 +00:00
const avanzarWallpaper = () => {
const num = numWallpaper();
if (num < totalWallpapers) {
setNumWallpaper(num + 1);
localStorage.setItem("num-img", (num + 1).toString());
} else {
setNumWallpaper(0);
localStorage.setItem("num-img", (0).toString());
}
};
2021-01-14 23:24:55 +00:00
2021-03-01 21:38:39 +00:00
function CambiadorImg() {
2021-01-14 23:24:55 +00:00
return <div className={css(estilosGlobales.inlineBlock, e.contCambiador)}>
<span className={css(estilosGlobales.contenedor, estilosGlobales.inlineBlock)}>
<i
className={"ph-arrow-left " + css(e.boton, e.botonLeft, estilosGlobales.contenedorCursorSoft)}
2021-01-14 23:24:55 +00:00
onClick={retrocederWallpaper}
2021-03-03 13:27:21 +00:00
title={"Cambiar imagen de fondo"}
2021-01-14 23:24:55 +00:00
/>
Img. {numWallpaper() + 1}
<i
className={"ph-arrow-right " + css(e.boton, e.botonRight, estilosGlobales.contenedorCursorSoft)}
2021-01-14 23:24:55 +00:00
onClick={avanzarWallpaper}
2021-03-03 13:27:21 +00:00
title={"Cambiar imagen de fondo"}
2021-01-14 23:24:55 +00:00
/>
</span>
</div>;
}
2021-03-03 13:27:21 +00:00
const estilos = StyleSheet.create({
tituloPrincipal: {
fontWeight: "bold"
}
});
2021-01-14 23:24:55 +00:00
2021-03-03 13:27:21 +00:00
export function BarraSuperior() {
2021-01-14 23:24:55 +00:00
return <header>
2021-03-03 13:27:21 +00:00
<span className={css(
2021-01-14 23:24:55 +00:00
estilosGlobales.contenedor,
estilosGlobales.inlineBlock,
estilos.tituloPrincipal
)}>
Horarios Unsa
2021-03-03 13:27:21 +00:00
</span>
2021-03-04 13:20:20 +00:00
<a href="https://github.com/Araozu/horarios-unsa-2/" target="_blank" title={"Ver codigo fuente en GitHub"}
className={css(
estilosGlobales.contenedor,
estilosGlobales.inlineBlock,
estilosGlobales.contenedorCursor
)}>
2021-01-14 23:24:55 +00:00
GitHub
<i class="ph-arrow-up-right"/>
</a>
<CambiadorImg/>
2021-01-14 23:24:55 +00:00
<span className={css(estilosGlobales.contenedor, estilosGlobales.inlineBlock)}>2021-A</span>
<span className={css(estilosGlobales.contenedor, estilosGlobales.inlineBlock)}>Ingeniería de Sistemas</span>
</header>;
}