GithubHelp home page GithubHelp logo

calc() statistics about css-almanac HOT 5 OPEN

leaverou avatar leaverou commented on August 25, 2024 5
calc() statistics

from css-almanac.

Comments (5)

Crissov avatar Crissov commented on August 25, 2024 1

Is calc() used to compute constant non-integer values? If so, which ones?

from css-almanac.

LeaVerou avatar LeaVerou commented on August 25, 2024

Nice one @Crissov, added it to the list!

from css-almanac.

Crissov avatar Crissov commented on August 25, 2024

😊 Itʼs not that I desperately want proof to support phi (which is also unlikely to show up because sqrt() is too new). I am generally curious because I think I have seen such calculations in the wild.

from css-almanac.

LeaVerou avatar LeaVerou commented on August 25, 2024

For the properties that calc() is used in, it's enough to traverse values and keep track of properties whose value contains calc(.

For the rest, we can either extract uses of calc() and create a parse tree. Hopefully we can repurpose an expression parser (possibly this?), or wing it with regexes.

  • For units, we can match [a-z]+ after numbers and keep a tally
  • For calculation complexity, it depends on how we define this. We could guesstimate by the number of opening parens and operators, or by the depth of the tree, which we can either directly measure if we're parsing
  • Regarding constants, I suppose if there are no var() terms, or dimension tokens, we can conclude this is a constant?

from css-almanac.

LeaVerou avatar LeaVerou commented on August 25, 2024

Just pushed JS for this. In addition to the metrics we have discussed, I'm also counting properties in which calc() appears.

Sample output for the Smashing Magazine CSS:

{
	"total": 276,
	"properties": {
		"font-size": 73,
		"width": 40,
		"padding": 23,
		"margin": 17,
		"margin-top": 16,
		"margin-bottom": 16,
		"top": 12,
		"max-width": 9,
		"padding-top": 9,
		"height": 8,
		"margin-left": 7,
		"line-height": 7,
		"padding-left": 7,
		"left": 6,
		"margin-right": 6,
		"min-height": 4,
		"right": 4,
		"bottom": 3,
		"grid-row-gap": 2,
		"transform": 2,
		"max-height": 1,
		"padding-bottom": 1,
		"background-position": 1,
		"background-size": 1,
		"grid-template-columns": 1
	},
	"units": {
		"vw": 220,
		"em": 184,
		"px": 65,
		"%": 43,
		"rem": 22,
		"vh": 21,
		"deg": 2
	},
	"number_of_different_units": {
		"1": 10,
		"2": 262,
		"3": 4
	},
	"operators": {
		"+": 237,
		"-": 68,
		"/": 20,
		"*": 15
	},
	"number_of_operators": {
		"0": 1,
		"1": 230,
		"2": 32,
		"3": 8,
		"4": 4,
		"6": 1
	},
	"number_of_parens": {
		"0": 251,
		"1": 18,
		"2": 6,
		"4": 1
	},
	"constants": []
}

from css-almanac.

Related Issues (20)

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.