Giter Site home page Giter Site logo

stopify's Introduction

🇬🇧 Hi! Welcome to my profile 👋🏻 ┃ 🇪🇸 ¡Hola! Bievenido a mi perfil 👋🏻

wakatime

stopify's People

Contributors

dependabot[bot] avatar ekzguille avatar

Watchers

 avatar  avatar

stopify's Issues

Cambiar flag provider de png a svg

Cambiar en UserInfo.vue - L33 de countryflags.io a lipis.github.io.

https://www.countryflags.io/${getUserInformation.country}/flat/64.png

<img
    class="usr-info-flag"
    :src="`https://www.countryflags.io/${getUserInformation.country}/flat/64.png`"
    :alt="getUserInformation.country">

https://lipis.github.io/flag-icon-css/flags/4x3/${getUserInformation.country.toLowerCase()}.svg

<img
    class="usr-info-flag"
    :src="`https://lipis.github.io/flag-icon-css/flags/4x3/${getUserInformation.country.toLowerCase()}.svg`"
    :alt="getUserInformation.country">

Changes on the architecture queries

Hacer en el loginRedirect la query al /me para obtener la info del usuario y así no hace falta que se haga la query en el /me porque el username se necesitará para las demás Querys (y guardarlo y recibirlo en el store vuex)

Estandarizar nombres largos

Implementar una función similar que permita tener la mima longitud de nombres:

function fixLenght(str = '', _offset = 10) {
const _str = str.trim();
const strLength = _str.length;
  if (strLength > _offset) {
   const newStr = _str.slice(0,-3).trim();
   return newStr.padEnd(newStr.length + 3, '...');   
  }
return _str;
} 

Componente 'NoImage'

Ya que es posible que se reutilice en más lugares el svg de 'no image', moverlo a un componente a parte.

Manage Empty responses

Manage responses when they come empty, i.e. in the case the user has no saved tracks.

Loadmore playlists bug

When querying the 3rd set of 10 playlists (30 in total) and user has 30 playlist in total the button is still clickable.

Actualizar estilos

  • Pantalla TOP
    • Ajustar la alineación de los botones (css grid quizá) para que quede más centrado.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.