> For the complete documentation index, see [llms.txt](https://lochiwei.gitbook.io/web/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lochiwei.gitbook.io/web/css/layout/system/lorem.md).

# Lorem

{% tabs %}
{% tab title="csb" %}
{% embed url="<https://codesandbox.io/embed/layout-system-0-1-1-uqriw?fontsize=14&hidenavigation=1&theme=dark>" %}
\<lorem> custom element
{% endembed %}
{% endtab %}

{% tab title="pure css" %}

```css
/* lorem (0.0.1) */
.lorem {
    --lorem-line-height: 8px;
    --lorem-color: rgb(0 0 0 / .1);
}

/* space between lorems */
.lorem + .lorem {
    margin-top: calc(var(--lorem-line-height) * 3);
}

/* lorem line style */
.lorem hr {
  height: var(--lorem-line-height);
  border: none;
  background: var(--lorem-color);
} 

/* last line */
.lorem hr:last-child {
  margin-right: 60%;
}

/* lorem image */
.lorem hr.image { /*dummy content*/
  padding-bottom: 50%;
} 

/* space between lines */
.lorem hr + hr {
    margin-top: var(--lorem-line-height);
}
```

{% endtab %}

{% tab title="👥 相關" %}

* [Doodle Ipsum](/web/master/fav.md#code)
  {% endtab %}

{% tab title="💾 程式" %}

* codepen ⟩&#x20;
  * [responsive grid: magazine](https://codepen.io/lochiwei/pen/abJwQQq?editors=0100) - use \<hr> for lorem line.
  * [\<lorem> prototype](https://codepen.io/lochiwei/pen/NWvKVwr?editors=1111)
* replit ⟩ [layout system (0.1.1)](https://replit.com/@pegasusroe/layout-011-lessloremgreater#layout/lorem.mjs)
  {% endtab %}
  {% endtabs %}

## \<lorem>

{% tabs %}
{% tab title="lorem.mjs" %}

````javascript
// 0.1.1 + lorem

import {attr, randomInt} from './helpers.mjs';

// generate <p> html
function _paragraph({
    // words used in a paragraph
    wordsMin = 10,
    wordsMax = 50,
    // characters used in a word
    charsMin = 2,
    charsMax = 10,
}={}){
  
  // # of words
  const w = randomInt(wordsMin, wordsMax);  

  let spans = Array(w).fill(1)      // [ 1, 1, 1, ...]
    .map(_ => randomInt(charsMin,charsMax))
    .map(n => 'x'.repeat(n))        // [ 'xx', 'xxxxx', 'xxx', ...]
    .map(str => `<span>${str}</span>`)
    .join(' ');

  return `<p>${spans}</p>`;
}

// generate <lorem> paragraphs
// n: # of paragraphs
function _lorem(n, {
    // words used in a paragraph
    wordsMin = 10,
    wordsMax = 50,
    // characters used in a word
    charsMin = 2,
    charsMax = 10,
}={}){                  
  return Array(n).fill(1)      // [ 1, 1, 1, ...]
    .map(_ => _paragraph({wordsMin, wordsMax, charsMin, charsMax}))
    .join('');                      // '<p><p><p> ...'
}


/*
  Lorem 可以控制的屬性
  ------------------
  • 有幾個段落 (paragraphs="1")
  • 每個段落幾個單字 (words="15,50")
  • 每個單字有幾個字母 (letters="2,10")
  • 段落間的間距 (gap="1rem")
  • 字體顏色：color="#ddd"
*/

/**
 * Lorem
 * -----
 * # syntax:
 * ```
 * <lorem- 
 *     paragraphs="1" 
 *     words="15,50"    // ⭐️ not implemented❗️
 *     letters="2,10"   // ⭐️ not implemented❗️
 *     gap="1rem"       // ⭐️ not implemented❗️
 *     color="#ddd"
 * >
 * ```
 * 
 * # examples
 * ```
 * <lorem-></lorem->
 * <lorem- color="darkkhaki"></lorem->
 * <lorem- paragraphs="3" color="chocolate"></lorem->
 * ```
 */
export default class Lorem extends HTMLElement {

    // connected to doc
    connectedCallback(){

        // get # of paragraphs from `paragraphs` attribute
        let paragraphs = attr(this, 'paragraphs');
        let n = paragraphs ? +paragraphs : 1;

        // get color from `color` attribute
        let color = attr(this, 'color');
        // ⭐️ set css custom property (css var)
        if (color) this.style.setProperty('--lorem-color', color);

        this.innerHTML = _lorem(n); 
    }
    
}

// ⭐️ register <lorem->
customElements.get('lorem-') || 
customElements.define('lorem-', Lorem);
````

{% endtab %}

{% tab title="lorem.css" %}

```css
/* 0.1.1 + lorem */

lorem- {
    --lorem-color: #ddd;
    display: block;
  /* deco */
  /* border: 1px dotted black; */
}

lorem- > p {
  
  display: flex;
  flex-wrap: wrap;
  gap: 1ex;
  
  margin: 0;        /* reset */
}

lorem- > p + p {
  margin-top: 1.5rem;    /* ⭐ 段落間距 */
}

lorem- > p > span {

  background: var(--lorem-color);
  height: 1ex;

  border-radius: 1ex;
  color: transparent;
}
```

{% endtab %}
{% endtabs %}
