Browse Source

feat: 首次提交插件

master
qcc 5 years ago
commit
7f29c3c7c2
  1. 5
      .gitignore
  2. 3
      README.md
  3. 126
      build.xml
  4. 18
      plugin.xml
  5. 14
      pom.xml
  6. 35
      src/main/java/com/fr/plugin/login/theme/fresh/FreshComponent.java
  7. 49
      src/main/java/com/fr/plugin/login/theme/fresh/FreshTheme.java
  8. BIN
      src/main/resources/com/fr/plugin/login/theme/fresh/web/images/1x/fresh_bg.png
  9. BIN
      src/main/resources/com/fr/plugin/login/theme/fresh/web/images/1x/logo_FR.png
  10. BIN
      src/main/resources/com/fr/plugin/login/theme/fresh/web/images/2x/fresh_bg.png
  11. BIN
      src/main/resources/com/fr/plugin/login/theme/fresh/web/images/2x/logo_FR.png
  12. 76
      src/main/resources/com/fr/plugin/login/theme/fresh/web/js/login.js
  13. BIN
      src/main/resources/com/fr/plugin/login/theme/fresh/web/login_style.png
  14. 21
      src/main/resources/com/fr/plugin/login/theme/fresh/web/style.css
  15. 76
      src/main/resources/com/fr/plugin/login/theme/fresh/web/theme.js

5
.gitignore vendored

@ -0,0 +1,5 @@
*.iml
.idea/
.classpath
.DS_Store
lib/report/*.jar

3
README.md

@ -0,0 +1,3 @@
# login-theme-fresh
清新风格登录主题

126
build.xml

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project basedir="." default="jar" name="plugin">
<!-- JDK路径,根据自己机器上实际位置修改-->
<property name="jdk.home" value="C:\Program Files\Java\jdk1.8.0_171"/>
<property name="libs" value="${basedir}/lib"/>
<property name="publicLibs" value=""/>
<property name="reportLibs" value="${basedir}/lib/reportlibs"/>
<property name="destLoc" value="."/>
<property name="classes" value="classes"/>
<xmlproperty file="${basedir}/plugin.xml"/>
<property name="current-version" value="${plugin.version}"/>
<!-- 插件版本-->
<property name="plugin-version" value="${current-version}"/>
<!-- 插件名字-->
<property name="plugin-name" value="fresh"/>
<property name="plugin-jar" value="fr-plugin-${plugin-name}-${plugin-version}.jar"/>
<target name="prepare">
<delete dir="${classes}"/>
<delete dir="fr-plugin-${plugin-name}-${plugin-version}"/>
<xmlproperty file="${basedir}/plugin.xml"/>
<delete dir="${destLoc}/${plugin.name}"/>
</target>
<path id="compile.classpath">
<fileset dir="${libs}">
<include name="**/*.jar"/>
</fileset>
<fileset dir="${publicLibs}">
<include name="**/*.jar"/>
</fileset>
<fileset dir="${reportLibs}">
<include name="**/*.jar"/>
</fileset>
</path>
<patternset id="resources4Jar">
<exclude name="**/.settings/**"/>
<exclude name=".classpath"/>
<exclude name=".project"/>
<exclude name="**/*.java"/>
<exclude name="**/*.db"/>
<exclude name="**/*.g"/>
<exclude name="**/package.html"/>
</patternset>
<target name="copy_resources">
<echo message="从${resources_from}拷贝图片,JS,CSS等资源文件"/>
<delete dir="tmp"/>
<copy todir="tmp">
<fileset dir="${resources_from}/src/main/resources">
<patternset refid="resources4Jar"/>
</fileset>
</copy>
<copy todir="${classes}">
<fileset dir="tmp"/>
</copy>
<delete dir="tmp"/>
</target>
<target name="compile_javas">
<echo message="编译${compile_files}下的Java文件"/>
<javac destdir="${classes}" debug="false" optimize="on" source="${source_jdk_version}"
target="${target_jdk_version}"
fork="true" memoryMaximumSize="512m" listfiles="false" srcdir="${basedir}"
executable="${compile_jdk_version}/bin/javac">
<src path="${basedir}/src/main/java"/>
<exclude name="**/.svn/**"/>
<compilerarg line="-encoding UTF8 "/>
<classpath refid="compile.classpath"/>
</javac>
</target>
<target name="jar_classes">
<echo message="打Jar包:${jar_name}"/>
<delete file="${basedir}/${jar_name}"/>
<jar jarfile="${basedir}/${jar_name}">
<fileset dir="${classes}">
</fileset>
</jar>
</target>
<target name="super_jar" depends="prepare">
<antcall target="copy_resources">
<param name="resources_from" value="${basedir}"/>
</antcall>
<antcall target="compile_javas">
<param name="source_jdk_version" value="1.6"/>
<param name="target_jdk_version" value="1.6"/>
<param name="compile_jdk_version" value="${jdk.home}"/>
<param name="compile_files" value="${basedir}/src"/>
</antcall>
<echo message="compile plugin success!"/>
<antcall target="jar_classes">
<param name="jar_name" value="${plugin-jar}"/>
</antcall>
<delete dir="${classes}"/>
</target>
<target name="jar" depends="super_jar">
<antcall target="zip"/>
</target>
<target name="zip">
<property name="plugin-folder" value="fr-plugin-${plugin-name}-${plugin-version}"/>
<echo message="----------zip files----------"/>
<mkdir dir="${plugin-folder}"/>
<copy todir="${plugin-folder}">
<fileset dir=".">
<include name="${plugin-jar}"/>
<include name="plugin.xml"/>
</fileset>
<fileset dir="${libs}">
<include name="*.jar"/>
<include name="*.dll"/>
</fileset>
</copy>
<zip destfile="${basedir}/${plugin-folder}.zip" basedir=".">
<include name="${plugin-folder}/*.jar"/>
<include name="${plugin-folder}/*.dll"/>
<include name="${plugin-folder}/plugin.xml"/>
</zip>
<move file="${plugin-folder}.zip" todir="${destLoc}/${plugin.name}"/>
</target>
</project>

