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 15 kB

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

智龙迷城队伍图制作工具