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

jQuery Plugin #8

Closed
7 of 8 tasks
azu opened this issue Aug 27, 2015 · 8 comments
Closed
7 of 8 tasks

jQuery Plugin #8

azu opened this issue Aug 27, 2015 · 8 comments
Labels
Status: PR Welcome Welcome to Pull Request Status: Proposal Request for comments

Comments

@azu
Copy link
Owner

azu commented Aug 27, 2015

jQueryのプラグインについて

どう書ける?

<script src="jquery.js"></script>
<script src="something.js"></script>

と読み込ませると、jQueryオブジェクトで拡張したメソッド使えるようになる。

$('.class-name').something();

どういう仕組み?

$.fn に拡張したいメソッドを追加すると、jQueryオブジェクトにそのメソッドが追加される。
prototypeに対して拡張するのと同じ

$.fn.something = function() {
    console.log("something");
};

どういう事に向いてる?

  • jQueryのようなDOM要素をラップしたようなオブジェクトに適当なメソッドを増やすのに向いてる
  • <script>時代のものなので、複数のバージョンの扱いなど大雑把

どういう事に向いていない?

  • グローバルに$ or jQuery があるという前提という空気感
  • 結局はprototype拡張なのでjQueryという実体の構造に依存しがち

この仕組みを使ってるもの


チェックシート

  • どう書ける?
  • どういう仕組み?
  • どういう用途に向いている?
  • どういう用途に向いていない?
  • この仕組みを使ってるもの
  • 実装してみよう
  • 参考文献 Furture Reading
  • まとめ
@azu
Copy link
Owner Author

azu commented Aug 27, 2015

同じテーマでそれぞれ話しを進めるべきか?
No, 目的としてはそれぞれの方式がどういう所に向いていて、それを確認できることとしたい。

@azu azu added the Status: Proposal Request for comments label Aug 28, 2015
@azu
Copy link
Owner Author

azu commented Aug 29, 2015

CONTRIBUTING.md に書くポイントまとめた

@azu
Copy link
Owner Author

azu commented Aug 29, 2015

@azu
Copy link
Owner Author

azu commented Aug 29, 2015

Plugins | jQuery Learning Center
にprototype拡張すると書いてあるのでそういう趣旨なんだな。
new を使わない拡張パターンみたいな

@azu azu added the Status: PR Welcome Welcome to Pull Request label Aug 29, 2015
@azu
Copy link
Owner Author

azu commented Aug 30, 2015

jQueryプラグインの向いてないところを考える

結局はただのprototype
プラグインからなんでも出来るので制御が難しい
このインスタンスにはプラグインを無効化するといた個別制御が欠如

@azu
Copy link
Owner Author

azu commented Aug 30, 2015

プラグイン全体の話として、本体のコア機能もプラグインで実装されているかという話があるとよさそう。
このコア機能がプラグインであることのメリットについて調べる必要がありそう

@azu
Copy link
Owner Author

azu commented Aug 30, 2015

jQuery.extendとjQuery.fn.extendとプロトタイプチェイン - (゚∀゚)o彡 sasata299's blog
違いについて。クラスメソッドとインスタンスメソッド

@azu
Copy link
Owner Author

azu commented Aug 30, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Status: PR Welcome Welcome to Pull Request Status: Proposal Request for comments
Projects
None yet
Development

No branches or pull requests

1 participant