code refactoring

This commit is contained in:
sairaj mote 2024-01-13 02:25:55 +05:30
parent 3bd8fe48b6
commit c475ce20d7
7 changed files with 479 additions and 627 deletions

View File

@ -331,114 +331,6 @@ ul {
margin-left: 0.5rem; margin-left: 0.5rem;
} }
.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #50cb93;
}
.token.punctuation,
.token.tag {
color: #29b6f6;
}
.token.attr-name,
.token.namespace,
.token.deleted {
color: #1de9b6;
}
.token.function-name {
color: #6196cc;
}
.token.boolean,
.token.number,
.token.function {
color: #f08d49;
}
.token.property,
.token.class-name,
.token.constant,
.token.symbol {
color: #f8c555;
}
.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
color: #ff6767;
}
.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
color: #84ffff;
}
.token.operator,
.token.entity,
.token.url {
color: #67cdcc;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
.token.inserted {
color: green;
}
pre {
max-width: 100%;
margin: 1rem 0;
padding: 0 1.5rem;
overflow-x: auto;
font-size: 0.9rem;
font-weight: 500;
white-space: pre;
border-radius: 0.5rem;
background: rgba(0, 0, 0, 0.9);
line-height: 1.7;
}
code {
border-radius: 0.3rem;
font-weight: 400;
padding: 0.2rem 0.4rem;
background: rgba(var(--text-color), 0.1);
color: rgba(255, 255, 255, 0.9);
}
code * {
color: rgba(255, 255, 255, 0.9);
font-family: "Roboto Mono", monospace;
}
pre code {
line-height: 1.4;
border-radius: none;
background: none;
width: 100%;
}
h1, h1,
h2, h2,
h3, h3,

File diff suppressed because one or more lines are too long

View File

@ -46,6 +46,7 @@ strong {
line-height: 1.7; line-height: 1.7;
color: rgba(var(--text-color), 0.9); color: rgba(var(--text-color), 0.9);
} }
img { img {
object-fit: cover; object-fit: cover;
} }
@ -53,6 +54,7 @@ img {
a { a {
color: inherit; color: inherit;
text-decoration: none; text-decoration: none;
&:focus-visible { &:focus-visible {
box-shadow: 0 0 0 0.1rem rgba(var(--text-color), 1) inset; box-shadow: 0 0 0 0.1rem rgba(var(--text-color), 1) inset;
} }
@ -67,12 +69,15 @@ button {
a:any-link:focus-visible { a:any-link:focus-visible {
outline: rgba(var(--text-color), 1) 0.1rem solid; outline: rgba(var(--text-color), 1) 0.1rem solid;
} }
sm-button { sm-button {
--border-radius: 0.3rem; --border-radius: 0.3rem;
} }
ul { ul {
list-style: none; list-style: none;
} }
.table { .table {
display: grid; display: grid;
gap: 0.5rem; gap: 0.5rem;
@ -84,45 +89,56 @@ ul {
border-collapse: separate; border-collapse: separate;
border-spacing: 1rem 1.5rem; border-spacing: 1rem 1.5rem;
background-color: rgba(var(--text-color), 0.04); background-color: rgba(var(--text-color), 0.04);
p:only-of-type { p:only-of-type {
margin-bottom: 0; margin-bottom: 0;
} }
} }
.tr { .tr {
display: grid; display: grid;
gap: 1rem; gap: 1rem;
padding: 1rem; padding: 1rem;
grid-template-columns: 11rem 1fr; grid-template-columns: 11rem 1fr;
width: 100%; width: 100%;
&:nth-of-type(odd) { &:nth-of-type(odd) {
background-color: rgba(var(--text-color), 0.04); background-color: rgba(var(--text-color), 0.04);
} }
p { p {
min-width: 30ch; min-width: 30ch;
} }
} }
.flex { .flex {
display: flex; display: flex;
} }
.grid { .grid {
display: grid; display: grid;
} }
.hide { .hide {
opacity: 0; opacity: 0;
pointer-events: none; pointer-events: none;
} }
.hide-completely { .hide-completely {
display: none !important; display: none !important;
} }
.no-transformations { .no-transformations {
transform: none !important; transform: none !important;
} }
.overflow-ellipsis { .overflow-ellipsis {
width: 100%; width: 100%;
overflow: hidden; overflow: hidden;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.breakable { .breakable {
overflow-wrap: break-word; overflow-wrap: break-word;
word-wrap: break-word; word-wrap: break-word;
@ -133,21 +149,27 @@ ul {
-webkit-hyphens: auto; -webkit-hyphens: auto;
hyphens: auto; hyphens: auto;
} }
.full-bleed { .full-bleed {
grid-column: 1/4; grid-column: 1/4;
} }
.h1 { .h1 {
font-size: 2.5rem; font-size: 2.5rem;
} }
.h2 { .h2 {
font-size: 2rem; font-size: 2rem;
} }
.h3 { .h3 {
font-size: 1.4rem; font-size: 1.4rem;
} }
.h4 { .h4 {
font-size: 1rem; font-size: 1rem;
} }
.h5 { .h5 {
font-size: 0.8rem; font-size: 0.8rem;
} }
@ -155,262 +177,198 @@ ul {
.uppercase { .uppercase {
text-transform: uppercase; text-transform: uppercase;
} }
.capitalize { .capitalize {
text-transform: capitalize; text-transform: capitalize;
} }
.flex { .flex {
display: flex; display: flex;
} }
.grid { .grid {
display: grid; display: grid;
} }
.grid-3 { .grid-3 {
grid-template-columns: 1fr auto auto; grid-template-columns: 1fr auto auto;
} }
.flow-column { .flow-column {
grid-auto-flow: column; grid-auto-flow: column;
} }
.gap-0-5 { .gap-0-5 {
gap: 0.5rem; gap: 0.5rem;
} }
.gap-1 { .gap-1 {
gap: 1rem; gap: 1rem;
} }
.gap-1-5 { .gap-1-5 {
gap: 1.5rem; gap: 1.5rem;
} }
.gap-2 { .gap-2 {
gap: 2rem; gap: 2rem;
} }
.gap-3 { .gap-3 {
gap: 3rem; gap: 3rem;
} }
.text-align-right { .text-align-right {
text-align: right; text-align: right;
} }
.align-start { .align-start {
align-items: flex-start; align-items: flex-start;
} }
.align-center { .align-center {
align-items: center; align-items: center;
} }
.text-center { .text-center {
text-align: center; text-align: center;
} }
.justify-start { .justify-start {
justify-content: start; justify-content: start;
} }
.justify-center { .justify-center {
justify-content: center; justify-content: center;
} }
.justify-right { .justify-right {
margin-left: auto; margin-left: auto;
} }
.align-self-center { .align-self-center {
align-self: center; align-self: center;
} }
.justify-self-center { .justify-self-center {
justify-self: center; justify-self: center;
} }
.justify-self-start { .justify-self-start {
justify-self: start; justify-self: start;
} }
.justify-self-end { .justify-self-end {
justify-self: end; justify-self: end;
} }
.direction-column { .direction-column {
flex-direction: column; flex-direction: column;
} }
.space-between { .space-between {
justify-content: space-between; justify-content: space-between;
} }
.w-100 { .w-100 {
width: 100%; width: 100%;
} }
.color-0-8 { .color-0-8 {
color: rgba(var(--text-color), 0.8); color: rgba(var(--text-color), 0.8);
} }
.weight-400 { .weight-400 {
font-weight: 400; font-weight: 400;
} }
.weight-500 { .weight-500 {
font-weight: 500; font-weight: 500;
} }
.ripple { .ripple {
height: 8rem; height: 8rem;
width: 8rem; width: 8rem;
position: absolute; position: absolute;
border-radius: 50%; border-radius: 50%;
transform: scale(0); transform: scale(0);
background: radial-gradient( background: radial-gradient(circle,
circle, rgba(var(--text-color), 0.3) 0%,
rgba(var(--text-color), 0.3) 0%, rgba(0, 0, 0, 0) 50%);
rgba(0, 0, 0, 0) 50%
);
pointer-events: none; pointer-events: none;
} }
.interact { .interact {
position: relative; position: relative;
overflow: hidden; overflow: hidden;
cursor: pointer; cursor: pointer;
-webkit-tap-highlight-color: transparent; -webkit-tap-highlight-color: transparent;
} }
.observe-empty-state:empty { .observe-empty-state:empty {
display: none; display: none;
} }
.observe-empty-state:not(:empty) ~ .empty-state {
.observe-empty-state:not(:empty)~.empty-state {
display: none; display: none;
} }
.icon { .icon {
width: 1.5rem; width: 1.5rem;
height: 1.5rem; height: 1.5rem;
fill: rgba(var(--text-color), 0.9); fill: rgba(var(--text-color), 0.9);
} }
.button__icon { .button__icon {
height: 1.2rem; height: 1.2rem;
width: 1.2rem; width: 1.2rem;
&--left { &--left {
margin-right: 0.5rem; margin-right: 0.5rem;
} }
&--right { &--right {
margin-left: 0.5rem; margin-left: 0.5rem;
} }
} }
//Syntax highlighting
.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #50cb93;
}
.token.punctuation,
.token.tag {
color: #29b6f6;
}
.token.attr-name,
.token.namespace,
.token.deleted {
color: #1de9b6;
}
.token.function-name {
color: #6196cc;
}
.token.boolean,
.token.number,
.token.function {
color: #f08d49;
}
.token.property,
.token.class-name,
.token.constant,
.token.symbol {
color: #f8c555;
}
.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
color: #ff6767;
}
.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
color: #84ffff;
}
.token.operator,
.token.entity,
.token.url {
color: #67cdcc;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
.token.inserted {
color: green;
}
pre {
max-width: 100%;
margin: 1rem 0;
padding: 0 1.5rem;
overflow-x: auto;
font-size: 0.9rem;
font-weight: 500;
white-space: pre;
border-radius: 0.5rem;
background: rgba(0, 0, 0, 0.9);
line-height: 1.7;
}
code {
border-radius: 0.3rem;
font-weight: 400;
padding: 0.2rem 0.4rem;
background: rgba(var(--text-color), 0.1);
color: rgba(255, 255, 255, 0.9);
}
code * {
color: rgba(255, 255, 255, 0.9);
font-family: "Roboto Mono", monospace;
}
pre code {
line-height: 1.4;
border-radius: none;
background: none;
width: 100%;
}
//
h1, h1,
h2, h2,
h3, h3,
h4.h5 { h4.h5 {
font-family: "Poppins", sans-serif; font-family: "Poppins", sans-serif;
} }
h2 { h2 {
margin: 3rem 0 1rem 0; margin: 3rem 0 1rem 0;
text-transform: capitalize; text-transform: capitalize;
} }
main { main {
display: grid; display: grid;
height: 100%; height: 100%;
} }
#main_header { #main_header {
padding: 0.5rem 1.5rem; padding: 0.5rem 1.5rem;
border-bottom: 1px solid rgba(var(--text-color), 0.1); border-bottom: 1px solid rgba(var(--text-color), 0.1);
} }
#side_nav_button { #side_nav_button {
padding: 0.5rem; padding: 0.5rem;
margin-left: -0.5rem; margin-left: -0.5rem;
} }
.right { .right {
max-height: 100%; max-height: 100%;
overflow-y: auto; overflow-y: auto;
} }
#side_nav { #side_nav {
& > :last-child { &> :last-child {
padding-bottom: 3rem; padding-bottom: 3rem;
} }
h4 { h4 {
font-size: 0.9rem; font-size: 0.9rem;
letter-spacing: 0.08em; letter-spacing: 0.08em;
@ -418,27 +376,33 @@ main {
padding: 1.5rem; padding: 1.5rem;
} }
} }
.right { .right {
padding: 1.5rem; padding: 1.5rem;
h1 { h1 {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
} }
} }
.list { .list {
list-style: none; list-style: none;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-bottom: 0.8rem; margin-bottom: 0.8rem;
} }
.list__item { .list__item {
display: flex; display: flex;
padding: 0.8rem 1.5rem; padding: 0.8rem 1.5rem;
text-transform: capitalize; text-transform: capitalize;
&--active { &--active {
color: var(--accent-color); color: var(--accent-color);
background: rgba(var(--text-color), 0.06); background: rgba(var(--text-color), 0.06);
} }
} }
.card { .card {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -448,31 +412,39 @@ main {
min-width: min(24rem, 80%); min-width: min(24rem, 80%);
background-color: rgba(var(--text-color), 0.06); background-color: rgba(var(--text-color), 0.06);
} }
sm-carousel { sm-carousel {
margin-bottom: 1rem; margin-bottom: 1rem;
} }
sm-tab-header { sm-tab-header {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
} }
.page { .page {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding-bottom: 3rem; padding-bottom: 3rem;
} }
ol { ol {
padding: 0.6rem 1rem; padding: 0.6rem 1rem;
max-width: 75ch; max-width: 75ch;
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
li { li {
margin-bottom: 1rem; margin-bottom: 1rem;
&:last-of-type { &:last-of-type {
margin-bottom: 0; margin-bottom: 0;
} }
} }
} }
strong { strong {
max-width: 65ch; max-width: 65ch;
} }
strong.important { strong.important {
display: flex; display: flex;
padding: 0.5rem; padding: 0.5rem;
@ -481,6 +453,7 @@ strong.important {
color: rgba(0, 0, 0, 0.8); color: rgba(0, 0, 0, 0.8);
background-color: khaki; background-color: khaki;
} }
.highlight { .highlight {
display: inline-flex; display: inline-flex;
font-family: "Roboto Mono", monospace; font-family: "Roboto Mono", monospace;
@ -490,24 +463,29 @@ strong.important {
font-size: 0.9rem; font-size: 0.9rem;
line-height: 1.6; line-height: 1.6;
} }
#total_components_count { #total_components_count {
font-size: 4rem; font-size: 4rem;
} }
#components_selection_list { #components_selection_list {
display: grid; display: grid;
gap: 1.5rem; gap: 1.5rem;
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr)); grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
padding: 1.5rem 0 3rem 0; padding: 1.5rem 0 3rem 0;
} }
.comp-checkbox__title { .comp-checkbox__title {
margin-left: 0.5rem; margin-left: 0.5rem;
} }
.auto-grid-2 { .auto-grid-2 {
justify-content: center; justify-content: center;
justify-items: center; justify-items: center;
text-align: center; text-align: center;
grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
} }
.screenshot { .screenshot {
object-fit: cover; object-fit: cover;
object-position: top; object-position: top;
@ -517,50 +495,62 @@ strong.important {
justify-self: center; justify-self: center;
box-shadow: 0 0.5rem 1.5rem -0.5rem rgba(0, 0, 0, 0.3), 0 0 0 0.3rem black; box-shadow: 0 0.5rem 1.5rem -0.5rem rgba(0, 0, 0, 0.3), 0 0 0 0.3rem black;
} }
@media screen and (max-width: 640px) { @media screen and (max-width: 640px) {
main { main {
grid-template-rows: auto 1fr; grid-template-rows: auto 1fr;
grid-template-columns: 1fr; grid-template-columns: 1fr;
} }
} }
@media screen and (min-width: 640px) { @media screen and (min-width: 640px) {
sm-popup { sm-popup {
--width: 32rem; --width: 32rem;
} }
#main_header { #main_header {
padding: 1rem 1.5rem; padding: 1rem 1.5rem;
grid-area: main-header; grid-area: main-header;
} }
#side_nav_button { #side_nav_button {
display: none; display: none;
} }
main { main {
grid-template-columns: 14rem minmax(0, 1fr); grid-template-columns: 14rem minmax(0, 1fr);
grid-template-areas: "main-header main-header" ". ."; grid-template-areas: "main-header main-header" ". .";
} }
.right { .right {
display: grid; display: grid;
grid-template-columns: 1fr 90% 1fr; grid-template-columns: 1fr 90% 1fr;
& > * {
&>* {
grid-column: 2/3; grid-column: 2/3;
} }
} }
.page__title { .page__title {
font-size: 2.5rem; font-size: 2.5rem;
} }
#overview_page { #overview_page {
display: grid; display: grid;
gap: 1.5rem; gap: 1.5rem;
grid-template-columns: 1fr auto; grid-template-columns: 1fr auto;
& > div:first-of-type {
&>div:first-of-type {
grid-column: 2/3; grid-column: 2/3;
text-align: right; text-align: right;
} }
& > div:nth-of-type(2) {
&>div:nth-of-type(2) {
grid-row: 1/2; grid-row: 1/2;
} }
} }
} }
@media (any-hover: hover) { @media (any-hover: hover) {
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 0.5rem; width: 0.5rem;
@ -570,12 +560,14 @@ strong.important {
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: rgba(var(--text-color), 0.3); background: rgba(var(--text-color), 0.3);
border-radius: 1rem; border-radius: 1rem;
&:hover { &:hover {
background: rgba(var(--text-color), 0.5); background: rgba(var(--text-color), 0.5);
} }
} }
.list__item:hover { .list__item:hover {
background: rgba(var(--text-color), 0.1); background: rgba(var(--text-color), 0.1);
cursor: pointer; cursor: pointer;
} }
} }

