123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611 |
- <template>
- <div class="custom-button-settings">
- <span class="title">{{ $i18n.t("edit_settings.custom_button") }}</span>
- <i
- class="iconfont icon-material_prompt tool-tip-for-editor"
- v-tooltip="$i18n.t(`edit_settings.custom_button_tips`)"
- >
- </i>
- <br />
- <div
- v-for="(item, index) of info.customButton"
- :key="index"
- class="button-setting-item"
- :class="{ expand: expandStatus[index] }"
- >
- <div
- class="title-bar"
- :class="item.isShow ? 'bright' : 'dark'"
- @click="onRequestForChangeExpandStatus(index)"
- >
- <!-- 新增的体验图片 -->
- <div class="experience">
- <img src="@/assets/img/experience.png" alt="" />
- </div>
- <div class="left">
- <i class="iconfont icon-edit_input_arrow icon-expand"></i>
- <img
- v-if="item.type === '电话' && item.isShow"
- :src="require('@/assets/images/icons/phone.svg')"
- class="button-icon"
- alt=""
- />
- <img
- v-if="item.type === '电话' && !item.isShow"
- :src="require('@/assets/images/icons/phone-dark.svg')"
- class="button-icon"
- alt=""
- />
- <img
- v-if="item.type === '链接' && item.isShow"
- :src="require('@/assets/images/icons/link.svg')"
- class="button-icon"
- alt=""
- />
- <img
- v-if="item.type === '链接' && !item.isShow"
- :src="require('@/assets/images/icons/link-dark.svg')"
- class="button-icon"
- alt=""
- />
- <span class="button-name">
- {{ getButtonTypeI18n(item.type) }}
- </span>
- </div>
- <div class="right">
- <i
- class="iconfont icon-editor_list_edit btn-edit"
- @click.stop="onRequestForEdit(index)"
- v-tooltip="$i18n.t(`edit_settings.edit`)"
- >
- </i>
- <i
- v-show="item.isShow"
- class="iconfont icon-editor_on btn-show"
- v-tooltip="$i18n.t(`edit_settings.hide`)"
- @click.stop="item.isShow = false"
- ></i>
- <i
- v-show="!item.isShow"
- class="iconfont icon-editor_off btn-hide"
- v-tooltip="$i18n.t(`edit_settings.show`)"
- @click.stop="onRequestForShow(index)"
- ></i>
- </div>
- </div>
- <div class="edit-content">
- <div class="edit-content-item">
- <span class="item-name">{{
- $i18n.t(`edit_settings.button_type`)
- }}</span>
- <div style="margin-left: 16px">
- {{ getButtonTypeI18n(item.type) }}
- </div>
- </div>
- <div class="edit-content-item">
- <span class="item-name">{{
- $i18n.t(`edit_settings.button_name`)
- }}</span>
- <div style="margin-left: 16px">
- {{ item.name }}
- </div>
- </div>
- <div class="edit-content-item">
- <span class="item-name">{{ buttonValueTips[index] }}</span>
- <div style="margin-left: 16px">
- {{ item.value }}
- </div>
- </div>
- <div class="edit-content-item" v-if="item.type !== '电话'">
- <span class="item-name"
- >{{ $i18n.t("edit_settings.button_open_method") }}</span
- >
- <div style="margin-left: 16px">
- {{ $i18n.t(`zh_key.${item.openMethod}`) }}
- </div>
- </div>
- </div>
- </div>
- <!-- 编辑框 -->
- <popup v-if="isEditing" :canClose="false">
- <div class="ui-message ui-message-confirm dark edit-window">
- <div class="ui-message-header">
- <span>{{ $i18n.t("edit_settings.custom_button") }}</span>
- <span @click="isEditing = false">
- <i class="iconfont icon_close"></i>
- </span>
- </div>
- <div class="ui-message-main">
- <div class="edit-content-item">
- <span class="item-name">{{
- $i18n.t(`edit_settings.button_name`)
- }}</span>
- <PulldownMenuInEditor
- class="selector"
- :valueList="buttonTypeList"
- v-model="editingInfo.type"
- />
- <input
- class="name-input"
- :placeholder="$i18n.t(`edit_settings.button_placeholder`)"
- v-model="editingInfo.name"
- maxlength="15"
- />
- </div>
- <div class="edit-content-item">
- <span class="item-name">{{ editingButtonValueTip }}</span>
- <input
- class="value-input"
- :placeholder="`${$i18n.t(
- `edit_settings.please_input`
- )}${editingButtonValueTip}`"
- v-model="editingInfo.value"
- />
- </div>
- <div class="edit-content-item full" v-if="!isNotPhoneMode">
- <span class="item-name">{{
- $i18n.t("edit_settings.button_open_method")
- }}</span>
- <PulldownMenuInEditor
- class="selector"
- :valueList="buttonOpenMethodList"
- v-model="editingInfo.openMethod"
- />
- </div>
- </div>
- <div class="ui-message-footer">
- <button class="ui-button deepcancel" @click="isEditing = false">
- {{ $i18n.t("gather.cancel") }}
- </button>
- <button class="ui-button submit" @click="onConfirmEditing">
- {{ $i18n.t("gather.comfirm") }}
- </button>
- </div>
- </div>
- </popup>
- </div>
- </template>
- <script>
- import { mapGetters } from "vuex";
- import PulldownMenuInEditor from "@/components/pulldownMenuInEditor.vue";
- import { isValidPhoneNumber } from "@/utils/other.js";
- import Popup from "@/components/shared/popup/index.vue";
- import { i18n } from "@/lang";
- export default {
- components: {
- PulldownMenuInEditor,
- Popup,
- },
- data() {
- return {
- expandStatus: [],
- buttonTypeList: ["电话", "链接"],
- buttonOpenMethodList: ["弹出层打开", "新窗口打开"],
- isEditing: false,
- editingButtonIdx: -1,
- editingInfo: {
- type: "",
- name: "",
- value: "",
- openMethod: "",
- },
- };
- },
- computed: {
- ...mapGetters({
- info: "info",
- }),
- isNotPhoneMode() {
- //TODO 这个模块都有用中文做为key value (惊了?)
- return this.editingInfo.type === "电话";
- },
- buttonValueTips() {
- if (this.info.customButton) {
- return this.info.customButton.map((item) => {
- if (item.type === "电话") {
- return i18n.t("edit_settings.phone");
- } else if (item.type === "链接") {
- return i18n.t("edit_settings.link");
- } else {
- return "";
- }
- });
- } else {
- return null;
- }
- },
- editingButtonValueTip() {
- if (this.editingInfo.type === "电话") {
- return i18n.t("edit_settings.phone");
- } else if (this.editingInfo.type === "链接") {
- return i18n.t("edit_settings.link");
- } else {
- return "";
- }
- },
- },
- watch: {
- // editingInfo: {
- // handler(val) {
- // console.log("editingInfo-1", val);
- // },
- // immediate: true,
- // deep: true,
- // },
- "editingInfo.type": {
- handler(newValue, oldValue) {
- this.editingInfo.name = i18n.t(`zh_key.${newValue}`);
- if (oldValue && newValue !== oldValue) {
- this.editingInfo.value = "";
- }
- },
- },
- },
- beforeMount() {
- if (!this.info.customButton) {
- // 这是在v1.2版之前创建的作品,还没设置过自定义按钮,所以还没有customButton字段
- this.info.customButton = [
- {
- type: "电话",
- name: "电话",
- value: "",
- openMethod: "弹出层打开",
- isShow: false,
- },
- {
- type: "链接",
- name: "链接",
- value: "",
- openMethod: "弹出层打开",
- isShow: false,
- },
- ];
- }
- if (!this.info.customButton[0].openMethod) {
- // 这是在v1.3版之前创建的作品,还没设置过自定义按钮的打开方式。
- this.info.customButton[0].openMethod = "弹出层打开";
- this.info.customButton[1].openMethod = "弹出层打开";
- }
- },
- mounted() {
- this.info.customButton.forEach((item) => {
- item.name =
- i18n.t(`zh_key.${item.name}`).indexOf("zh_key") > -1
- ? item.name
- : i18n.t(`zh_key.${item.name}`);
- });
- },
- methods: {
- getButtonTypeI18n(buttonType) {
- if (buttonType === "电话") {
- return i18n.t("edit_settings.phone_short");
- } else if (buttonType === "链接") {
- return i18n.t("edit_settings.link_short");
- } else {
- return "";
- }
- },
- onRequestForChangeExpandStatus(index) {
- this.$set(this.expandStatus, index, !this.expandStatus[index]);
- },
- onRequestForEdit(index) {
- this.editingButtonIdx = index;
- this.editingInfo.type = this.info.customButton[index].type;
- this.editingInfo.name = this.info.customButton[index].name;
- this.editingInfo.value = this.info.customButton[index].value;
- this.editingInfo.openMethod = this.info.customButton[index].openMethod;
- this.isEditing = true;
- },
- checkButtonName(name) {
- if (!name) {
- this.$msg.warning(i18n.t("gather.fill_complete"));
- return false;
- }
- return true;
- },
- checkButtonValue(value, type) {
- if (type === "电话") {
- if (!isValidPhoneNumber(value)) {
- this.$msg.warning(i18n.t("gather.fill_phone"));
- return false;
- }
- } else if (type === "链接") {
- if (!value) {
- this.$msg.warning(i18n.t("gather.fill_complete"));
- return false;
- }
- }
- return true;
- },
- onConfirmEditing() {
- if (!this.checkButtonName(this.editingInfo.name)) {
- return;
- }
- if (
- !this.checkButtonValue(this.editingInfo.value, this.editingInfo.type)
- ) {
- return;
- }
- this.info.customButton[this.editingButtonIdx].type =
- this.editingInfo.type;
- this.info.customButton[this.editingButtonIdx].name =
- this.editingInfo.name;
- this.info.customButton[this.editingButtonIdx].value =
- this.editingInfo.value;
- this.$msg.success(i18n.t("gather.success"));
- this.isEditing = false;
- },
- onRequestForShow(index) {
- if (!this.checkButtonName(this.info.customButton[index].name)) {
- return;
- }
- if (
- !this.checkButtonValue(
- this.info.customButton[index].value,
- this.info.customButton[index].type
- )
- ) {
- return;
- }
- this.info.customButton[index].isShow = true;
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .custom-button-settings {
- padding: 24px 30px;
- background: #252526;
- height: 546px;
- .title {
- font-size: 18px;
- color: #ffffff;
- }
- .tool-tip-for-editor {
- margin-left: 4px;
- font-size: 12px;
- cursor: default;
- position: relative;
- top: -2px;
- }
- > .button-setting-item {
- margin-top: 16px;
- position: relative;
- min-height: 50px;
- > .title-bar {
- position: absolute;
- width: 100%;
- height: 50px;
- background: #1a1b1d;
- border-radius: 2px;
- border: 1px solid #404040;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 31px 0 16px;
- cursor: pointer;
- .experience {
- position: absolute;
- z-index: 10;
- top: 0;
- right: 0;
- & > img {
- width: 31px;
- height: 31px;
- }
- }
- &.bright {
- color: #fff;
- }
- &.dark {
- color: #808080;
- }
- > .left {
- display: flex;
- align-items: center;
- > .icon-expand {
- font-size: 10px;
- color: rgba(255, 255, 255, 0.6);
- transform: rotate(-90deg);
- cursor: pointer;
- }
- > .button-icon {
- width: 18px;
- height: 18px;
- margin-left: 6px;
- }
- > .button-name {
- font-size: 16px;
- margin-left: 6px;
- }
- }
- > .right {
- display: flex;
- align-items: center;
- i.btn-edit {
- cursor: pointer;
- padding: 7px;
- &:hover {
- color: #0076f6;
- }
- }
- > .btn-show {
- margin-left: 9px;
- cursor: pointer;
- padding: 7px;
- &:hover {
- color: #0076f6;
- }
- }
- > .btn-hide {
- margin-left: 9px;
- cursor: pointer;
- padding: 7px;
- &:hover {
- color: #0076f6;
- }
- }
- }
- }
- > .edit-content {
- border-radius: 2px;
- border: 1px solid #404040;
- padding-top: 58px;
- padding-bottom: 26px;
- display: none;
- pointer-events: none;
- > .edit-content-item {
- margin-top: 16px;
- display: flex;
- align-items: center;
- > .item-name {
- margin-left: 16px;
- font-size: 14px;
- color: rgba(255, 255, 255, 0.5);
- }
- > .selector {
- margin-left: 16px;
- }
- > .name-input {
- height: 36px;
- background: transparent;
- border-radius: 2px;
- border: 1px solid #404040;
- color: #fff;
- font-size: 14px;
- padding: 0 16px;
- letter-spacing: 1px;
- width: 470px;
- &:focus {
- border-color: #0076f6;
- }
- }
- > .value-input {
- margin-left: 16px;
- height: 36px;
- background: transparent;
- border-radius: 2px;
- border: 1px solid #404040;
- color: #fff;
- font-size: 14px;
- padding: 0 16px;
- letter-spacing: 1px;
- width: 610px;
- &:focus {
- border-color: #0076f6;
- }
- }
- }
- }
- }
- > .button-setting-item.expand {
- > .title-bar {
- > .left {
- > .icon-expand {
- transform: rotate(0deg);
- }
- }
- }
- > .edit-content {
- display: block;
- }
- }
- .edit-window {
- width: 574px;
- > .ui-message-main {
- margin-bottom: 40px;
- > .edit-content-item {
- margin-top: 16px;
- display: flex;
- align-items: center;
- &.full {
- .selector {
- width: 610px;
- }
- }
- > .item-name {
- flex: 0 0 auto;
- font-size: 14px;
- color: rgba(255, 255, 255, 0.5);
- }
- > .selector {
- margin-left: 16px;
- }
- > .name-input {
- height: 36px;
- background: #252526;
- border-radius: 2px;
- border: 1px solid #404040;
- color: #fff;
- font-size: 14px;
- padding: 0 16px;
- letter-spacing: 1px;
- width: 470px;
- &:focus {
- border-color: #0076f6;
- }
- }
- > .value-input {
- margin-left: 16px;
- height: 36px;
- background: #252526;
- border-radius: 2px;
- border: 1px solid #404040;
- color: #fff;
- font-size: 14px;
- padding: 0 16px;
- letter-spacing: 1px;
- width: 610px;
- &:focus {
- border-color: #0076f6;
- }
- }
- }
- }
- }
- }
- </style>
|