Skip to content

Commit 48b07ed

Browse files
committed
ci(primitives): transition to new css primitives
GitHub no longer distributes primitives in JSON format. Also, the names of the values (CSS variables) have changed. Most of the new names correspond 1-to-1 with one of the old names. Some colors have also changed slightly (e.g. `fg-default`), but otherwise remain mostly the same. See https://primer.style/foundations/primitives/migrating
1 parent 4f44a5c commit 48b07ed

File tree

2 files changed

+98
-9
lines changed

2 files changed

+98
-9
lines changed

.github/workflows/csstolua.lua

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
local res = {}
2+
3+
local function set(cssvar, v)
4+
local before, after = cssvar:match('^(.+)%-+(.+)$')
5+
vim.print({ before = before, after = after })
6+
if not after then
7+
res[tonumber(cssvar) or cssvar] = v
8+
return
9+
end
10+
11+
after = tonumber(after) or after
12+
local cur = res
13+
for k in before:gmatch('[^%-_]+') do
14+
k = tonumber(k) or k
15+
cur[k] = cur[k] or {}
16+
cur = cur[k]
17+
end
18+
19+
if type(cur[after]) == 'table' then
20+
cur, after = cur[after], 'default'
21+
end
22+
assert(cur[after] == nil or cur[after] == v)
23+
cur[after] = v
24+
end
25+
26+
local function print_recur(value, _ind)
27+
_ind = _ind or 0
28+
29+
if type(value) == 'table' then
30+
io.write('setmt {')
31+
_ind = _ind + 2
32+
33+
for k, v in pairs(value) do
34+
io.write(('\n%s[%q] = '):format(_ind, k))
35+
print_recur(v, _ind)
36+
io.write(',\n')
37+
end
38+
39+
_ind = _ind - 2
40+
io.write(('%s}'):format(_ind))
41+
else
42+
io.write(('%q'):format(value))
43+
end
44+
end
45+
46+
local defs = {}
47+
for ln in io.lines() do
48+
local k, v = ln:match('^%s*%-%-(%w.-)%s*:%s*(.-)%s*;%s*$')
49+
if k then
50+
table.insert(defs, { k, v })
51+
end
52+
end
53+
54+
table.sort(defs, function(a, b)
55+
return a[1] > b[1]
56+
end)
57+
58+
for _, kv in ipairs(defs) do
59+
set(unpack(kv))
60+
end
61+
62+
assert(res.scale == nil)
63+
res.scale = {}
64+
for color, scale in pairs(res.base.color) do
65+
res.scale[color] = {}
66+
67+
for i, v in pairs(scale) do
68+
res.scale[color][i + 1] = v
69+
end
70+
end
71+
72+
io.write([=[
73+
local mt = {
74+
__index = function(_, k)
75+
error('invalid index: ' .. k)
76+
end,
77+
}
78+
local function setmt(tbl)
79+
return setmetatable(tbl, mt)
80+
end
81+
local M = ]=])
82+
83+
print_recur(res)
84+
io.write('\n')

.github/workflows/update-color-primitives.yml

+14-9
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@ name: Get/Update Primer Color Primitives
22

33
env:
44
_DEST_DIR: "${{ github.workspace }}/lua/github-theme/palette/primitives"
5-
_JSON_DIR: "${{ github.workspace }}/node_modules/@primer/primitives/dist/json/colors"
5+
_SRC_DIR: "${{ github.workspace }}/node_modules/@primer/primitives/dist/internalCss"
66
_LICENSE_GLOB: "${{ github.workspace }}/node_modules/@primer/primitives/[Ll][Ii][Cc][Ee][Nn][Ss][Ee]*"
77
_PRIMITIVES_PKGJSON: "${{ github.workspace }}/node_modules/@primer/primitives/package.json"
8+
_CSSTOLUA: "${{ github.workspace }}/.github/workflows/csstolua.lua"
89

910
on:
1011
workflow_dispatch:
1112
schedule:
12-
# 3x per week (every other day) at 12:40pm Pacific Time
13-
- cron: "40 19 * * 1,3,5"
13+
# once a week, every Monday at 12:40pm Pacific Time
14+
- cron: "40 19 * * 1"
1415

1516
jobs:
16-
get-colors:
17+
install-primitives:
1718
runs-on: ubuntu-latest
1819
permissions:
1920
checks: write
@@ -25,6 +26,9 @@ jobs:
2526

2627
steps:
2728
- uses: actions/checkout@v4
29+
- uses: rhysd/action-setup-vim@v1
30+
with:
31+
neovim: true
2832

2933
- uses: actions/setup-node@v4
3034
with:
@@ -34,21 +38,22 @@ jobs:
3438
- run: npm i @primer/primitives@latest
3539

3640
- run: |
37-
set -u +f
41+
set -eu +f
3842
shopt -s nocaseglob failglob
3943
license="$(<$_LICENSE_GLOB)"
4044
rm -r "$_DEST_DIR" || :
4145
mkdir -p "$_DEST_DIR"
42-
cd "$_JSON_DIR"
46+
cd "$_SRC_DIR"
4347
4448
if jq -e .version "$_PRIMITIVES_PKGJSON"; then
4549
version="M._VERSION = vim.json.decode([=[$(jq -e .version "$_PRIMITIVES_PKGJSON")]=], { luanil = { object = false, array = false } })"
4650
fi
4751
48-
for file in *.json; do
49-
cat >|"${_DEST_DIR}/${file%.json}.lua" <<EOF
52+
for file in *.css; do
53+
values="$(nvim -l "$_CSSTOLUA" < "$file")"
54+
cat >| "${_DEST_DIR}/${file%.css}.lua" <<EOF
5055
-- NOTE: THIS IS AN AUTO-GENERATED FILE. DO NOT EDIT BY-HAND.
51-
local M = vim.json.decode([=[$(<"$file")]=], { luanil = { object = false, array = false } })
56+
${values}
5257
${version-}
5358
M._LICENSE = [=[
5459
$license]=]

0 commit comments

Comments
 (0)