View File

@ -115,24 +115,38 @@ template.innerHTML = /*html*/`
class SyntaxHighlighter extends HTMLElement { class SyntaxHighlighter extends HTMLElement {
static loaded = false; static loaded = false;
render = (language = 'javascript') => { escapeHtml = (str) => {
return str.replace(/&/g, '&')
.replace(/</g, '&lt;')
.replace(/\u00a0/g, ' ');
}
render = (language = 'html') => {
if (!Prism.languages.hasOwnProperty(language)) if (!Prism.languages.hasOwnProperty(language))
return console.error(`Language ${language} not supported`); return console.error(`Language ${language} not supported`);
const code = this.innerHTML; const code = this.innerHTML;
const highlightedCode = Prism.highlight(code, Prism.languages[language], language); // remove equal indentation from lines
const lines = code.split('\n');
const indent = lines.reduce((acc, line) => {
if (/^\s*$/.test(line)) return acc; // ignore empty lines
const lineIndent = line.match(/^\s*/)[0].length;
return Math.min(acc, lineIndent);
}, Infinity);
const regex = new RegExp(`^\\s{${indent}}`);
const formattedCode = lines.map(line => line.replace(regex, '')).join('\n');
this.innerHTML = ` this.innerHTML = `
<pre><code class="language-${language}">${highlightedCode}</code></pre> <pre><code class="language-${language}">${formattedCode}</code></pre>
`; `;
} }
connectedCallback() { connectedCallback() {
console.log('connected', SyntaxHighlighter.loaded);
if (!SyntaxHighlighter.loaded) { if (!SyntaxHighlighter.loaded) {
document.head.appendChild(template.content.cloneNode(true)); document.head.appendChild(template.content.cloneNode(true));
SyntaxHighlighter.loaded = true; SyntaxHighlighter.loaded = true;
} }
setTimeout(() => { if (this.querySelector('template')) {
this.render(this.getAttribute('language') || 'javascript'); this.innerHTML = this.querySelector('template').innerHTML;
}, 0); }
this.innerHTML = this.escapeHtml(this.innerHTML);
this.render(this.getAttribute('language') || 'html');
} }
disconnectedCallback() { disconnectedCallback() {

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long