You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

script-custom_elements.js 16 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. /*
  2. * Detail: 仿照 DOMTokenList 功能实现的自定义 CustomTokenList
  3. */
  4. class CustomTokenList extends Array {
  5. //Reference: https://stackoverflow.com/questions/49349195/using-splice-method-in-subclass-of-array-in-javascript/56181665#56181665 让splice能够用
  6. static get [Symbol.species]() { return Array; }
  7. static #illegalTokenRegRex = /\s/;
  8. #node = null;
  9. #attributeName = null;
  10. #refreshAttribute = true;
  11. #observer = null;
  12. #observerOptions = {
  13. attributeFilter: [],
  14. attributeOldValue: true,
  15. subtree: true
  16. };
  17. get #attribute() { //获取绑定的参数
  18. return this.#node.getAttributeNode(this.#attributeName);
  19. }
  20. set #attribute(node) { //直接设定绑定的参数AttrNode
  21. if (node instanceof Attr) {
  22. this.#node = node.ownerElement;
  23. this.#attributeName = node.nodeName;
  24. this.#observerOptions.attributeFilter = [this.#attributeName];
  25. } else {
  26. throw new TypeError(`${CustomTokenList.name}.#attribute: Argument 1 is not an Attr.\n参数 1 不是 Attr。`);
  27. }
  28. }
  29. constructor(node, attributeName){ //传入 HTMLElement 和需要绑定的 参数名称
  30. super();
  31. if (node instanceof Attr) {
  32. this.#attribute = node;
  33. } else if (node instanceof HTMLElement) {
  34. this.#node = node;
  35. this.#attributeName = attributeName.toString().toLowerCase(); //attributeName 只支持小写
  36. this.#observerOptions.attributeFilter = [this.#attributeName];
  37. } else {
  38. throw new TypeError(`${CustomTokenList.name}.constructor: Argument 1 is not an Attr or HTMLElement.\n参数 1 不是 Attr 或 HTMLElement。`);
  39. }
  40. let initializeValue = this.#attribute?.nodeValue;
  41. if (initializeValue) { //如果值已经存在,则先添加到TokenList
  42. this.value = initializeValue;
  43. }
  44. const _this = this;
  45. this.#observer = new MutationObserver(function(mutationList) {
  46. for (const mutation of mutationList) {
  47. if (mutation.type == 'attributes' && mutation.attributeName == _this.#attributeName) {
  48. //因为可能是删除属性,所以i需要重新取得属性
  49. _this.#attribute = _this.#node.getAttributeNode(_this.#attributeName);
  50. //清空旧值
  51. _this.length = 0;
  52. if (_this.#attribute) {
  53. _this.#refreshAttribute = false; //外部属性变化时,添加内容不再循环进行属性的更新
  54. _this.add(...new Set(_this.#attribute.nodeValue.split(/\s+/g)));
  55. _this.#refreshAttribute = true;
  56. }
  57. break;
  58. }
  59. }
  60. });
  61. this.#observer.observe(this.#node, this.#observerOptions);
  62. }
  63. static #InvalidCharacterError(functionName) {
  64. return new DOMException(`${CustomTokenList.name}.${functionName}:The token can not contain whitespace.\bToken 不允许包含空格。`, "InvalidCharacterError");
  65. }
  66. #refreshAttributeValue() {
  67. if (this.#refreshAttribute) {
  68. this.#observer.disconnect(); //解除绑定
  69. if (!this.#attribute) {
  70. this.#node.setAttributeNode(document.createAttribute(this.#attributeName));
  71. }
  72. this.#attribute.value = this.value;
  73. this.#observer.observe(this.#node, this.#observerOptions); //恢复绑定
  74. }
  75. }
  76. add(...tokens){
  77. //全部强制转换为字符串
  78. tokens = tokens.map(token=>token.toString());
  79. //如果任何 token 里存在空格,就直接抛出错误
  80. if (tokens.some(token=>CustomTokenList.#illegalTokenRegRex.test(token)))
  81. throw CustomTokenList.#InvalidCharacterError('add');
  82. //经过测试普通循环push性能最高,并且由于需要去重,需要每次判断是否存在
  83. tokens.forEach(token => {
  84. if (!this.includes(token)) this.push(token);
  85. });
  86. this.#refreshAttributeValue();
  87. return;
  88. }
  89. remove(...tokens){
  90. //全部强制转换为字符串
  91. tokens = tokens.map(token=>token.toString());
  92. //如果任何 token 里存在空格,就直接抛出错误
  93. if (tokens.some(token=>CustomTokenList.#illegalTokenRegRex.test(token)))
  94. throw CustomTokenList.#InvalidCharacterError('remove');
  95. //splice性能特别低,但是这里只能用这个
  96. tokens.forEach(token => {
  97. const index = this.indexOf(token);
  98. if (index>=0) this.valueOf().splice(index,1);
  99. });
  100. this.#refreshAttributeValue();
  101. return;
  102. }
  103. contains(token){
  104. return this.includes(token.toString());
  105. }
  106. toggle(token, force){
  107. if (CustomTokenList.#illegalTokenRegRex.test(token))
  108. throw CustomTokenList.#InvalidCharacterError('toggle');
  109. if (force !== undefined) {
  110. if(Boolean(force)) {
  111. this.add(token);
  112. return true;
  113. }else{
  114. this.remove(token);
  115. return false;
  116. }
  117. } else {
  118. if (this.contains(token)) {
  119. this.remove(token);
  120. return false;
  121. } else {
  122. this.add(token);
  123. return true;
  124. }
  125. }
  126. }
  127. get value() {
  128. return this.join(' ');
  129. }
  130. set value(attrValue) {
  131. //将值确保转为字符串,然后以空格拆分,并加入Set确保唯一性
  132. const inputTokens = [...new Set(attrValue.toString().split(/\s+/g))];
  133. console.log(inputTokens)
  134. this.length = 0;
  135. this.push(...inputTokens);
  136. this.#refreshAttributeValue();
  137. }
  138. replace(oldToken, newToken){
  139. oldToken = oldToken.toString();
  140. newToken = newToken.toString();
  141. if (CustomTokenList.#illegalTokenRegRex.test(oldToken) || CustomTokenList.#illegalTokenRegRex.test(newToken))
  142. throw CustomTokenList.#InvalidCharacterError('replace');
  143. const index = this.indexOf(oldToken);
  144. if (index>=0) {
  145. this.splice(index,1, this.includes(newToken) ? undefined : newToken);
  146. if (this.#refreshAttribute) {
  147. this.#observer.disconnect(); //解除绑定
  148. this.#attribute.value = this.value;
  149. this.#observer.observe(this.#node, this.#observerOptions); //恢复绑定
  150. }
  151. return true;
  152. } else {
  153. return false;
  154. }
  155. }
  156. item(index) {
  157. return this[index];
  158. }
  159. };
  160. const svgNS = "http://www.w3.org/2000/svg"; //svg用的命名空间
  161. // Create a class for the element
  162. class CardAvatar extends HTMLElement {
  163. // Specify observed attributes so that
  164. // attributeChangedCallback will work
  165. static get observedAttributes() {
  166. return ['iid'];
  167. }
  168. #iid = 0;
  169. get iid() {
  170. return this.#iid;
  171. }
  172. /**
  173. * @param {string | number} x
  174. */
  175. set iid(x) {
  176. //this.#iid = x; //在属性改变的内容里已经写入了
  177. this.setAttribute('iid', x);
  178. }
  179. //#member = new Member();
  180. /**
  181. * @param {Member} m
  182. */
  183. /*get member() {
  184. return this.#member;
  185. }*/
  186. /**
  187. * @param {Member} m
  188. */
  189. /*set member(m) {
  190. this.#member = m;
  191. console.log("设定新的Member",m);
  192. this.setAttribute('id', m.id);
  193. }*/
  194. constructor() {
  195. // Always call super first in constructor
  196. super();
  197. // Create a shadow root
  198. const shadow = this.attachShadow({mode: 'open'});
  199. // Create some CSS to apply to the shadow dom
  200. const linkElem = shadow.appendChild(document.createElement('link'));
  201. linkElem.setAttribute('rel', 'stylesheet');
  202. linkElem.setAttribute('href', 'css/card-avatar.css');
  203. // Create spans
  204. const wrapper = shadow.appendChild(document.createElement('a'));
  205. wrapper.className = 'wrapper';
  206. wrapper.target = '_blank';
  207. const dAttr1 = wrapper.appendChild(document.createElement('div'));
  208. dAttr1.className = 'attribute attribute-main';
  209. const dAttr2 = wrapper.appendChild(document.createElement('div'));
  210. dAttr2.className = 'attribute attribute-sub';
  211. const dLeftTop = wrapper.appendChild(document.createElement('div'));
  212. dLeftTop.className = "flex-box flex-left-top";
  213. const dLeftBottom = wrapper.appendChild(document.createElement('div'));
  214. dLeftBottom.className = "flex-box flex-left-bottom";
  215. const dRightTop = wrapper.appendChild(document.createElement('div'));
  216. dRightTop.className = "flex-box flex-right-top";
  217. const dRightBottom = wrapper.appendChild(document.createElement('div'));
  218. dRightBottom.className = "flex-box flex-right-bottom";
  219. const dId = dLeftBottom.appendChild(document.createElement('div'));
  220. dId.className = 'card-id';
  221. const dLevel = dLeftBottom.appendChild(document.createElement('div'));
  222. dLevel.className = 'level';
  223. dLevel.textContent = "110";
  224. const dEnhancement = dLeftTop.appendChild(document.createElement('div'));
  225. dEnhancement.className = 'enhancement';
  226. dEnhancement.textContent = "297";
  227. const dActiveSkillCD = dRightBottom.appendChild(document.createElement('div'));
  228. dActiveSkillCD.className = 'active-skill-cd';
  229. dActiveSkillCD.textContent = "99";
  230. }
  231. connectedCallback() {
  232. console.log('自定义标签添加到页面');
  233. this.update();
  234. }
  235. attributeChangedCallback(name, oldValue, newValue) {
  236. console.log('自定义标签属性改变', name, oldValue, newValue);
  237. //if (name == 'id') this.#id = parseInt(this.getAttribute('id'));
  238. if (name == 'iid') this.#iid = parseInt(newValue);
  239. this.update();
  240. }
  241. update() {
  242. //得到怪物ID
  243. const id = this.#iid || 0;
  244. this.iid = id;
  245. const card = Cards[id] || Cards[0];
  246. const dataSource = this.getAttribute('source') || currentDataSource.code;
  247. const shadow = this.shadowRoot;
  248. const wrapper = shadow.querySelector('.wrapper');
  249. wrapper.href = currentLanguage.guideURL(id, card.name);
  250. wrapper.style.backgroundImage = `url(images/cards_${dataSource.toLowerCase()}/CARDS_${Math.ceil(id / 100).toString().padStart(3,"0")}.PNG)`;
  251. const idxInPage = (id - 1) % 100; //获取当前页面内的序号
  252. wrapper.setAttribute("data-cards-pic-x", idxInPage % 10); //添加X方向序号
  253. wrapper.setAttribute("data-cards-pic-y", Math.floor(idxInPage / 10)); //添加Y方向序号
  254. const dAttr1 = wrapper.querySelector('.attribute-main');
  255. dAttr1.setAttribute('data-attr', card.attrs[0]);
  256. const dAttr2 = wrapper.querySelector('.attribute-sub');
  257. dAttr2.setAttribute('data-attr', card.attrs[1]);
  258. const dId = wrapper.querySelector('.card-id');
  259. dId.setAttribute('data-id', id);
  260. }
  261. }
  262. // Define the new element
  263. customElements.define('card-avatar', CardAvatar);
  264. class PadIcon extends HTMLElement {
  265. // Specify observed attributes so that
  266. // attributeChangedCallback will work
  267. static get observedAttributes() {
  268. return [
  269. 'type', //图标类型
  270. 'number', //编号或数字,必须是数字
  271. 'lang', //英语、中文特殊图标的设定
  272. 'icon-type',//子图标类型
  273. //'icon-value',//子图标的值
  274. 'flags', //各种选项开关,类似className
  275. ];
  276. }
  277. static ELEMENT_TYPE_AWOKEN = 'awoken';
  278. static ELEMENT_TYPE_TYPE = 'type';
  279. static ELEMENT_TYPE_AWOKEN_COUNT = 'awoken-count';
  280. static ELEMENT_TYPE_LATENT = 'latent';
  281. #svg = document.createElementNS(svgNS,'svg');
  282. #flags = null;
  283. get flagsList() { return this.#flags; }
  284. #number = 0;
  285. #type = PadIcon.ELEMENT_TYPE_AWOKEN;
  286. #iconType = null;
  287. get number() { return this.#number; }
  288. set number(x) {
  289. const number = Number(x);
  290. if (Number.isNaN(number)) throw new Error('传入的 number 不是数字!');
  291. this.setAttribute('number', number);
  292. this.#number = number;
  293. }
  294. get type() { return this.#type; }
  295. set type(x) {
  296. if (x == null) {
  297. this.removeAttribute('type');
  298. } else {
  299. this.setAttribute('type', x);
  300. }
  301. this.#type = x;
  302. }
  303. get iconType() { this.#iconType; }
  304. set iconType(x) {
  305. if (x == null) {
  306. this.removeAttribute('icon-type');
  307. } else {
  308. this.setAttribute('icon-type', x);
  309. }
  310. this.#iconType = x;
  311. }
  312. constructor() {
  313. // Always call super first in constructor
  314. super();
  315. this.#flags = new CustomTokenList(this, "flags");
  316. // Create a shadow root
  317. const shadow = this.attachShadow({mode: 'open'});
  318. // Create some CSS to apply to the shadow dom
  319. const linkElem = shadow.appendChild(document.createElement('link'));
  320. linkElem.setAttribute('rel', 'stylesheet');
  321. linkElem.setAttribute('href', 'css/svg-icon.css');
  322. const svg = this.#svg;
  323. const use = document.createElementNS(svgNS, 'use');
  324. svg.appendChild(use);
  325. shadow.appendChild(svg);
  326. }
  327. connectedCallback() { //自定义标签添加到页面
  328. this.update();
  329. }
  330. attributeChangedCallback(name, oldValue, newValue) { //自定义标签属性改变
  331. const svg = this.shadowRoot.querySelector('svg');
  332. if (name == 'type') {
  333. this.#type = newValue;
  334. //如果更换类型,删除use以外的其他node
  335. const use = svg.querySelector('use');
  336. [...svg.childNodes].forEach(child=>{if(child!=use) child.remove();});
  337. }
  338. if (name == 'number') {
  339. const number = Number(newValue);
  340. this.#number = Number.isNaN(number) ? 0 : number;
  341. }
  342. if (name == 'icon-type') this.#iconType = newValue;
  343. //将这些属性全都复制到svg上去
  344. if (newValue == null) {
  345. svg.removeAttribute(name);
  346. } else {
  347. svg.setAttribute(name, newValue);
  348. }
  349. this.update();
  350. }
  351. update() {
  352. const number = this.#number;
  353. const lang = this.getAttribute('lang') || currentLanguage.i18n;
  354. //const shadow = this.shadowRoot;
  355. const svg = this.#svg;
  356. //svg.setAttribute("type", this.#type);
  357. //this.#iconType ? svg.setAttribute("icon-type", this.#iconType) : svg.removeAttribute("icon-type");
  358. const use = svg.querySelector(':scope>use');
  359. svg.setAttribute("viewBox", "0 0 32 32");
  360. switch (this.#type) {
  361. case PadIcon.ELEMENT_TYPE_AWOKEN: {
  362. if (/^(?:en|ko)/.test(lang) && [40,46,47,48].includes(number)) number += '-en'; //英文不一样的觉醒
  363. if (/^(?:zh)/.test(lang) && [46,47].includes(number)) number += '-zh'; //中文不一样的觉醒
  364. use.href.baseVal = `images/icon-awoken.svg#awoken-${number}`;
  365. break;
  366. }
  367. case PadIcon.ELEMENT_TYPE_TYPE: {
  368. if (/^(?:en|ko)/.test(lang) && [9,12].includes(number)) number += '-en'; //英文不一样的类型
  369. use.href.baseVal = `images/icon-type.svg#type-${number}`;
  370. break;
  371. }
  372. case PadIcon.ELEMENT_TYPE_AWOKEN_COUNT: {
  373. const full = this.flagsList.contains("full");
  374. const weapon = this.flagsList.contains("weapon");
  375. const canAssist = this.flagsList.contains("can-assist");
  376. //svg.setAttribute("viewBox", "0 0 34 38");
  377. svg.viewBox.baseVal.width = 34;
  378. svg.viewBox.baseVal.height = 38;
  379. if (full && weapon && canAssist) {
  380. use.href.baseVal = `images/icon-awoken.svg#awoken-49`;
  381. svg.querySelector('text')?.remove();
  382. break;
  383. }
  384. use.href.baseVal = `images/icon-awoken-count.svg#awoken-count-bg`;
  385. const text = svg.querySelector('text') || svg.appendChild(document.createElementNS(svgNS, 'text'));
  386. text.textContent = full ? '★' : number;
  387. //text.setAttribute("x", "50%");
  388. const lengthX = svg.createSVGLength();
  389. lengthX.newValueSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_PERCENTAGE, 50);
  390. text.x.baseVal.initialize(lengthX);
  391. //text.setAttribute("y", "47%");
  392. const lengthY = svg.createSVGLength();
  393. lengthY.newValueSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_PERCENTAGE, 47);
  394. text.y.baseVal.initialize(lengthY);
  395. text.classList.add("number");
  396. text.textLength.baseVal.newValueSpecifiedUnits(
  397. full ? SVGLength.SVG_LENGTHTYPE_EMS : SVGLength.SVG_LENGTHTYPE_PERCENTAGE,
  398. full ? 0.9 : 100);
  399. text.lengthAdjust.baseVal = full ? SVGTextElement.LENGTHADJUST_SPACINGANDGLYPHS : SVGTextElement.LENGTHADJUST_SPACING;
  400. break;
  401. }
  402. case PadIcon.ELEMENT_TYPE_LATENT: {
  403. use.href.baseVal = `images/icon-latent-block-bg.svg#block-6-table`;
  404. break;
  405. }
  406. case 'badge':
  407. case 'attr':
  408. case 'orb':
  409. case 'common':
  410. case 'skill':
  411. default:
  412. break;
  413. }
  414. }
  415. }
  416. // Define the new element
  417. customElements.define('pad-icon', PadIcon);

智龙迷城队伍图制作工具