Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BigQueryの新レイアウトのカラムの省略表示を外す #41

Open
takegue opened this issue Sep 25, 2022 · 0 comments
Open

BigQueryの新レイアウトのカラムの省略表示を外す #41

takegue opened this issue Sep 25, 2022 · 0 comments
Assignees

Comments

@takegue
Copy link
Owner

takegue commented Sep 25, 2022

BigQuery 新UIによるカラム名の省略表示

BigQueryの新UIにおいて、いくつか不満があるが
その一つにカラム名の表示の省略がある。

特にstruct型に対する表示が好ましくなく、次のような表示となる。

image

ツールチップを表示さればカラム名は表示されるがコピーもできなくなるため端的に煩わしい。
これを解消するためのスニペットを紹介する。

スニペット適用前後での変化

before after

スニッペット

$$('th[aria-describedby]').forEach(
    n => {
      const column_name = $('#' + n.getAttribute('aria-describedby')).textContent;
      $("b", n).textContent = column_name;
      n.replaceChildren($("b", n));
      n.style = `width: ${column_name.length}rem;`
    }
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant