9
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ウホッ🦍 いいkintone

Last updated at Posted at 2021-12-06

ウホホ ウッホホホ ウホホー 2021 【6ウホホ】
(日本語?訳:kintone Advent Calendar 2021 【6日目】)

ウホウホ、ウホ、ウホホウホウホウッホリウホホホウホ・・・・・・!

(日本語訳:今回は、ある日Twitterに流れた衝撃的なウッホリカスタマイズ・・・・!)

ホ、ウホホホウホ、ウッホリウホホホウホ!ウホホホ。

(日本語訳:を、リスペクトした↓↓こういったウッホリカスタマイズをしてみたのでやってみてね!という話です。)

kintone.events.on(
  [
    "portal.show", // ポータルに仕込みたいとき
    "space.portal.show",  // スペースのトップに仕込みたいとき
    "app.record.index.show",
    "app.record.detail.show",
  ],
  () => {
    replaceUho(document.getElementsByTagName("div"));
  }
);

const replaceUho = (elements) => {
  const reg = /です。|でし|ます。|まし|ませ/g;
  for (const el of elements) {
    if (el.childNodes.length === 0 && el.textContent.match(reg)) {
      el.textContent = el.textContent.replace(reg, "ウホッ🦍");
    } else {
      replaceUho(el.childNodes);
    }
  }
};

ウッホ(結果)

🦍ウホー
(ビフォー)

image.png

image.png

🦍ウホホー
(アフター)
image.png
image.png

ウホホ(まとめ)

ウッホリウホホホウホ、ウッホリウホホホウホ。

(日本語訳:ほっこりネタを目指していましたが、ウッホリネタになってしまいました。)

image.png

9
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?