18
plugin.xml

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><plugin>
<id>com.fr.plugin.login.theme.fresh</id>
<name><![CDATA[清新风格]]></name>
<active>no</active>
<version>1.0</version>
<env-version>10.0</env-version>
<jartime>2018-10-10</jartime>
<vendor>Frank.Qiu</vendor>
<description><![CDATA[fresh]]></description>
<change-notes><![CDATA[
]]></change-notes>
<extra-decision>
<LoginPageProvider class="com.fr.plugin.login.theme.fresh.FreshTheme"/>
</extra-decision>
<function-recorder class="com.fr.plugin.fresh.theme.fresh.FreshTheme"/>
</plugin>

14
pom.xml

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.fr.plugin</groupId>
<artifactId>starter</artifactId>
<version>1.0</version>
</parent>
<packaging>jar</packaging>
<artifactId>demo-login-theme-fresh</artifactId>
</project>

35
src/main/java/com/fr/plugin/login/theme/fresh/FreshComponent.java

@ -0,0 +1,35 @@
package com.fr.plugin.login.theme.fresh;
import com.fr.decision.config.AppearanceConfig;
import com.fr.web.struct.Component;
import com.fr.web.struct.category.ScriptPath;
import com.fr.web.struct.category.StylePath;
import com.fr.web.struct.Filter;
public class FreshComponent extends Component {
public static final FreshComponent KEY = new FreshComponent();
private FreshComponent() {
}
@Override
public ScriptPath script() {
return ScriptPath.build("com/fr/plugin/login/theme/fresh/web/theme.js");
}
@Override
public StylePath style() {
return StylePath.build("com/fr/plugin/login/theme/fresh/web/style.css");
}
@Override
public Filter filter() {
return new Filter() {
public boolean accept() {
return "com.fr.plugin.login.theme.fresh".equals(AppearanceConfig.getInstance().getLoginPageId());
}
};
}
}

49
src/main/java/com/fr/plugin/login/theme/fresh/FreshTheme.java

@ -0,0 +1,49 @@
package com.fr.plugin.login.theme.fresh;
import com.fr.decision.fun.impl.AbstractLoginPageProvider;
import com.fr.decision.web.LoginComponent;
import com.fr.intelli.record.Focus;
import com.fr.intelli.record.Original;
import com.fr.record.analyzer.EnableMetrics;
import com.fr.web.struct.Atom;
@EnableMetrics
public class FreshTheme extends AbstractLoginPageProvider {
@Override
public Atom attach() {
return LoginComponent.KEY;
}
@Override
@Focus(id = "com.fr.plugin.login.theme.fresh", text = "清新风格", source = Original.PLUGIN)
public Atom client() {
return FreshComponent.KEY;
}
@Override
public String name() {
return "FreshTheme";
}
@Override
public String text() {
return "清新风格";
}
@Override
public String coverPath() {
return "com/fr/plugin/login/theme/fresh/web/login_style.png";
}
@Override
public int imgHeight() {
return 1280;
}
@Override
public int imgWidth() {
return 1280;
}
}

BIN
src/main/resources/com/fr/plugin/login/theme/fresh/web/images/1x/fresh_bg.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

