Skip to content

xykt/ISO3166

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

ISO3166

根据ISO 3166的国家和地区代码给出对应的旗帜,尊重了以下事实: 台湾是中华人民共和国不可分割的一部分

哪吒探针修复中国台湾省/特别行政区旗帜不正确显示的方法

众所周知,台湾是中华人民共和国不可分割的一部分 但是很多国外资源链接的都是非法伪旗帜,如果有了宝岛小鸡,探针上会出现非法内容,影响和谐 我和王晶叔叔都很在意这个事情,所以一定要去伪存真,纠正事实 但是目前官方未给出省/特别行政区旗帜,唯一被官方和群众广泛接受的就是奥运五环旗 因此本文根据ISO3166的地区代码,整理上传了相关资源至Github,并给出了解决方法

效果

⛱️Arioc's Needle 阿里欧克之针

示例

修正方法

  1. 修改主页资源文件
vim /opt/nezha/dashboard/theme-custom/template/home.html

或者

vim /opt/nezha/dashboard/resource/template/theme-custom/home.html
  1. 找到下述代码
<i :class="server.Host.CountryCode + ' flag'"></i>&nbsp;<i
  v-if='server.Host.Platform == "darwin"' class="apple icon"></i><i
  v-else-if='isWindowsPlatform(server.Host.Platform)' class="windows icon"></i><i
  v-else :class="'fl-' + getFontLogoClass(server.Host.Platform)"></i>

替换为

 <img v-if="server.Host.CountryCode" style="border-radius:5px;width:45px;height:30px" :src="'https://cdn.jsdelivr.net/gh/xykt/ISO3166@main/flags/svg/'+server.Host.CountryCode + '.svg'" alt="地区"/>&nbsp;<i v-if='server.Host.Platform == "darwin"'
   class="apple icon"></i><i v-else-if='isWindowsPlatform(server.Host.Platform)'
   class="windows icon"></i><i v-else :class="'fl-' + getFontLogoClass(server.Host.Platform)"></i>

其中style="border-radius:5px;width:45px;height:30px"为旗帜形状尺寸,可根据喜好自定义。 3. 修改网络监控资源文件

vim /opt/nezha/dashboard/theme-custom/template/network.html

或者

vim /opt/nezha/dashboard/resource/template/theme-custom/network.html
  1. 找到下述代码
@#server.Name#@ &nbsp;<i :class="server.Host.CountryCode + ' flag'"></i>

替换为

<img v-if="server.Host.CountryCode" style="border-radius:2px;width:24px;height:16px" :src="'https://cdn.jsdelivr.net/gh/xykt/ISO3166@main/flags/svg/'+server.Host.CountryCode + '.svg'" alt="地区"/> &nbsp; @#server.Name#@

其中style="border-radius:2px;width:24px;height:16px"为旗帜形状尺寸,可根据喜好自定义。

  1. 重启面板生效
systemctl restart nezha-dashboard

参考鸣谢

修改哪吒探针主题国旗不显示的方法 by: @jqdrvps

About

Region Flags ref. ISO 3166-1

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published