Coder Social home page Coder Social logo

minecraft-website's People

Contributors

villermen avatar

Watchers

 avatar  avatar

minecraft-website's Issues

Ditch Twig

Coding any presentation logic in Twig is horrible when data is not already in the presentation format. Better just use PHP as a templating language so I don't get stuck on trivial things like

{#
I regret choosing Twig over PHP for templating. This basically is array_chunk() and a natural case sorting
but in Twig after hours of messing around trying to find _simple_ solutions. Oh, you didn't think
preg_replace() was a thing right? Nope. I present to you: trim('$') * 1.0
#}
{% set donations = donations|sort((donation1, donation2) => (donation1.amount != donation2.amount
? donation2.amount|trim('$') * 1.0 <=> donation1.amount|trim('$') * 1.0
: donation1.date <=> donation2.date
)) %}
{% set thirdSize = (donations|length / 3)|round(0, 'floor') %}
{% set remainder = (donations|length % 3) %}
{% set tableSizes = (remainder == 2
? [thirdSize + 1, thirdSize, thirdSize + 1]
: (remainder == 1
? [thirdSize, thirdSize + 1, thirdSize]
: [thirdSize, thirdSize, thirdSize]
)) %}
{{ _self.donation_table(donations|slice(0, tableSizes[0])) }}
{{ _self.donation_table(donations|slice(tableSizes[0], tableSizes[1])) }}
{{ _self.donation_table(donations|slice(tableSizes[0] + tableSizes[1], tableSizes[2])) }}

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.