BIN
src/main/resources/com/fr/plugin/login/theme/fresh/web/images/1x/logo_FR.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
src/main/resources/com/fr/plugin/login/theme/fresh/web/images/2x/fresh_bg.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

BIN
src/main/resources/com/fr/plugin/login/theme/fresh/web/images/2x/logo_FR.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

76
src/main/resources/com/fr/plugin/login/theme/fresh/web/js/login.js

@ -0,0 +1,76 @@
!(function () {
var Login = BI.inherit(BI.Widget, {
props: {
baseCls: "dec-login"
},
_store: function () {
return BI.Models.getModel("dec.model.login");
},
watch: {
},
render: function () {
var self = this, loginConfig = this.model.loginConfig;
return {
type: "bi.htape",
cls: "dec-login-fresh",
items: [{
type: "bi.default"
}, {
type: "bi.center_adapt",
width: 0.35,
cls: "login-area",
items: [{
type: "bi.absolute",
height: 480,
width: "100%",
items: [{
el: {
type: "bi.vtape",
items: [{
type: "bi.horizontal_auto",
height: 100,
items: [{
el: {
type: "bi.center_adapt",
items: [{
type: "bi.img",
src: BI.isEmpty(loginConfig.loginLogoImgId) ?
(Dec.resourceURL + "resources/logo.png") : (Dec.fineServletURL + "/login/image/" + loginConfig.loginLogoImgId),
height: 50,
width: "auto"
}]
}
}, {
el: {
type: "bi.label",
height: 24,
cls: "dec-font-weight-bold",
text: loginConfig.loginTitle
},
tgap: 24
}],
ref: function (_ref) {
self.logo = _ref;
}
}, {
type: "dec.login.index",
listeners: [{
eventName: "EVENT_CHANGE",
action: function (v) {
self.logo.setVisible(v === DecCst.Login.Tabs.LOGIN);
}
}]
}]
}, top: 0, right: 89, bottom: 0, left: 89
}]
}]
}]
};
}
});
BI.shortcut("dec.login.custom", Login);
})();

BIN
src/main/resources/com/fr/plugin/login/theme/fresh/web/login_style.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

21
src/main/resources/com/fr/plugin/login/theme/fresh/web/style.css

@ -0,0 +1,21 @@
.login-area {
max-width: 500px;
min-width: 448px;
background-color: rgba(255, 255, 255, 0.95);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f2ffffff,endColorstr=#f2ffffff);
}
.dec-login-fresh {
background: url('com/fr/plugin/login/theme/fresh/web/images/2x/fresh_bg.png') no-repeat center center;
_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='com/fr/plugin/login/theme/fresh/web/images/2x/fresh_bg.png');
background-size: contain;
_background: none;
}
.dec-login-fresh.hack {
background: url('com/fr/plugin/login/theme/fresh/web/images/1x/fresh_bg.png') no-repeat center center;
_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='com/fr/plugin/login/theme/fresh/web/dist/images/1x/fresh_bg.png');
_background: none;
}
.dec-login-fresh {
background-size: cover;
}

76
src/main/resources/com/fr/plugin/login/theme/fresh/web/theme.js

@ -0,0 +1,76 @@
!(function () {
var Login = BI.inherit(BI.Widget, {
props: {
baseCls: "dec-login"
},
_store: function () {
return BI.Models.getModel("dec.model.login");
},
watch: {
},
render: function () {
var self = this, loginConfig = this.model.loginConfig;
return {
type: "bi.htape",
cls: "dec-login-fresh",
items: [{
type: "bi.default"
}, {
type: "bi.center_adapt",
width: 0.35,
cls: "login-area",
items: [{
type: "bi.absolute",
height: 480,
width: "100%",
items: [{
el: {
type: "bi.vtape",
items: [{
type: "bi.horizontal_auto",
height: 100,
items: [{
el: {
type: "bi.center_adapt",
items: [{
type: "bi.img",
src: BI.isEmpty(loginConfig.loginLogoImgId) ?
(Dec.resourceURL + "resources/logo.png") : (Dec.fineServletURL + "/login/image/" + loginConfig.loginLogoImgId),
height: 50,
width: "auto"
}]
}
}, {
el: {
type: "bi.label",
height: 24,
cls: "dec-font-weight-bold",
text: loginConfig.loginTitle
},
tgap: 24
}],
ref: function (_ref) {
self.logo = _ref;
}
}, {
type: "dec.login.index",
listeners: [{
eventName: "EVENT_CHANGE",
action: function (v) {
self.logo.setVisible(v === DecCst.Login.Tabs.LOGIN);
}
}]
}]
}, top: 0, right: 89, bottom: 0, left: 89
}]
}]
}]
};
}
});
BI.shortcut("dec.login.custom", Login);
})();
Loading…
Cancel
Save