Skip to content

Commit 7891fa9

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 7891fa9

File tree

2 files changed

+90
-9
lines changed

2 files changed

+90
-9
lines changed

.github/workflows/csstolua.lua

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